| /* |
| * Copyright (C) 2008-2009 Marc Blank |
| * Licensed to The Android Open Source Project. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package com.android.exchange; |
| |
| import android.util.Log; |
| |
| import com.android.emailcommon.service.EmailServiceProxy; |
| import com.android.emailcommon.service.SyncWindow; |
| |
| /** |
| * Constants used throughout the EAS implementation are stored here. |
| * |
| */ |
| public class Eas { |
| // For debugging |
| public static boolean WAIT_DEBUG = false; // DO NOT CHECK IN WITH THIS SET TO TRUE |
| public static boolean DEBUG = false; // DO NOT CHECK IN WITH THIS SET TO TRUE |
| |
| // The following two are for user logging (the second providing more detail) |
| public static boolean USER_LOG = false; // DO NOT CHECK IN WITH THIS SET TO TRUE |
| public static boolean PARSER_LOG = false; // DO NOT CHECK IN WITH THIS SET TO TRUE |
| public static boolean FILE_LOG = false; // DO NOT CHECK IN WITH THIS SET TO TRUE |
| |
| public static final String CLIENT_VERSION = "EAS-1.3"; |
| public static final String ACCOUNT_MAILBOX_PREFIX = "__eas"; |
| |
| // Define our default protocol version as 2.5 (Exchange 2003) |
| public static final String SUPPORTED_PROTOCOL_EX2003 = "2.5"; |
| public static final double SUPPORTED_PROTOCOL_EX2003_DOUBLE = 2.5; |
| public static final String SUPPORTED_PROTOCOL_EX2007 = "12.0"; |
| public static final double SUPPORTED_PROTOCOL_EX2007_DOUBLE = 12.0; |
| public static final String SUPPORTED_PROTOCOL_EX2007_SP1 = "12.1"; |
| public static final double SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE = 12.1; |
| public static final String SUPPORTED_PROTOCOL_EX2010 = "14.0"; |
| public static final double SUPPORTED_PROTOCOL_EX2010_DOUBLE = 14.0; |
| public static final String SUPPORTED_PROTOCOL_EX2010_SP1 = "14.1"; |
| public static final double SUPPORTED_PROTOCOL_EX2010_SP1_DOUBLE = 14.1; |
| public static final String DEFAULT_PROTOCOL_VERSION = SUPPORTED_PROTOCOL_EX2003; |
| |
| public static final String EXCHANGE_ACCOUNT_MANAGER_TYPE = "com.android.exchange"; |
| |
| // From EAS spec |
| // Mail Cal |
| // 0 No filter Yes Yes |
| // 1 1 day ago Yes No |
| // 2 3 days ago Yes No |
| // 3 1 week ago Yes No |
| // 4 2 weeks ago Yes Yes |
| // 5 1 month ago Yes Yes |
| // 6 3 months ago No Yes |
| // 7 6 months ago No Yes |
| |
| public static final String FILTER_AUTO = Integer.toString(SyncWindow.SYNC_WINDOW_AUTO); |
| // TODO Rationalize this with SYNC_WINDOW_ALL |
| public static final String FILTER_ALL = "0"; |
| public static final String FILTER_1_DAY = Integer.toString(SyncWindow.SYNC_WINDOW_1_DAY); |
| public static final String FILTER_3_DAYS = Integer.toString(SyncWindow.SYNC_WINDOW_3_DAYS); |
| public static final String FILTER_1_WEEK = Integer.toString(SyncWindow.SYNC_WINDOW_1_WEEK); |
| public static final String FILTER_2_WEEKS = Integer.toString(SyncWindow.SYNC_WINDOW_2_WEEKS); |
| public static final String FILTER_1_MONTH = Integer.toString(SyncWindow.SYNC_WINDOW_1_MONTH); |
| public static final String FILTER_3_MONTHS = "6"; |
| public static final String FILTER_6_MONTHS = "7"; |
| |
| public static final String BODY_PREFERENCE_TEXT = "1"; |
| public static final String BODY_PREFERENCE_HTML = "2"; |
| |
| public static final String MIME_BODY_PREFERENCE_TEXT = "0"; |
| public static final String MIME_BODY_PREFERENCE_MIME = "2"; |
| |
| // For EAS 12, we use HTML, so we want a larger size than in EAS 2.5 |
| public static final String EAS12_TRUNCATION_SIZE = "200000"; |
| // For EAS 2.5, truncation is a code; the largest is "7", which is 100k |
| public static final String EAS2_5_TRUNCATION_SIZE = "7"; |
| |
| public static final int FOLDER_STATUS_OK = 1; |
| public static final int FOLDER_STATUS_INVALID_KEY = 9; |
| |
| public static final int EXCHANGE_ERROR_NOTIFICATION = 0x10; |
| |
| public static void setUserDebug(int state) { |
| // DEBUG takes precedence and is never true in a user build |
| if (!DEBUG) { |
| USER_LOG = (state & EmailServiceProxy.DEBUG_BIT) != 0; |
| PARSER_LOG = (state & EmailServiceProxy.DEBUG_VERBOSE_BIT) != 0; |
| FILE_LOG = (state & EmailServiceProxy.DEBUG_FILE_BIT) != 0; |
| if (FILE_LOG || PARSER_LOG) { |
| USER_LOG = true; |
| } |
| Log.d("Eas Debug", "Logging: " + (USER_LOG ? "User " : "") + |
| (PARSER_LOG ? "Parser " : "") + (FILE_LOG ? "File" : "")); |
| } |
| } |
| |
| static public Double getProtocolVersionDouble(String version) { |
| if (SUPPORTED_PROTOCOL_EX2003.equals(version)) { |
| return SUPPORTED_PROTOCOL_EX2003_DOUBLE; |
| } else if (SUPPORTED_PROTOCOL_EX2007.equals(version)) { |
| return SUPPORTED_PROTOCOL_EX2007_DOUBLE; |
| } if (SUPPORTED_PROTOCOL_EX2007_SP1.equals(version)) { |
| return SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE; |
| } if (SUPPORTED_PROTOCOL_EX2010.equals(version)) { |
| return SUPPORTED_PROTOCOL_EX2010_DOUBLE; |
| } if (SUPPORTED_PROTOCOL_EX2010_SP1.equals(version)) { |
| return SUPPORTED_PROTOCOL_EX2010_SP1_DOUBLE; |
| } |
| throw new IllegalArgumentException("illegal protocol version"); |
| } |
| } |