Clean up
This commit is contained in:
parent
b482fe3e9e
commit
b713311327
4 changed files with 10 additions and 40 deletions
|
@ -261,7 +261,7 @@ public class MessagingController {
|
|||
|
||||
private ImapMessageStore getImapMessageStore() {
|
||||
if (imapMessageStore == null) {
|
||||
imapMessageStore = new ImapMessageStore(notificationController, this, context);
|
||||
imapMessageStore = new ImapMessageStore(notificationController, this);
|
||||
}
|
||||
|
||||
return imapMessageStore;
|
||||
|
@ -1575,26 +1575,6 @@ public class MessagingController {
|
|||
return messageChanged;
|
||||
}
|
||||
|
||||
private String getRootCauseMessage(Throwable t) {
|
||||
Throwable rootCause = t;
|
||||
Throwable nextCause;
|
||||
do {
|
||||
nextCause = rootCause.getCause();
|
||||
if (nextCause != null) {
|
||||
rootCause = nextCause;
|
||||
}
|
||||
} while (nextCause != null);
|
||||
if (rootCause instanceof MessagingException) {
|
||||
return rootCause.getMessage();
|
||||
} else {
|
||||
// Remove the namespace on the exception so we have a fighting chance of seeing more of the error in the
|
||||
// notification.
|
||||
return (rootCause.getLocalizedMessage() != null)
|
||||
? (rootCause.getClass().getSimpleName() + ": " + rootCause.getLocalizedMessage())
|
||||
: rootCause.getClass().getSimpleName();
|
||||
}
|
||||
}
|
||||
|
||||
private void queuePendingCommand(Account account, PendingCommand command) {
|
||||
try {
|
||||
LocalStore localStore = account.getLocalStore();
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
package com.fsck.k9.controller.imap;
|
||||
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.fsck.k9.Account;
|
||||
import com.fsck.k9.controller.MessagingController;
|
||||
import com.fsck.k9.controller.MessagingListener;
|
||||
import com.fsck.k9.controller.RemoteMessageStore;
|
||||
import com.fsck.k9.controller.SyncListener;
|
||||
import com.fsck.k9.mail.Folder;
|
||||
|
@ -16,9 +13,8 @@ public class ImapMessageStore implements RemoteMessageStore {
|
|||
private final ImapSync imapSync;
|
||||
|
||||
|
||||
public ImapMessageStore(NotificationController notificationController, MessagingController controller,
|
||||
Context context) {
|
||||
this.imapSync = new ImapSync(notificationController, controller, context);
|
||||
public ImapMessageStore(NotificationController notificationController, MessagingController controller) {
|
||||
this.imapSync = new ImapSync(notificationController, controller);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -12,8 +12,6 @@ import java.util.Map;
|
|||
import java.util.Set;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.fsck.k9.Account;
|
||||
import com.fsck.k9.Account.Expunge;
|
||||
import com.fsck.k9.AccountStats;
|
||||
|
@ -47,14 +45,12 @@ import static com.fsck.k9.helper.ExceptionHelper.getRootCauseMessage;
|
|||
class ImapSync {
|
||||
private final NotificationController notificationController;
|
||||
private final MessagingController controller;
|
||||
private final Context context;
|
||||
|
||||
|
||||
// TODO: Replace all of these dependencies with one or more interfaces
|
||||
ImapSync(NotificationController notificationController, MessagingController controller, Context context) {
|
||||
ImapSync(NotificationController notificationController, MessagingController controller) {
|
||||
this.notificationController = notificationController;
|
||||
this.controller = controller;
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
void sync(Account account, String folder, SyncListener listener, Folder providedRemoteFolder) {
|
||||
|
@ -307,7 +303,6 @@ class ImapSync {
|
|||
boolean flagSyncOnly, boolean purgeToVisibleLimit, final SyncListener listener) throws MessagingException {
|
||||
|
||||
final Date earliestDate = account.getEarliestPollDate();
|
||||
Date downloadStarted = new Date(); // now
|
||||
|
||||
if (earliestDate != null) {
|
||||
Timber.d("Only syncing messages after %s", earliestDate);
|
||||
|
@ -330,7 +325,7 @@ class ImapSync {
|
|||
List<Message> messages = new ArrayList<>(inputMessages);
|
||||
|
||||
for (Message message : messages) {
|
||||
evaluateMessageForDownload(message, folder, localFolder, remoteFolder, account, unsyncedMessages,
|
||||
evaluateMessageForDownload(message, folder, localFolder, remoteFolder, unsyncedMessages,
|
||||
syncFlagMessages, flagSyncOnly, unreadBeforeStart, listener);
|
||||
}
|
||||
|
||||
|
@ -404,7 +399,7 @@ class ImapSync {
|
|||
* download.
|
||||
*/
|
||||
|
||||
refreshLocalMessageFlags(account, remoteFolder, localFolder, syncFlagMessages, progress, todo, listener);
|
||||
refreshLocalMessageFlags(remoteFolder, localFolder, syncFlagMessages, progress, todo, listener);
|
||||
|
||||
Timber.d("SYNC: Synced remote messages for folder %s, %d new messages", folder, newMessages.get());
|
||||
|
||||
|
@ -424,7 +419,6 @@ class ImapSync {
|
|||
private void evaluateMessageForDownload(final Message message, final String folder,
|
||||
final LocalFolder localFolder,
|
||||
final Folder remoteFolder,
|
||||
final Account account,
|
||||
final List<Message> unsyncedMessages,
|
||||
final List<Message> syncFlagMessages,
|
||||
boolean flagSyncOnly,
|
||||
|
@ -622,7 +616,7 @@ class ImapSync {
|
|||
}
|
||||
|
||||
if (message.getBody() == null) {
|
||||
downloadSaneBody(account, remoteFolder, localFolder, message);
|
||||
downloadSaneBody(remoteFolder, localFolder, message);
|
||||
} else {
|
||||
downloadPartial(remoteFolder, localFolder, message);
|
||||
}
|
||||
|
@ -647,7 +641,7 @@ class ImapSync {
|
|||
Timber.d("SYNC: Done fetching large messages for folder %s", folder);
|
||||
}
|
||||
|
||||
private void refreshLocalMessageFlags(final Account account, final Folder remoteFolder,
|
||||
private void refreshLocalMessageFlags(final Folder remoteFolder,
|
||||
final LocalFolder localFolder,
|
||||
List<Message> syncFlagMessages,
|
||||
final AtomicInteger progress,
|
||||
|
@ -680,7 +674,7 @@ class ImapSync {
|
|||
}
|
||||
}
|
||||
|
||||
private void downloadSaneBody(Account account, Folder remoteFolder, LocalFolder localFolder, Message message)
|
||||
private void downloadSaneBody(Folder remoteFolder, LocalFolder localFolder, Message message)
|
||||
throws MessagingException {
|
||||
/*
|
||||
* The provider was unable to get the structure of the message, so
|
||||
|
|
|
@ -91,7 +91,7 @@ public class ImapSyncTest extends RobolectricTest {
|
|||
MockitoAnnotations.initMocks(this);
|
||||
appContext = ShadowApplication.getInstance().getApplicationContext();
|
||||
|
||||
imapSync = new ImapSync(notificationController, controller, appContext);
|
||||
imapSync = new ImapSync(notificationController, controller);
|
||||
|
||||
setUpMessagingController();
|
||||
configureAccount();
|
||||
|
|
Loading…
Reference in a new issue