mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-12 04:25:08 -05:00
12d1097a24
approximating AOSP coding standards.
45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
package com.fsck.k9.service;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.util.Log;
|
|
|
|
import com.fsck.k9.K9;
|
|
import com.fsck.k9.mail.store.StorageManager;
|
|
|
|
/**
|
|
* That BroadcastReceiver is only interested in UNMOUNT events.
|
|
*
|
|
* <p>
|
|
* Code was separated from {@link StorageReceiver} because we don't want that
|
|
* receiver to be statically defined in manifest.
|
|
* </p>
|
|
*/
|
|
public class StorageGoneReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
public void onReceive(final Context context, final Intent intent) {
|
|
final String action = intent.getAction();
|
|
final Uri uri = intent.getData();
|
|
|
|
if (uri == null || uri.getPath() == null) {
|
|
return;
|
|
}
|
|
|
|
if (K9.DEBUG) {
|
|
Log.v(K9.LOG_TAG, "StorageGoneReceiver: " + intent.toString());
|
|
}
|
|
|
|
final String path = uri.getPath();
|
|
|
|
if (Intent.ACTION_MEDIA_EJECT.equals(action)) {
|
|
StorageManager.getInstance(K9.app).onBeforeUnmount(path);
|
|
} else if (Intent.ACTION_MEDIA_UNMOUNTED.equals(action)) {
|
|
StorageManager.getInstance(K9.app).onAfterUnmount(path);
|
|
}
|
|
}
|
|
|
|
}
|