NekoX/TMessagesProj/src/main/java/org/telegram/messenger/ImageReceiver.java

1652 lines
65 KiB
Java
Raw Normal View History

/*
* This is the source code of Telegram for Android v. 1.3.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2019-01-23 18:03:33 +01:00
* Copyright Nikolai Kudashov, 2013-2018.
*/
2015-09-24 22:52:02 +02:00
package org.telegram.messenger;
import android.graphics.Bitmap;
2014-10-21 22:35:16 +02:00
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.ColorFilter;
2014-10-21 22:35:16 +02:00
import android.graphics.Matrix;
import android.graphics.Paint;
2015-01-02 23:15:07 +01:00
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
2014-10-21 22:35:16 +02:00
import android.graphics.RectF;
import android.graphics.Shader;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.view.View;
2019-05-14 14:08:05 +02:00
import com.airbnb.lottie.LottieDrawable;
2015-09-24 22:52:02 +02:00
import org.telegram.tgnet.TLRPC;
import org.telegram.ui.Components.AnimatedFileDrawable;
2019-01-23 18:03:33 +01:00
import org.telegram.ui.Components.RecyclableDrawable;
2015-02-01 19:51:02 +01:00
public class ImageReceiver implements NotificationCenter.NotificationCenterDelegate {
public interface ImageReceiverDelegate {
void didSetImage(ImageReceiver imageReceiver, boolean set, boolean thumb);
2015-02-01 19:51:02 +01:00
}
2018-07-30 04:07:02 +02:00
public static class BitmapHolder {
private String key;
2019-03-03 21:40:48 +01:00
private boolean recycleOnRelease;
2018-07-30 04:07:02 +02:00
public Bitmap bitmap;
public BitmapHolder(Bitmap b, String k) {
bitmap = b;
key = k;
if (key != null) {
ImageLoader.getInstance().incrementUseCount(key);
}
}
2019-03-03 21:40:48 +01:00
public BitmapHolder(Bitmap b) {
bitmap = b;
recycleOnRelease = true;
}
2018-07-30 04:07:02 +02:00
public int getWidth() {
return bitmap != null ? bitmap.getWidth() : 0;
}
public int getHeight() {
return bitmap != null ? bitmap.getHeight() : 0;
}
public boolean isRecycled() {
return bitmap == null || bitmap.isRecycled();
}
public void release() {
if (key == null) {
2019-03-03 21:40:48 +01:00
if (recycleOnRelease && bitmap != null) {
bitmap.recycle();
}
2018-07-30 04:07:02 +02:00
bitmap = null;
return;
}
boolean canDelete = ImageLoader.getInstance().decrementUseCount(key);
if (!ImageLoader.getInstance().isInCache(key)) {
if (canDelete) {
bitmap.recycle();
}
}
key = null;
bitmap = null;
}
}
private class SetImageBackup {
2019-05-14 14:08:05 +02:00
public ImageLocation imageLocation;
public String imageFilter;
public ImageLocation thumbLocation;
public String thumbFilter;
2019-05-14 14:08:05 +02:00
public ImageLocation mediaLocation;
2019-03-03 21:40:48 +01:00
public String mediaFilter;
2019-05-14 14:08:05 +02:00
public Drawable thumb;
public int size;
public int cacheType;
2019-01-23 18:03:33 +01:00
public Object parentObject;
2015-05-21 23:27:27 +02:00
public String ext;
}
2019-03-03 21:40:48 +01:00
public final static int TYPE_IMAGE = 0;
public final static int TYPE_THUMB = 1;
private final static int TYPE_CROSSFDADE = 2;
public final static int TYPE_MEDIA = 3;
2018-07-30 04:07:02 +02:00
private int currentAccount;
2015-02-01 19:51:02 +01:00
private View parentView;
2019-03-03 21:40:48 +01:00
2017-12-08 18:35:59 +01:00
private int param;
2019-01-23 18:03:33 +01:00
private Object currentParentObject;
2015-02-01 19:51:02 +01:00
private boolean canceledLoading;
2016-04-22 15:49:00 +02:00
private static PorterDuffColorFilter selectedColorFilter = new PorterDuffColorFilter(0xffdddddd, PorterDuff.Mode.MULTIPLY);
2017-12-08 18:35:59 +01:00
private static PorterDuffColorFilter selectedGroupColorFilter = new PorterDuffColorFilter(0xffbbbbbb, PorterDuff.Mode.MULTIPLY);
private boolean forceLoding;
2015-02-01 19:51:02 +01:00
private SetImageBackup setImageBackup;
2019-05-14 14:08:05 +02:00
private ImageLocation currentImageLocation;
2019-03-03 21:40:48 +01:00
private String currentImageFilter;
2019-05-14 14:08:05 +02:00
private String currentImageKey;
2019-03-03 21:40:48 +01:00
private int imageTag;
private Drawable currentImageDrawable;
private BitmapShader imageShader;
private int imageOrientation;
2019-05-14 14:08:05 +02:00
private ImageLocation currentThumbLocation;
2015-02-01 19:51:02 +01:00
private String currentThumbFilter;
2019-05-14 14:08:05 +02:00
private String currentThumbKey;
2019-03-03 21:40:48 +01:00
private int thumbTag;
private Drawable currentThumbDrawable;
private BitmapShader thumbShader;
private int thumbOrientation;
2019-05-14 14:08:05 +02:00
private ImageLocation currentMediaLocation;
2019-03-03 21:40:48 +01:00
private String currentMediaFilter;
2019-05-14 14:08:05 +02:00
private String currentMediaKey;
2019-03-03 21:40:48 +01:00
private int mediaTag;
private Drawable currentMediaDrawable;
private BitmapShader mediaShader;
private Drawable staticThumbDrawable;
2015-05-21 23:27:27 +02:00
private String currentExt;
2019-03-03 21:40:48 +01:00
2015-02-01 19:51:02 +01:00
private int currentSize;
private int currentCacheType;
private boolean allowStartAnimation = true;
2019-05-14 14:08:05 +02:00
private boolean useSharedAnimationQueue;
2017-07-08 18:32:04 +02:00
private boolean allowDecodeSingleFrame;
2015-02-01 19:51:02 +01:00
2017-12-08 18:35:59 +01:00
private boolean crossfadeWithOldImage;
2019-01-23 18:03:33 +01:00
private boolean crossfadingWithThumb;
2017-12-08 18:35:59 +01:00
private Drawable crossfadeImage;
private String crossfadeKey;
private BitmapShader crossfadeShader;
2015-02-01 19:51:02 +01:00
private boolean needsQualityThumb;
private boolean shouldGenerateQualityThumb;
2019-03-03 21:40:48 +01:00
private TLRPC.Document qulityThumbDocument;
2019-01-23 18:03:33 +01:00
private boolean currentKeyQuality;
2015-05-21 23:27:27 +02:00
private boolean invalidateAll;
2015-02-01 19:51:02 +01:00
private int imageX, imageY, imageW, imageH;
2019-05-14 14:08:05 +02:00
private float sideClip;
private RectF drawRegion = new RectF();
private boolean isVisible = true;
2015-02-01 19:51:02 +01:00
private boolean isAspectFit;
private boolean forcePreview;
private boolean forceCrossfade;
2015-02-01 19:51:02 +01:00
private int roundRadius;
2019-03-03 21:40:48 +01:00
2017-12-08 18:35:59 +01:00
private Paint roundPaint;
2016-04-22 15:49:00 +02:00
private RectF roundRect = new RectF();
private RectF bitmapRect = new RectF();
private Matrix shaderMatrix = new Matrix();
private float overrideAlpha = 1.0f;
2017-12-08 18:35:59 +01:00
private int isPressed;
private boolean centerRotation;
2015-02-01 19:51:02 +01:00
private ImageReceiverDelegate delegate;
private float currentAlpha;
private long lastUpdateAlphaTime;
private byte crossfadeAlpha = 1;
private boolean manualAlphaAnimator;
private boolean crossfadeWithThumb;
private ColorFilter colorFilter;
public ImageReceiver() {
2016-04-22 15:49:00 +02:00
this(null);
}
public ImageReceiver(View view) {
parentView = view;
2019-01-23 18:03:33 +01:00
roundPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.FILTER_BITMAP_FLAG);
2018-07-30 04:07:02 +02:00
currentAccount = UserConfig.selectedAccount;
}
2015-02-01 19:51:02 +01:00
public void cancelLoadImage() {
2017-12-08 18:35:59 +01:00
forceLoding = false;
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().cancelLoadingForImageReceiver(this, true);
2015-02-01 19:51:02 +01:00
canceledLoading = true;
}
2017-12-08 18:35:59 +01:00
public void setForceLoading(boolean value) {
forceLoding = value;
}
public boolean isForceLoding() {
return forceLoding;
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation imageLocation, String imageFilter, Drawable thumb, String ext, Object parentObject, int cacheType) {
setImage(imageLocation, imageFilter, null, null, thumb, 0, ext, parentObject, cacheType);
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation imageLocation, String imageFilter, Drawable thumb, int size, String ext, Object parentObject, int cacheType) {
setImage(imageLocation, imageFilter, null, null, thumb, size, ext, parentObject, cacheType);
}
2019-05-14 14:08:05 +02:00
public void setImage(String imagePath, String imageFilter, Drawable thumb, String ext, int size) {
setImage(ImageLocation.getForPath(imagePath), imageFilter, null, null, thumb, size, ext, null, 1);
2015-02-01 19:51:02 +01:00
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation imageLocation, String imageFilter, ImageLocation thumbLocation, String thumbFilter, String ext, Object parentObject, int cacheType) {
setImage(imageLocation, imageFilter, thumbLocation, thumbFilter, null, 0, ext, parentObject, cacheType);
2015-02-01 19:51:02 +01:00
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation imageLocation, String imageFilter, ImageLocation thumbLocation, String thumbFilter, int size, String ext, Object parentObject, int cacheType) {
setImage(imageLocation, imageFilter, thumbLocation, thumbFilter, null, size, ext, parentObject, cacheType);
2015-02-01 19:51:02 +01:00
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation fileLocation, String fileFilter, ImageLocation thumbLocation, String thumbFilter, Drawable thumb, int size, String ext, Object parentObject, int cacheType) {
setImage(null, null, fileLocation, fileFilter, thumbLocation, thumbFilter, thumb, size, ext, parentObject, cacheType);
2019-03-03 21:40:48 +01:00
}
2019-05-14 14:08:05 +02:00
public void setImage(ImageLocation mediaLocation, String mediaFilter, ImageLocation imageLocation, String imageFilter, ImageLocation thumbLocation, String thumbFilter, Drawable thumb, int size, String ext, Object parentObject, int cacheType) {
2019-03-03 21:40:48 +01:00
if (setImageBackup != null) {
2019-05-14 14:08:05 +02:00
setImageBackup.imageLocation = null;
2019-03-03 21:40:48 +01:00
setImageBackup.thumbLocation = null;
setImageBackup.mediaLocation = null;
setImageBackup.thumb = null;
}
2019-05-14 14:08:05 +02:00
if (imageLocation == null && thumbLocation == null && mediaLocation == null) {
2019-03-03 21:40:48 +01:00
for (int a = 0; a < 4; a++) {
2017-12-08 18:35:59 +01:00
recycleBitmap(null, a);
}
2019-03-03 21:40:48 +01:00
currentImageLocation = null;
currentImageFilter = null;
2019-05-14 14:08:05 +02:00
currentImageKey = null;
2019-03-03 21:40:48 +01:00
currentMediaLocation = null;
currentMediaFilter = null;
2019-05-14 14:08:05 +02:00
currentMediaKey = null;
2019-03-03 21:40:48 +01:00
currentThumbLocation = null;
2015-02-01 19:51:02 +01:00
currentThumbFilter = null;
2019-05-14 14:08:05 +02:00
currentThumbKey = null;
2019-03-03 21:40:48 +01:00
currentMediaDrawable = null;
mediaShader = null;
currentImageDrawable = null;
imageShader = null;
thumbShader = null;
crossfadeShader = null;
currentExt = ext;
2019-01-23 18:03:33 +01:00
currentParentObject = null;
currentCacheType = 0;
2019-03-03 21:40:48 +01:00
staticThumbDrawable = thumb;
currentAlpha = 1.0f;
2015-02-01 19:51:02 +01:00
currentSize = 0;
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().cancelLoadingForImageReceiver(this, true);
if (parentView != null) {
2015-05-21 23:27:27 +02:00
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
2015-02-01 19:51:02 +01:00
if (delegate != null) {
2019-03-03 21:40:48 +01:00
delegate.didSetImage(this, currentImageDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentMediaDrawable != null, currentImageDrawable == null && currentMediaDrawable == null);
2015-02-01 19:51:02 +01:00
}
return;
}
2019-05-14 14:08:05 +02:00
String imageKey = imageLocation != null ? imageLocation.getKey(parentObject, null) : null;
if (imageKey == null && imageLocation != null) {
imageLocation = null;
}
2019-01-23 18:03:33 +01:00
currentKeyQuality = false;
2019-03-03 21:40:48 +01:00
if (imageKey == null && needsQualityThumb && (parentObject instanceof MessageObject || qulityThumbDocument != null)) {
TLRPC.Document document = qulityThumbDocument != null ? qulityThumbDocument : ((MessageObject) parentObject).getDocument();
2019-01-23 18:03:33 +01:00
if (document != null && document.dc_id != 0 && document.id != 0) {
2019-03-03 21:40:48 +01:00
imageKey = "q_" + document.dc_id + "_" + document.id;
2019-01-23 18:03:33 +01:00
currentKeyQuality = true;
}
}
2019-03-03 21:40:48 +01:00
if (imageKey != null && imageFilter != null) {
imageKey += "@" + imageFilter;
}
2019-05-14 14:08:05 +02:00
String mediaKey = mediaLocation != null ? mediaLocation.getKey(parentObject, null) : null;
2019-03-03 21:40:48 +01:00
if (mediaKey == null && mediaLocation != null) {
mediaLocation = null;
}
if (mediaKey != null && mediaFilter != null) {
mediaKey += "@" + mediaFilter;
2019-01-23 18:03:33 +01:00
}
2015-02-01 19:51:02 +01:00
2019-03-03 21:40:48 +01:00
if (mediaKey == null && currentImageKey != null && currentImageKey.equals(imageKey) || currentMediaKey != null && currentMediaKey.equals(mediaKey)) {
2015-02-01 19:51:02 +01:00
if (delegate != null) {
2019-03-03 21:40:48 +01:00
delegate.didSetImage(this, currentImageDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentMediaDrawable != null, currentImageDrawable == null && currentMediaDrawable == null);
2015-01-02 23:15:07 +01:00
}
2015-02-01 19:51:02 +01:00
if (!canceledLoading && !forcePreview) {
return;
}
}
2019-05-14 14:08:05 +02:00
String thumbKey = thumbLocation != null ? thumbLocation.getKey(parentObject, mediaLocation != null ? mediaLocation : imageLocation) : null;
2019-01-23 18:03:33 +01:00
if (thumbKey != null && thumbFilter != null) {
thumbKey += "@" + thumbFilter;
}
2015-02-01 19:51:02 +01:00
2017-12-08 18:35:59 +01:00
if (crossfadeWithOldImage) {
2019-03-03 21:40:48 +01:00
if (currentImageDrawable != null) {
recycleBitmap(thumbKey, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(mediaKey, TYPE_MEDIA);
crossfadeShader = imageShader;
crossfadeImage = currentImageDrawable;
crossfadeKey = currentImageKey;
2019-01-23 18:03:33 +01:00
crossfadingWithThumb = false;
2019-03-03 21:40:48 +01:00
currentImageDrawable = null;
currentImageKey = null;
} else if (currentThumbDrawable != null) {
recycleBitmap(imageKey, TYPE_IMAGE);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(mediaKey, TYPE_MEDIA);
crossfadeShader = thumbShader;
crossfadeImage = currentThumbDrawable;
2017-12-08 18:35:59 +01:00
crossfadeKey = currentThumbKey;
2019-01-23 18:03:33 +01:00
crossfadingWithThumb = false;
2019-03-03 21:40:48 +01:00
currentThumbDrawable = null;
2019-01-23 18:03:33 +01:00
currentThumbKey = null;
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable != null) {
recycleBitmap(imageKey, TYPE_IMAGE);
recycleBitmap(thumbKey, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(mediaKey, TYPE_MEDIA);
crossfadeShader = thumbShader;
crossfadeImage = staticThumbDrawable;
2019-01-23 18:03:33 +01:00
crossfadingWithThumb = false;
crossfadeKey = null;
2019-03-03 21:40:48 +01:00
currentThumbDrawable = null;
2017-12-08 18:35:59 +01:00
currentThumbKey = null;
} else {
2019-03-03 21:40:48 +01:00
recycleBitmap(imageKey, TYPE_IMAGE);
recycleBitmap(thumbKey, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(mediaKey, TYPE_MEDIA);
2017-12-08 18:35:59 +01:00
crossfadeShader = null;
}
} else {
2019-03-03 21:40:48 +01:00
recycleBitmap(imageKey, TYPE_IMAGE);
recycleBitmap(thumbKey, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(mediaKey, TYPE_MEDIA);
2017-12-08 18:35:59 +01:00
crossfadeShader = null;
}
2015-02-01 19:51:02 +01:00
2019-05-14 14:08:05 +02:00
currentImageLocation = imageLocation;
2019-03-03 21:40:48 +01:00
currentImageFilter = imageFilter;
2019-05-14 14:08:05 +02:00
currentImageKey = imageKey;
2019-03-03 21:40:48 +01:00
currentMediaLocation = mediaLocation;
currentMediaFilter = mediaFilter;
2019-05-14 14:08:05 +02:00
currentMediaKey = mediaKey;
2019-03-03 21:40:48 +01:00
currentThumbLocation = thumbLocation;
2015-02-01 19:51:02 +01:00
currentThumbFilter = thumbFilter;
2019-05-14 14:08:05 +02:00
currentThumbKey = thumbKey;
2019-03-03 21:40:48 +01:00
currentParentObject = parentObject;
currentExt = ext;
2015-02-01 19:51:02 +01:00
currentSize = size;
currentCacheType = cacheType;
2019-03-03 21:40:48 +01:00
staticThumbDrawable = thumb;
imageShader = null;
thumbShader = null;
mediaShader = null;
currentAlpha = 1.0f;
2015-02-01 19:51:02 +01:00
if (delegate != null) {
2019-03-03 21:40:48 +01:00
delegate.didSetImage(this, currentImageDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentMediaDrawable != null, currentImageDrawable == null && currentMediaDrawable == null);
2014-10-21 22:35:16 +02:00
}
2015-02-01 19:51:02 +01:00
ImageLoader.getInstance().loadImageForImageReceiver(this);
2014-08-29 23:06:04 +02:00
if (parentView != null) {
2015-05-21 23:27:27 +02:00
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
}
2019-01-23 18:03:33 +01:00
public boolean canInvertBitmap() {
2019-03-03 21:40:48 +01:00
return currentMediaDrawable instanceof ExtendedBitmapDrawable || currentImageDrawable instanceof ExtendedBitmapDrawable || currentThumbDrawable instanceof ExtendedBitmapDrawable || staticThumbDrawable instanceof ExtendedBitmapDrawable;
2019-01-23 18:03:33 +01:00
}
public void setColorFilter(ColorFilter filter) {
colorFilter = filter;
}
2015-02-01 19:51:02 +01:00
public void setDelegate(ImageReceiverDelegate delegate) {
this.delegate = delegate;
}
2017-12-08 18:35:59 +01:00
public void setPressed(int value) {
2015-01-02 23:15:07 +01:00
isPressed = value;
}
public boolean getPressed() {
2017-12-08 18:35:59 +01:00
return isPressed != 0;
2015-01-02 23:15:07 +01:00
}
public void setOrientation(int angle, boolean center) {
2016-03-06 02:49:31 +01:00
while (angle < 0) {
angle += 360;
}
while (angle > 360) {
angle -= 360;
}
2019-03-03 21:40:48 +01:00
imageOrientation = thumbOrientation = angle;
centerRotation = center;
}
2015-05-21 23:27:27 +02:00
public void setInvalidateAll(boolean value) {
invalidateAll = value;
}
2017-03-31 01:58:05 +02:00
public Drawable getStaticThumb() {
2019-03-03 21:40:48 +01:00
return staticThumbDrawable;
2017-03-31 01:58:05 +02:00
}
2016-10-11 13:57:01 +02:00
public int getAnimatedOrientation() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
return animation != null ? animation.getOrientation() : 0;
2016-10-11 13:57:01 +02:00
}
public int getOrientation() {
2019-03-03 21:40:48 +01:00
return imageOrientation;
}
public void setImageBitmap(Bitmap bitmap) {
2015-01-02 23:15:07 +01:00
setImageBitmap(bitmap != null ? new BitmapDrawable(null, bitmap) : null);
}
public void setImageBitmap(Drawable bitmap) {
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().cancelLoadingForImageReceiver(this, true);
2019-01-23 18:03:33 +01:00
if (crossfadeWithOldImage) {
2019-03-03 21:40:48 +01:00
if (currentImageDrawable != null) {
recycleBitmap(null, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(null, TYPE_MEDIA);
crossfadeShader = imageShader;
crossfadeImage = currentImageDrawable;
crossfadeKey = currentImageKey;
2019-01-23 18:03:33 +01:00
crossfadingWithThumb = true;
2019-03-03 21:40:48 +01:00
} else if (currentThumbDrawable != null) {
recycleBitmap(null, TYPE_IMAGE);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(null, TYPE_MEDIA);
crossfadeShader = thumbShader;
crossfadeImage = currentThumbDrawable;
2019-01-23 18:03:33 +01:00
crossfadeKey = currentThumbKey;
crossfadingWithThumb = true;
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable != null) {
recycleBitmap(null, TYPE_IMAGE);
recycleBitmap(null, TYPE_THUMB);
recycleBitmap(null, TYPE_CROSSFDADE);
recycleBitmap(null, TYPE_MEDIA);
crossfadeShader = thumbShader;
crossfadeImage = staticThumbDrawable;
2019-01-23 18:03:33 +01:00
crossfadingWithThumb = true;
crossfadeKey = null;
} else {
2019-03-03 21:40:48 +01:00
for (int a = 0; a < 4; a++) {
2019-01-23 18:03:33 +01:00
recycleBitmap(null, a);
}
crossfadeShader = null;
}
} else {
2019-03-03 21:40:48 +01:00
for (int a = 0; a < 4; a++) {
2019-01-23 18:03:33 +01:00
recycleBitmap(null, a);
}
}
2019-03-03 21:40:48 +01:00
if (staticThumbDrawable instanceof RecyclableDrawable) {
RecyclableDrawable drawable = (RecyclableDrawable) staticThumbDrawable;
2019-01-23 18:03:33 +01:00
drawable.recycle();
2017-12-08 18:35:59 +01:00
}
2019-03-03 21:40:48 +01:00
if (bitmap instanceof AnimatedFileDrawable) {
AnimatedFileDrawable fileDrawable = (AnimatedFileDrawable) bitmap;
fileDrawable.setParentView(parentView);
2019-05-14 14:08:05 +02:00
fileDrawable.setUseSharedQueue(useSharedAnimationQueue);
2019-03-03 21:40:48 +01:00
if (allowStartAnimation) {
fileDrawable.start();
}
fileDrawable.setAllowDecodeSingleFrame(allowDecodeSingleFrame);
}
staticThumbDrawable = bitmap;
2017-12-08 18:35:59 +01:00
if (roundRadius != 0 && bitmap instanceof BitmapDrawable) {
2019-03-03 21:40:48 +01:00
if (bitmap instanceof AnimatedFileDrawable) {
((AnimatedFileDrawable) bitmap).setRoundRadius(roundRadius);
} else {
Bitmap object = ((BitmapDrawable) bitmap).getBitmap();
thumbShader = new BitmapShader(object, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
}
2017-12-08 18:35:59 +01:00
} else {
2019-03-03 21:40:48 +01:00
thumbShader = null;
2017-12-08 18:35:59 +01:00
}
2019-03-03 21:40:48 +01:00
currentMediaLocation = null;
2019-05-14 14:08:05 +02:00
currentMediaFilter = null;
2019-03-03 21:40:48 +01:00
currentMediaDrawable = null;
currentMediaKey = null;
mediaShader = null;
currentImageLocation = null;
2019-05-14 14:08:05 +02:00
currentImageFilter = null;
2019-03-03 21:40:48 +01:00
currentImageDrawable = null;
currentImageKey = null;
imageShader = null;
2015-02-01 19:51:02 +01:00
currentThumbLocation = null;
currentThumbFilter = null;
2019-05-14 14:08:05 +02:00
currentThumbKey = null;
2019-03-03 21:40:48 +01:00
currentKeyQuality = false;
currentExt = null;
2015-02-01 19:51:02 +01:00
currentSize = 0;
currentCacheType = 0;
2019-03-03 21:40:48 +01:00
currentAlpha = 1;
if (setImageBackup != null) {
2019-05-14 14:08:05 +02:00
setImageBackup.imageLocation = null;
setImageBackup.thumbLocation = null;
2019-03-03 21:40:48 +01:00
setImageBackup.mediaLocation = null;
setImageBackup.thumb = null;
}
2019-03-03 21:40:48 +01:00
2015-02-01 19:51:02 +01:00
if (delegate != null) {
2019-03-03 21:40:48 +01:00
delegate.didSetImage(this, currentThumbDrawable != null || staticThumbDrawable != null, true);
2015-02-01 19:51:02 +01:00
}
if (parentView != null) {
2015-05-21 23:27:27 +02:00
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
2019-01-23 18:03:33 +01:00
if (forceCrossfade && crossfadeWithOldImage && crossfadeImage != null) {
currentAlpha = 0.0f;
lastUpdateAlphaTime = System.currentTimeMillis();
2019-03-03 21:40:48 +01:00
crossfadeWithThumb = currentThumbDrawable != null || staticThumbDrawable != null;
2019-01-23 18:03:33 +01:00
}
}
public void clearImage() {
2019-03-03 21:40:48 +01:00
for (int a = 0; a < 4; a++) {
2017-12-08 18:35:59 +01:00
recycleBitmap(null, a);
}
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().cancelLoadingForImageReceiver(this, true);
}
public void onDetachedFromWindow() {
2019-03-03 21:40:48 +01:00
if (currentImageLocation != null || currentMediaLocation != null || currentThumbLocation != null || staticThumbDrawable != null) {
if (setImageBackup == null) {
setImageBackup = new SetImageBackup();
}
2019-03-03 21:40:48 +01:00
setImageBackup.mediaLocation = currentMediaLocation;
setImageBackup.mediaFilter = currentMediaFilter;
2019-05-14 14:08:05 +02:00
setImageBackup.imageLocation = currentImageLocation;
setImageBackup.imageFilter = currentImageFilter;
setImageBackup.thumbLocation = currentThumbLocation;
setImageBackup.thumbFilter = currentThumbFilter;
2019-05-14 14:08:05 +02:00
setImageBackup.thumb = staticThumbDrawable;
setImageBackup.size = currentSize;
2015-05-21 23:27:27 +02:00
setImageBackup.ext = currentExt;
setImageBackup.cacheType = currentCacheType;
2019-01-23 18:03:33 +01:00
setImageBackup.parentObject = currentParentObject;
}
2018-07-30 04:07:02 +02:00
NotificationCenter.getGlobalInstance().removeObserver(this, NotificationCenter.didReplacedPhotoInMemCache);
clearImage();
}
public boolean onAttachedToWindow() {
2018-07-30 04:07:02 +02:00
NotificationCenter.getGlobalInstance().addObserver(this, NotificationCenter.didReplacedPhotoInMemCache);
2019-05-14 14:08:05 +02:00
if (setImageBackup != null && (setImageBackup.imageLocation != null || setImageBackup.thumbLocation != null || setImageBackup.mediaLocation != null || setImageBackup.thumb != null)) {
setImage(setImageBackup.mediaLocation, setImageBackup.mediaFilter, setImageBackup.imageLocation, setImageBackup.imageFilter, setImageBackup.thumbLocation, setImageBackup.thumbFilter, setImageBackup.thumb, setImageBackup.size, setImageBackup.ext, setImageBackup.parentObject, setImageBackup.cacheType);
return true;
}
return false;
}
2019-03-03 21:40:48 +01:00
private void drawDrawable(Canvas canvas, Drawable drawable, int alpha, BitmapShader shader, int orientation) {
if (drawable instanceof BitmapDrawable) {
BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
2016-04-22 15:49:00 +02:00
Paint paint;
if (shader != null) {
paint = roundPaint;
} else {
paint = bitmapDrawable.getPaint();
}
boolean hasFilter = paint != null && paint.getColorFilter() != null;
2017-12-08 18:35:59 +01:00
if (hasFilter && isPressed == 0) {
2016-04-22 15:49:00 +02:00
if (shader != null) {
roundPaint.setColorFilter(null);
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable != drawable) {
2016-04-22 15:49:00 +02:00
bitmapDrawable.setColorFilter(null);
}
2017-12-08 18:35:59 +01:00
} else if (!hasFilter && isPressed != 0) {
if (isPressed == 1) {
if (shader != null) {
roundPaint.setColorFilter(selectedColorFilter);
} else {
bitmapDrawable.setColorFilter(selectedColorFilter);
}
2016-04-22 15:49:00 +02:00
} else {
2017-12-08 18:35:59 +01:00
if (shader != null) {
roundPaint.setColorFilter(selectedGroupColorFilter);
} else {
bitmapDrawable.setColorFilter(selectedGroupColorFilter);
}
2016-04-22 15:49:00 +02:00
}
}
if (colorFilter != null) {
2016-04-22 15:49:00 +02:00
if (shader != null) {
roundPaint.setColorFilter(colorFilter);
} else {
bitmapDrawable.setColorFilter(colorFilter);
2015-01-02 23:15:07 +01:00
}
2016-04-22 15:49:00 +02:00
}
int bitmapW;
int bitmapH;
if (bitmapDrawable instanceof AnimatedFileDrawable) {
2019-03-03 21:40:48 +01:00
if (orientation % 360 == 90 || orientation % 360 == 270) {
bitmapW = bitmapDrawable.getIntrinsicHeight();
bitmapH = bitmapDrawable.getIntrinsicWidth();
} else {
bitmapW = bitmapDrawable.getIntrinsicWidth();
bitmapH = bitmapDrawable.getIntrinsicHeight();
}
2016-04-22 15:49:00 +02:00
} else {
2019-03-03 21:40:48 +01:00
if (orientation % 360 == 90 || orientation % 360 == 270) {
2016-04-22 15:49:00 +02:00
bitmapW = bitmapDrawable.getBitmap().getHeight();
bitmapH = bitmapDrawable.getBitmap().getWidth();
} else {
bitmapW = bitmapDrawable.getBitmap().getWidth();
bitmapH = bitmapDrawable.getBitmap().getHeight();
}
}
2019-05-14 14:08:05 +02:00
float realImageW = imageW - sideClip * 2;
float realImageH = imageH - sideClip * 2;
float scaleW = imageW == 0 ? 1.0f : (bitmapW / realImageW);
float scaleH = imageH == 0 ? 1.0f : (bitmapH / realImageH);
2016-04-22 15:49:00 +02:00
if (shader != null) {
2019-05-14 14:08:05 +02:00
if (isAspectFit) {
float scale = Math.max(scaleW, scaleH);
bitmapW /= scale;
bitmapH /= scale;
drawRegion.set(imageX + (imageW - bitmapW) / 2, imageY + (imageH - bitmapH) / 2, imageX + (imageW + bitmapW) / 2, imageY + (imageH + bitmapH) / 2);
if (isVisible) {
roundPaint.setShader(shader);
shaderMatrix.reset();
shaderMatrix.setTranslate(drawRegion.left, drawRegion.top);
shaderMatrix.preScale(1.0f / scale, 1.0f / scale);
shader.setLocalMatrix(shaderMatrix);
roundPaint.setAlpha(alpha);
roundRect.set(drawRegion);
canvas.drawRoundRect(roundRect, roundRadius, roundRadius, roundPaint);
2016-04-22 15:49:00 +02:00
}
} else {
2019-05-14 14:08:05 +02:00
roundPaint.setShader(shader);
float scale = 1.0f / Math.min(scaleW, scaleH);
roundRect.set(imageX + sideClip, imageY + sideClip, imageX + imageW - sideClip, imageY + imageH - sideClip);
shaderMatrix.reset();
2019-03-03 21:40:48 +01:00
if (Math.abs(scaleW - scaleH) > 0.0005f) {
2019-05-14 14:08:05 +02:00
if (bitmapW / scaleH > realImageW) {
bitmapW /= scaleH;
drawRegion.set(imageX - (bitmapW - realImageW) / 2, imageY, imageX + (bitmapW + realImageW) / 2, imageY + realImageH);
} else {
bitmapH /= scaleW;
drawRegion.set(imageX, imageY - (bitmapH - realImageH) / 2, imageX + realImageW, imageY + (bitmapH + realImageH) / 2);
}
2016-04-22 15:49:00 +02:00
} else {
2019-05-14 14:08:05 +02:00
drawRegion.set(imageX, imageY, imageX + realImageW, imageY + realImageH);
}
if (isVisible) {
shaderMatrix.reset();
shaderMatrix.setTranslate(drawRegion.left, drawRegion.top);
if (orientation == 90) {
shaderMatrix.preRotate(90);
shaderMatrix.preTranslate(0, -drawRegion.width());
} else if (orientation == 180) {
shaderMatrix.preRotate(180);
shaderMatrix.preTranslate(-drawRegion.width(), -drawRegion.height());
} else if (orientation == 270) {
shaderMatrix.preRotate(270);
shaderMatrix.preTranslate(-drawRegion.height(), 0);
}
shaderMatrix.preScale(scale, scale);
shader.setLocalMatrix(shaderMatrix);
roundPaint.setAlpha(alpha);
canvas.drawRoundRect(roundRect, roundRadius, roundRadius, roundPaint);
2016-04-22 15:49:00 +02:00
}
}
} else {
if (isAspectFit) {
float scale = Math.max(scaleW, scaleH);
canvas.save();
bitmapW /= scale;
bitmapH /= scale;
2019-05-14 14:08:05 +02:00
drawRegion.set(imageX + (imageW - bitmapW) / 2.0f, imageY + (imageH - bitmapH) / 2.0f, imageX + (imageW + bitmapW) / 2.0f, imageY + (imageH + bitmapH) / 2.0f);
bitmapDrawable.setBounds((int) drawRegion.left, (int) drawRegion.top, (int) drawRegion.right, (int) drawRegion.bottom);
if (bitmapDrawable instanceof AnimatedFileDrawable) {
((AnimatedFileDrawable) bitmapDrawable).setActualDrawRect(drawRegion.left, drawRegion.top, drawRegion.width(), drawRegion.height());
}
2019-02-08 03:30:32 +01:00
if (isVisible) {
try {
bitmapDrawable.setAlpha(alpha);
bitmapDrawable.draw(canvas);
} catch (Exception e) {
2019-03-03 21:40:48 +01:00
onBitmapException(bitmapDrawable);
2019-02-08 03:30:32 +01:00
FileLog.e(e);
}
}
canvas.restore();
} else {
if (Math.abs(scaleW - scaleH) > 0.00001f) {
2014-10-21 22:35:16 +02:00
canvas.save();
canvas.clipRect(imageX, imageY, imageX + imageW, imageY + imageH);
2019-03-03 21:40:48 +01:00
if (orientation % 360 != 0) {
if (centerRotation) {
2019-03-03 21:40:48 +01:00
canvas.rotate(orientation, imageW / 2, imageH / 2);
} else {
2019-03-03 21:40:48 +01:00
canvas.rotate(orientation, 0, 0);
2014-10-01 21:55:24 +02:00
}
2014-07-10 02:15:58 +02:00
}
2016-05-25 23:49:47 +02:00
if (bitmapW / scaleH > imageW) {
bitmapW /= scaleH;
2019-05-14 14:08:05 +02:00
drawRegion.set(imageX - (bitmapW - imageW) / 2.0f, imageY, imageX + (bitmapW + imageW) / 2.0f, imageY + imageH);
} else {
2016-05-25 23:49:47 +02:00
bitmapH /= scaleW;
2019-05-14 14:08:05 +02:00
drawRegion.set(imageX, imageY - (bitmapH - imageH) / 2.0f, imageX + imageW, imageY + (bitmapH + imageH) / 2.0f);
}
2017-03-31 01:58:05 +02:00
if (bitmapDrawable instanceof AnimatedFileDrawable) {
((AnimatedFileDrawable) bitmapDrawable).setActualDrawRect(imageX, imageY, imageW, imageH);
}
2019-03-03 21:40:48 +01:00
if (orientation % 360 == 90 || orientation % 360 == 270) {
2019-05-14 14:08:05 +02:00
float width = drawRegion.width() / 2;
float height = drawRegion.height() / 2;
float centerX = drawRegion.centerX();
float centerY = drawRegion.centerY();
bitmapDrawable.setBounds((int) (centerX - height), (int) (centerY - width), (int) (centerX + height), (int) (centerY + width));
} else {
2019-05-14 14:08:05 +02:00
bitmapDrawable.setBounds((int) drawRegion.left, (int) drawRegion.top, (int) drawRegion.right, (int) drawRegion.bottom);
}
if (isVisible) {
try {
bitmapDrawable.setAlpha(alpha);
bitmapDrawable.draw(canvas);
} catch (Exception e) {
2019-03-03 21:40:48 +01:00
onBitmapException(bitmapDrawable);
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
}
canvas.restore();
} else {
canvas.save();
2019-03-03 21:40:48 +01:00
if (orientation % 360 != 0) {
if (centerRotation) {
2019-03-03 21:40:48 +01:00
canvas.rotate(orientation, imageW / 2, imageH / 2);
} else {
2019-03-03 21:40:48 +01:00
canvas.rotate(orientation, 0, 0);
2014-10-21 22:35:16 +02:00
}
}
drawRegion.set(imageX, imageY, imageX + imageW, imageY + imageH);
2017-03-31 01:58:05 +02:00
if (bitmapDrawable instanceof AnimatedFileDrawable) {
((AnimatedFileDrawable) bitmapDrawable).setActualDrawRect(imageX, imageY, imageW, imageH);
}
2019-03-03 21:40:48 +01:00
if (orientation % 360 == 90 || orientation % 360 == 270) {
2019-05-14 14:08:05 +02:00
float width = drawRegion.width() / 2;
float height = drawRegion.height() / 2;
float centerX = drawRegion.centerX();
float centerY = drawRegion.centerY();
bitmapDrawable.setBounds((int) (centerX - height), (int) (centerY - width), (int) (centerX + height), (int) (centerY + width));
2014-10-21 22:35:16 +02:00
} else {
2019-05-14 14:08:05 +02:00
bitmapDrawable.setBounds((int) drawRegion.left, (int) drawRegion.top, (int) drawRegion.right, (int) drawRegion.bottom);
}
if (isVisible) {
try {
bitmapDrawable.setAlpha(alpha);
bitmapDrawable.draw(canvas);
} catch (Exception e) {
2019-03-03 21:40:48 +01:00
onBitmapException(bitmapDrawable);
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
}
canvas.restore();
}
}
}
} else {
drawRegion.set(imageX, imageY, imageX + imageW, imageY + imageH);
2019-05-14 14:08:05 +02:00
drawable.setBounds((int) drawRegion.left, (int) drawRegion.top, (int) drawRegion.right, (int) drawRegion.bottom);
if (isVisible) {
2019-05-14 14:08:05 +02:00
if (drawable instanceof LottieDrawable) {
canvas.save();
float tx = imageX;
float ty = imageY;
int bitmapWidth = getBitmapWidth();
int bitmapHeight = getBitmapHeight();
float scale;
if (bitmapWidth > imageW || bitmapHeight > imageH) {
scale = Math.min(imageW / (float) bitmapWidth, imageH / (float) bitmapHeight);
bitmapWidth *= scale;
bitmapHeight *= scale;
canvas.scale(scale, scale);
} else {
scale = 1.0f;
}
canvas.translate((imageX + (imageW - bitmapWidth) / 2) / scale, (imageY + (imageH - bitmapHeight) / 2) / scale);
if (parentView != null) {
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
}
try {
drawable.setAlpha(alpha);
drawable.draw(canvas);
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
2019-05-14 14:08:05 +02:00
if (drawable instanceof LottieDrawable) {
canvas.restore();
}
}
}
}
2019-03-03 21:40:48 +01:00
private void onBitmapException(Drawable bitmapDrawable) {
if (bitmapDrawable == currentMediaDrawable && currentMediaKey != null) {
ImageLoader.getInstance().removeImage(currentMediaKey);
currentMediaKey = null;
} else if (bitmapDrawable == currentImageDrawable && currentImageKey != null) {
ImageLoader.getInstance().removeImage(currentImageKey);
currentImageKey = null;
} else if (bitmapDrawable == currentThumbDrawable && currentThumbKey != null) {
ImageLoader.getInstance().removeImage(currentThumbKey);
currentThumbKey = null;
}
2019-05-14 14:08:05 +02:00
setImage(currentMediaLocation, currentMediaFilter, currentImageLocation, currentImageFilter, currentThumbLocation, currentThumbFilter, currentThumbDrawable, currentSize, currentExt, currentParentObject, currentCacheType);
2019-03-03 21:40:48 +01:00
}
private void checkAlphaAnimation(boolean skip) {
if (manualAlphaAnimator) {
return;
}
if (currentAlpha != 1) {
if (!skip) {
long currentTime = System.currentTimeMillis();
2016-04-22 15:49:00 +02:00
long dt = currentTime - lastUpdateAlphaTime;
if (dt > 18) {
dt = 18;
}
currentAlpha += dt / 150.0f;
if (currentAlpha > 1) {
currentAlpha = 1;
2017-12-08 18:35:59 +01:00
if (crossfadeImage != null) {
recycleBitmap(null, 2);
crossfadeShader = null;
}
}
}
lastUpdateAlphaTime = System.currentTimeMillis();
if (parentView != null) {
2015-05-21 23:27:27 +02:00
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
}
}
public boolean draw(Canvas canvas) {
try {
Drawable drawable = null;
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
boolean animationNotReady = animation != null && !animation.hasBitmap();
int orientation = 0;
BitmapShader shaderToUse = null;
if (!forcePreview && currentMediaDrawable != null && !animationNotReady) {
drawable = currentMediaDrawable;
shaderToUse = mediaShader;
orientation = imageOrientation;
} else if (!forcePreview && currentImageDrawable != null && (!animationNotReady || currentMediaDrawable != null)) {
drawable = currentImageDrawable;
shaderToUse = imageShader;
orientation = imageOrientation;
animationNotReady = false;
2019-01-23 18:03:33 +01:00
} else if (crossfadeImage != null && !crossfadingWithThumb) {
2017-12-08 18:35:59 +01:00
drawable = crossfadeImage;
2019-03-03 21:40:48 +01:00
shaderToUse = crossfadeShader;
orientation = imageOrientation;
} else if (staticThumbDrawable instanceof BitmapDrawable) {
drawable = staticThumbDrawable;
shaderToUse = thumbShader;
orientation = thumbOrientation;
} else if (currentThumbDrawable != null) {
drawable = currentThumbDrawable;
shaderToUse = thumbShader;
orientation = thumbOrientation;
}
if (drawable != null) {
if (crossfadeAlpha != 0) {
if (crossfadeWithThumb && animationNotReady) {
2019-03-03 21:40:48 +01:00
drawDrawable(canvas, drawable, (int) (overrideAlpha * 255), shaderToUse, orientation);
} else {
if (crossfadeWithThumb && currentAlpha != 1.0f) {
Drawable thumbDrawable = null;
2019-03-03 21:40:48 +01:00
BitmapShader thumbShaderToUse = null;
if (drawable == currentImageDrawable || drawable == currentMediaDrawable) {
2017-12-08 18:35:59 +01:00
if (crossfadeImage != null) {
thumbDrawable = crossfadeImage;
2019-03-03 21:40:48 +01:00
thumbShaderToUse = crossfadeShader;
} else if (currentThumbDrawable != null) {
thumbDrawable = currentThumbDrawable;
thumbShaderToUse = thumbShader;
} else if (staticThumbDrawable != null) {
thumbDrawable = staticThumbDrawable;
thumbShaderToUse = thumbShader;
}
2019-03-03 21:40:48 +01:00
} else if (drawable == currentThumbDrawable || drawable == crossfadeImage) {
if (staticThumbDrawable != null) {
thumbDrawable = staticThumbDrawable;
thumbShaderToUse = thumbShader;
}
2019-03-03 21:40:48 +01:00
} else if (drawable == staticThumbDrawable) {
2019-01-23 18:03:33 +01:00
if (crossfadeImage != null) {
thumbDrawable = crossfadeImage;
2019-03-03 21:40:48 +01:00
thumbShaderToUse = crossfadeShader;
2019-01-23 18:03:33 +01:00
}
}
if (thumbDrawable != null) {
2019-03-03 21:40:48 +01:00
drawDrawable(canvas, thumbDrawable, (int) (overrideAlpha * 255), thumbShaderToUse, thumbOrientation);
2014-10-01 21:55:24 +02:00
}
}
2019-03-03 21:40:48 +01:00
drawDrawable(canvas, drawable, (int) (overrideAlpha * currentAlpha * 255), shaderToUse, orientation);
}
} else {
2019-03-03 21:40:48 +01:00
drawDrawable(canvas, drawable, (int) (overrideAlpha * 255), shaderToUse, orientation);
}
checkAlphaAnimation(animationNotReady && crossfadeWithThumb);
2014-08-29 23:06:04 +02:00
return true;
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable != null) {
drawDrawable(canvas, staticThumbDrawable, (int) (overrideAlpha * 255), null, thumbOrientation);
checkAlphaAnimation(animationNotReady);
2014-08-29 23:06:04 +02:00
return true;
} else {
checkAlphaAnimation(animationNotReady);
}
} catch (Exception e) {
2017-03-31 01:58:05 +02:00
FileLog.e(e);
}
2014-08-29 23:06:04 +02:00
return false;
}
public void setManualAlphaAnimator(boolean value) {
manualAlphaAnimator = value;
}
2017-07-08 18:32:04 +02:00
public float getCurrentAlpha() {
return currentAlpha;
}
public void setCurrentAlpha(float value) {
currentAlpha = value;
}
2019-01-23 18:03:33 +01:00
public Drawable getDrawable() {
2019-03-03 21:40:48 +01:00
if (currentMediaDrawable != null) {
return currentMediaDrawable;
} else if (currentImageDrawable != null) {
return currentImageDrawable;
} else if (currentThumbDrawable != null) {
return currentThumbDrawable;
} else if (staticThumbDrawable != null) {
return staticThumbDrawable;
2019-01-23 18:03:33 +01:00
}
return null;
}
public Bitmap getBitmap() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null && animation.hasBitmap()) {
return animation.getAnimatedBitmap();
} else if (currentMediaDrawable instanceof BitmapDrawable && !(currentMediaDrawable instanceof AnimatedFileDrawable)) {
return ((BitmapDrawable) currentMediaDrawable).getBitmap();
} else if (currentImageDrawable instanceof BitmapDrawable && !(currentImageDrawable instanceof AnimatedFileDrawable)) {
return ((BitmapDrawable) currentImageDrawable).getBitmap();
} else if (currentThumbDrawable instanceof BitmapDrawable && !(currentThumbDrawable instanceof AnimatedFileDrawable)) {
return ((BitmapDrawable) currentThumbDrawable).getBitmap();
} else if (staticThumbDrawable instanceof BitmapDrawable) {
return ((BitmapDrawable) staticThumbDrawable).getBitmap();
}
return null;
}
2018-07-30 04:07:02 +02:00
public BitmapHolder getBitmapSafe() {
Bitmap bitmap = null;
String key = null;
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null && animation.hasBitmap()) {
bitmap = animation.getAnimatedBitmap();
} else if (currentMediaDrawable instanceof BitmapDrawable && !(currentMediaDrawable instanceof AnimatedFileDrawable)) {
bitmap = ((BitmapDrawable) currentMediaDrawable).getBitmap();
key = currentMediaKey;
} else if (currentImageDrawable instanceof BitmapDrawable && !(currentImageDrawable instanceof AnimatedFileDrawable)) {
bitmap = ((BitmapDrawable) currentImageDrawable).getBitmap();
key = currentImageKey;
} else if (currentThumbDrawable instanceof BitmapDrawable && !(currentThumbDrawable instanceof AnimatedFileDrawable)) {
bitmap = ((BitmapDrawable) currentThumbDrawable).getBitmap();
2018-07-30 04:07:02 +02:00
key = currentThumbKey;
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable instanceof BitmapDrawable) {
bitmap = ((BitmapDrawable) staticThumbDrawable).getBitmap();
2018-07-30 04:07:02 +02:00
}
if (bitmap != null) {
return new BitmapHolder(bitmap, key);
}
return null;
}
public Bitmap getThumbBitmap() {
2019-03-03 21:40:48 +01:00
if (currentThumbDrawable instanceof BitmapDrawable) {
return ((BitmapDrawable) currentThumbDrawable).getBitmap();
} else if (staticThumbDrawable instanceof BitmapDrawable) {
return ((BitmapDrawable) staticThumbDrawable).getBitmap();
}
return null;
}
2018-07-30 04:07:02 +02:00
public BitmapHolder getThumbBitmapSafe() {
Bitmap bitmap = null;
String key = null;
2019-03-03 21:40:48 +01:00
if (currentThumbDrawable instanceof BitmapDrawable) {
bitmap = ((BitmapDrawable) currentThumbDrawable).getBitmap();
2018-07-30 04:07:02 +02:00
key = currentThumbKey;
2019-03-03 21:40:48 +01:00
} else if (staticThumbDrawable instanceof BitmapDrawable) {
bitmap = ((BitmapDrawable) staticThumbDrawable).getBitmap();
2018-07-30 04:07:02 +02:00
}
if (bitmap != null) {
return new BitmapHolder(bitmap, key);
}
return null;
}
public int getBitmapWidth() {
2019-05-14 14:08:05 +02:00
Drawable drawable = getDrawable();
if (drawable instanceof LottieDrawable) {
return drawable.getIntrinsicWidth();
}
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null) {
return imageOrientation % 360 == 0 || imageOrientation % 360 == 180 ? animation.getIntrinsicWidth() : animation.getIntrinsicHeight();
}
Bitmap bitmap = getBitmap();
2017-07-08 18:32:04 +02:00
if (bitmap == null) {
2019-03-03 21:40:48 +01:00
if (staticThumbDrawable != null) {
return staticThumbDrawable.getIntrinsicWidth();
2017-07-08 18:32:04 +02:00
}
return 1;
}
2019-03-03 21:40:48 +01:00
return imageOrientation % 360 == 0 || imageOrientation % 360 == 180 ? bitmap.getWidth() : bitmap.getHeight();
}
public int getBitmapHeight() {
2019-05-14 14:08:05 +02:00
Drawable drawable = getDrawable();
if (drawable instanceof LottieDrawable) {
return drawable.getIntrinsicHeight();
}
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null) {
return imageOrientation % 360 == 0 || imageOrientation % 360 == 180 ? animation.getIntrinsicHeight() : animation.getIntrinsicWidth();
}
Bitmap bitmap = getBitmap();
2017-07-08 18:32:04 +02:00
if (bitmap == null) {
2019-03-03 21:40:48 +01:00
if (staticThumbDrawable != null) {
return staticThumbDrawable.getIntrinsicHeight();
2017-07-08 18:32:04 +02:00
}
return 1;
}
2019-03-03 21:40:48 +01:00
return imageOrientation % 360 == 0 || imageOrientation % 360 == 180 ? bitmap.getHeight() : bitmap.getWidth();
}
public void setVisible(boolean value, boolean invalidate) {
if (isVisible == value) {
return;
}
isVisible = value;
2014-06-12 21:55:13 +02:00
if (invalidate && parentView != null) {
2015-05-21 23:27:27 +02:00
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
}
}
}
public boolean getVisible() {
return isVisible;
}
2015-01-02 23:15:07 +01:00
public void setAlpha(float value) {
overrideAlpha = value;
}
public void setCrossfadeAlpha(byte value) {
crossfadeAlpha = value;
2015-01-02 23:15:07 +01:00
}
2019-03-03 21:40:48 +01:00
public boolean hasImageSet() {
return currentImageDrawable != null || currentMediaDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentImageKey != null || currentMediaKey != null;
}
public boolean hasBitmapImage() {
2019-03-03 21:40:48 +01:00
return currentImageDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentMediaDrawable != null;
}
2018-07-30 04:07:02 +02:00
public boolean hasNotThumb() {
2019-03-03 21:40:48 +01:00
return currentImageDrawable != null || currentMediaDrawable != null;
2018-07-30 04:07:02 +02:00
}
2019-02-08 03:30:32 +01:00
public boolean hasStaticThumb() {
2019-03-03 21:40:48 +01:00
return staticThumbDrawable != null;
2019-02-08 03:30:32 +01:00
}
public void setAspectFit(boolean value) {
isAspectFit = value;
}
2019-02-08 03:30:32 +01:00
public boolean isAspectFit() {
return isAspectFit;
}
public void setParentView(View view) {
parentView = view;
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null) {
animation.setParentView(parentView);
}
}
2017-12-08 18:35:59 +01:00
public void setImageX(int x) {
imageX = x;
}
2017-03-31 01:58:05 +02:00
public void setImageY(int y) {
imageY = y;
}
2017-12-08 18:35:59 +01:00
public void setImageWidth(int width) {
imageW = width;
}
public void setImageCoords(int x, int y, int width, int height) {
imageX = x;
imageY = y;
imageW = width;
imageH = height;
}
2019-05-14 14:08:05 +02:00
public void setSideClip(float value) {
sideClip = value;
}
2017-07-08 18:32:04 +02:00
public float getCenterX() {
return imageX + imageW / 2.0f;
}
public float getCenterY() {
return imageY + imageH / 2.0f;
}
public int getImageX() {
return imageX;
}
2015-04-09 20:00:14 +02:00
public int getImageX2() {
return imageX + imageW;
}
public int getImageY() {
return imageY;
}
2015-04-09 20:00:14 +02:00
public int getImageY2() {
return imageY + imageH;
}
public int getImageWidth() {
return imageW;
}
public int getImageHeight() {
return imageH;
}
2019-01-23 18:03:33 +01:00
public float getImageAspectRatio() {
2019-05-14 14:08:05 +02:00
return imageOrientation % 180 != 0 ? drawRegion.height() / drawRegion.width() : drawRegion.width() / drawRegion.height();
2019-01-23 18:03:33 +01:00
}
2015-05-21 23:27:27 +02:00
public String getExt() {
return currentExt;
}
public boolean isInsideImage(float x, float y) {
return x >= imageX && x <= imageX + imageW && y >= imageY && y <= imageY + imageH;
}
2019-05-14 14:08:05 +02:00
public RectF getDrawRegion() {
return drawRegion;
}
2019-03-03 21:40:48 +01:00
public String getImageKey() {
return currentImageKey;
2015-02-01 19:51:02 +01:00
}
2019-03-03 21:40:48 +01:00
public String getMediaKey() {
return currentMediaKey;
}
2015-02-01 19:51:02 +01:00
public String getThumbKey() {
return currentThumbKey;
}
public int getSize() {
return currentSize;
}
2019-05-14 14:08:05 +02:00
public ImageLocation getMediaLocation() {
2019-03-03 21:40:48 +01:00
return currentMediaLocation;
}
2019-05-14 14:08:05 +02:00
public ImageLocation getImageLocation() {
2015-02-01 19:51:02 +01:00
return currentImageLocation;
}
2019-05-14 14:08:05 +02:00
public ImageLocation getThumbLocation() {
2015-02-01 19:51:02 +01:00
return currentThumbLocation;
}
2019-05-14 14:08:05 +02:00
public String getMediaFilter() {
return currentMediaFilter;
}
public String getImageFilter() {
return currentImageFilter;
}
public String getThumbFilter() {
return currentThumbFilter;
}
public int getCacheType() {
return currentCacheType;
}
public void setForcePreview(boolean value) {
forcePreview = value;
}
2014-10-21 22:35:16 +02:00
public void setForceCrossfade(boolean value) {
forceCrossfade = value;
}
2015-02-01 19:51:02 +01:00
public boolean isForcePreview() {
return forcePreview;
}
2014-10-21 22:35:16 +02:00
public void setRoundRadius(int value) {
roundRadius = value;
}
2014-11-17 03:44:57 +01:00
2018-07-30 04:07:02 +02:00
public void setCurrentAccount(int value) {
currentAccount = value;
}
2014-11-17 03:44:57 +01:00
public int getRoundRadius() {
return roundRadius;
}
2015-02-01 19:51:02 +01:00
2019-01-23 18:03:33 +01:00
public Object getParentObject() {
return currentParentObject;
2015-02-01 19:51:02 +01:00
}
public void setNeedsQualityThumb(boolean value) {
needsQualityThumb = value;
}
2019-03-03 21:40:48 +01:00
public void setQualityThumbDocument(TLRPC.Document document) {
qulityThumbDocument = document;
}
public TLRPC.Document getQulityThumbDocument() {
return qulityThumbDocument;
}
2017-12-08 18:35:59 +01:00
public void setCrossfadeWithOldImage(boolean value) {
crossfadeWithOldImage = value;
}
2015-02-01 19:51:02 +01:00
public boolean isNeedsQualityThumb() {
return needsQualityThumb;
}
2019-01-23 18:03:33 +01:00
public boolean isCurrentKeyQuality() {
return currentKeyQuality;
}
2019-02-08 03:30:32 +01:00
public int getCurrentAccount() {
2018-07-30 04:07:02 +02:00
return currentAccount;
}
2015-02-01 19:51:02 +01:00
public void setShouldGenerateQualityThumb(boolean value) {
shouldGenerateQualityThumb = value;
}
public boolean isShouldGenerateQualityThumb() {
return shouldGenerateQualityThumb;
}
public void setAllowStartAnimation(boolean value) {
allowStartAnimation = value;
}
2017-07-08 18:32:04 +02:00
public void setAllowDecodeSingleFrame(boolean value) {
allowDecodeSingleFrame = value;
}
2019-05-14 14:08:05 +02:00
public void setUseSharedAnimationQueue(boolean value) {
useSharedAnimationQueue = value;
}
public boolean isAllowStartAnimation() {
return allowStartAnimation;
}
public void startAnimation() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null) {
2019-05-14 14:08:05 +02:00
animation.setUseSharedQueue(useSharedAnimationQueue);
2019-03-03 21:40:48 +01:00
animation.start();
}
}
public void stopAnimation() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
if (animation != null) {
animation.stop();
}
}
public boolean isAnimationRunning() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animation = getAnimation();
return animation != null && animation.isRunning();
}
public AnimatedFileDrawable getAnimation() {
2019-03-03 21:40:48 +01:00
AnimatedFileDrawable animatedFileDrawable;
if (currentMediaDrawable instanceof AnimatedFileDrawable) {
return (AnimatedFileDrawable) currentMediaDrawable;
} else if (currentImageDrawable instanceof AnimatedFileDrawable) {
return (AnimatedFileDrawable) currentImageDrawable;
} else if (currentThumbDrawable instanceof AnimatedFileDrawable) {
return (AnimatedFileDrawable) currentThumbDrawable;
} else if (staticThumbDrawable instanceof AnimatedFileDrawable) {
return (AnimatedFileDrawable) staticThumbDrawable;
}
return null;
}
2019-03-03 21:40:48 +01:00
protected int getTag(int type) {
if (type == TYPE_THUMB) {
2015-02-01 19:51:02 +01:00
return thumbTag;
2019-03-03 21:40:48 +01:00
} else if (type == TYPE_MEDIA) {
return mediaTag;
2015-02-01 19:51:02 +01:00
} else {
2019-03-03 21:40:48 +01:00
return imageTag;
2015-02-01 19:51:02 +01:00
}
}
2019-03-03 21:40:48 +01:00
protected void setTag(int value, int type) {
if (type == TYPE_THUMB) {
2015-02-01 19:51:02 +01:00
thumbTag = value;
2019-03-03 21:40:48 +01:00
} else if (type == TYPE_MEDIA) {
mediaTag = value;
2015-02-01 19:51:02 +01:00
} else {
2019-03-03 21:40:48 +01:00
imageTag = value;
2015-02-01 19:51:02 +01:00
}
}
2017-12-08 18:35:59 +01:00
public void setParam(int value) {
param = value;
}
public int getParam() {
return param;
}
2019-05-14 14:08:05 +02:00
protected boolean setImageBitmapByKey(Drawable drawable, String key, int type, boolean memCache) {
if (drawable == null || key == null) {
return false;
2015-02-01 19:51:02 +01:00
}
2019-03-03 21:40:48 +01:00
if (type == TYPE_IMAGE) {
if (!key.equals(currentImageKey)) {
return false;
}
2019-05-14 14:08:05 +02:00
if (!(drawable instanceof AnimatedFileDrawable)) {
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().incrementUseCount(currentImageKey);
2015-02-01 19:51:02 +01:00
}
2019-05-14 14:08:05 +02:00
currentImageDrawable = drawable;
if (drawable instanceof ExtendedBitmapDrawable) {
imageOrientation = ((ExtendedBitmapDrawable) drawable).getOrientation();
2019-01-23 18:03:33 +01:00
}
2019-05-14 14:08:05 +02:00
if (roundRadius != 0 && drawable instanceof BitmapDrawable) {
if (drawable instanceof AnimatedFileDrawable) {
AnimatedFileDrawable animatedFileDrawable = (AnimatedFileDrawable) drawable;
animatedFileDrawable.setRoundRadius(roundRadius);
2016-04-22 15:49:00 +02:00
} else {
2019-05-14 14:08:05 +02:00
BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
imageShader = new BitmapShader(bitmapDrawable.getBitmap(), Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
2016-04-22 15:49:00 +02:00
}
} else {
2019-03-03 21:40:48 +01:00
imageShader = null;
2015-02-01 19:51:02 +01:00
}
if (!memCache && !forcePreview || forceCrossfade) {
2019-03-03 21:40:48 +01:00
boolean allowCorssfade = true;
if (currentMediaDrawable instanceof AnimatedFileDrawable && ((AnimatedFileDrawable) currentMediaDrawable).hasBitmap()) {
allowCorssfade = false;
}
if (allowCorssfade && (currentThumbDrawable == null && staticThumbDrawable == null || currentAlpha == 1.0f || forceCrossfade)) {
currentAlpha = 0.0f;
lastUpdateAlphaTime = System.currentTimeMillis();
2019-03-03 21:40:48 +01:00
crossfadeWithThumb = crossfadeImage != null || currentThumbDrawable != null || staticThumbDrawable != null;
}
} else {
currentAlpha = 1.0f;
}
2019-03-03 21:40:48 +01:00
} else if (type == TYPE_MEDIA) {
if (!key.equals(currentMediaKey)) {
return false;
}
2019-05-14 14:08:05 +02:00
if (!(drawable instanceof AnimatedFileDrawable)) {
2019-03-03 21:40:48 +01:00
ImageLoader.getInstance().incrementUseCount(currentMediaKey);
}
2019-05-14 14:08:05 +02:00
currentMediaDrawable = drawable;
if (roundRadius != 0 && drawable instanceof BitmapDrawable) {
if (drawable instanceof AnimatedFileDrawable) {
AnimatedFileDrawable animatedFileDrawable = (AnimatedFileDrawable) drawable;
animatedFileDrawable.setRoundRadius(roundRadius);
2017-07-08 18:32:04 +02:00
} else {
2019-05-14 14:08:05 +02:00
BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
mediaShader = new BitmapShader(bitmapDrawable.getBitmap(), Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
}
2019-03-03 21:40:48 +01:00
} else {
mediaShader = null;
}
2019-03-03 21:40:48 +01:00
if (currentImageDrawable == null) {
if (!memCache && !forcePreview || forceCrossfade) {
if (currentThumbDrawable == null && staticThumbDrawable == null || currentAlpha == 1.0f || forceCrossfade) {
currentAlpha = 0.0f;
lastUpdateAlphaTime = System.currentTimeMillis();
crossfadeWithThumb = crossfadeImage != null || currentThumbDrawable != null || staticThumbDrawable != null;
}
2015-05-21 23:27:27 +02:00
} else {
2019-03-03 21:40:48 +01:00
currentAlpha = 1.0f;
}
}
} else if (type == TYPE_THUMB) {
if (currentThumbDrawable != null) {
return false;
}
if (!forcePreview) {
AnimatedFileDrawable animation = getAnimation();
if (animation != null && animation.hasBitmap()) {
return false;
}
if (currentImageDrawable != null && !(currentImageDrawable instanceof AnimatedFileDrawable) || currentMediaDrawable != null && !(currentMediaDrawable instanceof AnimatedFileDrawable)) {
return false;
2015-05-21 23:27:27 +02:00
}
2015-02-01 19:51:02 +01:00
}
2019-01-23 18:03:33 +01:00
if (!key.equals(currentThumbKey)) {
return false;
2015-02-01 19:51:02 +01:00
}
ImageLoader.getInstance().incrementUseCount(currentThumbKey);
2019-05-14 14:08:05 +02:00
currentThumbDrawable = drawable;
if (drawable instanceof ExtendedBitmapDrawable) {
thumbOrientation = ((ExtendedBitmapDrawable) drawable).getOrientation();
2019-01-23 18:03:33 +01:00
}
2019-05-14 14:08:05 +02:00
if (roundRadius != 0 && drawable instanceof BitmapDrawable) {
if (drawable instanceof AnimatedFileDrawable) {
AnimatedFileDrawable animatedFileDrawable = (AnimatedFileDrawable) drawable;
animatedFileDrawable.setRoundRadius(roundRadius);
2016-04-22 15:49:00 +02:00
} else {
2019-05-14 14:08:05 +02:00
BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable;
thumbShader = new BitmapShader(bitmapDrawable.getBitmap(), Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
2016-04-22 15:49:00 +02:00
}
} else {
2019-03-03 21:40:48 +01:00
thumbShader = null;
2016-04-22 15:49:00 +02:00
}
if (!memCache && crossfadeAlpha != 2) {
2019-01-23 18:03:33 +01:00
if (currentParentObject instanceof MessageObject && ((MessageObject) currentParentObject).isRoundVideo() && ((MessageObject) currentParentObject).isSending()) {
2017-07-08 18:32:04 +02:00
currentAlpha = 1.0f;
} else {
currentAlpha = 0.0f;
lastUpdateAlphaTime = System.currentTimeMillis();
2019-03-03 21:40:48 +01:00
crossfadeWithThumb = staticThumbDrawable != null && currentImageKey == null && currentMediaKey == null;
2017-07-08 18:32:04 +02:00
}
} else {
currentAlpha = 1.0f;
}
2019-03-03 21:40:48 +01:00
}
2019-05-14 14:08:05 +02:00
if (drawable instanceof AnimatedFileDrawable) {
AnimatedFileDrawable fileDrawable = (AnimatedFileDrawable) drawable;
2019-03-03 21:40:48 +01:00
fileDrawable.setParentView(parentView);
2019-05-14 14:08:05 +02:00
fileDrawable.setUseSharedQueue(useSharedAnimationQueue);
2019-03-03 21:40:48 +01:00
if (allowStartAnimation) {
fileDrawable.start();
}
fileDrawable.setAllowDecodeSingleFrame(allowDecodeSingleFrame);
}
if (parentView != null) {
if (invalidateAll) {
parentView.invalidate();
} else {
parentView.invalidate(imageX, imageY, imageX + imageW, imageY + imageH);
2015-02-01 19:51:02 +01:00
}
}
if (delegate != null) {
2019-03-03 21:40:48 +01:00
delegate.didSetImage(this, currentImageDrawable != null || currentThumbDrawable != null || staticThumbDrawable != null || currentMediaDrawable != null, currentImageDrawable == null && currentMediaDrawable == null);
2015-02-01 19:51:02 +01:00
}
return true;
2015-02-01 19:51:02 +01:00
}
2017-12-08 18:35:59 +01:00
private void recycleBitmap(String newKey, int type) {
2015-02-01 19:51:02 +01:00
String key;
Drawable image;
2019-03-03 21:40:48 +01:00
if (type == TYPE_MEDIA) {
key = currentMediaKey;
image = currentMediaDrawable;
} else if (type == TYPE_CROSSFDADE) {
2017-12-08 18:35:59 +01:00
key = crossfadeKey;
image = crossfadeImage;
2019-03-03 21:40:48 +01:00
} else if (type == TYPE_THUMB) {
2015-02-01 19:51:02 +01:00
key = currentThumbKey;
2019-03-03 21:40:48 +01:00
image = currentThumbDrawable;
2015-02-01 19:51:02 +01:00
} else {
2019-03-03 21:40:48 +01:00
key = currentImageKey;
image = currentImageDrawable;
2015-02-01 19:51:02 +01:00
}
2018-07-30 04:07:02 +02:00
if (key != null && key.startsWith("-")) {
String replacedKey = ImageLoader.getInstance().getReplacedKey(key);
if (replacedKey != null) {
key = replacedKey;
}
}
String replacedKey = ImageLoader.getInstance().getReplacedKey(key);
if (key != null && (newKey == null || !newKey.equals(key)) && image != null) {
if (image instanceof AnimatedFileDrawable) {
AnimatedFileDrawable fileDrawable = (AnimatedFileDrawable) image;
fileDrawable.recycle();
} else if (image instanceof BitmapDrawable) {
Bitmap bitmap = ((BitmapDrawable) image).getBitmap();
boolean canDelete = ImageLoader.getInstance().decrementUseCount(key);
if (!ImageLoader.getInstance().isInCache(key)) {
if (canDelete) {
bitmap.recycle();
}
2015-09-24 22:52:02 +02:00
}
2015-02-01 19:51:02 +01:00
}
}
2019-03-03 21:40:48 +01:00
if (type == TYPE_MEDIA) {
currentMediaKey = null;
currentMediaDrawable = null;
} else if (type == TYPE_CROSSFDADE) {
2017-12-08 18:35:59 +01:00
crossfadeKey = null;
crossfadeImage = null;
2019-03-03 21:40:48 +01:00
} else if (type == TYPE_THUMB) {
currentThumbDrawable = null;
2015-02-01 19:51:02 +01:00
currentThumbKey = null;
} else {
2019-03-03 21:40:48 +01:00
currentImageDrawable = null;
currentImageKey = null;
2015-02-01 19:51:02 +01:00
}
}
@Override
2018-07-30 04:07:02 +02:00
public void didReceivedNotification(int id, int account, Object... args) {
2019-01-23 18:03:33 +01:00
if (id == NotificationCenter.didReplacedPhotoInMemCache) {
String oldKey = (String) args[0];
2019-03-03 21:40:48 +01:00
if (currentMediaKey != null && currentMediaKey.equals(oldKey)) {
currentMediaKey = (String) args[1];
2019-05-14 14:08:05 +02:00
currentMediaLocation = (ImageLocation) args[2];
2019-03-03 21:40:48 +01:00
if (setImageBackup != null) {
2019-05-14 14:08:05 +02:00
setImageBackup.mediaLocation = (ImageLocation) args[2];
2019-03-03 21:40:48 +01:00
}
}
if (currentImageKey != null && currentImageKey.equals(oldKey)) {
currentImageKey = (String) args[1];
2019-05-14 14:08:05 +02:00
currentImageLocation = (ImageLocation) args[2];
2019-03-03 21:40:48 +01:00
if (setImageBackup != null) {
2019-05-14 14:08:05 +02:00
setImageBackup.imageLocation = (ImageLocation) args[2];
2019-03-03 21:40:48 +01:00
}
}
if (currentThumbKey != null && currentThumbKey.equals(oldKey)) {
currentThumbKey = (String) args[1];
2019-05-14 14:08:05 +02:00
currentThumbLocation = (ImageLocation) args[2];
2019-03-03 21:40:48 +01:00
if (setImageBackup != null) {
2019-05-14 14:08:05 +02:00
setImageBackup.thumbLocation = (ImageLocation) args[2];
2015-02-01 19:51:02 +01:00
}
}
}
}
}