2012-12-01 02:02:55 -05:00
|
|
|
package com.fsck.k9.activity;
|
|
|
|
|
|
|
|
import com.fsck.k9.Account;
|
|
|
|
import com.fsck.k9.K9;
|
|
|
|
import com.fsck.k9.Preferences;
|
|
|
|
import com.fsck.k9.R;
|
|
|
|
import com.fsck.k9.mail.Store;
|
|
|
|
import com.fsck.k9.service.DatabaseUpgradeService;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.IntentFilter;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v4.content.LocalBroadcastManager;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This activity triggers a database upgrade if necessary and displays the current upgrade progress.
|
|
|
|
*
|
|
|
|
* <p>
|
|
|
|
* The current upgrade process works as follows:
|
|
|
|
* <ol>
|
|
|
|
* <li>Activities that access an account's database call
|
|
|
|
* {@link #actionUpgradeDatabases(Context, Intent)} in their {@link Activity#onCreate(Bundle)}
|
|
|
|
* method.</li>
|
|
|
|
* <li>{@link #actionUpgradeDatabases(Context, Intent)} will call {@link K9#areDatabasesUpToDate()}
|
|
|
|
* to check if we already know whether the databases have been upgraded.</li>
|
|
|
|
* <li>{@link K9#areDatabasesUpToDate()} will compare the last known database version stored in a
|
|
|
|
* {@link SharedPreferences} file to {@link com.fsck.k9.mail.store.LocalStore#DB_VERSION}. This
|
|
|
|
* is done as an optimization because it's faster than opening all of the accounts' databases
|
|
|
|
* one by one.</li>
|
|
|
|
* <li>If there was an error reading the cached database version or if it shows the databases need
|
|
|
|
* upgrading this activity ({@code UpgradeDatabases}) is started.</li>
|
|
|
|
* <li>This activity will display a spinning progress indicator and start
|
|
|
|
* {@link DatabaseUpgradeService}.</li>
|
|
|
|
* <li>{@link DatabaseUpgradeService} will acquire a partial wake lock (with a 10 minute timeout),
|
|
|
|
* start a background thread to perform the database upgrades, and report the progress using
|
|
|
|
* {@link LocalBroadcastManager} to this activity which will update the UI accordingly.</li>
|
|
|
|
* <li>Once the upgrade is complete {@link DatabaseUpgradeService} will notify this activity,
|
|
|
|
* release the wake lock, and stop itself.</li>
|
|
|
|
* <li>This activity will start the original activity using the intent supplied when calling
|
|
|
|
* {@link #actionUpgradeDatabases(Context, Intent)}.</li>
|
|
|
|
* </ol>
|
|
|
|
* </p><p>
|
|
|
|
* Currently we make no attempts to stop the background code (e.g. {@link MessagingController}) from
|
|
|
|
* opening the accounts' databases. If this happens the upgrade is performed in one of the
|
|
|
|
* background threads and not by {@link DatabaseUpgradeService}. But this is not a problem. Due to
|
|
|
|
* the locking in {@link Store#getLocalInstance(Account, android.app.Application)} the upgrade
|
|
|
|
* service will block in the {@link Account#getLocalStore()} call and from the outside (especially
|
|
|
|
* for this activity) it will appear as if {@link DatabaseUpgradeService} is performing the upgrade.
|
|
|
|
* </p>
|
|
|
|
*/
|
|
|
|
public class UpgradeDatabases extends K9Activity {
|
|
|
|
private static final String ACTION_UPGRADE_DATABASES = "upgrade_databases";
|
|
|
|
private static final String EXTRA_START_INTENT = "start_intent";
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the {@link UpgradeDatabases} activity if necessary.
|
|
|
|
*
|
|
|
|
* @param context
|
|
|
|
* The {@link Context} used to start the activity.
|
|
|
|
* @param startIntent
|
|
|
|
* After the database upgrade is complete an activity is started using this intent.
|
|
|
|
* Usually this is the intent that was used to start the calling activity.
|
|
|
|
* Never {@code null}.
|
|
|
|
*
|
|
|
|
* @return {@code true}, if the {@code UpgradeDatabases} activity was started. In this case the
|
|
|
|
* calling activity is expected to finish itself.<br>
|
|
|
|
* {@code false}, if the account databases don't need upgrading.
|
|
|
|
*/
|
|
|
|
public static boolean actionUpgradeDatabases(Context context, Intent startIntent) {
|
|
|
|
if (K9.areDatabasesUpToDate()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Intent intent = new Intent(context, UpgradeDatabases.class);
|
|
|
|
intent.setAction(ACTION_UPGRADE_DATABASES);
|
|
|
|
intent.putExtra(EXTRA_START_INTENT, startIntent);
|
|
|
|
|
|
|
|
// Make sure this activity is only running once
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
|
|
|
|
|
|
|
context.startActivity(intent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private Intent mStartIntent;
|
|
|
|
|
|
|
|
private TextView mUpgradeText;
|
|
|
|
|
|
|
|
private LocalBroadcastManager mLocalBroadcastManager;
|
|
|
|
private UpgradeDatabaseBroadcastReceiver mBroadcastReceiver;
|
|
|
|
private IntentFilter mIntentFilter;
|
|
|
|
private Preferences mPreferences;
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
|
|
|
// If the databases have already been upgraded there's no point in displaying this activity.
|
|
|
|
if (K9.areDatabasesUpToDate()) {
|
|
|
|
launchOriginalActivity();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mPreferences = Preferences.getPreferences(getApplicationContext());
|
|
|
|
|
|
|
|
initializeLayout();
|
|
|
|
|
|
|
|
decodeExtras();
|
|
|
|
|
|
|
|
setupBroadcastReceiver();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the activity's layout
|
|
|
|
*/
|
|
|
|
private void initializeLayout() {
|
|
|
|
setContentView(R.layout.upgrade_databases);
|
|
|
|
|
|
|
|
mUpgradeText = (TextView) findViewById(R.id.databaseUpgradeText);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decode extras in the intent used to start this activity.
|
|
|
|
*/
|
|
|
|
private void decodeExtras() {
|
|
|
|
Intent intent = getIntent();
|
|
|
|
mStartIntent = intent.getParcelableExtra(EXTRA_START_INTENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup the broadcast receiver used to receive progress updates from
|
|
|
|
* {@link DatabaseUpgradeService}.
|
|
|
|
*/
|
|
|
|
private void setupBroadcastReceiver() {
|
|
|
|
mLocalBroadcastManager = LocalBroadcastManager.getInstance(this);
|
|
|
|
mBroadcastReceiver = new UpgradeDatabaseBroadcastReceiver();
|
|
|
|
|
|
|
|
mIntentFilter = new IntentFilter(DatabaseUpgradeService.ACTION_UPGRADE_PROGRESS);
|
|
|
|
mIntentFilter.addAction(DatabaseUpgradeService.ACTION_UPGRADE_COMPLETE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
// Check if the upgrade was completed while the activity was paused.
|
|
|
|
if (K9.areDatabasesUpToDate()) {
|
|
|
|
launchOriginalActivity();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the broadcast receiver to listen for progress reports from
|
|
|
|
// DatabaseUpgradeService.
|
|
|
|
mLocalBroadcastManager.registerReceiver(mBroadcastReceiver, mIntentFilter);
|
|
|
|
|
|
|
|
// Now that the broadcast receiver was registered start DatabaseUpgradeService.
|
|
|
|
DatabaseUpgradeService.startService(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
// The activity is being paused, so there's no point in listening to the progress of the
|
|
|
|
// database upgrade service.
|
|
|
|
mLocalBroadcastManager.unregisterReceiver(mBroadcastReceiver);
|
|
|
|
|
|
|
|
super.onPause();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finish this activity and launch the original activity using the supplied intent.
|
|
|
|
*/
|
|
|
|
private void launchOriginalActivity() {
|
|
|
|
finish();
|
2013-07-01 23:21:34 -04:00
|
|
|
if (mStartIntent != null) {
|
|
|
|
startActivity(mStartIntent);
|
|
|
|
}
|
2012-12-01 02:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Receiver for broadcasts send by {@link DatabaseUpgradeService}.
|
|
|
|
*/
|
|
|
|
class UpgradeDatabaseBroadcastReceiver extends BroadcastReceiver {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, final Intent intent) {
|
|
|
|
String action = intent.getAction();
|
|
|
|
|
|
|
|
if (DatabaseUpgradeService.ACTION_UPGRADE_PROGRESS.equals(action)) {
|
|
|
|
/*
|
|
|
|
* Information on the current upgrade progress
|
|
|
|
*/
|
|
|
|
|
|
|
|
String accountUuid = intent.getStringExtra(
|
|
|
|
DatabaseUpgradeService.EXTRA_ACCOUNT_UUID);
|
|
|
|
|
|
|
|
Account account = mPreferences.getAccount(accountUuid);
|
|
|
|
|
|
|
|
if (account != null) {
|
|
|
|
String formatString = getString(R.string.upgrade_database_format);
|
|
|
|
String upgradeStatus = String.format(formatString, account.getDescription());
|
|
|
|
mUpgradeText.setText(upgradeStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (DatabaseUpgradeService.ACTION_UPGRADE_COMPLETE.equals(action)) {
|
|
|
|
/*
|
|
|
|
* Upgrade complete
|
|
|
|
*/
|
|
|
|
|
|
|
|
launchOriginalActivity();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|