202 lines
7.7 KiB
Java
202 lines
7.7 KiB
Java
/**
|
|
* 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;
|
|
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.support.annotation.LayoutRes;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import android.support.v7.widget.RecyclerView;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.view.View.OnLongClickListener;
|
|
import android.view.ViewGroup;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.database.CursorRecyclerViewAdapter;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.MmsSmsColumns;
|
|
import org.thoughtcrime.securesms.database.MmsSmsDatabase;
|
|
import org.thoughtcrime.securesms.database.SmsDatabase;
|
|
import org.thoughtcrime.securesms.database.model.MessageRecord;
|
|
import org.thoughtcrime.securesms.util.LRUCache;
|
|
|
|
import java.lang.ref.SoftReference;
|
|
import java.util.Collections;
|
|
import java.util.HashSet;
|
|
import java.util.Locale;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
/**
|
|
* A cursor adapter for a conversation thread. Ultimately
|
|
* used by ComposeMessageActivity to display a conversation
|
|
* thread in a ListActivity.
|
|
*
|
|
* @author Moxie Marlinspike
|
|
*
|
|
*/
|
|
public class ConversationAdapter <V extends View & BindableConversationItem>
|
|
extends CursorRecyclerViewAdapter<ConversationAdapter.ViewHolder>
|
|
{
|
|
|
|
private static final int MAX_CACHE_SIZE = 40;
|
|
private final Map<String,SoftReference<MessageRecord>> messageRecordCache =
|
|
Collections.synchronizedMap(new LRUCache<String, SoftReference<MessageRecord>>(MAX_CACHE_SIZE));
|
|
|
|
public static final int MESSAGE_TYPE_OUTGOING = 0;
|
|
public static final int MESSAGE_TYPE_INCOMING = 1;
|
|
public static final int MESSAGE_TYPE_UPDATE = 2;
|
|
|
|
private final Set<MessageRecord> batchSelected = Collections.synchronizedSet(new HashSet<MessageRecord>());
|
|
|
|
private final ItemClickListener clickListener;
|
|
private final MasterSecret masterSecret;
|
|
private final Locale locale;
|
|
private final boolean groupThread;
|
|
private final boolean pushDestination;
|
|
private final MmsSmsDatabase db;
|
|
private final LayoutInflater inflater;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
public interface ItemClickListener {
|
|
void onItemClick(ConversationItem item);
|
|
void onItemLongClick(ConversationItem item);
|
|
}
|
|
|
|
public ConversationAdapter(@NonNull Context context,
|
|
@NonNull MasterSecret masterSecret,
|
|
@NonNull Locale locale,
|
|
@Nullable ItemClickListener clickListener,
|
|
@Nullable Cursor cursor,
|
|
boolean groupThread,
|
|
boolean pushDestination)
|
|
{
|
|
super(context, cursor);
|
|
this.masterSecret = masterSecret;
|
|
this.locale = locale;
|
|
this.clickListener = clickListener;
|
|
this.groupThread = groupThread;
|
|
this.pushDestination = pushDestination;
|
|
this.inflater = LayoutInflater.from(context);
|
|
this.db = DatabaseFactory.getMmsSmsDatabase(context);
|
|
}
|
|
|
|
@Override
|
|
public void changeCursor(Cursor cursor) {
|
|
messageRecordCache.clear();
|
|
super.changeCursor(cursor);
|
|
}
|
|
|
|
@Override public void onBindViewHolder(ViewHolder viewHolder, @NonNull Cursor cursor) {
|
|
long id = cursor.getLong(cursor.getColumnIndexOrThrow(SmsDatabase.ID));
|
|
String type = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsDatabase.TRANSPORT));
|
|
MessageRecord messageRecord = getMessageRecord(id, cursor, type);
|
|
|
|
viewHolder.getView().bind(masterSecret, messageRecord, locale, batchSelected, groupThread, pushDestination);
|
|
}
|
|
|
|
@Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
|
final V itemView = ViewUtil.inflate(inflater, parent, getLayoutForViewType(viewType));
|
|
if (viewType == MESSAGE_TYPE_INCOMING || viewType == MESSAGE_TYPE_OUTGOING) {
|
|
itemView.setOnClickListener(new OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
if (clickListener != null) clickListener.onItemClick((ConversationItem)itemView);
|
|
}
|
|
});
|
|
itemView.setOnLongClickListener(new OnLongClickListener() {
|
|
@Override
|
|
public boolean onLongClick(View view) {
|
|
if (clickListener != null) clickListener.onItemLongClick((ConversationItem)itemView);
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
|
|
return new ViewHolder(itemView);
|
|
}
|
|
|
|
@Override public void onViewRecycled(ViewHolder holder) {
|
|
holder.getView().unbind();
|
|
}
|
|
|
|
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");
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int getItemViewType(@NonNull Cursor cursor) {
|
|
long id = cursor.getLong(cursor.getColumnIndexOrThrow(MmsSmsColumns.ID));
|
|
String type = cursor.getString(cursor.getColumnIndexOrThrow(MmsSmsDatabase.TRANSPORT));
|
|
MessageRecord messageRecord = getMessageRecord(id, cursor, type);
|
|
|
|
if (messageRecord.isGroupAction() || messageRecord.isCallLog()) return MESSAGE_TYPE_UPDATE;
|
|
else if (messageRecord.isOutgoing()) return MESSAGE_TYPE_OUTGOING;
|
|
else return MESSAGE_TYPE_INCOMING;
|
|
}
|
|
|
|
private MessageRecord getMessageRecord(long messageId, Cursor cursor, String type) {
|
|
final SoftReference<MessageRecord> reference = messageRecordCache.get(type + messageId);
|
|
if (reference != null) {
|
|
final MessageRecord record = reference.get();
|
|
if (record != null) return record;
|
|
}
|
|
|
|
final MessageRecord messageRecord = db.readerFor(cursor, masterSecret).getCurrent();
|
|
messageRecordCache.put(type + messageId, new SoftReference<>(messageRecord));
|
|
|
|
return messageRecord;
|
|
}
|
|
|
|
public void close() {
|
|
getCursor().close();
|
|
}
|
|
|
|
public void toggleSelection(MessageRecord messageRecord) {
|
|
if (!batchSelected.remove(messageRecord)) {
|
|
batchSelected.add(messageRecord);
|
|
}
|
|
}
|
|
|
|
public void clearSelection() {
|
|
batchSelected.clear();
|
|
}
|
|
|
|
public Set<MessageRecord> getSelectedItems() {
|
|
return Collections.unmodifiableSet(new HashSet<>(batchSelected));
|
|
}
|
|
}
|