k-9/src/com/fsck/k9/activity/FolderInfoHolder.java

130 lines
4.3 KiB
Java
Raw Normal View History

package com.fsck.k9.activity;
import android.content.Context;
import com.fsck.k9.Account;
import com.fsck.k9.R;
import com.fsck.k9.mail.Folder;
public class FolderInfoHolder implements Comparable<FolderInfoHolder> {
public String name;
public String displayName;
public long lastChecked;
public int unreadMessageCount = -1;
public int flaggedMessageCount = -1;
public boolean loading;
public String status;
public boolean lastCheckFailed;
public Folder folder;
public boolean pushActive;
@Override
public boolean equals(Object o) {
return this.name.equals(((FolderInfoHolder)o).name);
}
@Override
public int hashCode() {
return name.hashCode();
}
public int compareTo(FolderInfoHolder o) {
String s1 = this.name;
String s2 = o.name;
int ret = s1.compareToIgnoreCase(s2);
if (ret != 0) {
return ret;
} else {
return s1.compareTo(s2);
}
}
private String truncateStatus(String mess) {
if (mess != null && mess.length() > 27) {
mess = mess.substring(0, 27);
}
return mess;
}
// constructor for an empty object for comparisons
public FolderInfoHolder() {
}
public FolderInfoHolder(Context context, Folder folder, Account account) {
if (context == null) {
Merge branch 'mail-on-sd' * mail-on-sd: (40 commits) Added more comments to explain how the locking mecanism works for LocalStore Fixed wrong method being called during experimental provider initialization (since provider isn't enabled, that didn't harm) Add more comments about how the various StorageProviders work and how they're enabled find src/com/fsck/ -name \*.java|xargs astyle --style=ansi --mode=java --indent-switches --indent=spaces=4 --convert-tabs French localization for storage related settings Remove unused SD card strings (replaced with storage indirection) Merge mail-on-sd branch from trunk Reset mail service on storage mount (even if no account uses the storage, to be improved) find src/com/fsck/ -name \*.java|xargs astyle --style=ansi --mode=java --indent-switches --indent=spaces=4 --convert-tabs Migraion -> Migration move the Storage location preference into preferences rather than the wizard. Made LocalStore log less verbose Added @Override compile checks Added ACTION_SHUTDOWN broadcast receiver to properly initiate shutdown sequence (not yet implemented) and cancel any scheduled Intent Be more consistent about which SQLiteDatabase variable is used (from instance variable to argument variable) to make code more refactoring-friendly (class is already big, code extraction should be easier if not referencing the instance variable). Added transaction timing logging Factorised storage lock/transaction handling code for regular operations. Use DB transactions to batch modifications (makes code more robust / could improve performances) Merge mail-on-sd branch from trunk Update issue 888 Added DB close on unmount / DB open on mount Update issue 888 Back to account list when underlying storage not available/unmounting in MessageView / MessageList ...
2010-11-13 16:40:56 -05:00
throw new IllegalArgumentException("null context given");
}
populate(context, folder, account);
}
public FolderInfoHolder(Context context, Folder folder, Account account, int unreadCount) {
populate(context, folder, account, unreadCount);
}
public void populate(Context context, Folder folder, Account account, int unreadCount) {
populate(context, folder, account);
this.unreadMessageCount = unreadCount;
folder.close();
}
public void populate(Context context, Folder folder, Account account) {
this.folder = folder;
this.name = folder.getName();
this.lastChecked = folder.getLastUpdate();
2010-11-30 22:00:36 -05:00
this.status = truncateStatus(folder.getStatus());
this.displayName = getDisplayName(context, account, name);
}
/**
* Returns the display name for a folder.
*
* <p>
* This will return localized strings for special folders like the Inbox or the Trash folder.
* </p>
*
* @param context
* A {@link Context} instance that is used to get the string resources.
* @param account
* The {@link Account} the folder belongs to.
* @param name
* The name of the folder for which to return the display name.
*
* @return The localized name for the provided folder if it's a special folder or the original
* folder name if it's a non-special folder.
*/
public static String getDisplayName(Context context, Account account, String name) {
final String displayName;
if (name.equals(account.getSpamFolderName())) {
displayName = String.format(
context.getString(R.string.special_mailbox_name_spam_fmt), name);
} else if (name.equals(account.getArchiveFolderName())) {
displayName = String.format(
context.getString(R.string.special_mailbox_name_archive_fmt), name);
} else if (name.equals(account.getSentFolderName())) {
displayName = String.format(
context.getString(R.string.special_mailbox_name_sent_fmt), name);
} else if (name.equals(account.getTrashFolderName())) {
displayName = String.format(
context.getString(R.string.special_mailbox_name_trash_fmt), name);
} else if (name.equals(account.getDraftsFolderName())) {
displayName = String.format(
context.getString(R.string.special_mailbox_name_drafts_fmt), name);
} else if (name.equals(account.getOutboxFolderName())) {
displayName = context.getString(R.string.special_mailbox_name_outbox);
// FIXME: We really shouldn't do a case-insensitive comparison here
} else if (name.equalsIgnoreCase(account.getInboxFolderName())) {
displayName = context.getString(R.string.special_mailbox_name_inbox);
} else {
displayName = name;
}
return displayName;
}
}