session-android/src/org/thoughtcrime/securesms/mms/Slide.java

134 lines
3.7 KiB
Java
Raw Normal View History

2011-12-20 18:20:44 +00:00
/**
* Copyright (C) 2011 Whisper Systems
*
* This program 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.
*
* 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 org.thoughtcrime.securesms.mms;
import java.io.IOException;
import java.io.InputStream;
2014-12-12 09:03:24 +00:00
import org.thoughtcrime.securesms.util.Util;
import org.w3c.dom.smil.SMILDocument;
import org.w3c.dom.smil.SMILMediaElement;
import org.w3c.dom.smil.SMILRegionElement;
import org.thoughtcrime.securesms.crypto.MasterSecret;
2011-12-20 18:20:44 +00:00
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
2011-12-20 18:20:44 +00:00
import android.net.Uri;
import android.util.Log;
import android.util.TypedValue;
import android.widget.ImageView;
2011-12-20 18:20:44 +00:00
import ws.com.google.android.mms.pdu.PduPart;
public abstract class Slide {
protected final PduPart part;
protected final Context context;
protected MasterSecret masterSecret;
2011-12-20 18:20:44 +00:00
public Slide(Context context, PduPart part) {
this.part = part;
this.context = context;
}
2011-12-20 18:20:44 +00:00
public Slide(Context context, MasterSecret masterSecret, PduPart part) {
this(context, part);
this.masterSecret = masterSecret;
}
2011-12-20 18:20:44 +00:00
protected byte[] getPartData() {
2014-12-12 09:03:24 +00:00
try {
if (part.getData() != null)
return part.getData();
2014-12-12 09:03:24 +00:00
return Util.readFully(PartAuthority.getPartStream(context, masterSecret, part.getDataUri()));
} catch (IOException e) {
Log.w("Slide", e);
return new byte[0];
}
2011-12-20 18:20:44 +00:00
}
2011-12-20 18:20:44 +00:00
public String getContentType() {
return new String(part.getContentType());
}
2011-12-20 18:20:44 +00:00
public Uri getUri() {
return part.getDataUri();
}
public Drawable getThumbnail(Context context, int maxWidth, int maxHeight) {
2011-12-20 18:20:44 +00:00
throw new AssertionError("getThumbnail() called on non-thumbnail producing slide!");
}
public void setThumbnailOn(Context context, ImageView imageView) {
imageView.setImageDrawable(getThumbnail(context, imageView.getWidth(), imageView.getHeight()));
}
public void setThumbnailOn(Context context, ImageView imageView, int height, int width, Drawable placeholder) {
imageView.setImageDrawable(getThumbnail(context, width, height));
}
public Bitmap getGeneratedThumbnail() { return null; }
2011-12-20 18:20:44 +00:00
public boolean hasImage() {
return false;
}
2011-12-20 18:20:44 +00:00
public boolean hasVideo() {
return false;
}
2011-12-20 18:20:44 +00:00
public boolean hasAudio() {
return false;
}
2011-12-20 18:20:44 +00:00
public Bitmap getImage() {
throw new AssertionError("getImage() called on non-image slide!");
}
2011-12-20 18:20:44 +00:00
public boolean hasText() {
return false;
}
2011-12-20 18:20:44 +00:00
public String getText() {
throw new AssertionError("getText() called on non-text slide!");
}
2011-12-20 18:20:44 +00:00
public PduPart getPart() {
return part;
}
public abstract SMILRegionElement getSmilRegion(SMILDocument document);
public abstract SMILMediaElement getMediaElement(SMILDocument document);
2014-12-12 09:03:24 +00:00
protected static void assertMediaSize(Context context, Uri uri)
throws MediaTooLargeException, IOException
{
InputStream in = context.getContentResolver().openInputStream(uri);
long size = 0;
byte[] buffer = new byte[512];
int read;
while ((read = in.read(buffer)) != -1) {
size += read;
2015-01-02 23:43:28 +00:00
if (size > MmsMediaConstraints.MAX_MESSAGE_SIZE) throw new MediaTooLargeException("Media exceeds maximum message size.");
2014-12-12 09:03:24 +00:00
}
}
2011-12-20 18:20:44 +00:00
}