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

131 lines
3.9 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 android.content.Context;
import android.content.res.Resources.Theme;
2011-12-20 18:20:44 +00:00
import android.net.Uri;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import org.thoughtcrime.securesms.crypto.MasterSecret;
import org.thoughtcrime.securesms.util.MediaUtil;
import org.thoughtcrime.securesms.util.Util;
import java.io.IOException;
import java.io.InputStream;
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;
public Slide(Context context, @NonNull PduPart part) {
2011-12-20 18:20:44 +00:00
this.part = part;
this.context = context;
}
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();
}
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;
}
public PduPart getPart() {
return part;
2011-12-20 18:20:44 +00:00
}
public Uri getThumbnailUri() {
return null;
2011-12-20 18:20:44 +00:00
}
public boolean isInProgress() {
return part.isInProgress();
}
public long getTransferProgress() {
return part.getTransferProgress();
}
public @DrawableRes int getPlaceholderRes(Theme theme) {
throw new AssertionError("getPlaceholderRes() called for non-drawable slide");
2011-12-20 18:20:44 +00:00
}
public boolean isDraft() {
return !getPart().getPartId().isValid();
2011-12-20 18:20:44 +00:00
}
protected static PduPart constructPartFromUri(@NonNull Context context,
@NonNull Uri uri,
@NonNull String defaultMime,
long dataSize)
throws IOException
2014-12-12 09:03:24 +00:00
{
final PduPart part = new PduPart();
final String mimeType = MediaUtil.getMimeType(context, uri);
final String derivedMimeType = mimeType != null ? mimeType : defaultMime;
part.setDataSize(dataSize);
part.setDataUri(uri);
part.setContentType(derivedMimeType.getBytes());
part.setContentId((System.currentTimeMillis()+"").getBytes());
part.setName((MediaUtil.getDiscreteMimeType(derivedMimeType) + System.currentTimeMillis()).getBytes());
return part;
2014-12-12 09:03:24 +00:00
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Slide)) return false;
Slide that = (Slide)other;
return Util.equals(this.getContentType(), that.getContentType()) &&
this.hasAudio() == that.hasAudio() &&
this.hasImage() == that.hasImage() &&
this.hasVideo() == that.hasVideo() &&
this.isDraft() == that.isDraft() &&
this.getTransferProgress() == that.getTransferProgress() &&
Util.equals(this.getUri(), that.getUri()) &&
Util.equals(this.getThumbnailUri(), that.getThumbnailUri());
}
@Override
public int hashCode() {
return Util.hashCode(getContentType(), hasAudio(), hasImage(),
hasVideo(), isDraft(), getUri(), getThumbnailUri(), getTransferProgress());
}
2011-12-20 18:20:44 +00:00
}