92 lines
3.4 KiB
Java
Raw Normal View History

2012-09-30 19:56:29 -07:00
/**
2011-12-20 10:20:44 -08:00
* Copyright (C) 2011 Whisper Systems
2012-09-30 19:56:29 -07:00
*
2011-12-20 10:20:44 -08: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-09-30 19:56:29 -07:00
*
2011-12-20 10:20:44 -08: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.database;
import android.content.Context;
import android.database.ContentObserver;
2011-12-20 10:20:44 -08:00
import android.database.Cursor;
import android.support.annotation.NonNull;
2011-12-20 10:20:44 -08:00
import org.thoughtcrime.securesms.database.helpers.SQLCipherOpenHelper;
2012-09-30 19:56:29 -07:00
import java.util.Set;
2011-12-20 10:20:44 -08:00
public abstract class Database {
protected static final String ID_WHERE = "_id = ?";
2012-09-30 19:56:29 -07:00
protected SQLCipherOpenHelper databaseHelper;
protected final Context context;
2012-09-30 19:56:29 -07:00
public Database(Context context, SQLCipherOpenHelper databaseHelper) {
2011-12-20 10:20:44 -08:00
this.context = context;
this.databaseHelper = databaseHelper;
}
2012-09-30 19:56:29 -07:00
2011-12-20 10:20:44 -08:00
protected void notifyConversationListeners(Set<Long> threadIds) {
for (long threadId : threadIds)
notifyConversationListeners(threadId);
}
2012-09-30 19:56:29 -07:00
2011-12-20 10:20:44 -08:00
protected void notifyConversationListeners(long threadId) {
context.getContentResolver().notifyChange(DatabaseContentProviders.Conversation.getUriForThread(threadId), null);
2011-12-20 10:20:44 -08:00
}
2012-09-30 19:56:29 -07:00
2011-12-20 10:20:44 -08:00
protected void notifyConversationListListeners() {
context.getContentResolver().notifyChange(DatabaseContentProviders.ConversationList.CONTENT_URI, null);
2011-12-20 10:20:44 -08:00
}
2012-09-30 19:56:29 -07:00
protected void notifyStickerListeners() {
context.getContentResolver().notifyChange(DatabaseContentProviders.Sticker.CONTENT_URI, null);
}
protected void notifyStickerPackListeners() {
context.getContentResolver().notifyChange(DatabaseContentProviders.StickerPack.CONTENT_URI, null);
}
2011-12-20 10:20:44 -08:00
protected void setNotifyConverationListeners(Cursor cursor, long threadId) {
cursor.setNotificationUri(context.getContentResolver(), DatabaseContentProviders.Conversation.getUriForThread(threadId));
2011-12-20 10:20:44 -08:00
}
2012-09-30 19:56:29 -07:00
2011-12-20 10:20:44 -08:00
protected void setNotifyConverationListListeners(Cursor cursor) {
cursor.setNotificationUri(context.getContentResolver(), DatabaseContentProviders.ConversationList.CONTENT_URI);
2011-12-20 10:20:44 -08:00
}
protected void setNotifyStickerListeners(Cursor cursor) {
cursor.setNotificationUri(context.getContentResolver(), DatabaseContentProviders.Sticker.CONTENT_URI);
}
protected void setNotifyStickerPackListeners(Cursor cursor) {
cursor.setNotificationUri(context.getContentResolver(), DatabaseContentProviders.StickerPack.CONTENT_URI);
}
protected void registerAttachmentListeners(@NonNull ContentObserver observer) {
context.getContentResolver().registerContentObserver(DatabaseContentProviders.Attachment.CONTENT_URI,
true,
observer);
}
protected void notifyAttachmentListeners() {
context.getContentResolver().notifyChange(DatabaseContentProviders.Attachment.CONTENT_URI, null);
}
public void reset(SQLCipherOpenHelper databaseHelper) {
this.databaseHelper = databaseHelper;
}
2011-12-20 10:20:44 -08:00
}