2008-11-01 17:32:06 -04:00
2009-12-14 21:50:53 -05:00
package com.fsck.k9.mail.store ;
2008-11-01 17:32:06 -04:00
2010-12-23 18:16:54 -05:00
import java.io.* ;
2010-11-13 16:40:56 -05:00
import java.net.URLEncoder ;
import java.util.ArrayList ;
import java.util.Arrays ;
import java.util.Date ;
import java.util.HashMap ;
import java.util.HashSet ;
import java.util.LinkedList ;
import java.util.List ;
import java.util.Map ;
import java.util.Set ;
import java.util.UUID ;
2011-01-04 23:26:33 -05:00
import com.fsck.k9.helper.HtmlConverter ;
2010-11-13 16:40:56 -05:00
import org.apache.commons.io.IOUtils ;
2011-04-06 11:18:14 -04:00
import org.apache.james.mime4j.codec.EncoderUtil ;
2010-11-13 16:40:56 -05:00
2008-11-01 17:32:06 -04:00
import android.app.Application ;
import android.content.ContentValues ;
2010-11-13 16:40:56 -05:00
import android.content.Context ;
2009-12-09 22:16:42 -05:00
import android.content.SharedPreferences ;
2008-11-01 17:32:06 -04:00
import android.database.Cursor ;
import android.database.sqlite.SQLiteDatabase ;
2010-01-24 15:41:04 -05:00
import android.database.sqlite.SQLiteException ;
2008-11-01 17:32:06 -04:00
import android.net.Uri ;
2009-12-09 22:16:42 -05:00
import android.util.Log ;
2010-11-13 16:40:56 -05:00
2010-03-03 23:00:30 -05:00
import com.fsck.k9.Account ;
2011-01-16 16:33:58 -05:00
import com.fsck.k9.AccountStats ;
2009-12-14 21:50:53 -05:00
import com.fsck.k9.K9 ;
import com.fsck.k9.Preferences ;
2010-05-19 14:17:06 -04:00
import com.fsck.k9.controller.MessageRemovalListener ;
import com.fsck.k9.controller.MessageRetrievalListener ;
import com.fsck.k9.helper.Utility ;
2010-11-13 16:40:56 -05:00
import com.fsck.k9.mail.Address ;
import com.fsck.k9.mail.Body ;
import com.fsck.k9.mail.BodyPart ;
import com.fsck.k9.mail.FetchProfile ;
import com.fsck.k9.mail.Flag ;
import com.fsck.k9.mail.Folder ;
import com.fsck.k9.mail.Message ;
2010-12-18 17:56:40 -05:00
import com.fsck.k9.mail.Message.RecipientType ;
2010-11-13 16:40:56 -05:00
import com.fsck.k9.mail.MessagingException ;
import com.fsck.k9.mail.Part ;
import com.fsck.k9.mail.Store ;
2010-05-19 14:17:06 -04:00
import com.fsck.k9.mail.filter.Base64OutputStream ;
2010-11-13 16:40:56 -05:00
import com.fsck.k9.mail.internet.MimeBodyPart ;
import com.fsck.k9.mail.internet.MimeHeader ;
import com.fsck.k9.mail.internet.MimeMessage ;
import com.fsck.k9.mail.internet.MimeMultipart ;
import com.fsck.k9.mail.internet.MimeUtility ;
import com.fsck.k9.mail.internet.TextBody ;
2010-12-18 17:56:40 -05:00
import com.fsck.k9.mail.store.LockableDatabase.DbCallback ;
import com.fsck.k9.mail.store.LockableDatabase.WrappedException ;
2010-11-13 16:40:56 -05:00
import com.fsck.k9.mail.store.StorageManager.StorageProvider ;
2009-12-14 21:50:53 -05:00
import com.fsck.k9.provider.AttachmentProvider ;
2008-11-01 17:32:06 -04:00
/ * *
* < pre >
* Implements a SQLite database backed local store for Messages .
* < / pre >
* /
2011-02-06 17:09:48 -05:00
public class LocalStore extends Store implements Serializable {
2010-08-02 07:55:31 -04:00
2011-01-31 18:45:14 -05:00
private static final long serialVersionUID = - 5142141896809423072L ;
2010-08-07 11:10:07 -04:00
private static final Message [ ] EMPTY_MESSAGE_ARRAY = new Message [ 0 ] ;
2010-08-02 07:55:31 -04:00
/ * *
* Immutable empty { @link String } array
* /
private static final String [ ] EMPTY_STRING_ARRAY = new String [ 0 ] ;
2010-04-05 22:54:48 -04:00
private static final Flag [ ] PERMANENT_FLAGS = { Flag . DELETED , Flag . X_DESTROYED , Flag . SEEN , Flag . FLAGGED } ;
2008-11-01 17:32:06 -04:00
2009-06-08 23:11:35 -04:00
private static Set < String > HEADERS_TO_SAVE = new HashSet < String > ( ) ;
2011-02-06 17:09:48 -05:00
static {
2011-01-12 18:48:28 -05:00
HEADERS_TO_SAVE . add ( K9 . IDENTITY_HEADER ) ;
2010-07-02 10:57:55 -04:00
HEADERS_TO_SAVE . add ( " To " ) ;
HEADERS_TO_SAVE . add ( " Cc " ) ;
HEADERS_TO_SAVE . add ( " From " ) ;
2009-11-17 16:13:29 -05:00
HEADERS_TO_SAVE . add ( " In-Reply-To " ) ;
HEADERS_TO_SAVE . add ( " References " ) ;
2010-08-14 22:37:06 -04:00
HEADERS_TO_SAVE . add ( " Content-ID " ) ;
HEADERS_TO_SAVE . add ( " Content-Disposition " ) ;
2011-01-04 03:33:12 -05:00
HEADERS_TO_SAVE . add ( " User-Agent " ) ;
2009-06-08 23:11:35 -04:00
}
2009-12-27 11:53:31 -05:00
/ *
* a String containing the columns getMessages expects to work with
* in the correct order .
* /
static private String GET_MESSAGES_COLS =
" subject, sender_list, date, uid, flags, id, to_list, cc_list, "
2010-01-12 22:36:36 -05:00
+ " bcc_list, reply_to_list, attachment_count, internal_date, message_id, folder_id, preview " ;
2009-12-27 11:53:31 -05:00
2011-01-23 22:27:19 -05:00
static private String GET_FOLDER_COLS = " id, name, unread_count, visible_limit, last_updated, status, push_state, last_pushed, flagged_count, integrate, top_group, poll_class, push_class, display_class " ;
2011-02-04 07:26:14 -05:00
protected static final int DB_VERSION = 42 ;
2010-11-13 16:40:56 -05:00
2010-12-18 17:56:40 -05:00
protected String uUid = null ;
private final Application mApplication ;
private LockableDatabase database ;
2010-11-13 16:40:56 -05:00
2008-11-01 17:32:06 -04:00
/ * *
2010-03-03 23:00:30 -05:00
* local : //localhost/path/to/database/uuid.db
2010-11-13 16:40:56 -05:00
* This constructor is only used by { @link Store # getLocalInstance ( Account , Application ) }
2010-12-28 04:10:50 -05:00
* @param account
* @param application
2010-11-13 16:40:56 -05:00
* @throws UnavailableStorageException if not { @link StorageProvider # isReady ( Context ) }
2008-11-01 17:32:06 -04:00
* /
2011-02-06 17:09:48 -05:00
public LocalStore ( final Account account , final Application application ) throws MessagingException {
2010-03-03 23:00:30 -05:00
super ( account ) ;
2010-12-18 17:56:40 -05:00
database = new LockableDatabase ( application , account . getUuid ( ) , new StoreSchemaDefinition ( ) ) ;
2008-11-01 17:32:06 -04:00
mApplication = application ;
2010-12-18 17:56:40 -05:00
database . setStorageProviderId ( account . getLocalStorageProviderId ( ) ) ;
2010-11-13 16:40:56 -05:00
uUid = account . getUuid ( ) ;
2010-12-18 17:56:40 -05:00
database . open ( ) ;
2010-11-13 16:40:56 -05:00
}
2009-11-17 11:54:50 -05:00
2011-02-06 17:09:48 -05:00
public void switchLocalStorage ( final String newStorageProviderId ) throws MessagingException {
2010-12-18 17:56:40 -05:00
database . switchProvider ( newStorageProviderId ) ;
2010-11-13 16:40:56 -05:00
}
2010-01-24 15:41:04 -05:00
2011-02-06 17:09:48 -05:00
protected SharedPreferences getPreferences ( ) {
2011-02-04 07:26:14 -05:00
return Preferences . getPreferences ( mApplication ) . getPreferences ( ) ;
}
2011-02-06 17:09:48 -05:00
private class StoreSchemaDefinition implements LockableDatabase . SchemaDefinition {
2010-12-18 17:56:40 -05:00
@Override
2011-02-06 17:09:48 -05:00
public int getVersion ( ) {
2010-12-18 17:56:40 -05:00
return DB_VERSION ;
2010-11-13 16:40:56 -05:00
}
2010-12-24 13:55:05 -05:00
2010-12-18 17:56:40 -05:00
@Override
2011-02-06 17:09:48 -05:00
public void doDbUpgrade ( final SQLiteDatabase db ) {
2010-12-24 13:55:05 -05:00
Log . i ( K9 . LOG_TAG , String . format ( " Upgrading database from version %d to version %d " ,
db . getVersion ( ) , DB_VERSION ) ) ;
2009-11-29 23:03:16 -05:00
2010-01-24 15:41:04 -05:00
2010-12-24 13:55:05 -05:00
AttachmentProvider . clear ( mApplication ) ;
2010-11-13 16:40:56 -05:00
2011-02-06 17:09:48 -05:00
try {
2010-12-24 13:55:05 -05:00
// schema version 29 was when we moved to incremental updates
// in the case of a new db or a < v29 db, we blow away and start from scratch
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 29 ) {
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP TABLE IF EXISTS folders " ) ;
db . execSQL ( " CREATE TABLE folders (id INTEGER PRIMARY KEY, name TEXT, "
2011-01-15 23:23:03 -05:00
+ " last_updated INTEGER, unread_count INTEGER, visible_limit INTEGER, status TEXT, "
+ " push_state TEXT, last_pushed INTEGER, flagged_count INTEGER default 0, "
+ " integrate INTEGER, top_group INTEGER, poll_class TEXT, push_class TEXT, display_class TEXT "
2011-02-06 17:09:48 -05:00
+ " ) " ) ;
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " CREATE INDEX IF NOT EXISTS folder_name ON folders (name) " ) ;
db . execSQL ( " DROP TABLE IF EXISTS messages " ) ;
db . execSQL ( " CREATE TABLE messages (id INTEGER PRIMARY KEY, deleted INTEGER default 0, folder_id INTEGER, uid TEXT, subject TEXT, "
+ " date INTEGER, flags TEXT, sender_list TEXT, to_list TEXT, cc_list TEXT, bcc_list TEXT, reply_to_list TEXT, "
2011-01-12 18:48:28 -05:00
+ " html_content TEXT, text_content TEXT, attachment_count INTEGER, internal_date INTEGER, message_id TEXT, preview TEXT, "
+ " mime_type TEXT) " ) ;
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP TABLE IF EXISTS headers " ) ;
db . execSQL ( " CREATE TABLE headers (id INTEGER PRIMARY KEY, message_id INTEGER, name TEXT, value TEXT) " ) ;
db . execSQL ( " CREATE INDEX IF NOT EXISTS header_folder ON headers (message_id) " ) ;
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " CREATE INDEX IF NOT EXISTS msg_uid ON messages (uid, folder_id) " ) ;
db . execSQL ( " DROP INDEX IF EXISTS msg_folder_id " ) ;
db . execSQL ( " DROP INDEX IF EXISTS msg_folder_id_date " ) ;
db . execSQL ( " CREATE INDEX IF NOT EXISTS msg_folder_id_deleted_date ON messages (folder_id,deleted,internal_date) " ) ;
db . execSQL ( " DROP TABLE IF EXISTS attachments " ) ;
db . execSQL ( " CREATE TABLE attachments (id INTEGER PRIMARY KEY, message_id INTEGER, "
+ " store_data TEXT, content_uri TEXT, size INTEGER, name TEXT, "
+ " mime_type TEXT, content_id TEXT, content_disposition TEXT) " ) ;
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP TABLE IF EXISTS pending_commands " ) ;
db . execSQL ( " CREATE TABLE pending_commands " +
" (id INTEGER PRIMARY KEY, command TEXT, arguments TEXT) " ) ;
2010-11-13 16:40:56 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP TRIGGER IF EXISTS delete_folder " ) ;
db . execSQL ( " CREATE TRIGGER delete_folder BEFORE DELETE ON folders BEGIN DELETE FROM messages WHERE old.id = folder_id; END; " ) ;
2010-01-24 15:41:04 -05:00
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP TRIGGER IF EXISTS delete_message " ) ;
db . execSQL ( " CREATE TRIGGER delete_message BEFORE DELETE ON messages BEGIN DELETE FROM attachments WHERE old.id = message_id; "
+ " DELETE FROM headers where old.id = message_id; END; " ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-12-24 13:55:05 -05:00
// in the case that we're starting out at 29 or newer, run all the needed updates
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 30 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " ALTER TABLE messages ADD deleted INTEGER default 0 " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
if ( ! e . toString ( ) . startsWith ( " duplicate column name: deleted " ) ) {
2010-12-24 13:55:05 -05:00
throw e ;
}
2010-01-24 15:41:04 -05:00
}
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 31 ) {
2010-12-24 13:55:05 -05:00
db . execSQL ( " DROP INDEX IF EXISTS msg_folder_id_date " ) ;
db . execSQL ( " CREATE INDEX IF NOT EXISTS msg_folder_id_deleted_date ON messages (folder_id,deleted,internal_date) " ) ;
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 32 ) {
2010-12-24 13:55:05 -05:00
db . execSQL ( " UPDATE messages SET deleted = 1 WHERE flags LIKE '%DELETED%' " ) ;
2010-01-24 15:41:04 -05:00
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 33 ) {
2010-12-24 13:55:05 -05:00
2011-02-06 17:09:48 -05:00
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " ALTER TABLE messages ADD preview TEXT " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
if ( ! e . toString ( ) . startsWith ( " duplicate column name: preview " ) ) {
2010-12-24 13:55:05 -05:00
throw e ;
}
2010-01-24 15:41:04 -05:00
}
2010-04-16 10:33:54 -04:00
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 34 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " ALTER TABLE folders ADD flagged_count INTEGER default 0 " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
if ( ! e . getMessage ( ) . startsWith ( " duplicate column name: flagged_count " ) ) {
2010-12-24 13:55:05 -05:00
throw e ;
}
2010-04-16 10:33:54 -04:00
}
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 35 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " update messages set flags = replace(flags, 'X_NO_SEEN_INFO', 'X_BAD_FLAG') " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
2010-12-24 13:55:05 -05:00
Log . e ( K9 . LOG_TAG , " Unable to get rid of obsolete flag X_NO_SEEN_INFO " , e ) ;
}
2010-08-14 22:37:06 -04:00
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 36 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " ALTER TABLE attachments ADD content_id TEXT " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
2010-12-24 13:55:05 -05:00
Log . e ( K9 . LOG_TAG , " Unable to add content_id column to attachments " ) ;
}
2010-08-14 22:37:06 -04:00
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 37 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " ALTER TABLE attachments ADD content_disposition TEXT " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
2010-12-24 13:55:05 -05:00
Log . e ( K9 . LOG_TAG , " Unable to add content_disposition column to attachments " ) ;
}
2010-08-14 22:37:06 -04:00
}
2010-01-24 15:41:04 -05:00
2010-12-24 13:55:05 -05:00
// Database version 38 is solely to prune cached attachments now that we clear them better
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 39 ) {
try {
2010-12-24 13:55:05 -05:00
db . execSQL ( " DELETE FROM headers WHERE id in (SELECT headers.id FROM headers LEFT JOIN messages ON headers.message_id = messages.id WHERE messages.id IS NULL) " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
2010-12-24 13:55:05 -05:00
Log . e ( K9 . LOG_TAG , " Unable to remove extra header data from the database " ) ;
}
2010-10-08 02:33:04 -04:00
}
2011-01-12 18:48:28 -05:00
// V40: Store the MIME type for a message.
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 40 ) {
try {
2011-01-12 18:48:28 -05:00
db . execSQL ( " ALTER TABLE messages ADD mime_type TEXT " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
2011-01-12 18:48:28 -05:00
Log . e ( K9 . LOG_TAG , " Unable to add mime_type column to messages " ) ;
}
}
2010-10-08 02:33:04 -04:00
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) < 41 ) {
try {
2011-01-15 23:23:03 -05:00
db . execSQL ( " ALTER TABLE folders ADD integrate INTEGER " ) ;
db . execSQL ( " ALTER TABLE folders ADD top_group INTEGER " ) ;
db . execSQL ( " ALTER TABLE folders ADD poll_class TEXT " ) ;
db . execSQL ( " ALTER TABLE folders ADD push_class TEXT " ) ;
db . execSQL ( " ALTER TABLE folders ADD display_class TEXT " ) ;
2011-02-06 17:09:48 -05:00
} catch ( SQLiteException e ) {
if ( ! e . getMessage ( ) . startsWith ( " duplicate column name: " ) ) {
2011-01-15 23:23:03 -05:00
throw e ;
}
}
Cursor cursor = null ;
2010-08-29 12:58:04 -04:00
2011-02-06 17:09:48 -05:00
try {
2011-01-15 23:23:03 -05:00
2011-02-04 07:26:14 -05:00
SharedPreferences prefs = getPreferences ( ) ;
2011-01-15 23:23:03 -05:00
cursor = db . rawQuery ( " SELECT id, name FROM folders " , null ) ;
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
try {
2011-01-15 23:23:03 -05:00
int id = cursor . getInt ( 0 ) ;
String name = cursor . getString ( 1 ) ;
2011-02-04 07:26:14 -05:00
update41Metadata ( db , prefs , id , name ) ;
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
Log . e ( K9 . LOG_TAG , " error trying to ugpgrade a folder class: " + e ) ;
2011-01-15 23:23:03 -05:00
}
}
}
2011-02-06 17:09:48 -05:00
catch ( SQLiteException e ) {
Log . e ( K9 . LOG_TAG , " Exception while upgrading database to v41. folder classes may have vanished " + e ) ;
2010-12-24 13:55:05 -05:00
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2011-01-15 23:23:03 -05:00
cursor . close ( ) ;
}
}
}
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) = = 41 ) {
try {
2011-02-04 07:26:14 -05:00
long startTime = System . currentTimeMillis ( ) ;
SharedPreferences . Editor editor = getPreferences ( ) . edit ( ) ;
2011-02-06 17:09:48 -05:00
List < ? extends Folder > folders = getPersonalNamespaces ( true ) ;
for ( Folder folder : folders ) {
if ( folder instanceof LocalFolder ) {
2011-02-04 07:26:14 -05:00
LocalFolder lFolder = ( LocalFolder ) folder ;
lFolder . save ( editor ) ;
}
}
editor . commit ( ) ;
long endTime = System . currentTimeMillis ( ) ;
Log . i ( K9 . LOG_TAG , " Putting folder preferences for " + folders . size ( ) + " folders back into Preferences took " + ( endTime - startTime ) + " ms " ) ;
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2011-02-04 07:26:14 -05:00
Log . e ( K9 . LOG_TAG , " Could not replace Preferences in upgrade from DB_VERSION 41 " , e ) ;
}
}
2011-01-15 23:23:03 -05:00
}
2010-12-24 13:55:05 -05:00
}
2011-01-15 23:23:03 -05:00
2011-02-06 17:09:48 -05:00
catch ( SQLiteException e ) {
2010-12-24 13:55:05 -05:00
Log . e ( K9 . LOG_TAG , " Exception while upgrading database. Resetting the DB to v0 " ) ;
db . setVersion ( 0 ) ;
throw new Error ( " Database upgrade failed! Resetting your DB version to 0 to force a full schema recreation. " ) ;
2010-01-24 15:41:04 -05:00
}
2009-11-17 11:54:50 -05:00
2010-01-24 15:41:04 -05:00
2009-11-17 11:54:50 -05:00
2010-12-24 13:55:05 -05:00
db . setVersion ( DB_VERSION ) ;
2009-11-29 23:03:16 -05:00
2011-02-06 17:09:48 -05:00
if ( db . getVersion ( ) ! = DB_VERSION ) {
2010-12-24 13:55:05 -05:00
throw new Error ( " Database upgrade failed! " ) ;
}
2010-01-24 15:41:04 -05:00
2010-12-24 13:55:05 -05:00
// Unless we're blowing away the whole data store, there's no reason to prune attachments
// every time the user upgrades. it'll just cost them money and pain.
// try
//{
// pruneCachedAttachments(true);
//}
//catch (Exception me)
//{
// Log.e(K9.LOG_TAG, "Exception while force pruning attachments during DB update", me);
//}
2009-11-24 19:40:29 -05:00
}
2011-01-15 23:23:03 -05:00
2011-02-06 17:09:48 -05:00
private void update41Metadata ( final SQLiteDatabase db , SharedPreferences prefs , int id , String name ) {
2011-01-15 23:23:03 -05:00
Folder . FolderClass displayClass = Folder . FolderClass . NO_CLASS ;
Folder . FolderClass syncClass = Folder . FolderClass . INHERITED ;
Folder . FolderClass pushClass = Folder . FolderClass . SECOND_CLASS ;
boolean inTopGroup = false ;
boolean integrate = false ;
2011-02-06 17:09:48 -05:00
if ( K9 . INBOX . equals ( name ) ) {
2011-01-15 23:23:03 -05:00
displayClass = Folder . FolderClass . FIRST_CLASS ;
syncClass = Folder . FolderClass . FIRST_CLASS ;
pushClass = Folder . FolderClass . FIRST_CLASS ;
inTopGroup = true ;
integrate = true ;
}
2011-02-06 17:09:48 -05:00
try {
displayClass = Folder . FolderClass . valueOf ( prefs . getString ( uUid + " . " + name + " .displayMode " , displayClass . name ( ) ) ) ;
syncClass = Folder . FolderClass . valueOf ( prefs . getString ( uUid + " . " + name + " .syncMode " , syncClass . name ( ) ) ) ;
pushClass = Folder . FolderClass . valueOf ( prefs . getString ( uUid + " . " + name + " .pushMode " , pushClass . name ( ) ) ) ;
inTopGroup = prefs . getBoolean ( uUid + " . " + name + " .inTopGroup " , inTopGroup ) ;
integrate = prefs . getBoolean ( uUid + " . " + name + " .integrate " , integrate ) ;
} catch ( Exception e ) {
Log . e ( K9 . LOG_TAG , " Throwing away an error while trying to upgrade folder metadata: " + e ) ;
2011-01-15 23:23:03 -05:00
}
2011-02-06 17:09:48 -05:00
if ( displayClass = = Folder . FolderClass . NONE ) {
2011-01-15 23:23:03 -05:00
displayClass = Folder . FolderClass . NO_CLASS ;
}
2011-02-06 17:09:48 -05:00
if ( syncClass = = Folder . FolderClass . NONE ) {
2011-01-15 23:23:03 -05:00
syncClass = Folder . FolderClass . INHERITED ;
}
2011-02-06 17:09:48 -05:00
if ( pushClass = = Folder . FolderClass . NONE ) {
2011-01-15 23:23:03 -05:00
pushClass = Folder . FolderClass . INHERITED ;
}
db . execSQL ( " UPDATE folders SET integrate = ?, top_group = ?, poll_class=?, push_class =?, display_class = ? WHERE id = ? " ,
2011-02-06 17:09:48 -05:00
new Object [ ] { integrate , inTopGroup , syncClass , pushClass , displayClass , id } ) ;
2011-01-15 23:23:03 -05:00
}
2010-12-18 17:56:40 -05:00
}
2009-11-24 19:40:29 -05:00
2011-01-15 23:23:03 -05:00
2011-02-06 17:09:48 -05:00
public long getSize ( ) throws UnavailableStorageException {
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
final StorageManager storageManager = StorageManager . getInstance ( mApplication ) ;
final File attachmentDirectory = storageManager . getAttachmentDirectory ( uUid ,
2010-12-18 17:56:40 -05:00
database . getStorageProviderId ( ) ) ;
2010-11-13 16:40:56 -05:00
2011-02-06 17:09:48 -05:00
return database . execute ( false , new DbCallback < Long > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Long doDbWork ( final SQLiteDatabase db ) {
2010-11-13 16:40:56 -05:00
final File [ ] files = attachmentDirectory . listFiles ( ) ;
long attachmentLength = 0 ;
2011-02-06 17:09:48 -05:00
for ( File file : files ) {
if ( file . exists ( ) ) {
2010-11-13 16:40:56 -05:00
attachmentLength + = file . length ( ) ;
}
}
2010-02-17 22:28:31 -05:00
2010-12-18 17:56:40 -05:00
final File dbFile = storageManager . getDatabase ( uUid , database . getStorageProviderId ( ) ) ;
2010-11-13 16:40:56 -05:00
return dbFile . length ( ) + attachmentLength ;
}
} ) ;
2009-02-09 22:18:42 -05:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public void compact ( ) throws MessagingException {
2010-04-21 22:20:35 -04:00
if ( K9 . DEBUG )
2010-12-01 01:04:28 -05:00
Log . i ( K9 . LOG_TAG , " Before compaction size = " + getSize ( ) ) ;
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
db . execSQL ( " VACUUM " ) ;
return null ;
}
} ) ;
2010-04-21 22:20:35 -04:00
if ( K9 . DEBUG )
Log . i ( K9 . LOG_TAG , " After compaction size = " + getSize ( ) ) ;
2009-02-09 22:18:42 -05:00
}
2008-11-01 17:32:06 -04:00
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public void clear ( ) throws MessagingException {
2010-04-21 22:20:35 -04:00
if ( K9 . DEBUG )
Log . i ( K9 . LOG_TAG , " Before prune size = " + getSize ( ) ) ;
2009-11-24 19:40:29 -05:00
pruneCachedAttachments ( true ) ;
2011-02-06 17:09:48 -05:00
if ( K9 . DEBUG ) {
2010-04-21 22:20:35 -04:00
Log . i ( K9 . LOG_TAG , " After prune / before compaction size = " + getSize ( ) ) ;
2009-11-24 19:40:29 -05:00
2010-04-21 22:20:35 -04:00
Log . i ( K9 . LOG_TAG , " Before clear folder count = " + getFolderCount ( ) ) ;
Log . i ( K9 . LOG_TAG , " Before clear message count = " + getMessageCount ( ) ) ;
2009-11-24 19:40:29 -05:00
2010-04-21 22:20:35 -04:00
Log . i ( K9 . LOG_TAG , " After prune / before clear size = " + getSize ( ) ) ;
}
2009-11-24 19:40:29 -05:00
// don't delete messages that are Local, since there is no copy on the server.
// Don't delete deleted messages. They are essentially placeholders for UIDs of messages that have
2009-11-29 23:57:29 -05:00
// been deleted locally. They take up insignificant space
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) {
2010-11-13 16:40:56 -05:00
db . execSQL ( " DELETE FROM messages WHERE deleted = 0 and uid not like 'Local%' " ) ;
db . execSQL ( " update folders set flagged_count = 0, unread_count = 0 " ) ;
return null ;
}
} ) ;
2009-11-24 19:40:29 -05:00
compact ( ) ;
2010-11-13 16:40:56 -05:00
2011-02-06 17:09:48 -05:00
if ( K9 . DEBUG ) {
2010-04-21 22:20:35 -04:00
Log . i ( K9 . LOG_TAG , " After clear message count = " + getMessageCount ( ) ) ;
2009-11-24 19:40:29 -05:00
2010-04-21 22:20:35 -04:00
Log . i ( K9 . LOG_TAG , " After clear size = " + getSize ( ) ) ;
}
2009-02-09 22:18:42 -05:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public int getMessageCount ( ) throws MessagingException {
return database . execute ( false , new DbCallback < Integer > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( " SELECT COUNT(*) FROM messages " , null ) ;
cursor . moveToFirst ( ) ;
2010-12-28 04:10:30 -05:00
return cursor . getInt ( 0 ) ; // message count
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2009-11-24 19:40:29 -05:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2009-11-24 19:40:29 -05:00
}
2011-01-16 16:33:58 -05:00
2011-02-06 17:09:48 -05:00
public void getMessageCounts ( final AccountStats stats ) throws MessagingException {
2011-01-16 16:33:58 -05:00
final Account . FolderMode displayMode = mAccount . getFolderDisplayMode ( ) ;
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Integer > ( ) {
2011-01-16 16:33:58 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) {
2011-01-16 16:33:58 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2011-01-16 23:06:34 -05:00
String baseQuery = " SELECT SUM(unread_count), SUM(flagged_count) FROM folders WHERE ( name != ? AND name != ? AND name != ? AND name != ? AND name != ? ) " ;
2011-02-06 17:09:48 -05:00
if ( displayMode = = Account . FolderMode . NONE ) {
cursor = db . rawQuery ( baseQuery + " AND (name = ? ) " , new String [ ] {
2011-01-16 23:06:34 -05:00
2011-01-22 21:26:14 -05:00
mAccount . getTrashFolderName ( ) ! = null ? mAccount . getTrashFolderName ( ) : " " ,
mAccount . getDraftsFolderName ( ) ! = null ? mAccount . getDraftsFolderName ( ) : " " ,
mAccount . getSpamFolderName ( ) ! = null ? mAccount . getSpamFolderName ( ) : " " ,
2011-02-06 17:09:48 -05:00
mAccount . getOutboxFolderName ( ) ! = null ? mAccount . getOutboxFolderName ( ) : " " ,
2011-01-22 21:26:14 -05:00
mAccount . getSentFolderName ( ) ! = null ? mAccount . getSentFolderName ( ) : " " ,
2011-01-16 23:06:34 -05:00
K9 . INBOX
2011-01-22 21:26:14 -05:00
}
) ;
2011-02-06 17:09:48 -05:00
} else if ( displayMode = = Account . FolderMode . FIRST_CLASS ) {
cursor = db . rawQuery ( baseQuery + " AND ( name = ? OR display_class = ?) " , new String [ ] {
2011-01-22 21:26:14 -05:00
mAccount . getTrashFolderName ( ) ! = null ? mAccount . getTrashFolderName ( ) : " " ,
mAccount . getDraftsFolderName ( ) ! = null ? mAccount . getDraftsFolderName ( ) : " " ,
mAccount . getSpamFolderName ( ) ! = null ? mAccount . getSpamFolderName ( ) : " " ,
2011-02-06 17:09:48 -05:00
mAccount . getOutboxFolderName ( ) ! = null ? mAccount . getOutboxFolderName ( ) : " " ,
2011-01-22 21:26:14 -05:00
mAccount . getSentFolderName ( ) ! = null ? mAccount . getSentFolderName ( ) : " " ,
2011-01-16 23:06:34 -05:00
K9 . INBOX , Folder . FolderClass . FIRST_CLASS . name ( )
} ) ;
2011-01-16 16:33:58 -05:00
2011-02-06 17:09:48 -05:00
} else if ( displayMode = = Account . FolderMode . FIRST_AND_SECOND_CLASS ) {
cursor = db . rawQuery ( baseQuery + " AND ( name = ? OR display_class = ? OR display_class = ? ) " , new String [ ] {
2011-01-22 21:26:14 -05:00
mAccount . getTrashFolderName ( ) ! = null ? mAccount . getTrashFolderName ( ) : " " ,
mAccount . getDraftsFolderName ( ) ! = null ? mAccount . getDraftsFolderName ( ) : " " ,
mAccount . getSpamFolderName ( ) ! = null ? mAccount . getSpamFolderName ( ) : " " ,
2011-02-06 17:09:48 -05:00
mAccount . getOutboxFolderName ( ) ! = null ? mAccount . getOutboxFolderName ( ) : " " ,
2011-01-22 21:26:14 -05:00
mAccount . getSentFolderName ( ) ! = null ? mAccount . getSentFolderName ( ) : " " ,
2011-01-16 23:06:34 -05:00
K9 . INBOX , Folder . FolderClass . FIRST_CLASS . name ( ) , Folder . FolderClass . SECOND_CLASS . name ( )
} ) ;
2011-02-06 17:09:48 -05:00
} else if ( displayMode = = Account . FolderMode . NOT_SECOND_CLASS ) {
cursor = db . rawQuery ( baseQuery + " AND ( name = ? OR display_class != ?) " , new String [ ] {
2011-01-16 23:06:34 -05:00
2011-01-22 21:26:14 -05:00
mAccount . getTrashFolderName ( ) ! = null ? mAccount . getTrashFolderName ( ) : " " ,
mAccount . getDraftsFolderName ( ) ! = null ? mAccount . getDraftsFolderName ( ) : " " ,
mAccount . getSpamFolderName ( ) ! = null ? mAccount . getSpamFolderName ( ) : " " ,
2011-02-06 17:09:48 -05:00
mAccount . getOutboxFolderName ( ) ! = null ? mAccount . getOutboxFolderName ( ) : " " ,
2011-01-22 21:26:14 -05:00
mAccount . getSentFolderName ( ) ! = null ? mAccount . getSentFolderName ( ) : " " ,
2011-01-16 23:06:34 -05:00
K9 . INBOX , Folder . FolderClass . SECOND_CLASS . name ( )
} ) ;
2011-02-06 17:09:48 -05:00
} else if ( displayMode = = Account . FolderMode . ALL ) {
cursor = db . rawQuery ( baseQuery , new String [ ] {
2011-01-16 23:06:34 -05:00
2011-01-22 21:26:14 -05:00
mAccount . getTrashFolderName ( ) ! = null ? mAccount . getTrashFolderName ( ) : " " ,
mAccount . getDraftsFolderName ( ) ! = null ? mAccount . getDraftsFolderName ( ) : " " ,
mAccount . getSpamFolderName ( ) ! = null ? mAccount . getSpamFolderName ( ) : " " ,
2011-02-06 17:09:48 -05:00
mAccount . getOutboxFolderName ( ) ! = null ? mAccount . getOutboxFolderName ( ) : " " ,
2011-01-22 21:26:14 -05:00
mAccount . getSentFolderName ( ) ! = null ? mAccount . getSentFolderName ( ) : " " ,
2011-01-16 23:06:34 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-01-18 19:13:58 -05:00
Log . e ( K9 . LOG_TAG , " asked to compute account statistics for an impossible folder mode " + displayMode ) ;
stats . unreadMessageCount = 0 ;
stats . flaggedMessageCount = 0 ;
return null ;
2011-01-16 16:33:58 -05:00
}
2011-01-18 19:13:58 -05:00
2011-01-16 16:33:58 -05:00
cursor . moveToFirst ( ) ;
2011-01-18 19:13:58 -05:00
stats . unreadMessageCount = cursor . getInt ( 0 ) ;
stats . flaggedMessageCount = cursor . getInt ( 1 ) ;
2011-01-16 16:33:58 -05:00
return null ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2011-01-16 16:33:58 -05:00
cursor . close ( ) ;
}
}
}
} ) ;
}
2011-02-06 17:09:48 -05:00
public int getFolderCount ( ) throws MessagingException {
return database . execute ( false , new DbCallback < Integer > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( " SELECT COUNT(*) FROM folders " , null ) ;
cursor . moveToFirst ( ) ;
2010-12-28 04:10:30 -05:00
return cursor . getInt ( 0 ) ; // folder count
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2009-02-09 22:18:42 -05:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2009-02-09 22:18:42 -05:00
}
2009-11-24 19:40:29 -05:00
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public LocalFolder getFolder ( String name ) {
2008-11-01 17:32:06 -04:00
return new LocalFolder ( name ) ;
}
// TODO this takes about 260-300ms, seems slow.
@Override
2011-02-06 17:09:48 -05:00
public List < ? extends Folder > getPersonalNamespaces ( boolean forceListAll ) throws MessagingException {
2010-11-13 16:40:56 -05:00
final List < LocalFolder > folders = new LinkedList < LocalFolder > ( ) ;
2011-02-06 17:09:48 -05:00
try {
database . execute ( false , new DbCallback < List < ? extends Folder > > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public List < ? extends Folder > doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
try {
cursor = db . rawQuery ( " SELECT " + GET_FOLDER_COLS + " FROM folders ORDER BY name ASC " , null ) ;
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
LocalFolder folder = new LocalFolder ( cursor . getString ( 1 ) ) ;
2011-01-15 23:23:03 -05:00
folder . open ( cursor . getInt ( 0 ) , cursor . getString ( 1 ) , cursor . getInt ( 2 ) , cursor . getInt ( 3 ) , cursor . getLong ( 4 ) , cursor . getString ( 5 ) , cursor . getString ( 6 ) , cursor . getLong ( 7 ) , cursor . getInt ( 8 ) , cursor . getInt ( 9 ) , cursor . getInt ( 10 ) , cursor . getString ( 11 ) , cursor . getString ( 12 ) , cursor . getString ( 13 ) ) ;
2010-11-13 16:40:56 -05:00
folders . add ( folder ) ;
}
return folders ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
2010-04-21 22:20:35 -04:00
return folders ;
2008-11-01 17:32:06 -04:00
}
@Override
2011-02-06 17:09:48 -05:00
public void checkSettings ( ) throws MessagingException {
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public void delete ( ) throws UnavailableStorageException {
2010-12-18 17:56:40 -05:00
database . delete ( ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
public void recreate ( ) throws UnavailableStorageException {
2010-12-18 17:56:40 -05:00
database . recreate ( ) ;
2008-11-01 17:32:06 -04:00
}
2010-05-15 15:46:16 -04:00
2011-02-06 17:09:48 -05:00
public void pruneCachedAttachments ( ) throws MessagingException {
2009-11-24 19:40:29 -05:00
pruneCachedAttachments ( false ) ;
2009-02-09 22:18:42 -05:00
}
2009-11-24 19:40:29 -05:00
2010-02-17 22:28:31 -05:00
/ * *
* Deletes all cached attachments for the entire store .
2010-12-28 04:10:50 -05:00
* @param force
* @throws com . fsck . k9 . mail . MessagingException
2010-02-17 22:28:31 -05:00
* /
2011-02-06 17:09:48 -05:00
private void pruneCachedAttachments ( final boolean force ) throws MessagingException {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
if ( force ) {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . putNull ( " content_uri " ) ;
db . update ( " attachments " , cv , null , null ) ;
}
final StorageManager storageManager = StorageManager . getInstance ( mApplication ) ;
2010-12-18 17:56:40 -05:00
File [ ] files = storageManager . getAttachmentDirectory ( uUid , database . getStorageProviderId ( ) ) . listFiles ( ) ;
2011-02-06 17:09:48 -05:00
for ( File file : files ) {
if ( file . exists ( ) ) {
if ( ! force ) {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . query (
" attachments " ,
new String [ ] { " store_data " } ,
" id = ? " ,
new String [ ] { file . getName ( ) } ,
null ,
null ,
null ) ;
2011-02-06 17:09:48 -05:00
if ( cursor . moveToNext ( ) ) {
if ( cursor . getString ( 0 ) = = null ) {
2010-11-13 16:40:56 -05:00
if ( K9 . DEBUG )
Log . d ( K9 . LOG_TAG , " Attachment " + file . getAbsolutePath ( ) + " has no store data, not deleting " ) ;
/ *
* If the attachment has no store data it is not recoverable , so
* we won ' t delete it .
* /
continue ;
}
}
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
}
2011-02-06 17:09:48 -05:00
if ( ! force ) {
try {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . putNull ( " content_uri " ) ;
db . update ( " attachments " , cv , " id = ? " , new String [ ] { file . getName ( ) } ) ;
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-02-17 22:28:31 -05:00
/ *
2010-11-13 16:40:56 -05:00
* If the row has gone away before we got to mark it not - downloaded that ' s
* okay .
2010-02-17 22:28:31 -05:00
* /
2010-02-11 16:16:37 -05:00
}
2009-11-24 19:40:29 -05:00
}
2011-02-06 17:09:48 -05:00
if ( ! file . delete ( ) ) {
2010-11-13 16:40:56 -05:00
file . deleteOnExit ( ) ;
2010-02-11 16:16:37 -05:00
}
2009-11-24 19:40:29 -05:00
}
2010-02-17 22:28:31 -05:00
}
2010-11-13 16:40:56 -05:00
return null ;
2008-11-01 17:32:06 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public void resetVisibleLimits ( ) throws UnavailableStorageException {
2010-05-30 17:20:47 -04:00
resetVisibleLimits ( mAccount . getDisplayCount ( ) ) ;
2008-12-11 00:25:59 -05:00
}
2011-02-06 17:09:48 -05:00
public void resetVisibleLimits ( int visibleLimit ) throws UnavailableStorageException {
2010-11-13 16:40:56 -05:00
final ContentValues cv = new ContentValues ( ) ;
2008-12-11 00:25:59 -05:00
cv . put ( " visible_limit " , Integer . toString ( visibleLimit ) ) ;
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
db . update ( " folders " , cv , null , null ) ;
return null ;
}
} ) ;
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public ArrayList < PendingCommand > getPendingCommands ( ) throws UnavailableStorageException {
return database . execute ( false , new DbCallback < ArrayList < PendingCommand > > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public ArrayList < PendingCommand > doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . query ( " pending_commands " ,
new String [ ] { " id " , " command " , " arguments " } ,
null ,
null ,
null ,
null ,
" id ASC " ) ;
ArrayList < PendingCommand > commands = new ArrayList < PendingCommand > ( ) ;
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
PendingCommand command = new PendingCommand ( ) ;
command . mId = cursor . getLong ( 0 ) ;
command . command = cursor . getString ( 1 ) ;
String arguments = cursor . getString ( 2 ) ;
command . arguments = arguments . split ( " , " ) ;
2011-02-06 17:09:48 -05:00
for ( int i = 0 ; i < command . arguments . length ; i + + ) {
2010-11-13 16:40:56 -05:00
command . arguments [ i ] = Utility . fastUrlDecode ( command . arguments [ i ] ) ;
}
commands . add ( command ) ;
}
return commands ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
2008-11-01 17:32:06 -04:00
}
}
2010-11-13 16:40:56 -05:00
} ) ;
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public void addPendingCommand ( PendingCommand command ) throws UnavailableStorageException {
try {
for ( int i = 0 ; i < command . arguments . length ; i + + ) {
2008-11-01 17:32:06 -04:00
command . arguments [ i ] = URLEncoder . encode ( command . arguments [ i ] , " UTF-8 " ) ;
}
2010-11-13 16:40:56 -05:00
final ContentValues cv = new ContentValues ( ) ;
2008-11-01 17:32:06 -04:00
cv . put ( " command " , command . command ) ;
cv . put ( " arguments " , Utility . combine ( command . arguments , ',' ) ) ;
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
db . insert ( " pending_commands " , " command " , cv ) ;
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( UnsupportedEncodingException usee ) {
2008-11-01 17:32:06 -04:00
throw new Error ( " Aparently UTF-8 has been lost to the annals of history. " ) ;
}
}
2011-02-06 17:09:48 -05:00
public void removePendingCommand ( final PendingCommand command ) throws UnavailableStorageException {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
db . delete ( " pending_commands " , " id = ? " , new String [ ] { Long . toString ( command . mId ) } ) ;
return null ;
}
} ) ;
}
2011-02-06 17:09:48 -05:00
public void removePendingCommands ( ) throws UnavailableStorageException {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
db . delete ( " pending_commands " , null , null ) ;
return null ;
}
} ) ;
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public static class PendingCommand {
2008-11-01 17:32:06 -04:00
private long mId ;
public String command ;
public String [ ] arguments ;
@Override
2011-02-06 17:09:48 -05:00
public String toString ( ) {
2008-11-01 17:32:06 -04:00
StringBuffer sb = new StringBuffer ( ) ;
sb . append ( command ) ;
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
sb . append ( " : " ) ;
2011-02-06 17:09:48 -05:00
for ( String argument : arguments ) {
2009-11-29 11:55:35 -05:00
sb . append ( " , " ) ;
2008-11-01 17:32:06 -04:00
sb . append ( argument ) ;
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
//sb.append("\n");
2008-11-01 17:32:06 -04:00
}
return sb . toString ( ) ;
}
}
2009-11-24 19:40:29 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public boolean isMoveCapable ( ) {
2009-11-24 19:40:29 -05:00
return true ;
2009-03-05 02:32:45 -05:00
}
2009-12-27 11:53:37 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public boolean isCopyCapable ( ) {
2009-11-24 19:40:29 -05:00
return true ;
2009-03-05 02:32:45 -05:00
}
2008-11-01 17:32:06 -04:00
2010-05-29 17:56:17 -04:00
public Message [ ] searchForMessages ( MessageRetrievalListener listener , String [ ] queryFields , String queryString ,
2011-02-06 17:09:48 -05:00
List < LocalFolder > folders , Message [ ] messages , final Flag [ ] requiredFlags , final Flag [ ] forbiddenFlags ) throws MessagingException {
2010-04-05 22:54:48 -04:00
List < String > args = new LinkedList < String > ( ) ;
2010-04-29 00:59:14 -04:00
2010-04-05 22:54:48 -04:00
StringBuilder whereClause = new StringBuilder ( ) ;
2011-02-06 17:09:48 -05:00
if ( queryString ! = null & & queryString . length ( ) > 0 ) {
2010-05-29 17:56:17 -04:00
boolean anyAdded = false ;
2011-02-06 17:09:48 -05:00
String likeString = " % " + queryString + " % " ;
2010-05-29 17:56:17 -04:00
whereClause . append ( " AND ( " ) ;
2011-02-06 17:09:48 -05:00
for ( String queryField : queryFields ) {
2010-05-30 00:17:00 -04:00
2011-02-06 17:09:48 -05:00
if ( anyAdded ) {
2010-05-29 17:56:17 -04:00
whereClause . append ( " OR " ) ;
}
2010-11-30 22:06:50 -05:00
whereClause . append ( queryField ) . append ( " LIKE ? " ) ;
2010-05-29 17:56:17 -04:00
args . add ( likeString ) ;
anyAdded = true ;
}
whereClause . append ( " ) " ) ;
2010-04-05 22:54:48 -04:00
}
2011-02-06 17:09:48 -05:00
if ( folders ! = null & & folders . size ( ) > 0 ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " AND folder_id in ( " ) ;
boolean anyAdded = false ;
2011-02-06 17:09:48 -05:00
for ( LocalFolder folder : folders ) {
if ( anyAdded ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " , " ) ;
}
anyAdded = true ;
whereClause . append ( " ? " ) ;
args . add ( Long . toString ( folder . getId ( ) ) ) ;
}
whereClause . append ( " ) " ) ;
}
2011-02-06 17:09:48 -05:00
if ( messages ! = null & & messages . length > 0 ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " AND ( " ) ;
boolean anyAdded = false ;
2011-02-06 17:09:48 -05:00
for ( Message message : messages ) {
if ( anyAdded ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " OR " ) ;
}
anyAdded = true ;
whereClause . append ( " ( uid = ? AND folder_id = ? ) " ) ;
args . add ( message . getUid ( ) ) ;
args . add ( Long . toString ( ( ( LocalFolder ) message . getFolder ( ) ) . getId ( ) ) ) ;
}
whereClause . append ( " ) " ) ;
}
2011-02-06 17:09:48 -05:00
if ( forbiddenFlags ! = null & & forbiddenFlags . length > 0 ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " AND ( " ) ;
boolean anyAdded = false ;
2011-02-06 17:09:48 -05:00
for ( Flag flag : forbiddenFlags ) {
if ( anyAdded ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " AND " ) ;
}
anyAdded = true ;
whereClause . append ( " flags NOT LIKE ? " ) ;
2010-04-29 00:59:14 -04:00
2010-04-05 22:54:48 -04:00
args . add ( " % " + flag . toString ( ) + " % " ) ;
}
whereClause . append ( " ) " ) ;
}
2011-02-06 17:09:48 -05:00
if ( requiredFlags ! = null & & requiredFlags . length > 0 ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " AND ( " ) ;
boolean anyAdded = false ;
2011-02-06 17:09:48 -05:00
for ( Flag flag : requiredFlags ) {
if ( anyAdded ) {
2010-04-05 22:54:48 -04:00
whereClause . append ( " OR " ) ;
}
anyAdded = true ;
whereClause . append ( " flags LIKE ? " ) ;
2010-04-29 00:59:14 -04:00
2010-04-05 22:54:48 -04:00
args . add ( " % " + flag . toString ( ) + " % " ) ;
}
whereClause . append ( " ) " ) ;
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
if ( K9 . DEBUG ) {
2010-04-21 22:20:35 -04:00
Log . v ( K9 . LOG_TAG , " whereClause = " + whereClause . toString ( ) ) ;
Log . v ( K9 . LOG_TAG , " args = " + args ) ;
}
2009-12-27 11:53:37 -05:00
return getMessages (
listener ,
null ,
" SELECT "
+ GET_MESSAGES_COLS
2010-04-05 22:54:48 -04:00
+ " FROM messages WHERE deleted = 0 " + whereClause . toString ( ) + " ORDER BY date DESC "
2010-08-02 07:55:31 -04:00
, args . toArray ( EMPTY_STRING_ARRAY )
2009-12-27 11:53:37 -05:00
) ;
}
/ *
* Given a query string , actually do the query for the messages and
* call the MessageRetrievalListener for each one
* /
private Message [ ] getMessages (
2010-11-13 16:40:56 -05:00
final MessageRetrievalListener listener ,
final LocalFolder folder ,
final String queryString , final String [ ] placeHolders
2011-02-06 17:09:48 -05:00
) throws MessagingException {
2010-11-13 16:40:56 -05:00
final ArrayList < LocalMessage > messages = new ArrayList < LocalMessage > ( ) ;
2011-02-06 17:09:48 -05:00
final int j = database . execute ( false , new DbCallback < Integer > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
int i = 0 ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( queryString + " LIMIT 10 " , placeHolders ) ;
2009-12-27 11:53:37 -05:00
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
LocalMessage message = new LocalMessage ( null , folder ) ;
message . populateFromGetMessageCursor ( cursor ) ;
messages . add ( message ) ;
2011-02-06 17:09:48 -05:00
if ( listener ! = null ) {
2010-11-13 16:40:56 -05:00
listener . messageFinished ( message , i , - 1 ) ;
}
i + + ;
}
cursor . close ( ) ;
cursor = db . rawQuery ( queryString + " LIMIT -1 OFFSET 10 " , placeHolders ) ;
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
LocalMessage message = new LocalMessage ( null , folder ) ;
message . populateFromGetMessageCursor ( cursor ) ;
messages . add ( message ) ;
2011-02-06 17:09:48 -05:00
if ( listener ! = null ) {
2010-11-13 16:40:56 -05:00
listener . messageFinished ( message , i , - 1 ) ;
}
i + + ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
Log . d ( K9 . LOG_TAG , " Got an exception " + e ) ;
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
2009-12-27 11:53:37 -05:00
}
2010-11-13 16:40:56 -05:00
return i ;
2009-12-27 11:53:37 -05:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
if ( listener ! = null ) {
2010-11-13 16:40:56 -05:00
listener . messagesFinished ( j ) ;
}
2010-10-21 16:48:28 -04:00
2010-11-13 16:40:56 -05:00
return messages . toArray ( EMPTY_MESSAGE_ARRAY ) ;
}
2011-02-06 17:09:48 -05:00
public AttachmentInfo getAttachmentInfo ( final String attachmentId ) throws UnavailableStorageException {
return database . execute ( false , new DbCallback < AttachmentInfo > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public AttachmentInfo doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-12-28 04:10:50 -05:00
String name ;
2011-03-24 18:07:46 -04:00
String type ;
2010-12-28 04:10:50 -05:00
int size ;
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . query (
" attachments " ,
2011-03-24 18:07:46 -04:00
new String [ ] { " name " , " size " , " mime_type " } ,
2010-11-13 16:40:56 -05:00
" id = ? " ,
new String [ ] { attachmentId } ,
null ,
null ,
null ) ;
2011-02-06 17:09:48 -05:00
if ( ! cursor . moveToFirst ( ) ) {
2010-11-13 16:40:56 -05:00
return null ;
}
name = cursor . getString ( 0 ) ;
size = cursor . getInt ( 1 ) ;
2011-03-24 18:07:46 -04:00
type = cursor . getString ( 2 ) ;
2010-11-13 16:40:56 -05:00
final AttachmentInfo attachmentInfo = new AttachmentInfo ( ) ;
attachmentInfo . name = name ;
attachmentInfo . size = size ;
2011-03-24 18:07:46 -04:00
attachmentInfo . type = type ;
2010-11-13 16:40:56 -05:00
return attachmentInfo ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2009-12-27 11:53:37 -05:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2009-12-27 11:53:37 -05:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public static class AttachmentInfo {
2010-11-13 16:40:56 -05:00
public String name ;
public int size ;
2011-03-24 18:07:46 -04:00
public String type ;
2010-11-13 16:40:56 -05:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public void createFolders ( final List < LocalFolder > foldersToCreate , final int visibleLimit ) throws UnavailableStorageException {
database . execute ( true , new DbCallback < Void > ( ) {
2011-02-04 07:26:14 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
for ( LocalFolder folder : foldersToCreate ) {
2011-02-04 07:26:14 -05:00
String name = folder . getName ( ) ;
final LocalFolder . PreferencesHolder prefHolder = folder . new PreferencesHolder ( ) ;
// When created, special folders should always be displayed
// inbox should be integrated
// and the inbox and drafts folders should be syncced by default
2011-02-06 17:09:48 -05:00
if ( mAccount . isSpecialFolder ( name ) ) {
2011-02-04 07:26:14 -05:00
prefHolder . inTopGroup = true ;
prefHolder . displayClass = LocalFolder . FolderClass . FIRST_CLASS ;
2011-02-06 17:09:48 -05:00
if ( name . equalsIgnoreCase ( K9 . INBOX ) ) {
2011-02-04 07:26:14 -05:00
prefHolder . integrate = true ;
prefHolder . pushClass = LocalFolder . FolderClass . FIRST_CLASS ;
2011-02-06 17:09:48 -05:00
} else {
2011-02-04 07:26:14 -05:00
prefHolder . pushClass = LocalFolder . FolderClass . INHERITED ;
}
2011-02-06 17:09:48 -05:00
if ( name . equalsIgnoreCase ( K9 . INBOX ) | |
name . equalsIgnoreCase ( mAccount . getDraftsFolderName ( ) ) ) {
2011-02-04 07:26:14 -05:00
prefHolder . syncClass = LocalFolder . FolderClass . FIRST_CLASS ;
2011-02-06 17:09:48 -05:00
} else {
2011-02-04 07:26:14 -05:00
prefHolder . syncClass = LocalFolder . FolderClass . NO_CLASS ;
}
}
folder . refresh ( name , prefHolder ) ; // Recover settings from Preferences
2011-02-06 17:09:48 -05:00
db . execSQL ( " INSERT INTO folders (name, visible_limit, top_group, display_class, poll_class, push_class, integrate) VALUES (?, ?, ?, ?, ?, ?, ?) " , new Object [ ] {
name ,
2011-02-04 07:26:14 -05:00
visibleLimit ,
prefHolder . inTopGroup ? 1 : 0 ,
prefHolder . displayClass . name ( ) ,
prefHolder . syncClass . name ( ) ,
prefHolder . pushClass . name ( ) ,
prefHolder . integrate ? 1 : 0 ,
} ) ;
}
return null ;
}
} ) ;
}
2011-02-06 17:09:48 -05:00
public class LocalFolder extends Folder implements Serializable {
2011-01-31 18:45:23 -05:00
/ * *
*
* /
2011-01-31 18:45:14 -05:00
private static final long serialVersionUID = - 1973296520918624767L ;
2009-12-27 12:22:26 -05:00
private String mName = null ;
2008-11-01 17:32:06 -04:00
private long mFolderId = - 1 ;
private int mUnreadMessageCount = - 1 ;
2010-04-16 10:33:54 -04:00
private int mFlaggedMessageCount = - 1 ;
2008-11-01 17:32:06 -04:00
private int mVisibleLimit = - 1 ;
2011-02-04 07:26:14 -05:00
private String prefId = null ;
2011-01-15 23:23:03 -05:00
private FolderClass mDisplayClass = FolderClass . NO_CLASS ;
private FolderClass mSyncClass = FolderClass . INHERITED ;
private FolderClass mPushClass = FolderClass . SECOND_CLASS ;
private boolean mInTopGroup = false ;
2009-11-24 19:40:29 -05:00
private String mPushState = null ;
2010-04-05 22:54:48 -04:00
private boolean mIntegrate = false ;
2011-01-02 04:01:23 -05:00
// mLastUid is used during syncs. It holds the highest UID within the local folder so we
// know whether or not an unread message added to the local folder is actually "new" or not.
private Integer mLastUid = null ;
2009-12-27 11:50:14 -05:00
2011-02-06 17:09:48 -05:00
public LocalFolder ( String name ) {
2010-03-03 23:00:30 -05:00
super ( LocalStore . this . mAccount ) ;
2008-11-01 17:32:06 -04:00
this . mName = name ;
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
if ( K9 . INBOX . equals ( getName ( ) ) ) {
2011-01-15 23:23:03 -05:00
mSyncClass = FolderClass . FIRST_CLASS ;
mPushClass = FolderClass . FIRST_CLASS ;
mInTopGroup = true ;
2009-01-02 20:47:24 -05:00
}
2009-11-24 19:40:29 -05:00
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public LocalFolder ( long id ) {
2010-03-03 23:00:30 -05:00
super ( LocalStore . this . mAccount ) ;
2009-12-27 11:53:16 -05:00
this . mFolderId = id ;
}
2011-02-06 17:09:48 -05:00
public long getId ( ) {
2008-11-01 17:32:06 -04:00
return mFolderId ;
}
@Override
2011-02-06 17:09:48 -05:00
public void open ( final OpenMode mode ) throws MessagingException {
if ( isOpen ( ) ) {
2009-11-24 19:40:29 -05:00
return ;
}
2011-02-06 17:09:48 -05:00
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2011-01-23 22:27:19 -05:00
String baseQuery = " SELECT " + GET_FOLDER_COLS + " FROM folders " ;
2011-01-15 23:23:03 -05:00
2011-02-06 17:09:48 -05:00
if ( mName ! = null ) {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( baseQuery + " where folders.name = ? " , new String [ ] { mName } ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( baseQuery + " where folders.id = ? " , new String [ ] { Long . toString ( mFolderId ) } ) ;
}
2011-02-06 17:09:48 -05:00
if ( cursor . moveToFirst ( ) ) {
2010-11-13 16:40:56 -05:00
int folderId = cursor . getInt ( 0 ) ;
2011-02-06 17:09:48 -05:00
if ( folderId > 0 ) {
2011-01-15 23:23:03 -05:00
open ( folderId , cursor . getString ( 1 ) , cursor . getInt ( 2 ) , cursor . getInt ( 3 ) , cursor . getLong ( 4 ) , cursor . getString ( 5 ) , cursor . getString ( 6 ) , cursor . getLong ( 7 ) , cursor . getInt ( 8 ) , cursor . getInt ( 9 ) , cursor . getInt ( 10 ) , cursor . getString ( 11 ) , cursor . getString ( 12 ) , cursor . getString ( 13 ) ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
Log . w ( K9 . LOG_TAG , " Creating folder " + getName ( ) + " with existing id " + getId ( ) ) ;
create ( FolderType . HOLDS_MESSAGES ) ;
open ( mode ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
return null ;
2009-11-24 19:40:29 -05:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
private void open ( int id , String name , int unreadCount , int visibleLimit , long lastChecked , String status , String pushState , long lastPushed , int flaggedCount , int integrate , int topGroup , String syncClass , String pushClass , String displayClass ) throws MessagingException {
2009-11-24 19:40:29 -05:00
mFolderId = id ;
2009-12-27 11:53:16 -05:00
mName = name ;
2009-11-24 19:40:29 -05:00
mUnreadMessageCount = unreadCount ;
mVisibleLimit = visibleLimit ;
mPushState = pushState ;
2010-04-16 10:33:54 -04:00
mFlaggedMessageCount = flaggedCount ;
2009-11-24 19:40:29 -05:00
super . setStatus ( status ) ;
// Only want to set the local variable stored in the super class. This class
// does a DB update on setLastChecked
super . setLastChecked ( lastChecked ) ;
super . setLastPush ( lastPushed ) ;
2011-02-06 17:09:48 -05:00
mInTopGroup = topGroup = = 1 ? true : false ;
2011-01-15 23:23:03 -05:00
mIntegrate = integrate = = 1 ? true : false ;
2011-01-18 20:50:28 -05:00
String noClass = FolderClass . NO_CLASS . toString ( ) ;
mDisplayClass = Folder . FolderClass . valueOf ( ( displayClass = = null ) ? noClass : displayClass ) ;
mPushClass = Folder . FolderClass . valueOf ( ( pushClass = = null ) ? noClass : pushClass ) ;
mSyncClass = Folder . FolderClass . valueOf ( ( syncClass = = null ) ? noClass : syncClass ) ;
2011-01-15 23:23:03 -05:00
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public boolean isOpen ( ) {
2009-12-27 12:22:26 -05:00
return ( mFolderId ! = - 1 & & mName ! = null ) ;
2008-11-01 17:32:06 -04:00
}
@Override
2011-02-06 17:09:48 -05:00
public OpenMode getMode ( ) {
2008-11-01 17:32:06 -04:00
return OpenMode . READ_WRITE ;
}
@Override
2011-02-06 17:09:48 -05:00
public String getName ( ) {
2008-11-01 17:32:06 -04:00
return mName ;
}
@Override
2011-02-06 17:09:48 -05:00
public boolean exists ( ) throws MessagingException {
return database . execute ( false , new DbCallback < Boolean > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Boolean doDbWork ( final SQLiteDatabase db ) throws WrappedException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery ( " SELECT id FROM folders "
+ " where folders.name = ? " , new String [ ] { LocalFolder . this
. getName ( )
} ) ;
2011-02-06 17:09:48 -05:00
if ( cursor . moveToFirst ( ) ) {
2010-11-13 16:40:56 -05:00
int folderId = cursor . getInt ( 0 ) ;
return ( folderId > 0 ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
return false ;
}
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2008-11-01 23:56:13 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2008-11-01 23:56:13 -04:00
}
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public boolean create ( FolderType type ) throws MessagingException {
2011-01-17 19:04:17 -05:00
return create ( type , mAccount . getDisplayCount ( ) ) ;
2008-11-01 17:32:06 -04:00
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public boolean create ( FolderType type , final int visibleLimit ) throws MessagingException {
if ( exists ( ) ) {
2008-12-11 00:25:59 -05:00
throw new MessagingException ( " Folder " + mName + " already exists. " ) ;
}
2011-02-04 07:26:14 -05:00
List < LocalFolder > foldersToCreate = new ArrayList < LocalFolder > ( 1 ) ;
foldersToCreate . add ( this ) ;
LocalStore . this . createFolders ( foldersToCreate , visibleLimit ) ;
2011-01-17 19:04:24 -05:00
2008-12-11 00:25:59 -05:00
return true ;
}
2011-02-06 17:09:48 -05:00
private class PreferencesHolder {
2011-02-04 07:26:14 -05:00
FolderClass displayClass = mDisplayClass ;
FolderClass syncClass = mSyncClass ;
FolderClass pushClass = mPushClass ;
boolean inTopGroup = mInTopGroup ;
boolean integrate = mIntegrate ;
}
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void close ( ) {
2008-11-01 17:32:06 -04:00
mFolderId = - 1 ;
}
@Override
2011-02-06 17:09:48 -05:00
public int getMessageCount ( ) throws MessagingException {
try {
return database . execute ( false , new DbCallback < Integer > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) throws WrappedException {
try {
2010-11-13 16:40:56 -05:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-12-28 04:10:30 -05:00
cursor = db . rawQuery ( " SELECT COUNT(*) FROM messages WHERE folder_id = ? " ,
2011-02-06 17:09:48 -05:00
new String [ ] {
2010-11-13 16:40:56 -05:00
Long . toString ( mFolderId )
} ) ;
cursor . moveToFirst ( ) ;
2010-12-28 04:10:30 -05:00
return cursor . getInt ( 0 ) ; //messagecount
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
@Override
2011-02-06 17:09:48 -05:00
public int getUnreadMessageCount ( ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
return mUnreadMessageCount ;
}
2010-04-29 00:59:14 -04:00
2010-04-16 10:33:54 -04:00
@Override
2011-02-06 17:09:48 -05:00
public int getFlaggedMessageCount ( ) throws MessagingException {
2010-04-16 10:33:54 -04:00
open ( OpenMode . READ_WRITE ) ;
return mFlaggedMessageCount ;
}
2008-11-01 17:32:06 -04:00
2011-02-06 17:09:48 -05:00
public void setUnreadMessageCount ( final int unreadMessageCount ) throws MessagingException {
2011-01-15 23:22:59 -05:00
mUnreadMessageCount = Math . max ( 0 , unreadMessageCount ) ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " unread_count " , mUnreadMessageCount ) ;
2009-11-24 19:40:29 -05:00
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
public void setFlaggedMessageCount ( final int flaggedMessageCount ) throws MessagingException {
2011-01-15 23:22:59 -05:00
mFlaggedMessageCount = Math . max ( 0 , flaggedMessageCount ) ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " flagged_count " , mFlaggedMessageCount ) ;
2010-04-16 10:33:54 -04:00
}
2009-11-24 19:40:29 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setLastChecked ( final long lastChecked ) throws MessagingException {
try {
2011-01-15 23:22:59 -05:00
open ( OpenMode . READ_WRITE ) ;
LocalFolder . super . setLastChecked ( lastChecked ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2011-01-15 23:22:59 -05:00
throw new WrappedException ( e ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " last_updated " , lastChecked ) ;
2009-11-24 19:40:29 -05:00
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setLastPush ( final long lastChecked ) throws MessagingException {
try {
2011-01-15 23:22:59 -05:00
open ( OpenMode . READ_WRITE ) ;
LocalFolder . super . setLastPush ( lastChecked ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2011-01-15 23:22:59 -05:00
throw new WrappedException ( e ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " last_pushed " , lastChecked ) ;
2009-10-21 20:41:06 -04:00
}
2008-11-01 17:32:06 -04:00
2011-02-06 17:09:48 -05:00
public int getVisibleLimit ( ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
return mVisibleLimit ;
}
2011-02-06 17:09:48 -05:00
public void purgeToVisibleLimit ( MessageRemovalListener listener ) throws MessagingException {
if ( mVisibleLimit = = 0 ) {
2010-11-12 20:47:08 -05:00
return ;
2010-11-12 18:41:43 -05:00
}
2009-11-26 00:10:12 -05:00
open ( OpenMode . READ_WRITE ) ;
2009-11-29 23:57:29 -05:00
Message [ ] messages = getMessages ( null , false ) ;
2011-02-06 17:09:48 -05:00
for ( int i = mVisibleLimit ; i < messages . length ; i + + ) {
if ( listener ! = null ) {
2009-11-29 11:55:35 -05:00
listener . messageRemoved ( messages [ i ] ) ;
2009-11-26 00:10:12 -05:00
}
2010-11-12 16:38:02 -05:00
messages [ i ] . destroy ( ) ;
2009-11-29 23:03:16 -05:00
2009-11-26 00:10:12 -05:00
}
}
2008-11-01 17:32:06 -04:00
2011-02-06 17:09:48 -05:00
public void setVisibleLimit ( final int visibleLimit ) throws MessagingException {
2011-01-15 23:22:59 -05:00
mVisibleLimit = visibleLimit ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " visible_limit " , mVisibleLimit ) ;
2008-11-01 17:32:06 -04:00
}
2009-11-24 19:40:29 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setStatus ( final String status ) throws MessagingException {
updateFolderColumn ( " status " , status ) ;
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2011-02-06 17:09:48 -05:00
public void setPushState ( final String pushState ) throws MessagingException {
2011-01-15 23:22:59 -05:00
mPushState = pushState ;
updateFolderColumn ( " push_state " , pushState ) ;
}
2011-02-06 17:09:48 -05:00
private void updateFolderColumn ( final String column , final Object value ) throws MessagingException {
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
try {
2010-11-13 16:40:56 -05:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
2011-02-06 17:09:48 -05:00
db . execSQL ( " UPDATE folders SET " + column + " = ? WHERE id = ? " , new Object [ ] { value , mFolderId } ) ;
2010-11-13 16:40:56 -05:00
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2009-10-21 20:41:06 -04:00
}
2011-02-04 07:26:14 -05:00
2011-02-06 17:09:48 -05:00
public String getPushState ( ) {
2009-10-21 20:41:06 -04:00
return mPushState ;
}
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
@Override
2011-02-06 17:09:48 -05:00
public FolderClass getDisplayClass ( ) {
2011-01-15 23:23:03 -05:00
return mDisplayClass ;
2009-11-24 19:40:29 -05:00
}
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
@Override
2011-02-06 17:09:48 -05:00
public FolderClass getSyncClass ( ) {
if ( FolderClass . INHERITED = = mSyncClass ) {
2009-11-24 19:40:29 -05:00
return getDisplayClass ( ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-01-15 23:23:03 -05:00
return mSyncClass ;
2009-11-24 19:40:29 -05:00
}
}
2011-02-06 17:09:48 -05:00
public FolderClass getRawSyncClass ( ) {
2011-01-15 23:23:03 -05:00
return mSyncClass ;
2009-11-24 19:40:29 -05:00
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public FolderClass getPushClass ( ) {
if ( FolderClass . INHERITED = = mPushClass ) {
2009-10-21 20:41:06 -04:00
return getSyncClass ( ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-01-15 23:23:03 -05:00
return mPushClass ;
2009-10-21 20:41:06 -04:00
}
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public FolderClass getRawPushClass ( ) {
2011-01-15 23:23:03 -05:00
return mPushClass ;
2008-11-01 17:32:06 -04:00
2009-10-21 20:41:06 -04:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public void setDisplayClass ( FolderClass displayClass ) throws MessagingException {
2011-01-15 23:23:03 -05:00
mDisplayClass = displayClass ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " display_class " , mDisplayClass . name ( ) ) ;
2011-01-15 23:23:03 -05:00
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2011-02-06 17:09:48 -05:00
public void setSyncClass ( FolderClass syncClass ) throws MessagingException {
2011-01-15 23:23:03 -05:00
mSyncClass = syncClass ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " poll_class " , mSyncClass . name ( ) ) ;
2009-02-24 00:03:28 -05:00
}
2011-02-06 17:09:48 -05:00
public void setPushClass ( FolderClass pushClass ) throws MessagingException {
2011-01-15 23:23:03 -05:00
mPushClass = pushClass ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " push_class " , mPushClass . name ( ) ) ;
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
public boolean isIntegrate ( ) {
2010-04-05 22:54:48 -04:00
return mIntegrate ;
}
2011-02-06 17:09:48 -05:00
public void setIntegrate ( boolean integrate ) throws MessagingException {
2010-04-05 22:54:48 -04:00
mIntegrate = integrate ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " integrate " , mIntegrate ? 1 : 0 ) ;
2010-04-05 22:54:48 -04:00
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
private String getPrefId ( String name ) {
if ( prefId = = null ) {
2011-02-04 07:26:14 -05:00
prefId = uUid + " . " + name ;
}
return prefId ;
}
2011-02-06 17:09:48 -05:00
private String getPrefId ( ) throws MessagingException {
2011-02-04 07:26:14 -05:00
open ( OpenMode . READ_WRITE ) ;
return getPrefId ( mName ) ;
}
2011-02-06 17:09:48 -05:00
public void delete ( ) throws MessagingException {
2011-02-04 07:26:14 -05:00
String id = getPrefId ( ) ;
SharedPreferences . Editor editor = LocalStore . this . getPreferences ( ) . edit ( ) ;
editor . remove ( id + " .displayMode " ) ;
editor . remove ( id + " .syncMode " ) ;
editor . remove ( id + " .pushMode " ) ;
editor . remove ( id + " .inTopGroup " ) ;
editor . remove ( id + " .integrate " ) ;
editor . commit ( ) ;
}
2011-02-06 17:09:48 -05:00
public void save ( ) throws MessagingException {
2011-02-04 07:26:14 -05:00
SharedPreferences . Editor editor = LocalStore . this . getPreferences ( ) . edit ( ) ;
save ( editor ) ;
editor . commit ( ) ;
}
2011-02-06 17:09:48 -05:00
public void save ( SharedPreferences . Editor editor ) throws MessagingException {
2011-02-04 07:26:14 -05:00
String id = getPrefId ( ) ;
// there can be a lot of folders. For the defaults, let's not save prefs, saving space, except for INBOX
2011-02-06 17:09:48 -05:00
if ( mDisplayClass = = FolderClass . NO_CLASS & & ! K9 . INBOX . equals ( getName ( ) ) ) {
2011-02-04 07:26:14 -05:00
editor . remove ( id + " .displayMode " ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-02-04 07:26:14 -05:00
editor . putString ( id + " .displayMode " , mDisplayClass . name ( ) ) ;
}
2011-02-06 17:09:48 -05:00
if ( mSyncClass = = FolderClass . INHERITED & & ! K9 . INBOX . equals ( getName ( ) ) ) {
2011-02-04 07:26:14 -05:00
editor . remove ( id + " .syncMode " ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-02-04 07:26:14 -05:00
editor . putString ( id + " .syncMode " , mSyncClass . name ( ) ) ;
}
2011-02-06 17:09:48 -05:00
if ( mPushClass = = FolderClass . SECOND_CLASS & & ! K9 . INBOX . equals ( getName ( ) ) ) {
2011-02-04 07:26:14 -05:00
editor . remove ( id + " .pushMode " ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-02-04 07:26:14 -05:00
editor . putString ( id + " .pushMode " , mPushClass . name ( ) ) ;
}
editor . putBoolean ( id + " .inTopGroup " , mInTopGroup ) ;
editor . putBoolean ( id + " .integrate " , mIntegrate ) ;
}
2011-02-06 17:09:48 -05:00
public void refresh ( String name , PreferencesHolder prefHolder ) {
2011-02-04 07:26:14 -05:00
String id = getPrefId ( name ) ;
SharedPreferences preferences = LocalStore . this . getPreferences ( ) ;
2011-02-06 17:09:48 -05:00
try {
2011-02-04 07:26:14 -05:00
prefHolder . displayClass = FolderClass . valueOf ( preferences . getString ( id + " .displayMode " ,
2011-02-06 17:09:48 -05:00
prefHolder . displayClass . name ( ) ) ) ;
} catch ( Exception e ) {
2011-02-04 07:26:14 -05:00
Log . e ( K9 . LOG_TAG , " Unable to load displayMode for " + getName ( ) , e ) ;
}
2011-02-06 17:09:48 -05:00
if ( prefHolder . displayClass = = FolderClass . NONE ) {
2011-02-04 07:26:14 -05:00
prefHolder . displayClass = FolderClass . NO_CLASS ;
}
2011-02-06 17:09:48 -05:00
try {
2011-02-04 07:26:14 -05:00
prefHolder . syncClass = FolderClass . valueOf ( preferences . getString ( id + " .syncMode " ,
2011-02-06 17:09:48 -05:00
prefHolder . syncClass . name ( ) ) ) ;
} catch ( Exception e ) {
2011-02-04 07:26:14 -05:00
Log . e ( K9 . LOG_TAG , " Unable to load syncMode for " + getName ( ) , e ) ;
}
2011-02-06 17:09:48 -05:00
if ( prefHolder . syncClass = = FolderClass . NONE ) {
2011-02-04 07:26:14 -05:00
prefHolder . syncClass = FolderClass . INHERITED ;
}
2011-02-06 17:09:48 -05:00
try {
2011-02-04 07:26:14 -05:00
prefHolder . pushClass = FolderClass . valueOf ( preferences . getString ( id + " .pushMode " ,
2011-02-06 17:09:48 -05:00
prefHolder . pushClass . name ( ) ) ) ;
} catch ( Exception e ) {
2011-02-04 07:26:14 -05:00
Log . e ( K9 . LOG_TAG , " Unable to load pushMode for " + getName ( ) , e ) ;
}
2011-02-06 17:09:48 -05:00
if ( prefHolder . pushClass = = FolderClass . NONE ) {
2011-02-04 07:26:14 -05:00
prefHolder . pushClass = FolderClass . INHERITED ;
}
prefHolder . inTopGroup = preferences . getBoolean ( id + " .inTopGroup " , prefHolder . inTopGroup ) ;
prefHolder . integrate = preferences . getBoolean ( id + " .integrate " , prefHolder . integrate ) ;
}
2008-11-01 17:32:06 -04:00
@Override
2010-11-13 16:40:56 -05:00
public void fetch ( final Message [ ] messages , final FetchProfile fp , final MessageRetrievalListener listener )
2011-02-06 17:09:48 -05:00
throws MessagingException {
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException {
try {
2010-11-13 16:40:56 -05:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
if ( fp . contains ( FetchProfile . Item . BODY ) ) {
for ( Message message : messages ) {
2010-11-13 16:40:56 -05:00
LocalMessage localMessage = ( LocalMessage ) message ;
Cursor cursor = null ;
MimeMultipart mp = new MimeMultipart ( ) ;
mp . setSubType ( " mixed " ) ;
2011-02-06 17:09:48 -05:00
try {
2011-01-12 18:48:28 -05:00
cursor = db . rawQuery ( " SELECT html_content, text_content, mime_type FROM messages "
2010-11-13 16:40:56 -05:00
+ " WHERE id = ? " ,
new String [ ] { Long . toString ( localMessage . mId ) } ) ;
cursor . moveToNext ( ) ;
String htmlContent = cursor . getString ( 0 ) ;
String textContent = cursor . getString ( 1 ) ;
2011-01-12 18:48:28 -05:00
String mimeType = cursor . getString ( 2 ) ;
2011-02-06 17:09:48 -05:00
if ( mimeType ! = null & & mimeType . toLowerCase ( ) . startsWith ( " multipart/ " ) ) {
2011-01-12 18:48:28 -05:00
// If this is a multipart message, preserve both text
// and html parts, as well as the subtype.
mp . setSubType ( mimeType . toLowerCase ( ) . replaceFirst ( " ^multipart/ " , " " ) ) ;
2011-02-06 17:09:48 -05:00
if ( textContent ! = null ) {
2011-01-12 18:48:28 -05:00
LocalTextBody body = new LocalTextBody ( textContent , htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/plain " ) ;
mp . addBodyPart ( bp ) ;
}
2011-02-06 17:09:48 -05:00
if ( htmlContent ! = null ) {
2011-01-12 18:48:28 -05:00
TextBody body = new TextBody ( htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/html " ) ;
mp . addBodyPart ( bp ) ;
}
2010-11-13 16:40:56 -05:00
2011-01-12 18:48:28 -05:00
// If we have both text and html content and our MIME type
// isn't multipart/alternative, then corral them into a new
// multipart/alternative part and put that into the parent.
// If it turns out that this is the only part in the parent
// MimeMultipart, it'll get fixed below before we attach to
// the message.
2011-02-06 17:09:48 -05:00
if ( textContent ! = null & & htmlContent ! = null & & ! mimeType . equalsIgnoreCase ( " multipart/alternative " ) ) {
2011-01-12 18:48:28 -05:00
MimeMultipart alternativeParts = mp ;
alternativeParts . setSubType ( " alternative " ) ;
mp = new MimeMultipart ( ) ;
mp . addBodyPart ( new MimeBodyPart ( alternativeParts ) ) ;
}
2011-02-06 17:09:48 -05:00
} else if ( mimeType ! = null & & mimeType . equalsIgnoreCase ( " text/plain " ) ) {
2011-01-12 18:48:28 -05:00
// If it's text, add only the plain part. The MIME
// container will drop away below.
2011-02-06 17:09:48 -05:00
if ( textContent ! = null ) {
2011-01-12 18:48:28 -05:00
LocalTextBody body = new LocalTextBody ( textContent , htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/plain " ) ;
mp . addBodyPart ( bp ) ;
}
2011-02-06 17:09:48 -05:00
} else if ( mimeType ! = null & & mimeType . equalsIgnoreCase ( " text/html " ) ) {
2011-01-12 18:48:28 -05:00
// If it's html, add only the html part. The MIME
// container will drop away below.
2011-02-06 17:09:48 -05:00
if ( htmlContent ! = null ) {
2011-01-12 18:48:28 -05:00
TextBody body = new TextBody ( htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/html " ) ;
mp . addBodyPart ( bp ) ;
}
2011-02-06 17:09:48 -05:00
} else {
2011-01-12 18:48:28 -05:00
// MIME type not set. Grab whatever part we can get,
// with Text taking precedence. This preserves pre-HTML
// composition behaviour.
2011-02-06 17:09:48 -05:00
if ( textContent ! = null ) {
2011-01-12 18:48:28 -05:00
LocalTextBody body = new LocalTextBody ( textContent , htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/plain " ) ;
mp . addBodyPart ( bp ) ;
2011-02-06 17:09:48 -05:00
} else if ( htmlContent ! = null ) {
2011-01-12 18:48:28 -05:00
TextBody body = new TextBody ( htmlContent ) ;
MimeBodyPart bp = new MimeBodyPart ( body , " text/html " ) ;
mp . addBodyPart ( bp ) ;
}
2010-11-13 16:40:56 -05:00
}
2011-01-12 18:48:28 -05:00
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2011-01-12 18:48:28 -05:00
Log . e ( K9 . LOG_TAG , " Exception fetching message: " , e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . query (
" attachments " ,
2011-02-06 17:09:48 -05:00
new String [ ] {
2010-11-13 16:40:56 -05:00
" id " ,
" size " ,
" name " ,
" mime_type " ,
" store_data " ,
" content_uri " ,
" content_id " ,
" content_disposition "
} ,
" message_id = ? " ,
new String [ ] { Long . toString ( localMessage . mId ) } ,
null ,
null ,
null ) ;
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
long id = cursor . getLong ( 0 ) ;
int size = cursor . getInt ( 1 ) ;
String name = cursor . getString ( 2 ) ;
String type = cursor . getString ( 3 ) ;
String storeData = cursor . getString ( 4 ) ;
String contentUri = cursor . getString ( 5 ) ;
String contentId = cursor . getString ( 6 ) ;
String contentDisposition = cursor . getString ( 7 ) ;
Body body = null ;
2011-02-06 17:09:48 -05:00
if ( contentDisposition = = null ) {
2010-11-13 16:40:56 -05:00
contentDisposition = " attachment " ;
}
2011-02-06 17:09:48 -05:00
if ( contentUri ! = null ) {
2010-11-13 16:40:56 -05:00
body = new LocalAttachmentBody ( Uri . parse ( contentUri ) , mApplication ) ;
}
2011-04-06 11:18:14 -04:00
String encoded_name = EncoderUtil . encodeIfNecessary ( name ,
EncoderUtil . Usage . WORD_ENTITY , 7 ) ;
2010-11-13 16:40:56 -05:00
MimeBodyPart bp = new LocalAttachmentBodyPart ( body , id ) ;
bp . setHeader ( MimeHeader . HEADER_CONTENT_TYPE ,
String . format ( " %s; \ n name= \" %s \" " ,
type ,
2011-04-06 11:18:14 -04:00
encoded_name ) ) ;
2010-11-13 16:40:56 -05:00
bp . setHeader ( MimeHeader . HEADER_CONTENT_TRANSFER_ENCODING , " base64 " ) ;
bp . setHeader ( MimeHeader . HEADER_CONTENT_DISPOSITION ,
String . format ( " %s; \ n filename= \" %s \" ; \ n size=%d " ,
contentDisposition ,
2011-04-06 11:18:14 -04:00
encoded_name , // TODO: Should use encoded word defined in RFC 2231.
2010-11-13 16:40:56 -05:00
size ) ) ;
bp . setHeader ( MimeHeader . HEADER_CONTENT_ID , contentId ) ;
/ *
* HEADER_ANDROID_ATTACHMENT_STORE_DATA is a custom header we add to that
2011-01-12 18:48:28 -05:00
* we can later pull the attachment from the remote store if necessary .
2010-11-13 16:40:56 -05:00
* /
bp . setHeader ( MimeHeader . HEADER_ANDROID_ATTACHMENT_STORE_DATA , storeData ) ;
mp . addBodyPart ( bp ) ;
}
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
2011-02-06 17:09:48 -05:00
if ( mp . getCount ( ) = = 0 ) {
2011-01-12 18:48:28 -05:00
// If we have no body, remove the container and create a
// dummy plain text body. This check helps prevents us from
// triggering T_MIME_NO_TEXT and T_TVD_MIME_NO_HEADERS
// SpamAssassin rules.
localMessage . setHeader ( MimeHeader . HEADER_CONTENT_TYPE , " text/plain " ) ;
localMessage . setBody ( new TextBody ( " " ) ) ;
2011-02-06 17:09:48 -05:00
} else if ( mp . getCount ( ) = = 1 & & ( mp . getBodyPart ( 0 ) instanceof LocalAttachmentBodyPart ) = = false )
2011-01-30 20:54:27 -05:00
2010-11-13 16:40:56 -05:00
{
2011-01-12 18:48:28 -05:00
// If we have only one part, drop the MimeMultipart container.
2010-11-13 16:40:56 -05:00
BodyPart part = mp . getBodyPart ( 0 ) ;
localMessage . setHeader ( MimeHeader . HEADER_CONTENT_TYPE , part . getContentType ( ) ) ;
localMessage . setBody ( part . getBody ( ) ) ;
2011-02-06 17:09:48 -05:00
} else {
2011-01-12 18:48:28 -05:00
// Otherwise, attach the MimeMultipart to the message.
2010-11-13 16:40:56 -05:00
localMessage . setBody ( mp ) ;
}
}
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
2008-11-01 17:32:06 -04:00
}
2010-11-13 16:40:56 -05:00
return null ;
2008-11-01 17:32:06 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
@Override
2010-05-30 17:20:47 -04:00
public Message [ ] getMessages ( int start , int end , Date earliestDate , MessageRetrievalListener listener )
2011-02-06 17:09:48 -05:00
throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
throw new MessagingException (
2009-11-24 19:40:29 -05:00
" LocalStore.getMessages(int, int, MessageRetrievalListener) not yet implemented " ) ;
2008-11-01 17:32:06 -04:00
}
2010-05-21 11:34:29 -04:00
/ * *
* Populate the header fields of the given list of messages by reading
* the saved header data from the database .
2010-05-30 00:17:00 -04:00
*
2010-05-21 11:34:29 -04:00
* @param messages
* The messages whose headers should be loaded .
2010-11-13 16:40:56 -05:00
* @throws UnavailableStorageException
2010-05-21 11:34:29 -04:00
* /
2011-02-06 17:09:48 -05:00
private void populateHeaders ( final List < LocalMessage > messages ) throws UnavailableStorageException {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
if ( messages . size ( ) = = 0 ) {
2010-11-13 16:40:56 -05:00
return null ;
2009-06-08 23:11:35 -04:00
}
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
Map < Long , LocalMessage > popMessages = new HashMap < Long , LocalMessage > ( ) ;
List < String > ids = new ArrayList < String > ( ) ;
StringBuffer questions = new StringBuffer ( ) ;
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
for ( int i = 0 ; i < messages . size ( ) ; i + + ) {
if ( i ! = 0 ) {
2010-11-13 16:40:56 -05:00
questions . append ( " , " ) ;
}
questions . append ( " ? " ) ;
LocalMessage message = messages . get ( i ) ;
Long id = message . getId ( ) ;
ids . add ( Long . toString ( id ) ) ;
popMessages . put ( id , message ) ;
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
}
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery (
" SELECT message_id, name, value FROM headers " + " WHERE message_id in ( " + questions + " ) " ,
ids . toArray ( EMPTY_STRING_ARRAY ) ) ;
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
2011-02-06 17:09:48 -05:00
while ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
Long id = cursor . getLong ( 0 ) ;
String name = cursor . getString ( 1 ) ;
String value = cursor . getString ( 2 ) ;
//Log.i(K9.LOG_TAG, "Retrieved header name= " + name + ", value = " + value + " for message " + id);
popMessages . get ( id ) . addHeader ( name , value ) ;
}
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
return null ;
2009-06-08 23:11:35 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2009-06-08 23:11:35 -04:00
}
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public Message getMessage ( final String uid ) throws MessagingException {
try {
return database . execute ( false , new DbCallback < Message > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Message doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
open ( OpenMode . READ_WRITE ) ;
LocalMessage message = new LocalMessage ( uid , LocalFolder . this ) ;
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
cursor = db . rawQuery (
" SELECT "
+ GET_MESSAGES_COLS
+ " FROM messages WHERE uid = ? AND folder_id = ? " ,
2011-02-06 17:09:48 -05:00
new String [ ] {
2010-11-13 16:40:56 -05:00
message . getUid ( ) , Long . toString ( mFolderId )
} ) ;
2011-02-06 17:09:48 -05:00
if ( ! cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
return null ;
}
message . populateFromGetMessageCursor ( cursor ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
return message ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
@Override
2011-02-06 17:09:48 -05:00
public Message [ ] getMessages ( MessageRetrievalListener listener ) throws MessagingException {
2009-11-24 19:40:29 -05:00
return getMessages ( listener , true ) ;
}
2009-11-17 11:54:50 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Message [ ] getMessages ( final MessageRetrievalListener listener , final boolean includeDeleted ) throws MessagingException {
try {
return database . execute ( false , new DbCallback < Message [ ] > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Message [ ] doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
open ( OpenMode . READ_WRITE ) ;
return LocalStore . this . getMessages (
listener ,
LocalFolder . this ,
" SELECT " + GET_MESSAGES_COLS
+ " FROM messages WHERE "
+ ( includeDeleted ? " " : " deleted = 0 AND " )
+ " folder_id = ? ORDER BY date DESC "
2011-02-06 17:09:48 -05:00
, new String [ ] {
2010-11-13 16:40:56 -05:00
Long . toString ( mFolderId )
}
) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2009-12-27 11:50:21 -05:00
}
2008-11-01 17:32:06 -04:00
@Override
public Message [ ] getMessages ( String [ ] uids , MessageRetrievalListener listener )
2011-02-06 17:09:48 -05:00
throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
if ( uids = = null ) {
2008-11-01 17:32:06 -04:00
return getMessages ( listener ) ;
}
ArrayList < Message > messages = new ArrayList < Message > ( ) ;
2011-02-06 17:09:48 -05:00
for ( String uid : uids ) {
2010-03-03 23:00:30 -05:00
Message message = getMessage ( uid ) ;
2011-02-06 17:09:48 -05:00
if ( message ! = null ) {
2010-03-03 23:00:30 -05:00
messages . add ( message ) ;
}
2008-11-01 17:32:06 -04:00
}
2010-08-07 11:10:07 -04:00
return messages . toArray ( EMPTY_MESSAGE_ARRAY ) ;
2008-11-01 17:32:06 -04:00
}
@Override
2011-02-06 17:09:48 -05:00
public void copyMessages ( Message [ ] msgs , Folder folder ) throws MessagingException {
if ( ! ( folder instanceof LocalFolder ) ) {
2008-11-01 17:32:06 -04:00
throw new MessagingException ( " copyMessages called with incorrect Folder " ) ;
}
( ( LocalFolder ) folder ) . appendMessages ( msgs , true ) ;
}
2009-11-24 19:40:29 -05:00
2009-03-05 02:32:45 -05:00
@Override
2011-02-06 17:09:48 -05:00
public void moveMessages ( final Message [ ] msgs , final Folder destFolder ) throws MessagingException {
if ( ! ( destFolder instanceof LocalFolder ) ) {
2010-01-09 14:49:54 -05:00
throw new MessagingException ( " moveMessages called with non-LocalFolder " ) ;
2009-03-05 02:32:45 -05:00
}
2009-03-07 02:20:15 -05:00
2010-11-13 16:40:56 -05:00
final LocalFolder lDestFolder = ( LocalFolder ) destFolder ;
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
lDestFolder . open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
for ( Message message : msgs ) {
2010-11-13 16:40:56 -05:00
LocalMessage lMessage = ( LocalMessage ) message ;
2010-01-13 20:07:28 -05:00
2011-02-06 17:09:48 -05:00
if ( ! message . isSet ( Flag . SEEN ) ) {
2010-11-13 16:40:56 -05:00
setUnreadMessageCount ( getUnreadMessageCount ( ) - 1 ) ;
lDestFolder . setUnreadMessageCount ( lDestFolder . getUnreadMessageCount ( ) + 1 ) ;
}
2010-01-13 20:07:28 -05:00
2011-02-06 17:09:48 -05:00
if ( message . isSet ( Flag . FLAGGED ) ) {
2010-11-13 16:40:56 -05:00
setFlaggedMessageCount ( getFlaggedMessageCount ( ) - 1 ) ;
lDestFolder . setFlaggedMessageCount ( lDestFolder . getFlaggedMessageCount ( ) + 1 ) ;
}
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
String oldUID = message . getUid ( ) ;
2009-11-24 19:40:29 -05:00
2010-11-13 16:40:56 -05:00
if ( K9 . DEBUG )
Log . d ( K9 . LOG_TAG , " Updating folder_id to " + lDestFolder . getId ( ) + " for message with UID "
+ message . getUid ( ) + " , id " + lMessage . getId ( ) + " currently in folder " + getName ( ) ) ;
message . setUid ( K9 . LOCAL_UID_PREFIX + UUID . randomUUID ( ) . toString ( ) ) ;
2011-02-06 17:09:48 -05:00
db . execSQL ( " UPDATE messages " + " SET folder_id = ?, uid = ? " + " WHERE id = ? " , new Object [ ] {
2010-11-13 16:40:56 -05:00
lDestFolder . getId ( ) ,
message . getUid ( ) ,
lMessage . getId ( )
} ) ;
LocalMessage placeHolder = new LocalMessage ( oldUID , LocalFolder . this ) ;
placeHolder . setFlagInternal ( Flag . DELETED , true ) ;
placeHolder . setFlagInternal ( Flag . SEEN , true ) ;
appendMessages ( new Message [ ] { placeHolder } ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2009-11-24 19:40:29 -05:00
}
2009-03-05 02:32:45 -05:00
}
2008-11-01 17:32:06 -04:00
2010-12-18 05:12:52 -05:00
/ * *
* Convenience transaction wrapper for storing a message and set it as fully downloaded . Implemented mainly to speed up DB transaction commit .
2010-12-24 13:55:05 -05:00
*
2010-12-18 05:12:52 -05:00
* @param message Message to store . Never < code > null < / code > .
* @param runnable What to do before setting { @link Flag # X_DOWNLOADED_FULL } . Never < code > null < / code > .
* @return The local version of the message . Never < code > null < / code > .
* @throws MessagingException
* /
2011-02-06 17:09:48 -05:00
public Message storeSmallMessage ( final Message message , final Runnable runnable ) throws MessagingException {
return database . execute ( true , new DbCallback < Message > ( ) {
2010-12-18 05:12:52 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Message doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-12-18 05:12:52 -05:00
appendMessages ( new Message [ ] { message } ) ;
final String uid = message . getUid ( ) ;
final Message result = getMessage ( uid ) ;
runnable . run ( ) ;
// Set a flag indicating this message has now be fully downloaded
result . setFlag ( Flag . X_DOWNLOADED_FULL , true ) ;
return result ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-12-18 05:12:52 -05:00
throw new WrappedException ( e ) ;
}
}
} ) ;
}
2008-11-01 17:32:06 -04:00
/ * *
* The method differs slightly from the contract ; If an incoming message already has a uid
* assigned and it matches the uid of an existing message then this message will replace the
* old message . It is implemented as a delete / insert . This functionality is used in saving
* of drafts and re - synchronization of updated server messages .
2010-05-21 11:34:29 -04:00
*
* NOTE that although this method is located in the LocalStore class , it is not guaranteed
* that the messages supplied as parameters are actually { @link LocalMessage } instances ( in
* fact , in most cases , they are not ) . Therefore , if you want to make local changes only to a
* message , retrieve the appropriate local message instance first ( if it already exists ) .
2008-11-01 17:32:06 -04:00
* /
@Override
2011-02-06 17:09:48 -05:00
public void appendMessages ( Message [ ] messages ) throws MessagingException {
2008-11-01 17:32:06 -04:00
appendMessages ( messages , false ) ;
}
2011-02-09 07:27:24 -05:00
public void destroyMessages ( final Message [ ] messages ) throws MessagingException {
2011-02-13 19:47:30 -05:00
try {
database . execute ( true , new DbCallback < Void > ( ) {
@Override
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
for ( Message message : messages ) {
try {
message . destroy ( ) ;
} catch ( MessagingException e ) {
throw new WrappedException ( e ) ;
2011-02-09 07:27:24 -05:00
}
}
2011-02-13 19:47:30 -05:00
return null ;
}
} ) ;
} catch ( MessagingException e ) {
throw new WrappedException ( e ) ;
}
2011-02-09 07:27:24 -05:00
}
2008-11-01 17:32:06 -04:00
/ * *
* The method differs slightly from the contract ; If an incoming message already has a uid
* assigned and it matches the uid of an existing message then this message will replace the
* old message . It is implemented as a delete / insert . This functionality is used in saving
* of drafts and re - synchronization of updated server messages .
2010-05-21 11:34:29 -04:00
*
* NOTE that although this method is located in the LocalStore class , it is not guaranteed
* that the messages supplied as parameters are actually { @link LocalMessage } instances ( in
* fact , in most cases , they are not ) . Therefore , if you want to make local changes only to a
* message , retrieve the appropriate local message instance first ( if it already exists ) .
2010-12-28 04:10:50 -05:00
* @param messages
* @param copy
2008-11-01 17:32:06 -04:00
* /
2011-02-06 17:09:48 -05:00
private void appendMessages ( final Message [ ] messages , final boolean copy ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
try {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
for ( Message message : messages ) {
if ( ! ( message instanceof MimeMessage ) ) {
2010-11-13 16:40:56 -05:00
throw new Error ( " LocalStore can only store Messages that extend MimeMessage " ) ;
}
String uid = message . getUid ( ) ;
2011-02-06 17:09:48 -05:00
if ( uid = = null | | copy ) {
2010-11-13 16:40:56 -05:00
uid = K9 . LOCAL_UID_PREFIX + UUID . randomUUID ( ) . toString ( ) ;
2011-02-06 17:09:48 -05:00
if ( ! copy ) {
2010-11-13 16:40:56 -05:00
message . setUid ( uid ) ;
}
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
Message oldMessage = getMessage ( uid ) ;
2011-02-06 17:09:48 -05:00
if ( oldMessage ! = null & & ! oldMessage . isSet ( Flag . SEEN ) ) {
2010-11-13 16:40:56 -05:00
setUnreadMessageCount ( getUnreadMessageCount ( ) - 1 ) ;
}
2011-02-06 17:09:48 -05:00
if ( oldMessage ! = null & & oldMessage . isSet ( Flag . FLAGGED ) ) {
2010-11-13 16:40:56 -05:00
setFlaggedMessageCount ( getFlaggedMessageCount ( ) - 1 ) ;
}
/ *
* The message may already exist in this Folder , so delete it first .
* /
deleteAttachments ( message . getUid ( ) ) ;
db . execSQL ( " DELETE FROM messages WHERE folder_id = ? AND uid = ? " ,
new Object [ ]
{ mFolderId , message . getUid ( ) } ) ;
}
ArrayList < Part > viewables = new ArrayList < Part > ( ) ;
ArrayList < Part > attachments = new ArrayList < Part > ( ) ;
MimeUtility . collectParts ( message , viewables , attachments ) ;
StringBuffer sbHtml = new StringBuffer ( ) ;
StringBuffer sbText = new StringBuffer ( ) ;
2011-02-06 17:09:48 -05:00
for ( Part viewable : viewables ) {
try {
2010-11-13 16:40:56 -05:00
String text = MimeUtility . getTextFromPart ( viewable ) ;
/ *
* Anything with MIME type text / html will be stored as such . Anything
* else will be stored as text / plain .
* /
2011-02-06 17:09:48 -05:00
if ( viewable . getMimeType ( ) . equalsIgnoreCase ( " text/html " ) ) {
2010-11-13 16:40:56 -05:00
sbHtml . append ( text ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
sbText . append ( text ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-11-13 16:40:56 -05:00
throw new MessagingException ( " Unable to get text for message part " , e ) ;
}
}
String text = sbText . toString ( ) ;
String html = markupContent ( text , sbHtml . toString ( ) ) ;
String preview = calculateContentPreview ( text ) ;
2010-12-12 19:33:00 -05:00
// If we couldn't generate a reasonable preview from the text part, try doing it with the HTML part.
2011-02-06 17:09:48 -05:00
if ( preview = = null | | preview . length ( ) = = 0 ) {
2011-01-04 23:26:33 -05:00
preview = calculateContentPreview ( HtmlConverter . htmlToText ( html ) ) ;
2010-12-12 19:33:00 -05:00
}
2010-11-13 16:40:56 -05:00
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . put ( " uid " , uid ) ;
cv . put ( " subject " , message . getSubject ( ) ) ;
cv . put ( " sender_list " , Address . pack ( message . getFrom ( ) ) ) ;
cv . put ( " date " , message . getSentDate ( ) = = null
? System . currentTimeMillis ( ) : message . getSentDate ( ) . getTime ( ) ) ;
cv . put ( " flags " , Utility . combine ( message . getFlags ( ) , ',' ) . toUpperCase ( ) ) ;
cv . put ( " deleted " , message . isSet ( Flag . DELETED ) ? 1 : 0 ) ;
cv . put ( " folder_id " , mFolderId ) ;
cv . put ( " to_list " , Address . pack ( message . getRecipients ( RecipientType . TO ) ) ) ;
cv . put ( " cc_list " , Address . pack ( message . getRecipients ( RecipientType . CC ) ) ) ;
cv . put ( " bcc_list " , Address . pack ( message . getRecipients ( RecipientType . BCC ) ) ) ;
cv . put ( " html_content " , html . length ( ) > 0 ? html : null ) ;
cv . put ( " text_content " , text . length ( ) > 0 ? text : null ) ;
cv . put ( " preview " , preview . length ( ) > 0 ? preview : null ) ;
cv . put ( " reply_to_list " , Address . pack ( message . getReplyTo ( ) ) ) ;
cv . put ( " attachment_count " , attachments . size ( ) ) ;
cv . put ( " internal_date " , message . getInternalDate ( ) = = null
? System . currentTimeMillis ( ) : message . getInternalDate ( ) . getTime ( ) ) ;
2011-01-12 18:48:28 -05:00
cv . put ( " mime_type " , message . getMimeType ( ) ) ;
2010-11-13 16:40:56 -05:00
String messageId = message . getMessageId ( ) ;
2011-02-06 17:09:48 -05:00
if ( messageId ! = null ) {
2010-11-13 16:40:56 -05:00
cv . put ( " message_id " , messageId ) ;
}
long messageUid ;
messageUid = db . insert ( " messages " , " uid " , cv ) ;
2011-02-06 17:09:48 -05:00
for ( Part attachment : attachments ) {
2010-11-13 16:40:56 -05:00
saveAttachment ( messageUid , attachment , copy ) ;
}
saveHeaders ( messageUid , ( MimeMessage ) message ) ;
2011-02-06 17:09:48 -05:00
if ( ! message . isSet ( Flag . SEEN ) ) {
2010-11-13 16:40:56 -05:00
setUnreadMessageCount ( getUnreadMessageCount ( ) + 1 ) ;
}
2011-02-06 17:09:48 -05:00
if ( message . isSet ( Flag . FLAGGED ) ) {
2010-11-13 16:40:56 -05:00
setFlaggedMessageCount ( getFlaggedMessageCount ( ) + 1 ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-11-13 16:40:56 -05:00
throw new MessagingException ( " Error appending message " , e ) ;
}
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
return null ;
2010-04-16 10:33:54 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
/ * *
* Update the given message in the LocalStore without first deleting the existing
* message ( contrast with appendMessages ) . This method is used to store changes
* to the given message while updating attachments and not removing existing
* attachment data .
* TODO In the future this method should be combined with appendMessages since the Message
* contains enough data to decide what to do .
* @param message
* @throws MessagingException
* /
2011-02-06 17:09:48 -05:00
public void updateMessage ( final LocalMessage message ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
ArrayList < Part > viewables = new ArrayList < Part > ( ) ;
ArrayList < Part > attachments = new ArrayList < Part > ( ) ;
2008-11-01 17:32:06 -04:00
2010-11-13 16:40:56 -05:00
message . buildMimeRepresentation ( ) ;
2009-05-03 16:52:32 -04:00
2010-11-13 16:40:56 -05:00
MimeUtility . collectParts ( message , viewables , attachments ) ;
StringBuffer sbHtml = new StringBuffer ( ) ;
StringBuffer sbText = new StringBuffer ( ) ;
2011-02-06 17:09:48 -05:00
for ( int i = 0 , count = viewables . size ( ) ; i < count ; i + + ) {
2010-11-13 16:40:56 -05:00
Part viewable = viewables . get ( i ) ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
String text = MimeUtility . getTextFromPart ( viewable ) ;
/ *
* Anything with MIME type text / html will be stored as such . Anything
* else will be stored as text / plain .
* /
2011-02-06 17:09:48 -05:00
if ( viewable . getMimeType ( ) . equalsIgnoreCase ( " text/html " ) ) {
2010-11-13 16:40:56 -05:00
sbHtml . append ( text ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
sbText . append ( text ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-11-13 16:40:56 -05:00
throw new MessagingException ( " Unable to get text for message part " , e ) ;
}
}
String text = sbText . toString ( ) ;
String html = markupContent ( text , sbHtml . toString ( ) ) ;
String preview = calculateContentPreview ( text ) ;
2010-12-12 19:33:00 -05:00
// If we couldn't generate a reasonable preview from the text part, try doing it with the HTML part.
2011-02-06 17:09:48 -05:00
if ( preview = = null | | preview . length ( ) = = 0 ) {
2011-01-04 23:26:33 -05:00
preview = calculateContentPreview ( HtmlConverter . htmlToText ( html ) ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
db . execSQL ( " UPDATE messages SET "
+ " uid = ?, subject = ?, sender_list = ?, date = ?, flags = ?, "
+ " folder_id = ?, to_list = ?, cc_list = ?, bcc_list = ?, "
+ " html_content = ?, text_content = ?, preview = ?, reply_to_list = ?, "
+ " attachment_count = ? WHERE id = ? " ,
2011-02-06 17:09:48 -05:00
new Object [ ] {
2010-11-13 16:40:56 -05:00
message . getUid ( ) ,
message . getSubject ( ) ,
Address . pack ( message . getFrom ( ) ) ,
message . getSentDate ( ) = = null ? System
. currentTimeMillis ( ) : message . getSentDate ( )
. getTime ( ) ,
Utility . combine ( message . getFlags ( ) , ',' ) . toUpperCase ( ) ,
mFolderId ,
Address . pack ( message
. getRecipients ( RecipientType . TO ) ) ,
Address . pack ( message
. getRecipients ( RecipientType . CC ) ) ,
Address . pack ( message
. getRecipients ( RecipientType . BCC ) ) ,
html . length ( ) > 0 ? html : null ,
text . length ( ) > 0 ? text : null ,
preview . length ( ) > 0 ? preview : null ,
Address . pack ( message . getReplyTo ( ) ) ,
attachments . size ( ) ,
message . mId
} ) ;
2011-02-06 17:09:48 -05:00
for ( int i = 0 , count = attachments . size ( ) ; i < count ; i + + ) {
2010-11-13 16:40:56 -05:00
Part attachment = attachments . get ( i ) ;
saveAttachment ( message . mId , attachment , false ) ;
}
saveHeaders ( message . getId ( ) , message ) ;
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-11-13 16:40:56 -05:00
throw new MessagingException ( " Error appending message " , e ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
2010-05-21 11:34:29 -04:00
/ * *
* Save the headers of the given message . Note that the message is not
* necessarily a { @link LocalMessage } instance .
2010-12-28 04:10:50 -05:00
* @param id
* @param message
* @throws com . fsck . k9 . mail . MessagingException
2010-05-21 11:34:29 -04:00
* /
2011-02-06 17:09:48 -05:00
private void saveHeaders ( final long id , final MimeMessage message ) throws MessagingException {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
boolean saveAllHeaders = mAccount . saveAllHeaders ( ) ;
boolean gotAdditionalHeaders = false ;
deleteHeaders ( id ) ;
2011-02-06 17:09:48 -05:00
for ( String name : message . getHeaderNames ( ) ) {
if ( saveAllHeaders | | HEADERS_TO_SAVE . contains ( name ) ) {
2010-11-13 16:40:56 -05:00
String [ ] values = message . getHeader ( name ) ;
2011-02-06 17:09:48 -05:00
for ( String value : values ) {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . put ( " message_id " , id ) ;
cv . put ( " name " , name ) ;
cv . put ( " value " , value ) ;
db . insert ( " headers " , " name " , cv ) ;
}
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
gotAdditionalHeaders = true ;
}
2009-06-08 23:11:35 -04:00
}
2010-05-21 11:34:29 -04:00
2011-02-06 17:09:48 -05:00
if ( ! gotAdditionalHeaders ) {
2010-11-13 16:40:56 -05:00
// Remember that all headers for this message have been saved, so it is
// not necessary to download them again in case the user wants to see all headers.
List < Flag > appendedFlags = new ArrayList < Flag > ( ) ;
appendedFlags . addAll ( Arrays . asList ( message . getFlags ( ) ) ) ;
appendedFlags . add ( Flag . X_GOT_ALL_HEADERS ) ;
db . execSQL ( " UPDATE messages " + " SET flags = ? " + " WHERE id = ? " ,
new Object [ ]
{ Utility . combine ( appendedFlags . toArray ( ) , ',' ) . toUpperCase ( ) , id } ) ;
}
return null ;
}
} ) ;
2009-06-08 23:11:35 -04:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
private void deleteHeaders ( final long id ) throws UnavailableStorageException {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
db . execSQL ( " DELETE FROM headers WHERE message_id = ? " , new Object [ ]
{ id } ) ;
return null ;
}
} ) ;
2009-06-08 23:11:35 -04:00
}
2008-11-01 17:32:06 -04:00
/ * *
* @param messageId
* @param attachment
2010-12-28 04:10:50 -05:00
* @param saveAsNew
2008-11-01 17:32:06 -04:00
* @throws IOException
* @throws MessagingException
* /
2010-11-13 16:40:56 -05:00
private void saveAttachment ( final long messageId , final Part attachment , final boolean saveAsNew )
2011-02-06 17:09:48 -05:00
throws IOException , MessagingException {
try {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
long attachmentId = - 1 ;
Uri contentUri = null ;
int size = - 1 ;
File tempAttachmentFile = null ;
2008-11-01 17:32:06 -04:00
2011-02-06 17:09:48 -05:00
if ( ( ! saveAsNew ) & & ( attachment instanceof LocalAttachmentBodyPart ) ) {
2010-11-13 16:40:56 -05:00
attachmentId = ( ( LocalAttachmentBodyPart ) attachment ) . getAttachmentId ( ) ;
}
2008-11-01 17:32:06 -04:00
2010-12-18 17:56:40 -05:00
final File attachmentDirectory = StorageManager . getInstance ( mApplication ) . getAttachmentDirectory ( uUid , database . getStorageProviderId ( ) ) ;
2011-02-06 17:09:48 -05:00
if ( attachment . getBody ( ) ! = null ) {
2010-11-13 16:40:56 -05:00
Body body = attachment . getBody ( ) ;
2011-02-06 17:09:48 -05:00
if ( body instanceof LocalAttachmentBody ) {
2010-11-13 16:40:56 -05:00
contentUri = ( ( LocalAttachmentBody ) body ) . getContentUri ( ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
/ *
* If the attachment has a body we ' re expected to save it into the local store
* so we copy the data into a cached attachment file .
* /
InputStream in = attachment . getBody ( ) . getInputStream ( ) ;
tempAttachmentFile = File . createTempFile ( " att " , null , attachmentDirectory ) ;
FileOutputStream out = new FileOutputStream ( tempAttachmentFile ) ;
size = IOUtils . copy ( in , out ) ;
in . close ( ) ;
out . close ( ) ;
}
}
2010-07-11 09:44:16 -04:00
2011-02-06 17:09:48 -05:00
if ( size = = - 1 ) {
2010-11-13 16:40:56 -05:00
/ *
* If the attachment is not yet downloaded see if we can pull a size
* off the Content - Disposition .
* /
String disposition = attachment . getDisposition ( ) ;
2011-02-06 17:09:48 -05:00
if ( disposition ! = null ) {
2010-11-13 16:40:56 -05:00
String s = MimeUtility . getHeaderParameter ( disposition , " size " ) ;
2011-02-06 17:09:48 -05:00
if ( s ! = null ) {
2010-11-13 16:40:56 -05:00
size = Integer . parseInt ( s ) ;
}
}
}
2011-02-06 17:09:48 -05:00
if ( size = = - 1 ) {
2010-11-13 16:40:56 -05:00
size = 0 ;
}
2008-11-01 17:32:06 -04:00
2010-11-13 16:40:56 -05:00
String storeData =
Utility . combine ( attachment . getHeader (
MimeHeader . HEADER_ANDROID_ATTACHMENT_STORE_DATA ) , ',' ) ;
2008-11-01 17:32:06 -04:00
2011-04-06 11:18:14 -04:00
String name = MimeUtility . unfoldAndDecode ( MimeUtility . getHeaderParameter ( attachment . getContentType ( ) , " name " ) ) ;
2010-11-13 16:40:56 -05:00
String contentId = MimeUtility . getHeaderParameter ( attachment . getContentId ( ) , null ) ;
2008-11-01 17:32:06 -04:00
2010-11-13 16:40:56 -05:00
String contentDisposition = MimeUtility . unfoldAndDecode ( attachment . getDisposition ( ) ) ;
2011-04-03 11:48:13 -04:00
String dispositionType = contentDisposition ;
2011-04-09 12:10:25 -04:00
if ( dispositionType ! = null ) {
int pos = dispositionType . indexOf ( ';' ) ;
if ( pos ! = - 1 ) {
// extract the disposition-type, "attachment", "inline" or extension-token (see the RFC 2183)
dispositionType = dispositionType . substring ( 0 , pos ) ;
}
2011-04-03 11:48:13 -04:00
}
2011-02-06 17:09:48 -05:00
if ( name = = null & & contentDisposition ! = null ) {
2011-04-06 11:18:14 -04:00
name = MimeUtility . unfoldAndDecode ( MimeUtility . getHeaderParameter ( contentDisposition , " filename " ) ) ;
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
if ( attachmentId = = - 1 ) {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . put ( " message_id " , messageId ) ;
cv . put ( " content_uri " , contentUri ! = null ? contentUri . toString ( ) : null ) ;
cv . put ( " store_data " , storeData ) ;
cv . put ( " size " , size ) ;
cv . put ( " name " , name ) ;
cv . put ( " mime_type " , attachment . getMimeType ( ) ) ;
cv . put ( " content_id " , contentId ) ;
2011-04-03 11:48:13 -04:00
cv . put ( " content_disposition " , dispositionType ) ;
2010-11-13 16:40:56 -05:00
attachmentId = db . insert ( " attachments " , " message_id " , cv ) ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-13 16:40:56 -05:00
ContentValues cv = new ContentValues ( ) ;
cv . put ( " content_uri " , contentUri ! = null ? contentUri . toString ( ) : null ) ;
cv . put ( " size " , size ) ;
db . update ( " attachments " , cv , " id = ? " , new String [ ]
{ Long . toString ( attachmentId ) } ) ;
}
2010-07-11 09:44:16 -04:00
2011-02-06 17:09:48 -05:00
if ( attachmentId ! = - 1 & & tempAttachmentFile ! = null ) {
2010-11-13 16:40:56 -05:00
File attachmentFile = new File ( attachmentDirectory , Long . toString ( attachmentId ) ) ;
tempAttachmentFile . renameTo ( attachmentFile ) ;
contentUri = AttachmentProvider . getAttachmentUri (
mAccount ,
attachmentId ) ;
attachment . setBody ( new LocalAttachmentBody ( contentUri , mApplication ) ) ;
ContentValues cv = new ContentValues ( ) ;
cv . put ( " content_uri " , contentUri ! = null ? contentUri . toString ( ) : null ) ;
db . update ( " attachments " , cv , " id = ? " , new String [ ]
{ Long . toString ( attachmentId ) } ) ;
}
/* The message has attachment with Content-ID */
2011-02-06 17:09:48 -05:00
if ( contentId ! = null & & contentUri ! = null ) {
2010-12-28 04:10:50 -05:00
Cursor cursor = db . query ( " messages " , new String [ ]
2011-01-06 11:55:08 -05:00
{ " html_content " } , " id = ? " , new String [ ]
{ Long . toString ( messageId ) } , null , null , null ) ;
2011-02-06 17:09:48 -05:00
try {
if ( cursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
String new_html ;
new_html = cursor . getString ( 0 ) ;
new_html = new_html . replaceAll ( " cid: " + contentId ,
contentUri . toString ( ) ) ;
ContentValues cv = new ContentValues ( ) ;
cv . put ( " html_content " , new_html ) ;
db . update ( " messages " , cv , " id = ? " , new String [ ]
{ Long . toString ( messageId ) } ) ;
}
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2010-11-13 16:40:56 -05:00
cursor . close ( ) ;
}
}
}
2010-07-11 09:44:16 -04:00
2011-02-06 17:09:48 -05:00
if ( attachmentId ! = - 1 & & attachment instanceof LocalAttachmentBodyPart ) {
2010-11-13 16:40:56 -05:00
( ( LocalAttachmentBodyPart ) attachment ) . setAttachmentId ( attachmentId ) ;
}
return null ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
2011-02-06 17:09:48 -05:00
} catch ( IOException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
2010-07-11 09:44:16 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
2010-11-13 16:40:56 -05:00
final Throwable cause = e . getCause ( ) ;
2011-02-06 17:09:48 -05:00
if ( cause instanceof IOException ) {
throw ( IOException ) cause ;
} else {
throw ( MessagingException ) cause ;
2010-07-11 09:44:16 -04:00
}
}
2008-11-01 17:32:06 -04:00
}
/ * *
* Changes the stored uid of the given message ( using it ' s internal id as a key ) to
* the uid in the message .
* @param message
2010-12-28 04:10:50 -05:00
* @throws com . fsck . k9 . mail . MessagingException
2008-11-01 17:32:06 -04:00
* /
2011-02-06 17:09:48 -05:00
public void changeUid ( final LocalMessage message ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2010-11-13 16:40:56 -05:00
final ContentValues cv = new ContentValues ( ) ;
2008-11-01 17:32:06 -04:00
cv . put ( " uid " , message . getUid ( ) ) ;
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
db . update ( " messages " , cv , " id = ? " , new String [ ]
{ Long . toString ( message . mId ) } ) ;
return null ;
}
} ) ;
2008-11-01 17:32:06 -04:00
}
@Override
public void setFlags ( Message [ ] messages , Flag [ ] flags , boolean value )
2011-02-06 17:09:48 -05:00
throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
for ( Message message : messages ) {
2008-11-01 17:32:06 -04:00
message . setFlags ( flags , value ) ;
}
}
2009-11-24 19:40:29 -05:00
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
@Override
public void setFlags ( Flag [ ] flags , boolean value )
2011-02-06 17:09:48 -05:00
throws MessagingException {
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
for ( Message message : getMessages ( null ) ) {
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
message . setFlags ( flags , value ) ;
}
}
2008-11-01 17:32:06 -04:00
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
@Override
2011-02-06 17:09:48 -05:00
public String getUidFromMessageId ( Message message ) throws MessagingException {
2009-11-24 19:40:29 -05:00
throw new MessagingException ( " Cannot call getUidFromMessageId on LocalFolder " ) ;
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2009-12-27 11:50:21 -05:00
2011-02-06 17:09:48 -05:00
private void clearMessagesWhere ( final String whereClause , final String [ ] params ) throws MessagingException {
2009-11-24 19:40:29 -05:00
open ( OpenMode . READ_ONLY ) ;
2010-08-29 12:57:57 -04:00
Message [ ] messages = LocalStore . this . getMessages (
2010-08-30 23:58:33 -04:00
null ,
this ,
2010-11-13 19:49:04 -05:00
" SELECT " + GET_MESSAGES_COLS + " FROM messages WHERE " + whereClause ,
2010-08-30 23:58:33 -04:00
params ) ;
2010-08-29 12:57:57 -04:00
2011-02-06 17:09:48 -05:00
for ( Message message : messages ) {
2010-08-29 12:57:57 -04:00
deleteAttachments ( message . getUid ( ) ) ;
}
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 19:49:04 -05:00
db . execSQL ( " DELETE FROM messages WHERE " + whereClause , params ) ;
2010-11-13 16:40:56 -05:00
return null ;
}
} ) ;
2010-04-16 10:33:54 -04:00
resetUnreadAndFlaggedCounts ( ) ;
2009-10-21 20:41:06 -04:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public void clearMessagesOlderThan ( long cutoff ) throws MessagingException {
2010-11-13 19:49:04 -05:00
final String where = " folder_id = ? and date < ? " ;
2011-02-06 17:09:48 -05:00
final String [ ] params = new String [ ] {
2010-11-13 19:49:04 -05:00
Long . toString ( mFolderId ) , Long . toString ( cutoff )
} ;
2010-11-13 19:49:08 -05:00
clearMessagesWhere ( where , params ) ;
2010-11-13 19:49:04 -05:00
}
2010-11-13 19:49:25 -05:00
2011-02-06 17:09:48 -05:00
public void clearAllMessages ( ) throws MessagingException {
2010-11-13 19:49:25 -05:00
final String where = " folder_id = ? " ;
2011-02-06 17:09:48 -05:00
final String [ ] params = new String [ ] {
2010-11-13 19:49:25 -05:00
Long . toString ( mFolderId )
} ;
clearMessagesWhere ( where , params ) ;
setPushState ( null ) ;
setLastPush ( 0 ) ;
setLastChecked ( 0 ) ;
}
2011-02-06 17:09:48 -05:00
private void resetUnreadAndFlaggedCounts ( ) {
try {
2009-10-21 20:41:06 -04:00
int newUnread = 0 ;
2010-04-16 10:33:54 -04:00
int newFlagged = 0 ;
2009-10-21 20:41:06 -04:00
Message [ ] messages = getMessages ( null ) ;
2011-02-06 17:09:48 -05:00
for ( Message message : messages ) {
if ( ! message . isSet ( Flag . SEEN ) ) {
2009-10-21 20:41:06 -04:00
newUnread + + ;
}
2011-02-06 17:09:48 -05:00
if ( message . isSet ( Flag . FLAGGED ) ) {
2010-04-16 10:33:54 -04:00
newFlagged + + ;
}
2009-10-21 20:41:06 -04:00
}
setUnreadMessageCount ( newUnread ) ;
2010-04-16 10:33:54 -04:00
setFlaggedMessageCount ( newFlagged ) ;
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2009-12-14 21:50:53 -05:00
Log . e ( K9 . LOG_TAG , " Unable to fetch all messages from LocalStore " , e ) ;
2009-10-21 20:41:06 -04:00
}
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
}
2010-04-29 00:59:14 -04:00
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void delete ( final boolean recurse ) throws MessagingException {
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
2010-11-13 16:40:56 -05:00
// We need to open the folder first to make sure we've got it's id
open ( OpenMode . READ_ONLY ) ;
Message [ ] messages = getMessages ( null ) ;
2011-02-06 17:09:48 -05:00
for ( Message message : messages ) {
2010-11-13 16:40:56 -05:00
deleteAttachments ( message . getUid ( ) ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
db . execSQL ( " DELETE FROM folders WHERE id = ? " , new Object [ ]
{ Long . toString ( mFolderId ) , } ) ;
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2008-11-01 17:32:06 -04:00
}
@Override
2011-02-06 17:09:48 -05:00
public boolean equals ( Object o ) {
if ( o instanceof LocalFolder ) {
2008-11-01 17:32:06 -04:00
return ( ( LocalFolder ) o ) . mName . equals ( mName ) ;
}
return super . equals ( o ) ;
}
2010-03-03 23:00:30 -05:00
@Override
2011-02-06 17:09:48 -05:00
public int hashCode ( ) {
2010-03-03 23:00:30 -05:00
return mName . hashCode ( ) ;
}
2008-11-01 17:32:06 -04:00
@Override
2011-02-06 17:09:48 -05:00
public Flag [ ] getPermanentFlags ( ) {
2008-11-01 17:32:06 -04:00
return PERMANENT_FLAGS ;
}
2010-08-29 12:56:45 -04:00
2011-02-06 17:09:48 -05:00
private void deleteAttachments ( final long messageId ) throws MessagingException {
2010-08-29 12:56:45 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
Cursor attachmentsCursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
attachmentsCursor = db . query ( " attachments " , new String [ ]
{ " id " } , " message_id = ? " , new String [ ]
{ Long . toString ( messageId ) } , null , null , null ) ;
final File attachmentDirectory = StorageManager . getInstance ( mApplication )
2010-12-18 17:56:40 -05:00
. getAttachmentDirectory ( uUid , database . getStorageProviderId ( ) ) ;
2011-02-06 17:09:48 -05:00
while ( attachmentsCursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
long attachmentId = attachmentsCursor . getLong ( 0 ) ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
File file = new File ( attachmentDirectory , Long . toString ( attachmentId ) ) ;
2011-02-06 17:09:48 -05:00
if ( file . exists ( ) ) {
2010-11-13 16:40:56 -05:00
file . delete ( ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2010-11-13 16:40:56 -05:00
}
2010-08-29 12:56:45 -04:00
}
2011-02-06 17:09:48 -05:00
} finally {
if ( attachmentsCursor ! = null ) {
2010-11-13 16:40:56 -05:00
attachmentsCursor . close ( ) ;
}
2010-08-29 12:56:45 -04:00
}
2010-11-13 16:40:56 -05:00
return null ;
2010-08-29 12:56:45 -04:00
}
2010-11-13 16:40:56 -05:00
} ) ;
2010-08-29 12:56:45 -04:00
}
2011-02-06 17:09:48 -05:00
private void deleteAttachments ( final String uid ) throws MessagingException {
2008-11-01 17:32:06 -04:00
open ( OpenMode . READ_WRITE ) ;
2011-02-06 17:09:48 -05:00
try {
database . execute ( false , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
Cursor messagesCursor = null ;
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
messagesCursor = db . query ( " messages " , new String [ ]
{ " id " } , " folder_id = ? AND uid = ? " , new String [ ]
{ Long . toString ( mFolderId ) , uid } , null , null , null ) ;
2011-02-06 17:09:48 -05:00
while ( messagesCursor . moveToNext ( ) ) {
2010-11-13 16:40:56 -05:00
long messageId = messagesCursor . getLong ( 0 ) ;
deleteAttachments ( messageId ) ;
2008-11-01 17:32:06 -04:00
2010-11-13 16:40:56 -05:00
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( messagesCursor ! = null ) {
2010-11-13 16:40:56 -05:00
messagesCursor . close ( ) ;
}
}
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2008-11-01 17:32:06 -04:00
}
}
2009-05-03 16:52:32 -04:00
2010-01-12 22:36:36 -05:00
/ *
2010-08-29 12:57:24 -04:00
* calculateContentPreview
2010-01-12 22:36:36 -05:00
* Takes a plain text message body as a string .
* Returns a message summary as a string suitable for showing in a message list
*
* A message summary should be about the first 160 characters
* of unique text written by the message sender
* Quoted text , " On $date " and so on will be stripped out .
* All newlines and whitespace will be compressed .
*
* /
2011-02-06 17:09:48 -05:00
public String calculateContentPreview ( String text ) {
if ( text = = null ) {
2010-01-12 22:36:36 -05:00
return null ;
}
2010-11-05 00:23:04 -04:00
2010-11-12 20:47:08 -05:00
// Only look at the first 8k of a message when calculating
2010-11-05 00:23:04 -04:00
// the preview. This should avoid unnecessary
// memory usage on large messages
2011-02-06 17:09:48 -05:00
if ( text . length ( ) > 8192 ) {
text = text . substring ( 0 , 8192 ) ;
2010-11-05 00:23:04 -04:00
}
2011-02-06 17:09:48 -05:00
text = text . replaceAll ( " (?m)^----.*?$ " , " " ) ;
text = text . replaceAll ( " (?m)^[#>].*$ " , " " ) ;
text = text . replaceAll ( " (?m)^On .*wrote.?$ " , " " ) ;
text = text . replaceAll ( " (?m)^.* \\ w+:$ " , " " ) ;
text = text . replaceAll ( " https?:// \\ S+ " , " ... " ) ;
text = text . replaceAll ( " ( \\ r| \\ n)+ " , " " ) ;
text = text . replaceAll ( " \\ s+ " , " " ) ;
if ( text . length ( ) < = 512 ) {
2010-01-12 22:36:36 -05:00
return text ;
2011-02-06 17:09:48 -05:00
} else {
text = text . substring ( 0 , 512 ) ;
2010-01-12 22:36:36 -05:00
return text ;
}
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public String markupContent ( String text , String html ) {
if ( text . length ( ) > 0 & & html . length ( ) = = 0 ) {
2011-01-04 23:26:33 -05:00
html = HtmlConverter . textToHtml ( text ) ;
2009-05-20 00:39:51 -04:00
}
2009-05-03 16:52:32 -04:00
2011-01-15 23:23:08 -05:00
html = HtmlConverter . convertEmoji2Img ( html ) ;
2010-08-01 21:24:40 -04:00
2010-07-11 09:44:16 -04:00
return html ;
2009-05-20 00:39:51 -04:00
}
2009-11-24 19:40:29 -05:00
2010-08-01 21:24:40 -04:00
2010-03-07 12:02:21 -05:00
@Override
2011-02-06 17:09:48 -05:00
public boolean isInTopGroup ( ) {
2011-01-15 23:23:03 -05:00
return mInTopGroup ;
2010-03-07 12:02:21 -05:00
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
public void setInTopGroup ( boolean inTopGroup ) throws MessagingException {
2011-01-15 23:23:03 -05:00
mInTopGroup = inTopGroup ;
2011-02-06 17:09:48 -05:00
updateFolderColumn ( " top_group " , mInTopGroup ? 1 : 0 ) ;
2010-03-07 12:02:21 -05:00
}
2011-01-02 04:01:23 -05:00
2011-02-06 17:09:48 -05:00
public Integer getLastUid ( ) {
2011-01-02 04:01:23 -05:00
return mLastUid ;
}
2011-01-02 22:26:31 -05:00
/ * *
* < p > Fetches the most recent < b > numeric < / b > UID value in this folder . This is used by
* { @link com . fsck . k9 . controller . MessagingController # shouldNotifyForMessage } to see if messages being
* fetched are new and unread . Messages are " new " if they have a UID higher than the most recent UID prior
* to synchronization . < / p >
*
* < p > This only works for protocols with numeric UIDs ( like IMAP ) . For protocols with
* alphanumeric UIDs ( like POP ) , this method quietly fails and shouldNotifyForMessage ( ) will
* always notify for unread messages . < / p >
*
* < p > Once Issue 1072 has been fixed , this method and shouldNotifyForMessage ( ) should be
* updated to use internal dates rather than UIDs to determine new - ness . While this doesn ' t
* solve things for POP ( which doesn ' t have internal dates ) , we can likely use this as a
* framework to examine send date in lieu of internal date . < / p >
* @throws MessagingException
* /
2011-02-06 17:09:48 -05:00
public void updateLastUid ( ) throws MessagingException {
Integer lastUid = database . execute ( false , new DbCallback < Integer > ( ) {
2011-01-02 04:01:23 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Integer doDbWork ( final SQLiteDatabase db ) {
2011-01-02 04:01:23 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2011-01-02 04:01:23 -05:00
open ( OpenMode . READ_ONLY ) ;
cursor = db . rawQuery ( " SELECT MAX(uid) FROM messages WHERE folder_id=? " , new String [ ] { Long . toString ( mFolderId ) } ) ;
2011-02-06 17:09:48 -05:00
if ( cursor . getCount ( ) > 0 ) {
2011-01-02 04:01:23 -05:00
cursor . moveToFirst ( ) ;
return cursor . getInt ( 0 ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2011-01-02 04:01:23 -05:00
Log . e ( K9 . LOG_TAG , " Unable to updateLastUid: " , e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2011-01-02 04:01:23 -05:00
cursor . close ( ) ;
}
}
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
if ( K9 . DEBUG )
2011-01-02 04:01:23 -05:00
Log . d ( K9 . LOG_TAG , " Updated last UID for folder " + mName + " to " + lastUid ) ;
mLastUid = lastUid ;
}
2011-01-23 22:27:14 -05:00
2011-02-06 17:09:48 -05:00
public long getOldestMessageDate ( ) throws MessagingException {
return database . execute ( false , new DbCallback < Long > ( ) {
2011-01-23 22:27:14 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Long doDbWork ( final SQLiteDatabase db ) {
2011-01-23 22:27:14 -05:00
Cursor cursor = null ;
2011-02-06 17:09:48 -05:00
try {
2011-01-23 22:27:14 -05:00
open ( OpenMode . READ_ONLY ) ;
cursor = db . rawQuery ( " SELECT MIN(date) FROM messages WHERE folder_id=? " , new String [ ] { Long . toString ( mFolderId ) } ) ;
2011-02-06 17:09:48 -05:00
if ( cursor . getCount ( ) > 0 ) {
2011-01-23 22:27:14 -05:00
cursor . moveToFirst ( ) ;
return cursor . getLong ( 0 ) ;
}
2011-02-06 17:09:48 -05:00
} catch ( Exception e ) {
2011-01-23 22:27:14 -05:00
Log . e ( K9 . LOG_TAG , " Unable to fetch oldest message date: " , e ) ;
2011-02-06 17:09:48 -05:00
} finally {
if ( cursor ! = null ) {
2011-01-23 22:27:14 -05:00
cursor . close ( ) ;
}
}
return null ;
}
} ) ;
}
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public static class LocalTextBody extends TextBody {
2010-12-29 02:34:57 -05:00
/ * *
* This is an HTML - ified version of the message for display purposes .
* /
2009-05-20 00:36:20 -04:00
private String mBodyForDisplay ;
2011-02-06 17:09:48 -05:00
public LocalTextBody ( String body ) {
2009-05-20 00:36:20 -04:00
super ( body ) ;
}
2011-02-06 17:09:48 -05:00
public LocalTextBody ( String body , String bodyForDisplay ) {
2009-05-20 00:36:20 -04:00
super ( body ) ;
this . mBodyForDisplay = bodyForDisplay ;
}
2011-02-06 17:09:48 -05:00
public String getBodyForDisplay ( ) {
2009-05-20 00:36:20 -04:00
return mBodyForDisplay ;
}
2011-02-06 17:09:48 -05:00
public void setBodyForDisplay ( String mBodyForDisplay ) {
2009-05-20 00:36:20 -04:00
this . mBodyForDisplay = mBodyForDisplay ;
}
} //LocalTextBody
2011-02-06 17:09:48 -05:00
public class LocalMessage extends MimeMessage {
2008-11-01 17:32:06 -04:00
private long mId ;
private int mAttachmentCount ;
2009-12-01 08:45:28 -05:00
private String mSubject ;
2010-01-12 22:36:36 -05:00
private String mPreview = " " ;
2010-11-26 23:03:10 -05:00
private boolean mToMeCalculated = false ;
private boolean mCcMeCalculated = false ;
private boolean mToMe = false ;
private boolean mCcMe = false ;
2009-12-14 21:51:18 -05:00
private boolean mHeadersLoaded = false ;
2009-12-06 23:46:42 -05:00
private boolean mMessageDirty = false ;
2011-02-06 17:09:48 -05:00
public LocalMessage ( ) {
2009-12-06 23:46:42 -05:00
}
2011-02-06 17:09:48 -05:00
LocalMessage ( String uid , Folder folder ) {
2009-12-06 23:46:42 -05:00
this . mUid = uid ;
this . mFolder = folder ;
}
2009-12-27 11:52:57 -05:00
private void populateFromGetMessageCursor ( Cursor cursor )
2011-02-06 17:09:48 -05:00
throws MessagingException {
2010-10-02 14:45:51 -04:00
final String subject = cursor . getString ( 0 ) ;
this . setSubject ( subject = = null ? " " : subject ) ;
2009-12-27 11:52:57 -05:00
Address [ ] from = Address . unpack ( cursor . getString ( 1 ) ) ;
2011-02-06 17:09:48 -05:00
if ( from . length > 0 ) {
2009-12-27 11:52:57 -05:00
this . setFrom ( from [ 0 ] ) ;
}
this . setInternalSentDate ( new Date ( cursor . getLong ( 2 ) ) ) ;
this . setUid ( cursor . getString ( 3 ) ) ;
String flagList = cursor . getString ( 4 ) ;
2011-02-06 17:09:48 -05:00
if ( flagList ! = null & & flagList . length ( ) > 0 ) {
2009-12-27 11:52:57 -05:00
String [ ] flags = flagList . split ( " , " ) ;
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
for ( String flag : flags ) {
try {
2009-12-27 11:52:57 -05:00
this . setFlagInternal ( Flag . valueOf ( flag ) , true ) ;
}
2010-04-29 00:59:14 -04:00
2011-02-06 17:09:48 -05:00
catch ( Exception e ) {
if ( ! " X_BAD_FLAG " . equals ( flag ) ) {
2010-04-25 02:17:15 -04:00
Log . w ( K9 . LOG_TAG , " Unable to parse flag " + flag ) ;
}
}
2009-12-27 11:52:57 -05:00
}
}
this . mId = cursor . getLong ( 5 ) ;
this . setRecipients ( RecipientType . TO , Address . unpack ( cursor . getString ( 6 ) ) ) ;
this . setRecipients ( RecipientType . CC , Address . unpack ( cursor . getString ( 7 ) ) ) ;
this . setRecipients ( RecipientType . BCC , Address . unpack ( cursor . getString ( 8 ) ) ) ;
this . setReplyTo ( Address . unpack ( cursor . getString ( 9 ) ) ) ;
2010-04-05 22:54:48 -04:00
2009-12-27 11:52:57 -05:00
this . mAttachmentCount = cursor . getInt ( 10 ) ;
this . setInternalDate ( new Date ( cursor . getLong ( 11 ) ) ) ;
this . setMessageId ( cursor . getString ( 12 ) ) ;
2010-10-02 14:45:51 -04:00
final String preview = cursor . getString ( 14 ) ;
mPreview = ( preview = = null ? " " : preview ) ;
2011-02-06 17:09:48 -05:00
if ( this . mFolder = = null ) {
2009-12-27 11:53:51 -05:00
LocalFolder f = new LocalFolder ( cursor . getInt ( 13 ) ) ;
f . open ( LocalFolder . OpenMode . READ_WRITE ) ;
this . mFolder = f ;
}
2009-12-27 11:52:57 -05:00
}
2010-12-29 02:34:57 -05:00
/ * *
* Fetch the message text for display . This always returns an HTML - ified version of the
* message , even if it was originally a text - only message .
2011-02-19 10:35:11 -05:00
* @return HTML version of message for display purposes or null .
2010-12-29 02:34:57 -05:00
* @throws MessagingException
* /
2011-02-06 17:09:48 -05:00
public String getTextForDisplay ( ) throws MessagingException {
2011-02-19 10:35:11 -05:00
String text = null ; // First try and fetch an HTML part.
2010-12-28 04:07:39 -05:00
Part part = MimeUtility . findFirstPartByMimeType ( this , " text/html " ) ;
2011-02-06 17:09:48 -05:00
if ( part = = null ) {
2010-12-28 04:07:39 -05:00
// If that fails, try and get a text part.
part = MimeUtility . findFirstPartByMimeType ( this , " text/plain " ) ;
2011-02-19 10:35:11 -05:00
if ( part ! = null & & part . getBody ( ) instanceof LocalStore . LocalTextBody ) {
text = ( ( LocalStore . LocalTextBody ) part . getBody ( ) ) . getBodyForDisplay ( ) ;
2010-12-28 04:07:39 -05:00
}
2011-02-06 17:09:48 -05:00
} else {
2010-12-28 04:07:39 -05:00
// We successfully found an HTML part; do the necessary character set decoding.
text = MimeUtility . getTextFromPart ( part ) ;
}
return text ;
}
2009-12-06 23:46:42 -05:00
/ * Custom version of writeTo that updates the MIME message based on localMessage
* changes .
* /
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void writeTo ( OutputStream out ) throws IOException , MessagingException {
2009-12-06 23:46:42 -05:00
if ( mMessageDirty ) buildMimeRepresentation ( ) ;
super . writeTo ( out ) ;
}
2011-02-06 17:09:48 -05:00
private void buildMimeRepresentation ( ) throws MessagingException {
if ( ! mMessageDirty ) {
2009-12-06 23:46:42 -05:00
return ;
2009-12-01 08:45:28 -05:00
}
2009-12-06 23:46:42 -05:00
super . setSubject ( mSubject ) ;
2011-02-06 17:09:48 -05:00
if ( this . mFrom ! = null & & this . mFrom . length > 0 ) {
2009-12-06 23:46:42 -05:00
super . setFrom ( this . mFrom [ 0 ] ) ;
2009-12-01 08:45:28 -05:00
}
2009-12-06 23:46:42 -05:00
super . setReplyTo ( mReplyTo ) ;
super . setSentDate ( this . getSentDate ( ) ) ;
super . setRecipients ( RecipientType . TO , mTo ) ;
super . setRecipients ( RecipientType . CC , mCc ) ;
super . setRecipients ( RecipientType . BCC , mBcc ) ;
2009-12-07 23:58:10 -05:00
if ( mMessageId ! = null ) super . setMessageId ( mMessageId ) ;
2009-12-06 23:46:42 -05:00
mMessageDirty = false ;
2009-12-01 08:45:28 -05:00
}
2011-02-06 17:09:48 -05:00
public String getPreview ( ) {
2010-01-13 20:07:28 -05:00
return mPreview ;
2010-01-12 22:36:36 -05:00
}
2009-12-06 23:46:42 -05:00
2009-12-01 08:45:28 -05:00
@Override
2011-02-06 17:09:48 -05:00
public String getSubject ( ) {
2009-12-06 23:46:42 -05:00
return mSubject ;
2009-12-01 08:45:28 -05:00
}
2009-12-06 23:46:42 -05:00
@Override
2011-02-06 17:09:48 -05:00
public void setSubject ( String subject ) throws MessagingException {
2009-12-06 23:46:42 -05:00
mSubject = subject ;
mMessageDirty = true ;
r62972@17h: jesse | 2009-05-07 10:49:32 -0400
First stab at a folderlist that doesn't know or care about messages
r62973@17h: jesse | 2009-05-07 10:50:11 -0400
A very broken first stab at a message list that only knows about one folder.
r62974@17h: jesse | 2009-05-07 10:50:44 -0400
When you go from an account list to an individual account, open a folderlist, not an fml
r62975@17h: jesse | 2009-05-07 10:51:24 -0400
Update Welcome activity to open an ml instead of an fml
r62976@17h: jesse | 2009-05-07 10:51:59 -0400
When setting up accounts is over, open an fl instead of an fml
r62977@17h: jesse | 2009-05-07 10:52:51 -0400
Update MessageView to use folderinfoholders and messageinfoholders from the 'correct' classes.
r62978@17h: jesse | 2009-05-07 10:59:07 -0400
MailService now notifies the fl instead of the fml. Not sure if it should also notify the ml. - will require testing
r62979@17h: jesse | 2009-05-07 11:01:09 -0400
Switch MessagingController's notifications from notifying the FML to notifying an ML
r62980@17h: jesse | 2009-05-07 11:25:22 -0400
Update AndroidManifest to know about the new world order
r62981@17h: jesse | 2009-05-07 11:26:11 -0400
Try to follow the android sdk docs for intent creation
r62982@17h: jesse | 2009-05-07 11:28:30 -0400
reset MessageList for another try at the conversion
r62983@17h: jesse | 2009-05-07 11:47:33 -0400
This version doesn't crash and has a working 'folder' layer. now to clean up the message list layer
r62984@17h: jesse | 2009-05-07 15:18:04 -0400
move step 1
r62985@17h: jesse | 2009-05-07 15:18:37 -0400
move step 1
r62986@17h: jesse | 2009-05-07 15:22:47 -0400
rename step 1
r62987@17h: jesse | 2009-05-07 17:38:02 -0400
checkpoint to move
r62988@17h: jesse | 2009-05-07 17:40:01 -0400
checkpointing a state with a working folder list and a message list that doesn't explode
r62989@17h: jesse | 2009-05-07 17:40:26 -0400
Remove debugging cruft from Welcome
r62990@17h: jesse | 2009-05-07 22:00:12 -0400
Basic functionality works.
r62991@17h: jesse | 2009-05-08 04:19:52 -0400
added a tool to build a K-9 "Beta"
r62992@17h: jesse | 2009-05-08 04:20:03 -0400
remove a disused file
r62993@17h: jesse | 2009-05-09 06:07:02 -0400
upgrading build infrastructure for the 1.5 sdk
r62994@17h: jesse | 2009-05-09 06:22:02 -0400
further refine onOpenMessage, removing more folder assumptions
r62995@17h: jesse | 2009-05-09 20:07:20 -0400
Make the Welcome activity open the autoexpandfolder rather than INBOX
r62996@17h: jesse | 2009-05-09 20:14:10 -0400
MessageList now stores the Folder name it was working with across pause-reload
r62997@17h: jesse | 2009-05-09 20:14:26 -0400
Removing dead code from FolderList
r63060@17h: jesse | 2009-05-10 00:07:33 -0400
Replace the old message list refreshing code which cleared and rebuilt the list from scratch with code which updates or deletes existing messages.
Add "go back to folder list" code
r63061@17h: jesse | 2009-05-10 00:07:50 -0400
fix message list menus for new world order
r63062@17h: jesse | 2009-05-10 00:08:11 -0400
Remove message list options from folder list menus
r63063@17h: jesse | 2009-05-10 00:10:02 -0400
remove more message list options from the folder list
r63064@17h: jesse | 2009-05-10 00:10:19 -0400
fix build.xml for the new android world order
r63065@17h: jesse | 2009-05-10 00:39:23 -0400
reformatted in advance of bug tracing
r63066@17h: jesse | 2009-05-10 05:53:28 -0400
fix our 'close' behavior to not leave extra activities around
clean up more vestigal code
r63067@17h: jesse | 2009-05-10 18:44:25 -0400
Improve "back button / accounts" workflow from FolderList -> AccountList
r63068@17h: jesse | 2009-05-10 19:11:47 -0400
* Add required code for the 'k9beta' build
r63069@17h: jesse | 2009-05-10 19:12:05 -0400
Make the folder list white backgrounded.
r63070@17h: jesse | 2009-05-10 19:12:26 -0400
* Include our required libraries in build.xml
r63071@17h: jesse | 2009-05-10 19:13:07 -0400
Added directories for our built code and our generated code
r63072@17h: jesse | 2009-05-10 19:13:36 -0400
Added a "back" button image
r63073@17h: jesse | 2009-05-10 20:13:50 -0400
Switch next/prev buttons to triangles for I18N and eventual "more easy-to-hit buttons" win
r63074@17h: jesse | 2009-05-10 20:17:18 -0400
Tidy Accounts.java for some perf hacking.
r63081@17h: jesse | 2009-05-10 22:13:33 -0400
First pass reformatting of the MessagingController
r63082@17h: jesse | 2009-05-10 23:50:28 -0400
MessageList now correctly updates when a background sync happens
r63083@17h: jesse | 2009-05-10 23:50:53 -0400
Tidying FolderList
r63084@17h: jesse | 2009-05-10 23:51:09 -0400
tidy
r63085@17h: jesse | 2009-05-10 23:51:27 -0400
tidy
r63086@17h: jesse | 2009-05-11 00:17:06 -0400
Properly update unread counts in the FolderList after sync
r63087@17h: jesse | 2009-05-11 01:38:14 -0400
Minor refactoring for readability. replace a boolean with a constant.
r63090@17h: jesse | 2009-05-11 02:58:31 -0400
now that the foreground of message lists is light, we don't need the light messagebox
r63091@17h: jesse | 2009-05-11 17:15:02 -0400
Added a string for "back to folder list"
r63092@17h: jesse | 2009-05-11 17:15:24 -0400
Added a message list header with a back button
r63093@17h: jesse | 2009-05-11 17:15:54 -0400
Remove the "folder list" button from the options menu. no sense duplicating it
r63094@17h: jesse | 2009-05-11 17:17:06 -0400
Refactored views, adding our replacement scrollable header
r63184@17h: jesse | 2009-05-12 07:07:15 -0400
fix weird bug where message lists could show a header element for a child
r63185@17h: jesse | 2009-05-12 07:08:12 -0400
Add new-style headers to folder lists. reimplement "get folder by name" to not use a bloody for loop
r63211@17h: jesse | 2009-05-12 18:37:48 -0400
Restore the former glory of the "load more messages" widget. it still needs an overhaul
r63296@17h: jesse | 2009-05-12 23:23:21 -0400
Get the indeterminate progress bar to show up again when you click "get more messages"
r63297@17h: jesse | 2009-05-13 02:40:39 -0400
Fixed off-by-one errors in click and keybindings for messagelist
r63298@17h: jesse | 2009-05-13 06:04:01 -0400
Put the folder title in the name of the folderSettings popup
r63299@17h: jesse | 2009-05-13 06:04:49 -0400
Reformatting. Removing debug logging
r63300@17h: jesse | 2009-05-13 06:05:32 -0400
Fixing "wrong item selected" bugs in the FolderList
r63328@17h: jesse | 2009-05-13 13:20:00 -0400
Update MessageView for 1.5
r63329@17h: jesse | 2009-05-13 13:50:29 -0400
A couple fixes to "picking the right item"
Titles on the message context menu
r63330@17h: jesse | 2009-05-13 13:58:37 -0400
Added an "open" context menu item to the folder list
r63347@17h: jesse | 2009-05-13 18:00:02 -0400
Try to get folderlists to sort in a stable way, so they jump around less in the ui
r63349@17h: jesse | 2009-05-13 20:37:19 -0400
Switch to using non-message-passing based notifications for redisplay of message lists, cut down redisplay frequency to not overload the display
r63432@17h: jesse | 2009-05-16 13:38:49 -0400
Android 1.5 no longer gives us apache.commons.codec by default and apache.commons.logging by default. Import them so we have em.
There's probably something smarter to do here.
r63438@17h: jesse | 2009-05-16 14:12:06 -0400
removed dead code
r63439@17h: jesse | 2009-05-16 14:30:57 -0400
Minor tidy
r63440@17h: jesse | 2009-05-16 14:39:34 -0400
First pass implementation making MessageList streamy for faster startup
r63441@17h: jesse | 2009-05-16 21:57:41 -0400
There's no reason for the FolderList to list local messages
r63442@17h: jesse | 2009-05-16 21:58:57 -0400
Switch to actually refreshing the message list after each item is loaded
r63450@17h: jesse | 2009-05-16 22:34:18 -0400
Default to pulling items out of the LocalStore by date, descending. (since that's the uneditable default ordering)
This makes our messages come out of the store in the order the user should see them
r63451@17h: jesse | 2009-05-16 22:34:44 -0400
Set some new defaults for the FolderList
r63452@17h: jesse | 2009-05-16 22:35:43 -0400
set some new message list item defaults
r63456@17h: jesse | 2009-05-17 12:56:10 -0400
It's not clear that Pop and WebDav actually set us an InternalDate. I'd rather use that so that spam doesn't topsort. But I also want this to _work_
r63457@17h: jesse | 2009-05-17 12:56:47 -0400
actually check to make sure we have a message to remove before removing it.
r63458@17h: jesse | 2009-05-17 13:10:07 -0400
Flip "security type" to before the port number, since changing security type is the thing more users are likely to know/care about and resets port number
r63469@17h: jesse | 2009-05-17 18:42:39 -0400
Provisional fix for "see the FoldeRList twice" bug
r63471@17h: jesse | 2009-05-17 20:47:41 -0400
Remove title bar from the message view
r63544@17h: jesse | 2009-05-20 23:53:38 -0400
folderlist tidying before i dig into the jumpy ordering bug
r63545@17h: jesse | 2009-05-20 23:56:00 -0400
Killing dead variables
r63546@17h: jesse | 2009-05-21 00:58:36 -0400
make the whole title section clicky
r63556@17h: jesse | 2009-05-21 01:48:13 -0400
Fix where we go when someone deletes a message
r63558@17h: jesse | 2009-05-21 22:44:46 -0400
Working toward switchable themes
r63563@17h: jesse | 2009-05-21 23:53:09 -0400
Make the MessageList's colors actually just inherit from the theme, rather than hardcoding black
r63567@17h: jesse | 2009-05-22 10:14:13 -0400
Kill a now-redundant comment
r63571@17h: jesse | 2009-05-22 19:43:30 -0400
further theme-independence work
r63572@17h: jesse | 2009-05-22 19:55:23 -0400
gete -> get (typo fix)
r63573@17h: jesse | 2009-05-22 22:48:49 -0400
First cut of a global prefs system as well as a theme preference. not that it works yet
r63577@17h: jesse | 2009-05-24 14:49:52 -0400
Once a user has actually put in valid user credentials, start syncing mail and folders in the background instantly.
This gives us a much better "new startup" experience
r63578@17h: jesse | 2009-05-24 14:55:00 -0400
MessageList doesn't need FolderUpdateWorker
r63579@17h: jesse | 2009-05-24 17:57:15 -0400
Fix "get message by uid"
Switch to showing messages 10 by 10, rather than 1 by 1 for huge loadtime performance improvements
r63587@17h: jesse | 2009-05-24 19:19:56 -0400
Cut down LocalMessage creation to not generate a MessageId or date formatter.
r63589@17h: jesse | 2009-05-24 22:22:32 -0400
Switch to null-escaping email address boundaries, rather than a VERY expensive URL-encoding
r63590@17h: jesse | 2009-05-24 22:23:21 -0400
Clean up our "auto-refresh the list when adding messages after a sync"
r63593@17h: jesse | 2009-05-24 22:53:45 -0400
replace isDateToday with a "rolling 18 hour window" variant that's more likely to give the user a useful answer and is 30x faster.
r63595@17h: jesse | 2009-05-24 23:54:14 -0400
When instantiating messges from the LocalStore, there's no need to clear headers before setting them, nor is there a need to set a generated message id
r63596@17h: jesse | 2009-05-24 23:54:39 -0400
make an overridable setGeneratedMessageId
r63597@17h: jesse | 2009-05-24 23:54:55 -0400
Remove new lies from comments
r63598@17h: jesse | 2009-05-24 23:55:35 -0400
Replace insanely expensive message header "name" part quoting with something consistent and cheap that does its work on the way INTO the database
r63605@17h: jesse | 2009-05-25 17:28:24 -0400
bring back the 1.1 sdk build.xml
r63606@17h: jesse | 2009-05-25 22:32:11 -0400
Actually enable switchable themese and compilation on 1.1
r63692@17h: jesse | 2009-05-29 23:55:17 -0400
Switch back to having titles for folder and message lists.
Restore auto-open-folder functionality
r63694@17h: jesse | 2009-05-30 18:50:39 -0400
Remove several off-by-one errors introduced by yesterday's return to android titlebars
r63696@17h: jesse | 2009-05-30 23:45:03 -0400
use convertView properly for performance and memory imrpovement in FolderList and MessageList
r63698@17h: jesse | 2009-05-31 19:42:59 -0400
Switch to using background shading to indicate "not yet fetched"
r63701@17h: jesse | 2009-05-31 21:28:47 -0400
Remving code we don't actually need these bits of apache commons on 1.1
2009-05-31 21:35:05 -04:00
}
2008-11-01 17:32:06 -04:00
2009-12-06 23:46:42 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setMessageId ( String messageId ) {
2009-12-06 23:46:42 -05:00
mMessageId = messageId ;
mMessageDirty = true ;
2008-11-01 17:32:06 -04:00
}
2009-11-24 19:40:29 -05:00
2011-02-06 17:09:48 -05:00
public boolean hasAttachments ( ) {
if ( mAttachmentCount > 0 ) {
2010-11-28 15:28:37 -05:00
return true ;
2011-02-06 17:09:48 -05:00
} else {
2010-11-28 15:28:37 -05:00
return false ;
}
2010-11-26 23:02:56 -05:00
}
2009-12-06 23:46:42 -05:00
2011-02-06 17:09:48 -05:00
public int getAttachmentCount ( ) {
2008-11-01 17:32:06 -04:00
return mAttachmentCount ;
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setFrom ( Address from ) throws MessagingException {
2009-12-06 23:46:42 -05:00
this . mFrom = new Address [ ] { from } ;
mMessageDirty = true ;
2008-11-01 17:32:06 -04:00
}
2009-12-06 23:46:42 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setReplyTo ( Address [ ] replyTo ) throws MessagingException {
if ( replyTo = = null | | replyTo . length = = 0 ) {
2009-12-06 23:46:42 -05:00
mReplyTo = null ;
2011-02-06 17:09:48 -05:00
} else {
2009-12-06 23:46:42 -05:00
mReplyTo = replyTo ;
2009-11-24 19:40:29 -05:00
}
2009-12-06 23:46:42 -05:00
mMessageDirty = true ;
r62972@17h: jesse | 2009-05-07 10:49:32 -0400
First stab at a folderlist that doesn't know or care about messages
r62973@17h: jesse | 2009-05-07 10:50:11 -0400
A very broken first stab at a message list that only knows about one folder.
r62974@17h: jesse | 2009-05-07 10:50:44 -0400
When you go from an account list to an individual account, open a folderlist, not an fml
r62975@17h: jesse | 2009-05-07 10:51:24 -0400
Update Welcome activity to open an ml instead of an fml
r62976@17h: jesse | 2009-05-07 10:51:59 -0400
When setting up accounts is over, open an fl instead of an fml
r62977@17h: jesse | 2009-05-07 10:52:51 -0400
Update MessageView to use folderinfoholders and messageinfoholders from the 'correct' classes.
r62978@17h: jesse | 2009-05-07 10:59:07 -0400
MailService now notifies the fl instead of the fml. Not sure if it should also notify the ml. - will require testing
r62979@17h: jesse | 2009-05-07 11:01:09 -0400
Switch MessagingController's notifications from notifying the FML to notifying an ML
r62980@17h: jesse | 2009-05-07 11:25:22 -0400
Update AndroidManifest to know about the new world order
r62981@17h: jesse | 2009-05-07 11:26:11 -0400
Try to follow the android sdk docs for intent creation
r62982@17h: jesse | 2009-05-07 11:28:30 -0400
reset MessageList for another try at the conversion
r62983@17h: jesse | 2009-05-07 11:47:33 -0400
This version doesn't crash and has a working 'folder' layer. now to clean up the message list layer
r62984@17h: jesse | 2009-05-07 15:18:04 -0400
move step 1
r62985@17h: jesse | 2009-05-07 15:18:37 -0400
move step 1
r62986@17h: jesse | 2009-05-07 15:22:47 -0400
rename step 1
r62987@17h: jesse | 2009-05-07 17:38:02 -0400
checkpoint to move
r62988@17h: jesse | 2009-05-07 17:40:01 -0400
checkpointing a state with a working folder list and a message list that doesn't explode
r62989@17h: jesse | 2009-05-07 17:40:26 -0400
Remove debugging cruft from Welcome
r62990@17h: jesse | 2009-05-07 22:00:12 -0400
Basic functionality works.
r62991@17h: jesse | 2009-05-08 04:19:52 -0400
added a tool to build a K-9 "Beta"
r62992@17h: jesse | 2009-05-08 04:20:03 -0400
remove a disused file
r62993@17h: jesse | 2009-05-09 06:07:02 -0400
upgrading build infrastructure for the 1.5 sdk
r62994@17h: jesse | 2009-05-09 06:22:02 -0400
further refine onOpenMessage, removing more folder assumptions
r62995@17h: jesse | 2009-05-09 20:07:20 -0400
Make the Welcome activity open the autoexpandfolder rather than INBOX
r62996@17h: jesse | 2009-05-09 20:14:10 -0400
MessageList now stores the Folder name it was working with across pause-reload
r62997@17h: jesse | 2009-05-09 20:14:26 -0400
Removing dead code from FolderList
r63060@17h: jesse | 2009-05-10 00:07:33 -0400
Replace the old message list refreshing code which cleared and rebuilt the list from scratch with code which updates or deletes existing messages.
Add "go back to folder list" code
r63061@17h: jesse | 2009-05-10 00:07:50 -0400
fix message list menus for new world order
r63062@17h: jesse | 2009-05-10 00:08:11 -0400
Remove message list options from folder list menus
r63063@17h: jesse | 2009-05-10 00:10:02 -0400
remove more message list options from the folder list
r63064@17h: jesse | 2009-05-10 00:10:19 -0400
fix build.xml for the new android world order
r63065@17h: jesse | 2009-05-10 00:39:23 -0400
reformatted in advance of bug tracing
r63066@17h: jesse | 2009-05-10 05:53:28 -0400
fix our 'close' behavior to not leave extra activities around
clean up more vestigal code
r63067@17h: jesse | 2009-05-10 18:44:25 -0400
Improve "back button / accounts" workflow from FolderList -> AccountList
r63068@17h: jesse | 2009-05-10 19:11:47 -0400
* Add required code for the 'k9beta' build
r63069@17h: jesse | 2009-05-10 19:12:05 -0400
Make the folder list white backgrounded.
r63070@17h: jesse | 2009-05-10 19:12:26 -0400
* Include our required libraries in build.xml
r63071@17h: jesse | 2009-05-10 19:13:07 -0400
Added directories for our built code and our generated code
r63072@17h: jesse | 2009-05-10 19:13:36 -0400
Added a "back" button image
r63073@17h: jesse | 2009-05-10 20:13:50 -0400
Switch next/prev buttons to triangles for I18N and eventual "more easy-to-hit buttons" win
r63074@17h: jesse | 2009-05-10 20:17:18 -0400
Tidy Accounts.java for some perf hacking.
r63081@17h: jesse | 2009-05-10 22:13:33 -0400
First pass reformatting of the MessagingController
r63082@17h: jesse | 2009-05-10 23:50:28 -0400
MessageList now correctly updates when a background sync happens
r63083@17h: jesse | 2009-05-10 23:50:53 -0400
Tidying FolderList
r63084@17h: jesse | 2009-05-10 23:51:09 -0400
tidy
r63085@17h: jesse | 2009-05-10 23:51:27 -0400
tidy
r63086@17h: jesse | 2009-05-11 00:17:06 -0400
Properly update unread counts in the FolderList after sync
r63087@17h: jesse | 2009-05-11 01:38:14 -0400
Minor refactoring for readability. replace a boolean with a constant.
r63090@17h: jesse | 2009-05-11 02:58:31 -0400
now that the foreground of message lists is light, we don't need the light messagebox
r63091@17h: jesse | 2009-05-11 17:15:02 -0400
Added a string for "back to folder list"
r63092@17h: jesse | 2009-05-11 17:15:24 -0400
Added a message list header with a back button
r63093@17h: jesse | 2009-05-11 17:15:54 -0400
Remove the "folder list" button from the options menu. no sense duplicating it
r63094@17h: jesse | 2009-05-11 17:17:06 -0400
Refactored views, adding our replacement scrollable header
r63184@17h: jesse | 2009-05-12 07:07:15 -0400
fix weird bug where message lists could show a header element for a child
r63185@17h: jesse | 2009-05-12 07:08:12 -0400
Add new-style headers to folder lists. reimplement "get folder by name" to not use a bloody for loop
r63211@17h: jesse | 2009-05-12 18:37:48 -0400
Restore the former glory of the "load more messages" widget. it still needs an overhaul
r63296@17h: jesse | 2009-05-12 23:23:21 -0400
Get the indeterminate progress bar to show up again when you click "get more messages"
r63297@17h: jesse | 2009-05-13 02:40:39 -0400
Fixed off-by-one errors in click and keybindings for messagelist
r63298@17h: jesse | 2009-05-13 06:04:01 -0400
Put the folder title in the name of the folderSettings popup
r63299@17h: jesse | 2009-05-13 06:04:49 -0400
Reformatting. Removing debug logging
r63300@17h: jesse | 2009-05-13 06:05:32 -0400
Fixing "wrong item selected" bugs in the FolderList
r63328@17h: jesse | 2009-05-13 13:20:00 -0400
Update MessageView for 1.5
r63329@17h: jesse | 2009-05-13 13:50:29 -0400
A couple fixes to "picking the right item"
Titles on the message context menu
r63330@17h: jesse | 2009-05-13 13:58:37 -0400
Added an "open" context menu item to the folder list
r63347@17h: jesse | 2009-05-13 18:00:02 -0400
Try to get folderlists to sort in a stable way, so they jump around less in the ui
r63349@17h: jesse | 2009-05-13 20:37:19 -0400
Switch to using non-message-passing based notifications for redisplay of message lists, cut down redisplay frequency to not overload the display
r63432@17h: jesse | 2009-05-16 13:38:49 -0400
Android 1.5 no longer gives us apache.commons.codec by default and apache.commons.logging by default. Import them so we have em.
There's probably something smarter to do here.
r63438@17h: jesse | 2009-05-16 14:12:06 -0400
removed dead code
r63439@17h: jesse | 2009-05-16 14:30:57 -0400
Minor tidy
r63440@17h: jesse | 2009-05-16 14:39:34 -0400
First pass implementation making MessageList streamy for faster startup
r63441@17h: jesse | 2009-05-16 21:57:41 -0400
There's no reason for the FolderList to list local messages
r63442@17h: jesse | 2009-05-16 21:58:57 -0400
Switch to actually refreshing the message list after each item is loaded
r63450@17h: jesse | 2009-05-16 22:34:18 -0400
Default to pulling items out of the LocalStore by date, descending. (since that's the uneditable default ordering)
This makes our messages come out of the store in the order the user should see them
r63451@17h: jesse | 2009-05-16 22:34:44 -0400
Set some new defaults for the FolderList
r63452@17h: jesse | 2009-05-16 22:35:43 -0400
set some new message list item defaults
r63456@17h: jesse | 2009-05-17 12:56:10 -0400
It's not clear that Pop and WebDav actually set us an InternalDate. I'd rather use that so that spam doesn't topsort. But I also want this to _work_
r63457@17h: jesse | 2009-05-17 12:56:47 -0400
actually check to make sure we have a message to remove before removing it.
r63458@17h: jesse | 2009-05-17 13:10:07 -0400
Flip "security type" to before the port number, since changing security type is the thing more users are likely to know/care about and resets port number
r63469@17h: jesse | 2009-05-17 18:42:39 -0400
Provisional fix for "see the FoldeRList twice" bug
r63471@17h: jesse | 2009-05-17 20:47:41 -0400
Remove title bar from the message view
r63544@17h: jesse | 2009-05-20 23:53:38 -0400
folderlist tidying before i dig into the jumpy ordering bug
r63545@17h: jesse | 2009-05-20 23:56:00 -0400
Killing dead variables
r63546@17h: jesse | 2009-05-21 00:58:36 -0400
make the whole title section clicky
r63556@17h: jesse | 2009-05-21 01:48:13 -0400
Fix where we go when someone deletes a message
r63558@17h: jesse | 2009-05-21 22:44:46 -0400
Working toward switchable themes
r63563@17h: jesse | 2009-05-21 23:53:09 -0400
Make the MessageList's colors actually just inherit from the theme, rather than hardcoding black
r63567@17h: jesse | 2009-05-22 10:14:13 -0400
Kill a now-redundant comment
r63571@17h: jesse | 2009-05-22 19:43:30 -0400
further theme-independence work
r63572@17h: jesse | 2009-05-22 19:55:23 -0400
gete -> get (typo fix)
r63573@17h: jesse | 2009-05-22 22:48:49 -0400
First cut of a global prefs system as well as a theme preference. not that it works yet
r63577@17h: jesse | 2009-05-24 14:49:52 -0400
Once a user has actually put in valid user credentials, start syncing mail and folders in the background instantly.
This gives us a much better "new startup" experience
r63578@17h: jesse | 2009-05-24 14:55:00 -0400
MessageList doesn't need FolderUpdateWorker
r63579@17h: jesse | 2009-05-24 17:57:15 -0400
Fix "get message by uid"
Switch to showing messages 10 by 10, rather than 1 by 1 for huge loadtime performance improvements
r63587@17h: jesse | 2009-05-24 19:19:56 -0400
Cut down LocalMessage creation to not generate a MessageId or date formatter.
r63589@17h: jesse | 2009-05-24 22:22:32 -0400
Switch to null-escaping email address boundaries, rather than a VERY expensive URL-encoding
r63590@17h: jesse | 2009-05-24 22:23:21 -0400
Clean up our "auto-refresh the list when adding messages after a sync"
r63593@17h: jesse | 2009-05-24 22:53:45 -0400
replace isDateToday with a "rolling 18 hour window" variant that's more likely to give the user a useful answer and is 30x faster.
r63595@17h: jesse | 2009-05-24 23:54:14 -0400
When instantiating messges from the LocalStore, there's no need to clear headers before setting them, nor is there a need to set a generated message id
r63596@17h: jesse | 2009-05-24 23:54:39 -0400
make an overridable setGeneratedMessageId
r63597@17h: jesse | 2009-05-24 23:54:55 -0400
Remove new lies from comments
r63598@17h: jesse | 2009-05-24 23:55:35 -0400
Replace insanely expensive message header "name" part quoting with something consistent and cheap that does its work on the way INTO the database
r63605@17h: jesse | 2009-05-25 17:28:24 -0400
bring back the 1.1 sdk build.xml
r63606@17h: jesse | 2009-05-25 22:32:11 -0400
Actually enable switchable themese and compilation on 1.1
r63692@17h: jesse | 2009-05-29 23:55:17 -0400
Switch back to having titles for folder and message lists.
Restore auto-open-folder functionality
r63694@17h: jesse | 2009-05-30 18:50:39 -0400
Remove several off-by-one errors introduced by yesterday's return to android titlebars
r63696@17h: jesse | 2009-05-30 23:45:03 -0400
use convertView properly for performance and memory imrpovement in FolderList and MessageList
r63698@17h: jesse | 2009-05-31 19:42:59 -0400
Switch to using background shading to indicate "not yet fetched"
r63701@17h: jesse | 2009-05-31 21:28:47 -0400
Remving code we don't actually need these bits of apache commons on 1.1
2009-05-31 21:35:05 -04:00
}
2009-12-06 23:46:42 -05:00
2009-11-24 19:40:29 -05:00
/ *
* For performance reasons , we add headers instead of setting them ( see super implementation )
* which removes ( expensive ) them before adding them
* /
@Override
2011-02-06 17:09:48 -05:00
public void setRecipients ( RecipientType type , Address [ ] addresses ) throws MessagingException {
if ( type = = RecipientType . TO ) {
if ( addresses = = null | | addresses . length = = 0 ) {
2009-11-24 19:40:29 -05:00
this . mTo = null ;
2011-02-06 17:09:48 -05:00
} else {
2009-11-24 19:40:29 -05:00
this . mTo = addresses ;
}
2011-02-06 17:09:48 -05:00
} else if ( type = = RecipientType . CC ) {
if ( addresses = = null | | addresses . length = = 0 ) {
2009-11-24 19:40:29 -05:00
this . mCc = null ;
2011-02-06 17:09:48 -05:00
} else {
2009-11-24 19:40:29 -05:00
this . mCc = addresses ;
}
2011-02-06 17:09:48 -05:00
} else if ( type = = RecipientType . BCC ) {
if ( addresses = = null | | addresses . length = = 0 ) {
2009-11-24 19:40:29 -05:00
this . mBcc = null ;
2011-02-06 17:09:48 -05:00
} else {
2009-11-24 19:40:29 -05:00
this . mBcc = addresses ;
}
2011-02-06 17:09:48 -05:00
} else {
2009-11-24 19:40:29 -05:00
throw new MessagingException ( " Unrecognized recipient type. " ) ;
}
2009-12-06 23:46:42 -05:00
mMessageDirty = true ;
2009-06-26 02:55:32 -04:00
}
2009-12-06 23:46:42 -05:00
2011-02-06 17:09:48 -05:00
public boolean toMe ( ) {
try {
if ( ! mToMeCalculated ) {
for ( Address address : getRecipients ( RecipientType . TO ) ) {
if ( mAccount . isAnIdentity ( address ) ) {
2010-11-28 15:28:37 -05:00
mToMe = true ;
mToMeCalculated = true ;
}
}
2010-11-26 23:03:10 -05:00
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-28 15:28:37 -05:00
// do something better than ignore this
// getRecipients can throw a messagingexception
}
2010-11-26 23:03:10 -05:00
return mToMe ;
}
2011-02-06 17:09:48 -05:00
public boolean ccMe ( ) {
try {
if ( ! mCcMeCalculated ) {
for ( Address address : getRecipients ( RecipientType . CC ) ) {
if ( mAccount . isAnIdentity ( address ) ) {
2010-11-28 15:28:37 -05:00
mCcMe = true ;
mCcMeCalculated = true ;
}
2010-11-26 23:03:10 -05:00
}
2010-11-28 15:28:37 -05:00
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-28 15:28:37 -05:00
// do something better than ignore this
// getRecipients can throw a messagingexception
}
2010-11-26 23:03:10 -05:00
return mCcMe ;
2010-11-28 15:28:37 -05:00
}
2010-11-26 23:03:10 -05:00
2011-02-06 17:09:48 -05:00
public void setFlagInternal ( Flag flag , boolean set ) throws MessagingException {
2008-11-01 17:32:06 -04:00
super . setFlag ( flag , set ) ;
}
2011-02-06 17:09:48 -05:00
public long getId ( ) {
2008-11-01 17:32:06 -04:00
return mId ;
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setFlag ( final Flag flag , final boolean set ) throws MessagingException {
2010-08-29 12:57:31 -04:00
2011-02-06 17:09:48 -05:00
try {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
try {
if ( flag = = Flag . DELETED & & set ) {
2010-11-13 16:40:56 -05:00
delete ( ) ;
}
2008-11-01 17:32:06 -04:00
2010-11-13 16:40:56 -05:00
updateFolderCountsOnFlag ( flag , set ) ;
2010-11-12 16:37:54 -05:00
2010-11-13 16:40:56 -05:00
LocalMessage . super . setFlag ( flag , set ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
/ *
* Set the flags on the message .
* /
db . execSQL ( " UPDATE messages " + " SET flags = ? " + " WHERE id = ? " , new Object [ ]
{ Utility . combine ( getFlags ( ) , ',' ) . toUpperCase ( ) , mId } ) ;
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2010-08-29 12:56:54 -04:00
}
2010-11-12 20:47:08 -05:00
/ *
* If a message is being marked as deleted we want to clear out it ' s content
* and attachments as well . Delete will not actually remove the row since we need
* to retain the uid for synchronization purposes .
* /
2010-08-29 12:56:54 -04:00
private void delete ( ) throws MessagingException
{
/ *
* Delete all of the message ' s content to save space .
* /
2011-02-06 17:09:48 -05:00
try {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
2011-02-06 17:09:48 -05:00
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException , UnavailableStorageException {
2010-11-13 16:40:56 -05:00
db . execSQL ( " UPDATE messages SET " + " deleted = 1, " + " subject = NULL, "
+ " sender_list = NULL, " + " date = NULL, " + " to_list = NULL, "
+ " cc_list = NULL, " + " bcc_list = NULL, " + " preview = NULL, "
+ " html_content = NULL, " + " text_content = NULL, "
+ " reply_to_list = NULL " + " WHERE id = ? " , new Object [ ]
{ mId } ) ;
/ *
* Delete all of the message ' s attachments to save space .
* We do this explicit deletion here because we ' re not deleting the record
* in messages , which means our ON DELETE trigger for messages won ' t cascade
* /
2011-02-06 17:09:48 -05:00
try {
2010-11-13 16:40:56 -05:00
( ( LocalFolder ) mFolder ) . deleteAttachments ( mId ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
db . execSQL ( " DELETE FROM attachments WHERE message_id = ? " , new Object [ ]
{ mId } ) ;
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2010-08-29 12:56:54 -04:00
( ( LocalFolder ) mFolder ) . deleteHeaders ( mId ) ;
2008-11-01 17:32:06 -04:00
}
2009-12-14 21:51:18 -05:00
2010-11-12 16:38:02 -05:00
/ *
* Completely remove a message from the local database
* /
@Override
2011-02-06 17:09:48 -05:00
public void destroy ( ) throws MessagingException {
try {
database . execute ( true , new DbCallback < Void > ( ) {
2010-11-13 16:40:56 -05:00
@Override
public Void doDbWork ( final SQLiteDatabase db ) throws WrappedException ,
2011-02-06 17:09:48 -05:00
UnavailableStorageException {
try {
2010-11-21 00:31:34 -05:00
updateFolderCountsOnFlag ( Flag . X_DESTROYED , true ) ;
2010-11-13 16:40:56 -05:00
( ( LocalFolder ) mFolder ) . deleteAttachments ( mId ) ;
2010-12-18 17:56:40 -05:00
db . execSQL ( " DELETE FROM messages WHERE id = ? " , new Object [ ] { mId } ) ;
2011-02-06 17:09:48 -05:00
} catch ( MessagingException e ) {
2010-11-13 16:40:56 -05:00
throw new WrappedException ( e ) ;
}
return null ;
}
} ) ;
2011-02-06 17:09:48 -05:00
} catch ( WrappedException e ) {
throw ( MessagingException ) e . getCause ( ) ;
2010-11-13 16:40:56 -05:00
}
2010-11-12 16:38:02 -05:00
}
2010-08-29 12:56:54 -04:00
2011-02-06 17:09:48 -05:00
private void updateFolderCountsOnFlag ( Flag flag , boolean set ) {
2010-11-12 16:38:11 -05:00
/ *
* Update the unread count on the folder .
* /
2011-02-06 17:09:48 -05:00
try {
2010-11-12 16:38:11 -05:00
LocalFolder folder = ( LocalFolder ) mFolder ;
2011-02-06 17:09:48 -05:00
if ( flag = = Flag . DELETED | | flag = = Flag . X_DESTROYED ) {
if ( ! isSet ( Flag . SEEN ) ) {
folder . setUnreadMessageCount ( folder . getUnreadMessageCount ( ) + ( set ? - 1 : 1 ) ) ;
2010-11-12 16:38:11 -05:00
}
2011-02-06 17:09:48 -05:00
if ( isSet ( Flag . FLAGGED ) ) {
2010-11-12 16:38:11 -05:00
folder . setFlaggedMessageCount ( folder . getFlaggedMessageCount ( ) + ( set ? - 1 : 1 ) ) ;
}
}
2011-02-06 17:09:48 -05:00
if ( ! isSet ( Flag . DELETED ) ) {
2010-11-14 20:31:16 -05:00
2011-02-06 17:09:48 -05:00
if ( flag = = Flag . SEEN ) {
if ( set ! = isSet ( Flag . SEEN ) ) {
folder . setUnreadMessageCount ( folder . getUnreadMessageCount ( ) + ( set ? - 1 : 1 ) ) ;
2010-11-14 20:31:16 -05:00
}
2010-11-12 16:38:11 -05:00
}
2011-02-06 17:09:48 -05:00
if ( flag = = Flag . FLAGGED ) {
2010-11-14 20:31:16 -05:00
folder . setFlaggedMessageCount ( folder . getFlaggedMessageCount ( ) + ( set ? 1 : - 1 ) ) ;
}
2010-11-12 16:38:11 -05:00
}
2011-02-06 17:09:48 -05:00
} catch ( MessagingException me ) {
2010-11-12 16:38:11 -05:00
Log . e ( K9 . LOG_TAG , " Unable to update LocalStore unread message count " ,
me ) ;
throw new RuntimeException ( me ) ;
}
}
2010-08-29 12:56:54 -04:00
2011-02-06 17:09:48 -05:00
private void loadHeaders ( ) throws UnavailableStorageException {
2009-12-20 00:41:43 -05:00
ArrayList < LocalMessage > messages = new ArrayList < LocalMessage > ( ) ;
messages . add ( this ) ;
mHeadersLoaded = true ; // set true before calling populate headers to stop recursion
( ( LocalFolder ) mFolder ) . populateHeaders ( messages ) ;
2009-12-14 21:51:18 -05:00
2009-12-20 00:41:43 -05:00
}
2009-12-14 21:51:18 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void addHeader ( String name , String value ) throws UnavailableStorageException {
2009-12-20 00:41:43 -05:00
if ( ! mHeadersLoaded )
loadHeaders ( ) ;
super . addHeader ( name , value ) ;
2009-12-14 21:51:18 -05:00
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void setHeader ( String name , String value ) throws UnavailableStorageException {
2009-12-20 00:41:43 -05:00
if ( ! mHeadersLoaded )
loadHeaders ( ) ;
super . setHeader ( name , value ) ;
}
2009-12-14 21:51:18 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public String [ ] getHeader ( String name ) throws UnavailableStorageException {
2009-12-20 00:41:43 -05:00
if ( ! mHeadersLoaded )
loadHeaders ( ) ;
return super . getHeader ( name ) ;
}
2009-12-14 21:51:18 -05:00
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public void removeHeader ( String name ) throws UnavailableStorageException {
2009-12-20 00:41:43 -05:00
if ( ! mHeadersLoaded )
loadHeaders ( ) ;
super . removeHeader ( name ) ;
}
2009-12-14 21:51:18 -05:00
2010-05-21 11:34:29 -04:00
@Override
2011-02-06 17:09:48 -05:00
public Set < String > getHeaderNames ( ) throws UnavailableStorageException {
2010-05-21 11:34:29 -04:00
if ( ! mHeadersLoaded )
loadHeaders ( ) ;
return super . getHeaderNames ( ) ;
}
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public static class LocalAttachmentBodyPart extends MimeBodyPart {
2008-11-01 17:32:06 -04:00
private long mAttachmentId = - 1 ;
2011-02-06 17:09:48 -05:00
public LocalAttachmentBodyPart ( Body body , long attachmentId ) throws MessagingException {
2008-11-01 17:32:06 -04:00
super ( body ) ;
mAttachmentId = attachmentId ;
}
/ * *
* Returns the local attachment id of this body , or - 1 if it is not stored .
* @return
* /
2011-02-06 17:09:48 -05:00
public long getAttachmentId ( ) {
2008-11-01 17:32:06 -04:00
return mAttachmentId ;
}
2011-02-06 17:09:48 -05:00
public void setAttachmentId ( long attachmentId ) {
2008-11-01 17:32:06 -04:00
mAttachmentId = attachmentId ;
}
2010-04-16 08:20:10 -04:00
@Override
2011-02-06 17:09:48 -05:00
public String toString ( ) {
2008-11-01 17:32:06 -04:00
return " " + mAttachmentId ;
}
}
2011-02-06 17:09:48 -05:00
public static class LocalAttachmentBody implements Body {
2010-08-02 07:55:31 -04:00
private static final byte [ ] EMPTY_BYTE_ARRAY = new byte [ 0 ] ;
2008-11-01 17:32:06 -04:00
private Application mApplication ;
private Uri mUri ;
2011-02-06 17:09:48 -05:00
public LocalAttachmentBody ( Uri uri , Application application ) {
2008-11-01 17:32:06 -04:00
mApplication = application ;
mUri = uri ;
}
2011-02-06 17:09:48 -05:00
public InputStream getInputStream ( ) throws MessagingException {
try {
2008-11-01 17:32:06 -04:00
return mApplication . getContentResolver ( ) . openInputStream ( mUri ) ;
2011-02-06 17:09:48 -05:00
} catch ( FileNotFoundException fnfe ) {
2010-02-17 22:28:31 -05:00
/ *
* Since it ' s completely normal for us to try to serve up attachments that
* have been blown away , we just return an empty stream .
* /
2010-08-02 07:55:31 -04:00
return new ByteArrayInputStream ( EMPTY_BYTE_ARRAY ) ;
2010-02-17 22:28:31 -05:00
}
2008-11-01 17:32:06 -04:00
}
2011-02-06 17:09:48 -05:00
public void writeTo ( OutputStream out ) throws IOException , MessagingException {
2008-11-01 17:32:06 -04:00
InputStream in = getInputStream ( ) ;
Base64OutputStream base64Out = new Base64OutputStream ( out ) ;
IOUtils . copy ( in , base64Out ) ;
base64Out . close ( ) ;
}
2011-02-06 17:09:48 -05:00
public Uri getContentUri ( ) {
2008-11-01 17:32:06 -04:00
return mUri ;
}
}
}