2012-07-19 21:22:03 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-07-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* 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.
|
2012-07-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* 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;
|
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.support.annotation.LayoutRes;
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
2012-07-20 02:23:49 +00:00
|
|
|
import android.view.LayoutInflater;
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.view.View;
|
2015-09-15 22:28:27 +00:00
|
|
|
import android.view.View.OnClickListener;
|
|
|
|
import android.view.View.OnLongClickListener;
|
2012-07-19 21:22:03 +00:00
|
|
|
import android.view.ViewGroup;
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
import org.thoughtcrime.redphone.util.Conversions;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2015-09-15 22:28:27 +00:00
|
|
|
import org.thoughtcrime.securesms.database.CursorRecyclerViewAdapter;
|
2011-12-20 18:20:44 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
Major storage layer refactoring to set the stage for clean GCM.
1) We now try to hand out cursors at a minimum. There has always been
a fairly clean insertion layer that handles encrypting message bodies,
but the process of decrypting message bodies has always been less than
ideal. Here we introduce a "Reader" interface that will decrypt message
bodies when appropriate and return objects that encapsulate record state.
No more MessageDisplayHelper. The MmsSmsDatabase interface is also more
sane.
2) We finally rid ourselves of the technical debt associated with TextSecure's
initial usage of the default SMS DB. In that world, we weren't able to use
anything other than the default "Inbox, Outbox, Sent" types to describe a
message, and had to overload the message content itself with a set of
local "prefixes" to describe what it was (encrypted, asymetric encrypted,
remote encrypted, a key exchange, procssed key exchange), and so on.
This includes a major schema update that transforms the "type" field into
a bitmask that describes everything that used to be encoded in a prefix,
and prefixes have been completely eliminated from the system.
No more Prefix.java
3) Refactoring of the MultipartMessageHandler code. It's less of a mess, and
hopefully more clear as to what's going on.
The next step is to remove what we can from SmsTransportDetails and genericize
that interface for a GCM equivalent.
2013-04-20 19:22:04 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsColumns;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.MmsSmsDatabase;
|
2011-12-20 18:20:44 +00:00
|
|
|
import org.thoughtcrime.securesms.database.SmsDatabase;
|
2012-10-28 23:04:24 +00:00
|
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
2015-10-21 22:32:29 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2013-05-06 19:22:03 +00:00
|
|
|
import org.thoughtcrime.securesms.util.LRUCache;
|
2016-08-16 03:23:56 +00:00
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.VisibleForTesting;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.lang.ref.SoftReference;
|
2015-11-13 21:20:16 +00:00
|
|
|
import java.security.MessageDigest;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.util.Collections;
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.HashSet;
|
2015-03-19 20:08:48 +00:00
|
|
|
import java.util.Locale;
|
2013-05-06 19:22:03 +00:00
|
|
|
import java.util.Map;
|
2014-12-14 02:10:59 +00:00
|
|
|
import java.util.Set;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
/**
|
|
|
|
* A cursor adapter for a conversation thread. Ultimately
|
|
|
|
* used by ComposeMessageActivity to display a conversation
|
|
|
|
* thread in a ListActivity.
|
2012-07-19 21:22:03 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*
|
|
|
|
*/
|
2015-09-15 22:28:27 +00:00
|
|
|
public class ConversationAdapter <V extends View & BindableConversationItem>
|
|
|
|
extends CursorRecyclerViewAdapter<ConversationAdapter.ViewHolder>
|
|
|
|
{
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private static final int MAX_CACHE_SIZE = 40;
|
2013-05-06 19:22:03 +00:00
|
|
|
private final Map<String,SoftReference<MessageRecord>> messageRecordCache =
|
|
|
|
Collections.synchronizedMap(new LRUCache<String, SoftReference<MessageRecord>>(MAX_CACHE_SIZE));
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2014-02-17 01:44:51 +00:00
|
|
|
public static final int MESSAGE_TYPE_OUTGOING = 0;
|
|
|
|
public static final int MESSAGE_TYPE_INCOMING = 1;
|
2015-09-17 00:31:24 +00:00
|
|
|
public static final int MESSAGE_TYPE_UPDATE = 2;
|
2014-02-17 01:44:51 +00:00
|
|
|
|
2014-12-14 02:10:59 +00:00
|
|
|
private final Set<MessageRecord> batchSelected = Collections.synchronizedSet(new HashSet<MessageRecord>());
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
private final @Nullable ItemClickListener clickListener;
|
|
|
|
private final @NonNull MasterSecret masterSecret;
|
|
|
|
private final @NonNull Locale locale;
|
|
|
|
private final @NonNull Recipients recipients;
|
|
|
|
private final @NonNull MmsSmsDatabase db;
|
|
|
|
private final @NonNull LayoutInflater inflater;
|
|
|
|
private final @NonNull MessageDigest digest;
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
protected static class ViewHolder extends RecyclerView.ViewHolder {
|
|
|
|
public <V extends View & BindableConversationItem> ViewHolder(final @NonNull V itemView) {
|
|
|
|
super(itemView);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public <V extends View & BindableConversationItem> V getView() {
|
|
|
|
return (V)itemView;
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public interface ItemClickListener {
|
2016-08-16 03:23:56 +00:00
|
|
|
void onItemClick(MessageRecord item);
|
|
|
|
void onItemLongClick(MessageRecord item);
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@SuppressWarnings("ConstantConditions")
|
|
|
|
@VisibleForTesting
|
|
|
|
ConversationAdapter(Context context, Cursor cursor) {
|
|
|
|
super(context, cursor);
|
|
|
|
try {
|
|
|
|
this.masterSecret = null;
|
|
|
|
this.locale = null;
|
|
|
|
this.clickListener = null;
|
|
|
|
this.recipients = null;
|
|
|
|
this.inflater = null;
|
|
|
|
this.db = null;
|
|
|
|
this.digest = MessageDigest.getInstance("SHA1");
|
|
|
|
} catch (NoSuchAlgorithmException nsae) {
|
|
|
|
throw new AssertionError("SHA1 isn't supported!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public ConversationAdapter(@NonNull Context context,
|
|
|
|
@NonNull MasterSecret masterSecret,
|
|
|
|
@NonNull Locale locale,
|
|
|
|
@Nullable ItemClickListener clickListener,
|
|
|
|
@Nullable Cursor cursor,
|
2015-10-21 22:32:29 +00:00
|
|
|
@NonNull Recipients recipients)
|
2015-09-15 22:28:27 +00:00
|
|
|
{
|
|
|
|
super(context, cursor);
|
2015-11-13 21:20:16 +00:00
|
|
|
try {
|
|
|
|
this.masterSecret = masterSecret;
|
|
|
|
this.locale = locale;
|
|
|
|
this.clickListener = clickListener;
|
|
|
|
this.recipients = recipients;
|
|
|
|
this.inflater = LayoutInflater.from(context);
|
|
|
|
this.db = DatabaseFactory.getMmsSmsDatabase(context);
|
|
|
|
this.digest = MessageDigest.getInstance("SHA1");
|
|
|
|
|
|
|
|
setHasStableIds(true);
|
|
|
|
} catch (NoSuchAlgorithmException nsae) {
|
|
|
|
throw new AssertionError("SHA1 isn't supported!");
|
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
2014-09-24 20:54:56 +00:00
|
|
|
@Override
|
|
|
|
public void changeCursor(Cursor cursor) {
|
|
|
|
messageRecordCache.clear();
|
|
|
|
super.changeCursor(cursor);
|
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public void onBindItemViewHolder(ViewHolder viewHolder, @NonNull Cursor cursor) {
|
2015-09-15 22:28:27 +00:00
|
|
|
long id = cursor.getLong(cursor.getColumnIndexOrThrow(SmsDatabase.ID));
|
|
|
|
String type = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsDatabase.TRANSPORT));
|
|
|
|
MessageRecord messageRecord = getMessageRecord(id, cursor, type);
|
|
|
|
|
2015-10-21 22:32:29 +00:00
|
|
|
viewHolder.getView().bind(masterSecret, messageRecord, locale, batchSelected, recipients);
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public ViewHolder onCreateItemViewHolder(ViewGroup parent, int viewType) {
|
2015-09-15 22:28:27 +00:00
|
|
|
final V itemView = ViewUtil.inflate(inflater, parent, getLayoutForViewType(viewType));
|
2016-08-16 03:23:56 +00:00
|
|
|
itemView.setOnClickListener(new OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
if (clickListener != null) {
|
|
|
|
clickListener.onItemClick(itemView.getMessageRecord());
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
itemView.setOnLongClickListener(new OnLongClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onLongClick(View view) {
|
|
|
|
if (clickListener != null) {
|
|
|
|
clickListener.onItemLongClick(itemView.getMessageRecord());
|
2015-09-15 22:28:27 +00:00
|
|
|
}
|
2016-08-16 03:23:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
return new ViewHolder(itemView);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public void onItemViewRecycled(ViewHolder holder) {
|
2015-09-15 22:28:27 +00:00
|
|
|
holder.getView().unbind();
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
private @LayoutRes int getLayoutForViewType(int viewType) {
|
|
|
|
switch (viewType) {
|
|
|
|
case ConversationAdapter.MESSAGE_TYPE_OUTGOING: return R.layout.conversation_item_sent;
|
|
|
|
case ConversationAdapter.MESSAGE_TYPE_INCOMING: return R.layout.conversation_item_received;
|
|
|
|
case ConversationAdapter.MESSAGE_TYPE_UPDATE: return R.layout.conversation_item_update;
|
|
|
|
default: throw new IllegalArgumentException("unsupported item view type given to ConversationAdapter");
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(@NonNull Cursor cursor) {
|
2015-10-27 19:18:02 +00:00
|
|
|
long id = cursor.getLong(cursor.getColumnIndexOrThrow(MmsSmsColumns.ID));
|
|
|
|
String type = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsDatabase.TRANSPORT));
|
2012-07-20 02:23:49 +00:00
|
|
|
MessageRecord messageRecord = getMessageRecord(id, cursor, type);
|
2014-02-20 05:06:54 +00:00
|
|
|
|
2016-08-16 03:23:56 +00:00
|
|
|
if (messageRecord.isGroupAction() || messageRecord.isCallLog() || messageRecord.isJoined() || messageRecord.isExpirationTimerUpdate()) {
|
2015-10-27 19:18:02 +00:00
|
|
|
return MESSAGE_TYPE_UPDATE;
|
|
|
|
} else if (messageRecord.isOutgoing()) {
|
|
|
|
return MESSAGE_TYPE_OUTGOING;
|
|
|
|
} else {
|
|
|
|
return MESSAGE_TYPE_INCOMING;
|
|
|
|
}
|
2012-07-20 02:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:20:16 +00:00
|
|
|
@Override
|
|
|
|
public long getItemId(@NonNull Cursor cursor) {
|
|
|
|
final String unique = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsColumns.UNIQUE_ROW_ID));
|
|
|
|
final byte[] bytes = digest.digest(unique.getBytes());
|
|
|
|
return Conversions.byteArrayToLong(bytes);
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private MessageRecord getMessageRecord(long messageId, Cursor cursor, String type) {
|
2015-09-15 22:28:27 +00:00
|
|
|
final SoftReference<MessageRecord> reference = messageRecordCache.get(type + messageId);
|
2013-05-06 19:22:03 +00:00
|
|
|
if (reference != null) {
|
2015-09-15 22:28:27 +00:00
|
|
|
final MessageRecord record = reference.get();
|
|
|
|
if (record != null) return record;
|
2013-05-06 19:22:03 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
final MessageRecord messageRecord = db.readerFor(cursor, masterSecret).getCurrent();
|
2015-07-20 22:05:56 +00:00
|
|
|
messageRecordCache.put(type + messageId, new SoftReference<>(messageRecord));
|
2013-05-06 19:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
return messageRecord;
|
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
public void close() {
|
2015-09-15 22:28:27 +00:00
|
|
|
getCursor().close();
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-19 21:22:03 +00:00
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public void toggleSelection(MessageRecord messageRecord) {
|
|
|
|
if (!batchSelected.remove(messageRecord)) {
|
2014-12-14 02:10:59 +00:00
|
|
|
batchSelected.add(messageRecord);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public void clearSelection() {
|
|
|
|
batchSelected.clear();
|
2014-12-14 02:10:59 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 22:28:27 +00:00
|
|
|
public Set<MessageRecord> getSelectedItems() {
|
|
|
|
return Collections.unmodifiableSet(new HashSet<>(batchSelected));
|
2013-04-26 18:23:43 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|