Signal-Android/app/src/main/java/org/thoughtcrime/securesms/database/SmsMigrator.java

289 lines
11 KiB
Java
Raw Normal View History

/*
2011-12-20 19:20:44 +01:00
* Copyright (C) 2011 Whisper Systems
2012-08-03 05:23:41 +02:00
*
2011-12-20 19:20:44 +01: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-08-03 05:23:41 +02:00
*
2011-12-20 19:20:44 +01: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;
2012-08-03 05:23:41 +02:00
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteException;
2012-08-03 05:23:41 +02:00
import android.net.Uri;
2020-03-26 15:00:17 +01:00
2019-06-05 21:47:14 +02:00
import androidx.annotation.Nullable;
2011-12-20 19:20:44 +01:00
import com.annimon.stream.Stream;
import net.sqlcipher.database.SQLiteDatabase;
import net.sqlcipher.database.SQLiteStatement;
2020-03-26 15:00:17 +01:00
import org.thoughtcrime.securesms.groups.GroupId;
2018-08-01 17:09:24 +02:00
import org.thoughtcrime.securesms.logging.Log;
import org.thoughtcrime.securesms.recipients.Recipient;
import org.thoughtcrime.securesms.recipients.RecipientId;
2011-12-20 19:20:44 +01:00
import java.util.HashSet;
import java.util.List;
import java.util.Set;
2012-08-03 05:23:41 +02:00
import java.util.StringTokenizer;
2011-12-20 19:20:44 +01:00
public class SmsMigrator {
private static final String TAG = SmsMigrator.class.getSimpleName();
private static class SystemColumns {
private static final String ADDRESS = "address";
private static final String PERSON = "person";
private static final String DATE_RECEIVED = "date";
private static final String PROTOCOL = "protocol";
private static final String READ = "read";
private static final String STATUS = "status";
private static final String TYPE = "type";
private static final String SUBJECT = "subject";
private static final String REPLY_PATH_PRESENT = "reply_path_present";
private static final String BODY = "body";
private static final String SERVICE_CENTER = "service_center";
}
2012-08-03 05:23:41 +02:00
private static void addStringToStatement(SQLiteStatement statement, Cursor cursor,
int index, String key)
{
2011-12-20 19:20:44 +01:00
int columnIndex = cursor.getColumnIndexOrThrow(key);
2012-08-03 05:23:41 +02:00
if (cursor.isNull(columnIndex)) {
2011-12-20 19:20:44 +01:00
statement.bindNull(index);
2012-08-03 05:23:41 +02:00
} else {
2011-12-20 19:20:44 +01:00
statement.bindString(index, cursor.getString(columnIndex));
2012-08-03 05:23:41 +02:00
}
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
private static void addIntToStatement(SQLiteStatement statement, Cursor cursor,
int index, String key)
{
2011-12-20 19:20:44 +01:00
int columnIndex = cursor.getColumnIndexOrThrow(key);
2012-08-03 05:23:41 +02:00
if (cursor.isNull(columnIndex)) {
2011-12-20 19:20:44 +01:00
statement.bindNull(index);
2012-08-03 05:23:41 +02:00
} else {
statement.bindLong(index, cursor.getLong(columnIndex));
}
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
@SuppressWarnings("SameParameterValue")
private static void addTranslatedTypeToStatement(SQLiteStatement statement, Cursor cursor, int index, String key)
{
int columnIndex = cursor.getColumnIndexOrThrow(key);
if (cursor.isNull(columnIndex)) {
2018-01-31 02:45:12 +01:00
statement.bindLong(index, SmsDatabase.Types.BASE_INBOX_TYPE);
} else {
long theirType = cursor.getLong(columnIndex);
2018-01-31 02:45:12 +01:00
statement.bindLong(index, SmsDatabase.Types.translateFromSystemBaseType(theirType));
}
}
private static boolean isAppropriateTypeForMigration(Cursor cursor, int columnIndex) {
long systemType = cursor.getLong(columnIndex);
long ourType = SmsDatabase.Types.translateFromSystemBaseType(systemType);
return ourType == MmsSmsColumns.Types.BASE_INBOX_TYPE ||
ourType == MmsSmsColumns.Types.BASE_SENT_TYPE ||
ourType == MmsSmsColumns.Types.BASE_SENT_FAILED_TYPE;
}
private static void getContentValuesForRow(Context context, Cursor cursor, long threadId, SQLiteStatement statement) {
String address = cursor.getString(cursor.getColumnIndexOrThrow(SystemColumns.ADDRESS));
RecipientId id = Recipient.external(context, address).getId();
statement.bindString(1, id.serialize());
addIntToStatement(statement, cursor, 2, SystemColumns.PERSON);
addIntToStatement(statement, cursor, 3, SystemColumns.DATE_RECEIVED);
addIntToStatement(statement, cursor, 4, SystemColumns.DATE_RECEIVED);
addIntToStatement(statement, cursor, 5, SystemColumns.PROTOCOL);
addIntToStatement(statement, cursor, 6, SystemColumns.READ);
addIntToStatement(statement, cursor, 7, SystemColumns.STATUS);
addTranslatedTypeToStatement(statement, cursor, 8, SystemColumns.TYPE);
addIntToStatement(statement, cursor, 9, SystemColumns.REPLY_PATH_PRESENT);
addStringToStatement(statement, cursor, 10, SystemColumns.SUBJECT);
addStringToStatement(statement, cursor, 11, SystemColumns.BODY);
addStringToStatement(statement, cursor, 12, SystemColumns.SERVICE_CENTER);
2012-08-03 05:23:41 +02:00
statement.bindLong(13, threadId);
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
private static String getTheirCanonicalAddress(Context context, String theirRecipientId) {
2012-08-03 05:23:41 +02:00
Uri uri = Uri.parse("content://mms-sms/canonical-address/" + theirRecipientId);
2011-12-20 19:20:44 +01:00
Cursor cursor = null;
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
try {
cursor = context.getContentResolver().query(uri, null, null, null, null);
2012-08-03 05:23:41 +02:00
if (cursor != null && cursor.moveToFirst()) {
return cursor.getString(0);
} else {
return null;
}
} catch (IllegalStateException iae) {
Log.w("SmsMigrator", iae);
return null;
2011-12-20 19:20:44 +01:00
} finally {
if (cursor != null)
2012-08-03 05:23:41 +02:00
cursor.close();
2011-12-20 19:20:44 +01:00
}
}
2012-08-03 05:23:41 +02:00
private static @Nullable Set<Recipient> getOurRecipients(Context context, String theirRecipients) {
StringTokenizer tokenizer = new StringTokenizer(theirRecipients.trim(), " ");
Set<Recipient> recipientList = new HashSet<>();
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
while (tokenizer.hasMoreTokens()) {
String theirRecipientId = tokenizer.nextToken();
String address = getTheirCanonicalAddress(context, theirRecipientId);
2012-08-03 05:23:41 +02:00
if (address != null) {
recipientList.add(Recipient.external(context, address));
}
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
if (recipientList.isEmpty()) return null;
else return recipientList;
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
private static void migrateConversation(Context context, SmsMigrationProgressListener listener,
ProgressDescription progress,
2012-08-03 05:23:41 +02:00
long theirThreadId, long ourThreadId)
{
2011-12-20 19:20:44 +01:00
SmsDatabase ourSmsDatabase = DatabaseFactory.getSmsDatabase(context);
Cursor cursor = null;
Close SQL statement, preventing finalizer crashes This will stop instances of the following from occuring in the logs on SMS migration: W/SQLiteCompiledSql: Releasing statement in a finalizer. Please ensure that you explicitly call close() on your cursor: INSERT INTO sms (address, person, date_sent, date, protocol, read, status, type, reply_path_present, net.sqlcipher.database.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here at net.sqlcipher.database.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:62) at net.sqlcipher.database.SQLiteProgram.<init>(SQLiteProgram.java:109) at net.sqlcipher.database.SQLiteStatement.<init>(SQLiteStatement.java:39) at net.sqlcipher.database.SQLiteDatabase.compileStatement(SQLiteDatabase.java:1647) at org.thoughtcrime.securesms.database.SmsDatabase.createInsertStatement(SmsDatabase.java:767) at org.thoughtcrime.securesms.database.SmsMigrator.migrateConversation(SmsMigrator.java:166) at org.thoughtcrime.securesms.database.SmsMigrator.migrateDatabase(SmsMigrator.java:210) at org.thoughtcrime.securesms.service.ApplicationMigrationService$ImportRunnable.run(ApplicationMigrationService.java:159) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) We aren't closing Statement objects before the finalizer on those objects runs. When the GC runs, we'll get warnings like the above which alert us to the fact that these objects are being automatically closed for us in the finalizer, but that this is suboptimal behavior. If we leave too many Statement (or Cursor) objects to be closed in their finalizers, when the GC runs, it'll take longer than 10 seconds to close them all and Android will kill the app. This 10 second limit is hardcoded and we can only try to avoid it. A crash will look like: java.util.concurrent.TimeoutException: net.sqlcipher.database.SQLiteCompiledSql.finalize() timed out after 10 seconds at java.lang.Object.wait(Native Method) at java.lang.Thread.parkFor$(Thread.java:1220) at sun.misc.Unsafe.park(Unsafe.java:299) at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158) at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:810) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:844) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1173) at java.util.concurrent.locks.ReentrantLock$FairSync.lock(ReentrantLock.java:196) at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:257) at net.sqlcipher.database.SQLiteDatabase.lock(SQLiteDatabase.java:553) at net.sqlcipher.database.SQLiteCompiledSql.releaseSqlStatement(SQLiteCompiledSql.java:106) at net.sqlcipher.database.SQLiteCompiledSql.finalize(SQLiteCompiledSql.java:152) at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:202) at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185) at java.lang.Thread.run(Thread.java:818) I was able to replicate the above crash consistently on a Samsung Galaxy S7 edge when importing well over 100k SMS messages. But as soon as I attached a debugger the crash did not persist. I assume this is because of some VM-level interactions between the two and did not investigate further after fixing it. I do not have access to the stack trace for issue #7953 but this could potentially resolve it. The crash is identical to that in #7477 but this patch is for SMS migration not restoring from a backup. I was not able to replicate the crash on restoring a >100k message backup.
2018-10-07 13:11:15 +02:00
SQLiteStatement statement = null;
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
try {
Uri uri = Uri.parse("content://sms/conversations/" + theirThreadId);
try {
cursor = context.getContentResolver().query(uri, null, null, null, null);
} catch (SQLiteException e) {
/// Work around for weird sony-specific (?) bug: #4309
Log.w(TAG, e);
return;
}
2011-12-20 19:20:44 +01:00
SQLiteDatabase transaction = ourSmsDatabase.beginTransaction();
Close SQL statement, preventing finalizer crashes This will stop instances of the following from occuring in the logs on SMS migration: W/SQLiteCompiledSql: Releasing statement in a finalizer. Please ensure that you explicitly call close() on your cursor: INSERT INTO sms (address, person, date_sent, date, protocol, read, status, type, reply_path_present, net.sqlcipher.database.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here at net.sqlcipher.database.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:62) at net.sqlcipher.database.SQLiteProgram.<init>(SQLiteProgram.java:109) at net.sqlcipher.database.SQLiteStatement.<init>(SQLiteStatement.java:39) at net.sqlcipher.database.SQLiteDatabase.compileStatement(SQLiteDatabase.java:1647) at org.thoughtcrime.securesms.database.SmsDatabase.createInsertStatement(SmsDatabase.java:767) at org.thoughtcrime.securesms.database.SmsMigrator.migrateConversation(SmsMigrator.java:166) at org.thoughtcrime.securesms.database.SmsMigrator.migrateDatabase(SmsMigrator.java:210) at org.thoughtcrime.securesms.service.ApplicationMigrationService$ImportRunnable.run(ApplicationMigrationService.java:159) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) We aren't closing Statement objects before the finalizer on those objects runs. When the GC runs, we'll get warnings like the above which alert us to the fact that these objects are being automatically closed for us in the finalizer, but that this is suboptimal behavior. If we leave too many Statement (or Cursor) objects to be closed in their finalizers, when the GC runs, it'll take longer than 10 seconds to close them all and Android will kill the app. This 10 second limit is hardcoded and we can only try to avoid it. A crash will look like: java.util.concurrent.TimeoutException: net.sqlcipher.database.SQLiteCompiledSql.finalize() timed out after 10 seconds at java.lang.Object.wait(Native Method) at java.lang.Thread.parkFor$(Thread.java:1220) at sun.misc.Unsafe.park(Unsafe.java:299) at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158) at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:810) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:844) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1173) at java.util.concurrent.locks.ReentrantLock$FairSync.lock(ReentrantLock.java:196) at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:257) at net.sqlcipher.database.SQLiteDatabase.lock(SQLiteDatabase.java:553) at net.sqlcipher.database.SQLiteCompiledSql.releaseSqlStatement(SQLiteCompiledSql.java:106) at net.sqlcipher.database.SQLiteCompiledSql.finalize(SQLiteCompiledSql.java:152) at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:202) at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185) at java.lang.Thread.run(Thread.java:818) I was able to replicate the above crash consistently on a Samsung Galaxy S7 edge when importing well over 100k SMS messages. But as soon as I attached a debugger the crash did not persist. I assume this is because of some VM-level interactions between the two and did not investigate further after fixing it. I do not have access to the stack trace for issue #7953 but this could potentially resolve it. The crash is identical to that in #7477 but this patch is for SMS migration not restoring from a backup. I was not able to replicate the crash on restoring a >100k message backup.
2018-10-07 13:11:15 +02:00
statement = ourSmsDatabase.createInsertStatement(transaction);
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
while (cursor != null && cursor.moveToNext()) {
2019-10-08 01:41:47 +02:00
int addressColumn = cursor.getColumnIndexOrThrow(SystemColumns.ADDRESS);
int typeColumn = cursor.getColumnIndex(SmsDatabase.TYPE);
2019-10-08 01:41:47 +02:00
if (!cursor.isNull(addressColumn) && (cursor.isNull(typeColumn) || isAppropriateTypeForMigration(cursor, typeColumn))) {
getContentValuesForRow(context, cursor, ourThreadId, statement);
statement.execute();
}
2012-08-03 05:23:41 +02:00
listener.progressUpdate(new ProgressDescription(progress, cursor.getCount(), cursor.getPosition()));
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
ourSmsDatabase.endTransaction(transaction);
DatabaseFactory.getThreadDatabase(context).update(ourThreadId, true);
2011-12-20 19:20:44 +01:00
DatabaseFactory.getThreadDatabase(context).notifyConversationListeners(ourThreadId);
} finally {
Close SQL statement, preventing finalizer crashes This will stop instances of the following from occuring in the logs on SMS migration: W/SQLiteCompiledSql: Releasing statement in a finalizer. Please ensure that you explicitly call close() on your cursor: INSERT INTO sms (address, person, date_sent, date, protocol, read, status, type, reply_path_present, net.sqlcipher.database.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here at net.sqlcipher.database.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:62) at net.sqlcipher.database.SQLiteProgram.<init>(SQLiteProgram.java:109) at net.sqlcipher.database.SQLiteStatement.<init>(SQLiteStatement.java:39) at net.sqlcipher.database.SQLiteDatabase.compileStatement(SQLiteDatabase.java:1647) at org.thoughtcrime.securesms.database.SmsDatabase.createInsertStatement(SmsDatabase.java:767) at org.thoughtcrime.securesms.database.SmsMigrator.migrateConversation(SmsMigrator.java:166) at org.thoughtcrime.securesms.database.SmsMigrator.migrateDatabase(SmsMigrator.java:210) at org.thoughtcrime.securesms.service.ApplicationMigrationService$ImportRunnable.run(ApplicationMigrationService.java:159) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) We aren't closing Statement objects before the finalizer on those objects runs. When the GC runs, we'll get warnings like the above which alert us to the fact that these objects are being automatically closed for us in the finalizer, but that this is suboptimal behavior. If we leave too many Statement (or Cursor) objects to be closed in their finalizers, when the GC runs, it'll take longer than 10 seconds to close them all and Android will kill the app. This 10 second limit is hardcoded and we can only try to avoid it. A crash will look like: java.util.concurrent.TimeoutException: net.sqlcipher.database.SQLiteCompiledSql.finalize() timed out after 10 seconds at java.lang.Object.wait(Native Method) at java.lang.Thread.parkFor$(Thread.java:1220) at sun.misc.Unsafe.park(Unsafe.java:299) at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158) at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:810) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:844) at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1173) at java.util.concurrent.locks.ReentrantLock$FairSync.lock(ReentrantLock.java:196) at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:257) at net.sqlcipher.database.SQLiteDatabase.lock(SQLiteDatabase.java:553) at net.sqlcipher.database.SQLiteCompiledSql.releaseSqlStatement(SQLiteCompiledSql.java:106) at net.sqlcipher.database.SQLiteCompiledSql.finalize(SQLiteCompiledSql.java:152) at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:202) at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185) at java.lang.Thread.run(Thread.java:818) I was able to replicate the above crash consistently on a Samsung Galaxy S7 edge when importing well over 100k SMS messages. But as soon as I attached a debugger the crash did not persist. I assume this is because of some VM-level interactions between the two and did not investigate further after fixing it. I do not have access to the stack trace for issue #7953 but this could potentially resolve it. The crash is identical to that in #7477 but this patch is for SMS migration not restoring from a backup. I was not able to replicate the crash on restoring a >100k message backup.
2018-10-07 13:11:15 +02:00
if (statement != null)
statement.close();
2011-12-20 19:20:44 +01:00
if (cursor != null)
2012-08-03 05:23:41 +02:00
cursor.close();
2011-12-20 19:20:44 +01:00
}
}
2012-08-03 05:23:41 +02:00
public static void migrateDatabase(Context context, SmsMigrationProgressListener listener)
2012-08-03 05:23:41 +02:00
{
// if (context.getSharedPreferences("SecureSMS", Context.MODE_PRIVATE).getBoolean("migrated", false))
// return;
2012-08-03 05:23:41 +02:00
2011-12-20 19:20:44 +01:00
ThreadDatabase threadDatabase = DatabaseFactory.getThreadDatabase(context);
2012-08-03 05:23:41 +02:00
Cursor cursor = null;
2011-12-20 19:20:44 +01:00
try {
Uri threadListUri = Uri.parse("content://mms-sms/conversations?simple=true");
cursor = context.getContentResolver().query(threadListUri, null, null, null, "date ASC");
while (cursor != null && cursor.moveToNext()) {
long theirThreadId = cursor.getLong(cursor.getColumnIndexOrThrow("_id"));
String theirRecipients = cursor.getString(cursor.getColumnIndexOrThrow("recipient_ids"));
Set<Recipient> ourRecipients = getOurRecipients(context, theirRecipients);
ProgressDescription progress = new ProgressDescription(cursor.getCount(), cursor.getPosition(), 100, 0);
2012-08-03 05:23:41 +02:00
if (ourRecipients != null) {
if (ourRecipients.size() == 1) {
long ourThreadId = threadDatabase.getThreadIdFor(ourRecipients.iterator().next());
migrateConversation(context, listener, progress, theirThreadId, ourThreadId);
} else if (ourRecipients.size() > 1) {
ourRecipients.add(Recipient.self());
List<RecipientId> recipientIds = Stream.of(ourRecipients).map(Recipient::getId).toList();
2020-03-27 19:55:44 +01:00
GroupId.Mms ourGroupId = DatabaseFactory.getGroupDatabase(context).getOrCreateMmsGroupForMembers(recipientIds);
RecipientId ourGroupRecipientId = DatabaseFactory.getRecipientDatabase(context).getOrInsertFromGroupId(ourGroupId);
Recipient ourGroupRecipient = Recipient.resolved(ourGroupRecipientId);
long ourThreadId = threadDatabase.getThreadIdFor(ourGroupRecipient, ThreadDatabase.DistributionTypes.CONVERSATION);
migrateConversation(context, listener, progress, theirThreadId, ourThreadId);
}
2012-08-03 05:23:41 +02:00
}
progress.incrementPrimaryComplete();
listener.progressUpdate(progress);
2011-12-20 19:20:44 +01:00
}
} finally {
if (cursor != null)
2012-08-03 05:23:41 +02:00
cursor.close();
2011-12-20 19:20:44 +01:00
}
2012-08-03 05:23:41 +02:00
context.getSharedPreferences("SecureSMS", Context.MODE_PRIVATE).edit()
.putBoolean("migrated", true).apply();
2012-08-03 05:23:41 +02:00
}
public interface SmsMigrationProgressListener {
void progressUpdate(ProgressDescription description);
2011-12-20 19:20:44 +01:00
}
public static class ProgressDescription {
public final int primaryTotal;
public int primaryComplete;
public final int secondaryTotal;
public final int secondaryComplete;
ProgressDescription(int primaryTotal, int primaryComplete,
int secondaryTotal, int secondaryComplete)
{
this.primaryTotal = primaryTotal;
this.primaryComplete = primaryComplete;
this.secondaryTotal = secondaryTotal;
this.secondaryComplete = secondaryComplete;
}
ProgressDescription(ProgressDescription that, int secondaryTotal, int secondaryComplete) {
this.primaryComplete = that.primaryComplete;
this.primaryTotal = that.primaryTotal;
this.secondaryComplete = secondaryComplete;
this.secondaryTotal = secondaryTotal;
}
void incrementPrimaryComplete() {
primaryComplete += 1;
}
}
2011-12-20 19:20:44 +01:00
}