2009-03-04 03:32:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 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.email.mail;
|
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
import com.android.email.Email;
|
|
|
|
import com.android.email.R;
|
2011-02-10 02:47:43 +00:00
|
|
|
import com.android.emailcommon.mail.MessagingException;
|
2009-03-27 23:59:36 +00:00
|
|
|
|
|
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.XmlResourceParser;
|
2009-04-03 22:42:31 +00:00
|
|
|
import android.util.Log;
|
2009-03-27 23:59:36 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
2010-05-07 21:27:44 +00:00
|
|
|
import java.util.HashMap;
|
2009-03-04 03:32:22 +00:00
|
|
|
|
|
|
|
public abstract class Sender {
|
|
|
|
protected static final int SOCKET_CONNECT_TIMEOUT = 10000;
|
|
|
|
|
2010-05-10 21:20:16 +00:00
|
|
|
private static final HashMap<String, Sender> sSenders = new HashMap<String, Sender>();
|
2009-03-27 23:59:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Static named constructor. It should be overrode by extending class.
|
|
|
|
* Because this method will be called through reflection, it can not be protected.
|
|
|
|
*/
|
2009-08-13 16:31:57 +00:00
|
|
|
public static Sender newInstance(Context context, String uri)
|
2009-03-27 23:59:36 +00:00
|
|
|
throws MessagingException {
|
2009-04-03 22:42:31 +00:00
|
|
|
throw new MessagingException("Sender.newInstance: Unknown scheme in " + uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
|
|
|
|
2009-08-13 16:31:57 +00:00
|
|
|
private static Sender instantiateSender(Context context, String className, String uri)
|
2009-03-27 23:59:36 +00:00
|
|
|
throws MessagingException {
|
|
|
|
Object o = null;
|
|
|
|
try {
|
|
|
|
Class<?> c = Class.forName(className);
|
|
|
|
// and invoke "newInstance" class method and instantiate sender object.
|
|
|
|
java.lang.reflect.Method m =
|
2009-08-17 13:39:55 +00:00
|
|
|
c.getMethod("newInstance", Context.class, String.class);
|
|
|
|
o = m.invoke(null, context, uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
} catch (Exception e) {
|
2009-04-03 22:42:31 +00:00
|
|
|
Log.d(Email.LOG_TAG, String.format(
|
2009-08-17 13:39:55 +00:00
|
|
|
"exception %s invoking %s.newInstance.(Context, String) method for %s",
|
2009-04-03 22:42:31 +00:00
|
|
|
e.toString(), className, uri));
|
|
|
|
throw new MessagingException("can not instantiate Sender object for " + uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
|
|
|
if (!(o instanceof Sender)) {
|
|
|
|
throw new MessagingException(
|
|
|
|
uri + ": " + className + " create incompatible object");
|
2009-03-04 03:32:22 +00:00
|
|
|
}
|
2009-03-27 23:59:36 +00:00
|
|
|
return (Sender) o;
|
|
|
|
}
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
/**
|
|
|
|
* Find Sender implementation consulting with sender.xml file.
|
|
|
|
*/
|
2009-08-13 16:31:57 +00:00
|
|
|
private static Sender findSender(Context context, int resourceId, String uri)
|
2009-03-27 23:59:36 +00:00
|
|
|
throws MessagingException {
|
|
|
|
Sender sender = null;
|
|
|
|
try {
|
|
|
|
XmlResourceParser xml = context.getResources().getXml(resourceId);
|
|
|
|
int xmlEventType;
|
|
|
|
// walk through senders.xml file.
|
|
|
|
while ((xmlEventType = xml.next()) != XmlResourceParser.END_DOCUMENT) {
|
|
|
|
if (xmlEventType == XmlResourceParser.START_TAG &&
|
|
|
|
"sender".equals(xml.getName())) {
|
|
|
|
String scheme = xml.getAttributeValue(null, "scheme");
|
|
|
|
if (uri.startsWith(scheme)) {
|
|
|
|
// found sender entry whose scheme is matched with uri.
|
|
|
|
// then load sender class.
|
|
|
|
String className = xml.getAttributeValue(null, "class");
|
2009-08-13 16:31:57 +00:00
|
|
|
sender = instantiateSender(context, className, uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (XmlPullParserException e) {
|
|
|
|
// ignore
|
|
|
|
} catch (IOException e) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
return sender;
|
|
|
|
}
|
|
|
|
|
2009-08-13 16:31:57 +00:00
|
|
|
public synchronized static Sender getInstance(Context context, String uri)
|
2009-03-27 23:59:36 +00:00
|
|
|
throws MessagingException {
|
2010-05-10 21:20:16 +00:00
|
|
|
Sender sender = sSenders.get(uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
if (sender == null) {
|
2010-05-20 23:11:26 +00:00
|
|
|
context = context.getApplicationContext();
|
2009-08-13 16:31:57 +00:00
|
|
|
sender = findSender(context, R.xml.senders_product, uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
if (sender == null) {
|
2009-08-13 16:31:57 +00:00
|
|
|
sender = findSender(context, R.xml.senders, uri);
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sender != null) {
|
2010-05-10 21:20:16 +00:00
|
|
|
sSenders.put(uri, sender);
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sender == null) {
|
|
|
|
throw new MessagingException("Unable to locate an applicable Transport for " + uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sender;
|
|
|
|
}
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
/**
|
|
|
|
* Get class of SettingActivity for this Sender class.
|
2010-05-20 23:11:26 +00:00
|
|
|
* @return Activity class that has class method actionEditOutgoingSettings().
|
2009-03-27 23:59:36 +00:00
|
|
|
*/
|
|
|
|
public Class<? extends android.app.Activity> getSettingActivityClass() {
|
|
|
|
// default SettingActivity class
|
|
|
|
return com.android.email.activity.setup.AccountSetupOutgoing.class;
|
2009-03-04 03:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public abstract void open() throws MessagingException;
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-08-13 16:31:57 +00:00
|
|
|
public String validateSenderLimit(long messageId) {
|
2009-03-27 23:59:36 +00:00
|
|
|
return null;
|
|
|
|
}
|
2009-03-04 03:32:22 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
/**
|
|
|
|
* Check message has any limitation of Sender or not.
|
2010-05-20 23:11:26 +00:00
|
|
|
*
|
2009-08-13 16:31:57 +00:00
|
|
|
* @param messageId the message that will be checked.
|
2009-03-27 23:59:36 +00:00
|
|
|
* @throws LimitViolationException
|
|
|
|
*/
|
2009-08-13 16:31:57 +00:00
|
|
|
public void checkSenderLimitation(long messageId) throws LimitViolationException {
|
2009-03-27 23:59:36 +00:00
|
|
|
}
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
public static class LimitViolationException extends MessagingException {
|
|
|
|
public final int mMsgResourceId;
|
|
|
|
public final long mActual;
|
|
|
|
public final long mLimit;
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
private LimitViolationException(int msgResourceId, long actual, long limit) {
|
|
|
|
super(UNSPECIFIED_EXCEPTION);
|
|
|
|
mMsgResourceId = msgResourceId;
|
|
|
|
mActual = actual;
|
|
|
|
mLimit = limit;
|
|
|
|
}
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-03-27 23:59:36 +00:00
|
|
|
public static void check(int msgResourceId, long actual, long limit)
|
|
|
|
throws LimitViolationException {
|
|
|
|
if (actual > limit) {
|
|
|
|
throw new LimitViolationException(msgResourceId, actual, limit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-20 23:11:26 +00:00
|
|
|
|
2009-08-13 16:31:57 +00:00
|
|
|
public abstract void sendMessage(long messageId) throws MessagingException;
|
2009-03-04 03:32:22 +00:00
|
|
|
|
|
|
|
public abstract void close() throws MessagingException;
|
|
|
|
}
|