FairEmail/app/src/main/java/eu/faircode/email/AdapterImage.java

454 lines
18 KiB
Java
Raw Normal View History

2019-01-06 09:23:57 +00:00
package eu.faircode.email;
/*
This file is part of FairEmail.
FairEmail is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FairEmail 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 FairEmail. If not, see <http://www.gnu.org/licenses/>.
2024-01-01 07:50:49 +00:00
Copyright 2018-2024 by Marcel Bokhorst (M66B)
2019-01-06 09:23:57 +00:00
*/
import android.content.Context;
2023-09-30 05:37:05 +00:00
import android.content.SharedPreferences;
import android.graphics.Bitmap;
2022-03-04 07:16:37 +00:00
import android.graphics.BitmapFactory;
2023-10-14 11:47:57 +00:00
import android.graphics.Canvas;
import android.graphics.Color;
2022-03-04 09:09:51 +00:00
import android.graphics.drawable.BitmapDrawable;
2022-01-11 11:30:35 +00:00
import android.graphics.drawable.Drawable;
2023-10-14 11:47:57 +00:00
import android.graphics.pdf.PdfRenderer;
2022-01-11 11:30:35 +00:00
import android.os.Build;
2019-01-06 11:13:35 +00:00
import android.os.Bundle;
2023-10-14 11:47:57 +00:00
import android.os.ParcelFileDescriptor;
2019-01-06 11:13:35 +00:00
import android.text.TextUtils;
2019-01-06 09:23:57 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleObserver;
2019-01-06 09:23:57 +00:00
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.OnLifecycleEvent;
2023-09-30 05:37:05 +00:00
import androidx.preference.PreferenceManager;
2019-01-06 09:23:57 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
2022-03-04 07:16:37 +00:00
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2019-01-06 09:23:57 +00:00
public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder> {
private Fragment parentFragment;
2023-10-14 15:33:23 +00:00
private final Context context;
private final LayoutInflater inflater;
private final LifecycleOwner owner;
2019-01-06 09:23:57 +00:00
2019-03-15 11:53:22 +00:00
private List<EntityAttachment> items = new ArrayList<>();
2019-01-06 09:23:57 +00:00
2023-10-14 11:47:57 +00:00
private static final int PDF_WIDTH = 120;
2020-01-10 18:51:07 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
2023-10-14 15:33:23 +00:00
private final View view;
private final ImageView ivImage;
private final TextView tvCaption;
private final TextView tvProperties;
2019-01-06 09:23:57 +00:00
ViewHolder(View itemView) {
super(itemView);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2019-05-13 18:54:02 +00:00
ivImage = itemView.findViewById(R.id.ivImage);
tvCaption = itemView.findViewById(R.id.tvCaption);
2022-03-04 07:16:37 +00:00
tvProperties = itemView.findViewById(R.id.tvProperties);
2019-01-06 09:23:57 +00:00
}
2019-01-06 11:13:35 +00:00
private void wire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(this);
2020-01-10 18:51:07 +00:00
view.setOnLongClickListener(this);
2019-01-06 11:13:35 +00:00
}
private void unwire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(null);
2020-01-10 18:51:07 +00:00
view.setOnLongClickListener(null);
2019-01-06 11:13:35 +00:00
}
2019-01-06 09:23:57 +00:00
private void bindTo(EntityAttachment attachment) {
2022-01-11 12:03:04 +00:00
tvCaption.setText(attachment.name);
tvCaption.setVisibility(TextUtils.isEmpty(attachment.name) ? View.GONE : View.VISIBLE);
2022-03-04 07:16:37 +00:00
tvProperties.setVisibility(View.GONE);
2022-01-11 12:03:04 +00:00
2019-01-06 09:23:57 +00:00
if (attachment.available) {
2022-03-04 07:16:37 +00:00
Bundle args = new Bundle();
args.putSerializable("file", attachment.getFile(context));
args.putString("type", attachment.getMimeType());
args.putInt("max", context.getResources().getDisplayMetrics().widthPixels);
2022-03-04 09:09:51 +00:00
new SimpleTask<Drawable>() {
2022-03-04 07:16:37 +00:00
@Override
protected void onPreExecute(Bundle args) {
ivImage.setImageResource(R.drawable.twotone_hourglass_top_24);
2022-01-11 11:30:35 +00:00
}
2022-03-04 07:16:37 +00:00
@Override
2022-03-04 09:09:51 +00:00
protected Drawable onExecute(Context context, Bundle args) throws Throwable {
2022-03-04 07:16:37 +00:00
File file = (File) args.getSerializable("file");
String type = args.getString("type");
int max = args.getInt("max");
2023-10-14 11:47:57 +00:00
if ("application/pdf".equals(type)) {
2023-10-14 15:30:17 +00:00
// https://developer.android.com/reference/android/graphics/pdf/PdfRenderer
2023-10-14 11:47:57 +00:00
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY)) {
try (PdfRenderer pdf = new PdfRenderer(pfd)) {
try (PdfRenderer.Page page = pdf.openPage(0)) {
int width = Helper.dp2pixels(context, PDF_WIDTH);
int height = (int) ((float) width / page.getWidth() * page.getHeight());
Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bm);
canvas.drawColor(Color.WHITE);
page.render(bm, null, null, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY);
return new BitmapDrawable(context.getResources(), bm);
}
}
2023-10-14 15:30:17 +00:00
} catch (Throwable ex) {
Log.w(ex);
return null;
2023-10-14 11:47:57 +00:00
}
} else {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean webp = prefs.getBoolean("webp", true);
2023-09-30 05:37:05 +00:00
2023-10-14 11:47:57 +00:00
if ("image/webp".equalsIgnoreCase(type) && !webp) {
args.putBoolean("nowebp", true);
return null;
2022-03-04 09:25:02 +00:00
}
2022-03-04 07:16:37 +00:00
2023-10-14 11:47:57 +00:00
args.putLong("size", file.length());
2022-03-04 07:16:37 +00:00
try {
2023-10-14 11:47:57 +00:00
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
args.putInt("width", options.outWidth);
args.putInt("height", options.outHeight);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (options.outColorSpace != null)
args.putString("color", options.outColorSpace.getModel().name());
if (options.outConfig != null)
args.putString("config", options.outConfig.name());
}
2022-03-04 07:16:37 +00:00
} catch (Throwable ex) {
Log.w(ex);
}
2023-10-14 11:47:57 +00:00
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P &&
!"image/svg+xml".equals(type) &&
!"svg".equals(Helper.getExtension(file.getName())))
try {
return ImageHelper.getScaledDrawable(context, file, type, max);
} catch (Throwable ex) {
Log.w(ex);
}
Bitmap bm = ImageHelper.decodeImage(file, type, max);
if (bm == null)
return null;
return new BitmapDrawable(context.getResources(), bm);
}
2022-03-04 07:16:37 +00:00
}
@Override
2022-03-04 09:09:51 +00:00
protected void onExecuted(Bundle args, Drawable image) {
if (image == null)
2023-09-30 05:37:05 +00:00
if (args.getBoolean("nowebp"))
ivImage.setImageResource(R.drawable.twotone_warning_24);
else
ivImage.setImageResource(R.drawable.twotone_broken_image_24);
2022-03-04 09:09:51 +00:00
else
ivImage.setImageDrawable(image);
2022-03-04 07:16:37 +00:00
ImageHelper.animate(context, image);
2022-03-04 07:16:37 +00:00
2022-03-04 07:26:25 +00:00
StringBuilder sb = new StringBuilder();
2022-03-04 07:16:37 +00:00
int width = args.getInt("width");
int height = args.getInt("height");
2022-03-04 07:26:25 +00:00
if (width > 0 && height > 0)
2022-03-04 09:48:48 +00:00
sb.append(width)
.append("\u00d7") // ×
.append(height);
2022-03-04 07:26:25 +00:00
2022-03-04 09:30:13 +00:00
if (BuildConfig.DEBUG) {
String color = args.getString("color");
if (color != null) {
if (sb.length() > 0)
sb.append(' ');
sb.append(color);
}
2022-03-04 09:25:02 +00:00
2022-03-04 09:30:13 +00:00
String config = args.getString("config");
if (config != null) {
if (sb.length() > 0)
sb.append(' ');
sb.append(config);
}
2022-03-04 09:29:51 +00:00
}
2022-03-04 07:26:25 +00:00
long size = args.getLong("size");
if (size > 0) {
if (sb.length() > 0)
2022-03-04 09:48:48 +00:00
sb.append(" \u2013 "); //
2022-03-04 07:26:25 +00:00
sb.append(Helper.humanReadableByteCount(size));
}
if (sb.length() > 0) {
tvProperties.setText(sb);
2022-03-04 07:16:37 +00:00
tvProperties.setVisibility(View.VISIBLE);
}
}
@Override
protected void onException(Bundle args, Throwable ex) {
tvCaption.setText(Log.formatThrowable(ex));
tvCaption.setVisibility(View.VISIBLE);
ivImage.setImageResource(R.drawable.twotone_broken_image_24);
}
}.execute(context, owner, args, "image:load");
2019-03-25 18:02:24 +00:00
} else
2019-05-13 18:54:02 +00:00
ivImage.setImageResource(attachment.progress == null
2020-09-28 11:28:49 +00:00
? R.drawable.twotone_image_24 : R.drawable.twotone_hourglass_top_24);
2019-01-06 09:23:57 +00:00
}
2019-01-06 11:13:35 +00:00
@Override
public void onClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return;
2019-03-15 11:53:22 +00:00
EntityAttachment attachment = items.get(pos);
2020-01-08 08:06:30 +00:00
if (attachment.available)
2022-11-02 17:45:14 +00:00
try {
Helper.share(context, attachment.getFile(context), attachment.getMimeType(), attachment.name);
} catch (Throwable ex) {
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
}
2020-01-08 08:06:30 +00:00
else {
2019-01-06 11:13:35 +00:00
if (attachment.progress == null) {
Bundle args = new Bundle();
args.putLong("id", attachment.id);
args.putLong("message", attachment.message);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
2019-10-05 10:42:04 +00:00
long mid = args.getLong("message");
2019-01-06 11:13:35 +00:00
2022-01-14 19:49:25 +00:00
Long reload = null;
2019-01-06 11:13:35 +00:00
DB db = DB.getInstance(context);
try {
db.beginTransaction();
2019-10-05 10:42:04 +00:00
EntityMessage message = db.message().getMessage(mid);
if (message == null)
2019-10-05 10:42:04 +00:00
return null;
2019-01-06 11:13:35 +00:00
2022-01-17 12:33:40 +00:00
EntityAccount account = db.account().getAccount(message.account);
2022-01-14 19:49:25 +00:00
if (account == null)
return null;
if (account.protocol == EntityAccount.TYPE_IMAP && message.uid == null)
return null;
2022-01-15 13:37:05 +00:00
if (!"connected".equals(account.state) && !account.isTransient(context))
2022-01-14 19:49:25 +00:00
reload = account.id;
2019-10-05 10:42:04 +00:00
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null || attachment.progress != null || attachment.available)
return null;
EntityOperation.queue(context, message, EntityOperation.ATTACHMENT, id);
2019-01-06 11:13:35 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2022-01-14 19:49:25 +00:00
if (reload == null)
ServiceSynchronize.eval(context, "image");
else
ServiceSynchronize.reload(context, reload, true, "image");
return null;
2021-03-25 08:36:45 +00:00
}
2019-01-06 11:13:35 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
2019-12-06 07:50:46 +00:00
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
2019-01-06 11:13:35 +00:00
}
2019-01-12 13:15:15 +00:00
}.execute(context, owner, args, "image:fetch");
2019-01-06 11:13:35 +00:00
}
}
}
2020-01-10 18:51:07 +00:00
@Override
public boolean onLongClick(View v) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return false;
EntityAttachment attachment = items.get(pos);
if (!attachment.available)
return false;
2023-02-03 18:20:54 +00:00
((FragmentBase) parentFragment).onStoreAttachment(attachment);
2020-01-10 18:51:07 +00:00
return true;
}
2019-01-06 09:23:57 +00:00
}
AdapterImage(Fragment parentFragment) {
this.parentFragment = parentFragment;
this.context = parentFragment.getContext();
this.owner = parentFragment.getViewLifecycleOwner();
2019-01-06 09:23:57 +00:00
this.inflater = LayoutInflater.from(context);
2019-01-06 09:23:57 +00:00
setHasStableIds(true);
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
2019-12-07 16:02:42 +00:00
Log.d(AdapterImage.this + " parent destroyed");
AdapterImage.this.parentFragment = null;
2021-09-28 08:18:20 +00:00
owner.getLifecycle().removeObserver(this);
}
});
2019-01-06 09:23:57 +00:00
}
public void set(@NonNull List<EntityAttachment> attachments) {
Log.i("Set images=" + attachments.size());
Collections.sort(attachments, new Comparator<EntityAttachment>() {
@Override
public int compare(EntityAttachment a1, EntityAttachment a2) {
return a1.sequence.compareTo(a2.sequence);
}
});
2019-03-15 11:53:22 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, attachments), false);
2019-01-06 09:23:57 +00:00
2019-03-15 11:53:22 +00:00
items = attachments;
2019-01-06 09:23:57 +00:00
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Inserted @" + position + " #" + count);
2019-01-06 09:23:57 +00:00
}
@Override
public void onRemoved(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Removed @" + position + " #" + count);
2019-01-06 09:23:57 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2019-12-07 16:02:42 +00:00
Log.d("Moved " + fromPosition + ">" + toPosition);
2019-01-06 09:23:57 +00:00
}
@Override
public void onChanged(int position, int count, Object payload) {
2019-12-07 16:02:42 +00:00
Log.d("Changed @" + position + " #" + count);
2019-01-06 09:23:57 +00:00
}
});
2022-03-23 17:19:14 +00:00
try {
diff.dispatchUpdatesTo(this);
} catch (Throwable ex) {
Log.e(ex);
}
2019-01-06 09:23:57 +00:00
}
2020-12-30 18:29:20 +00:00
private static class DiffCallback extends DiffUtil.Callback {
2023-10-14 15:33:23 +00:00
private final List<EntityAttachment> prev = new ArrayList<>();
private final List<EntityAttachment> next = new ArrayList<>();
2019-01-06 09:23:57 +00:00
2019-02-10 18:02:55 +00:00
DiffCallback(List<EntityAttachment> prev, List<EntityAttachment> next) {
2019-03-15 11:53:22 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
2019-01-06 09:23:57 +00:00
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
return a1.id.equals(a2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
2019-03-15 11:53:22 +00:00
return items.get(position).id;
2019-01-06 09:23:57 +00:00
}
@Override
public int getItemCount() {
2019-03-15 11:53:22 +00:00
return items.size();
2019-01-06 09:23:57 +00:00
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new ViewHolder(inflater.inflate(R.layout.item_image, parent, false));
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
2019-01-06 11:13:35 +00:00
holder.unwire();
2019-03-15 11:53:22 +00:00
EntityAttachment attachment = items.get(position);
2019-01-06 09:23:57 +00:00
holder.bindTo(attachment);
2019-01-06 11:13:35 +00:00
holder.wire();
2019-01-06 09:23:57 +00:00
}
2022-03-04 09:09:51 +00:00
@Override
public void onViewRecycled(@NonNull AdapterImage.ViewHolder holder) {
holder.ivImage.setImageDrawable(null);
}
2019-01-06 09:23:57 +00:00
}