Conversations/src/eu/siacs/conversations/persistance/FileBackend.java

202 lines
5.8 KiB
Java
Raw Normal View History

2014-04-05 15:06:10 -04:00
package eu.siacs.conversations.persistance;
2014-04-18 19:14:30 -04:00
import java.io.File;
2014-05-13 10:48:39 -04:00
import java.io.FileInputStream;
2014-04-05 15:06:10 -04:00
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
2014-04-18 19:14:30 -04:00
import android.util.Log;
import android.util.LruCache;
2014-05-14 12:32:58 -04:00
import eu.siacs.conversations.R;
2014-04-05 15:06:10 -04:00
import eu.siacs.conversations.entities.Conversation;
2014-04-06 09:34:08 -04:00
import eu.siacs.conversations.entities.Message;
import eu.siacs.conversations.xmpp.jingle.JingleFile;
2014-04-05 15:06:10 -04:00
public class FileBackend {
2014-04-05 15:06:10 -04:00
private static int IMAGE_SIZE = 1920;
2014-04-05 15:06:10 -04:00
private Context context;
private LruCache<String, Bitmap> thumbnailCache;
2014-04-05 15:06:10 -04:00
public FileBackend(Context context) {
this.context = context;
int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
int cacheSize = maxMemory / 8;
thumbnailCache = new LruCache<String, Bitmap>(cacheSize) {
@Override
protected int sizeOf(String key, Bitmap bitmap) {
return bitmap.getByteCount() / 1024;
}
};
2014-04-05 15:06:10 -04:00
}
2014-05-14 12:32:58 -04:00
2014-04-25 10:24:56 -04:00
public LruCache<String, Bitmap> getThumbnailCache() {
return thumbnailCache;
}
2014-05-14 12:32:58 -04:00
public JingleFile getJingleFile(Message message) {
2014-05-06 15:34:30 -04:00
return getJingleFile(message, true);
}
public JingleFile getJingleFile(Message message, boolean decrypted) {
2014-04-06 09:34:08 -04:00
Conversation conversation = message.getConversation();
String prefix = context.getFilesDir().getAbsolutePath();
String path = prefix + "/" + conversation.getAccount().getJid() + "/"
+ conversation.getContactJid();
2014-05-06 15:34:30 -04:00
String filename;
2014-05-14 12:32:58 -04:00
if ((decrypted) || (message.getEncryption() == Message.ENCRYPTION_NONE)) {
2014-05-06 15:34:30 -04:00
filename = message.getUuid() + ".webp";
} else {
filename = message.getUuid() + ".webp.pgp";
}
return new JingleFile(path + "/" + filename);
2014-04-06 09:34:08 -04:00
}
2014-04-18 19:14:30 -04:00
2014-04-25 10:24:56 -04:00
public Bitmap resize(Bitmap originalBitmap, int size) {
int w = originalBitmap.getWidth();
int h = originalBitmap.getHeight();
if (Math.max(w, h) > size) {
int scalledW;
int scalledH;
if (w <= h) {
scalledW = (int) (w / ((double) h / size));
scalledH = size;
} else {
scalledW = size;
scalledH = (int) (h / ((double) w / size));
}
2014-04-18 19:14:30 -04:00
Bitmap scalledBitmap = Bitmap.createScaledBitmap(originalBitmap,
scalledW, scalledH, true);
return scalledBitmap;
} else {
return originalBitmap;
}
}
2014-05-14 12:32:58 -04:00
public JingleFile copyImageToPrivateStorage(Message message, Uri image)
throws ImageCopyException {
2014-04-05 15:06:10 -04:00
try {
2014-05-13 10:48:39 -04:00
InputStream is;
2014-05-14 12:32:58 -04:00
if (image != null) {
is = context.getContentResolver().openInputStream(image);
2014-05-13 10:48:39 -04:00
} else {
is = new FileInputStream(getIncomingFile());
}
JingleFile file = getJingleFile(message);
2014-04-05 15:06:10 -04:00
file.getParentFile().mkdirs();
file.createNewFile();
2014-05-20 16:52:57 -04:00
Bitmap originalBitmap;
try {
originalBitmap = BitmapFactory.decodeStream(is);
is.close();
} catch (OutOfMemoryError e) {
is.close();
Log.d("xmppService","catched out of memory. try again");
if (image != null) {
is = context.getContentResolver().openInputStream(image);
} else {
is = new FileInputStream(getIncomingFile());
}
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 2;
originalBitmap = BitmapFactory.decodeStream(is, null, options);
2014-05-20 16:54:28 -04:00
is.close();
2014-05-20 16:52:57 -04:00
}
2014-05-14 12:32:58 -04:00
if (originalBitmap == null) {
throw new ImageCopyException(R.string.error_not_an_image_file);
}
if (image == null) {
2014-05-13 10:48:39 -04:00
getIncomingFile().delete();
}
Bitmap scalledBitmap = resize(originalBitmap, IMAGE_SIZE);
2014-05-20 16:52:57 -04:00
OutputStream os = new FileOutputStream(file);
2014-04-18 19:14:30 -04:00
boolean success = scalledBitmap.compress(
Bitmap.CompressFormat.WEBP, 75, os);
2014-04-05 15:06:10 -04:00
if (!success) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_compressing_image);
2014-04-05 15:06:10 -04:00
}
2014-04-25 10:24:56 -04:00
os.flush();
2014-04-05 15:06:10 -04:00
os.close();
2014-04-25 10:24:56 -04:00
long size = file.getSize();
int width = scalledBitmap.getWidth();
int height = scalledBitmap.getHeight();
2014-05-14 12:32:58 -04:00
message.setBody("" + size + "," + width + "," + height);
2014-04-05 15:06:10 -04:00
return file;
} catch (FileNotFoundException e) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_file_not_found);
2014-04-05 15:06:10 -04:00
} catch (IOException e) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_io_exception);
} catch (SecurityException e) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(
R.string.error_security_exception_during_image_copy);
2014-04-05 15:06:10 -04:00
}
}
2014-04-06 09:34:08 -04:00
public Bitmap getImageFromMessage(Message message) {
2014-04-18 19:14:30 -04:00
return BitmapFactory.decodeFile(getJingleFile(message)
.getAbsolutePath());
}
public Bitmap getThumbnail(Message message, int size, boolean cacheOnly)
2014-04-18 19:14:30 -04:00
throws FileNotFoundException {
Bitmap thumbnail = thumbnailCache.get(message.getUuid());
2014-05-14 12:32:58 -04:00
if ((thumbnail == null) && (!cacheOnly)) {
Bitmap fullsize = BitmapFactory.decodeFile(getJingleFile(message)
.getAbsolutePath());
2014-04-18 19:14:30 -04:00
if (fullsize == null) {
throw new FileNotFoundException();
}
thumbnail = resize(fullsize, size);
this.thumbnailCache.put(message.getUuid(), thumbnail);
}
return thumbnail;
2014-04-06 09:34:08 -04:00
}
2014-04-18 19:14:30 -04:00
public void removeFiles(Conversation conversation) {
String prefix = context.getFilesDir().getAbsolutePath();
String path = prefix + "/" + conversation.getAccount().getJid() + "/"
+ conversation.getContactJid();
File file = new File(path);
try {
this.deleteFile(file);
} catch (IOException e) {
Log.d("xmppService",
"error deleting file: " + file.getAbsolutePath());
}
}
private void deleteFile(File f) throws IOException {
if (f.isDirectory()) {
for (File c : f.listFiles())
deleteFile(c);
}
f.delete();
}
2014-05-13 10:48:39 -04:00
public File getIncomingFile() {
2014-05-14 12:32:58 -04:00
return new File(context.getFilesDir().getAbsolutePath() + "/incoming");
}
public class ImageCopyException extends Exception {
private static final long serialVersionUID = -1010013599132881427L;
private int resId;
public ImageCopyException(int resId) {
this.resId = resId;
}
public int getResId() {
return resId;
}
2014-05-13 10:48:39 -04:00
}
2014-04-05 15:06:10 -04:00
}