2008-11-01 17:32:06 -04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-12-16 18:34:01 -05:00
|
|
|
package com.android.email.mail.store;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Date;
|
2009-03-04 14:49:39 -05:00
|
|
|
import java.util.Locale;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
import android.util.Config;
|
|
|
|
import android.util.Log;
|
|
|
|
|
2008-12-16 18:34:01 -05:00
|
|
|
import com.android.email.Email;
|
|
|
|
import com.android.email.FixedLengthInputStream;
|
|
|
|
import com.android.email.PeekableInputStream;
|
|
|
|
import com.android.email.mail.MessagingException;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
public class ImapResponseParser {
|
2009-03-04 14:49:39 -05:00
|
|
|
SimpleDateFormat mDateTimeFormat = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss Z", Locale.US);
|
2008-11-01 17:32:06 -04:00
|
|
|
PeekableInputStream mIn;
|
|
|
|
InputStream mActiveLiteral;
|
|
|
|
|
|
|
|
public ImapResponseParser(PeekableInputStream in) {
|
|
|
|
this.mIn = in;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the next response available on the stream and returns an
|
|
|
|
* ImapResponse object that represents it.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
public ImapResponse readResponse() throws IOException {
|
|
|
|
ImapResponse response = new ImapResponse();
|
|
|
|
if (mActiveLiteral != null) {
|
|
|
|
while (mActiveLiteral.read() != -1)
|
|
|
|
;
|
|
|
|
mActiveLiteral = null;
|
|
|
|
}
|
|
|
|
int ch = mIn.peek();
|
|
|
|
if (ch == '*') {
|
|
|
|
parseUntaggedResponse();
|
|
|
|
readTokens(response);
|
|
|
|
} else if (ch == '+') {
|
|
|
|
response.mCommandContinuationRequested =
|
|
|
|
parseCommandContinuationRequest();
|
|
|
|
readTokens(response);
|
|
|
|
} else {
|
|
|
|
response.mTag = parseTaggedResponse();
|
|
|
|
readTokens(response);
|
|
|
|
}
|
|
|
|
if (Config.LOGD) {
|
2008-12-16 18:34:01 -05:00
|
|
|
if (Email.DEBUG) {
|
|
|
|
Log.d(Email.LOG_TAG, "<<< " + response.toString());
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void readTokens(ImapResponse response) throws IOException {
|
|
|
|
response.clear();
|
|
|
|
Object token;
|
|
|
|
while ((token = readToken()) != null) {
|
|
|
|
if (response != null) {
|
|
|
|
response.add(token);
|
|
|
|
}
|
|
|
|
if (mActiveLiteral != null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response.mCompleted = token == null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the next token of the response. The token can be one of: String -
|
|
|
|
* for NIL, QUOTED, NUMBER, ATOM. InputStream - for LITERAL.
|
|
|
|
* InputStream.available() returns the total length of the stream.
|
|
|
|
* ImapResponseList - for PARENTHESIZED LIST. Can contain any of the above
|
|
|
|
* elements including List.
|
|
|
|
*
|
|
|
|
* @return The next token in the response or null if there are no more
|
|
|
|
* tokens.
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
public Object readToken() throws IOException {
|
|
|
|
while (true) {
|
|
|
|
Object token = parseToken();
|
|
|
|
if (token == null || !token.equals(")")) {
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Object parseToken() throws IOException {
|
|
|
|
if (mActiveLiteral != null) {
|
|
|
|
while (mActiveLiteral.read() != -1)
|
|
|
|
;
|
|
|
|
mActiveLiteral = null;
|
|
|
|
}
|
|
|
|
while (true) {
|
|
|
|
int ch = mIn.peek();
|
|
|
|
if (ch == '(') {
|
|
|
|
return parseList();
|
|
|
|
} else if (ch == ')') {
|
|
|
|
expect(')');
|
|
|
|
return ")";
|
|
|
|
} else if (ch == '"') {
|
|
|
|
return parseQuoted();
|
|
|
|
} else if (ch == '{') {
|
|
|
|
mActiveLiteral = parseLiteral();
|
|
|
|
return mActiveLiteral;
|
|
|
|
} else if (ch == ' ') {
|
|
|
|
expect(' ');
|
|
|
|
} else if (ch == '\r') {
|
|
|
|
expect('\r');
|
|
|
|
expect('\n');
|
|
|
|
return null;
|
|
|
|
} else if (ch == '\n') {
|
|
|
|
expect('\n');
|
|
|
|
return null;
|
|
|
|
} else if (ch == '\t') {
|
|
|
|
expect('\t');
|
|
|
|
} else {
|
|
|
|
return parseAtom();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean parseCommandContinuationRequest() throws IOException {
|
|
|
|
expect('+');
|
|
|
|
expect(' ');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// * OK [UIDNEXT 175] Predicted next UID
|
|
|
|
private void parseUntaggedResponse() throws IOException {
|
|
|
|
expect('*');
|
|
|
|
expect(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3 OK [READ-WRITE] Select completed.
|
|
|
|
private String parseTaggedResponse() throws IOException {
|
|
|
|
String tag = readStringUntil(' ');
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
private ImapList parseList() throws IOException {
|
|
|
|
expect('(');
|
|
|
|
ImapList list = new ImapList();
|
|
|
|
Object token;
|
|
|
|
while (true) {
|
|
|
|
token = parseToken();
|
|
|
|
if (token == null) {
|
|
|
|
break;
|
|
|
|
} else if (token instanceof InputStream) {
|
|
|
|
list.add(token);
|
|
|
|
break;
|
|
|
|
} else if (token.equals(")")) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
list.add(token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
private String parseAtom() throws IOException {
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
int ch;
|
|
|
|
while (true) {
|
|
|
|
ch = mIn.peek();
|
|
|
|
if (ch == -1) {
|
|
|
|
throw new IOException("parseAtom(): end of stream reached");
|
|
|
|
} else if (ch == '(' || ch == ')' || ch == '{' || ch == ' ' ||
|
|
|
|
// docs claim that flags are \ atom but atom isn't supposed to
|
|
|
|
// contain
|
|
|
|
// * and some falgs contain *
|
|
|
|
// ch == '%' || ch == '*' ||
|
|
|
|
ch == '%' ||
|
|
|
|
// TODO probably should not allow \ and should recognize
|
|
|
|
// it as a flag instead
|
|
|
|
// ch == '"' || ch == '\' ||
|
|
|
|
ch == '"' || (ch >= 0x00 && ch <= 0x1f) || ch == 0x7f) {
|
|
|
|
if (sb.length() == 0) {
|
|
|
|
throw new IOException(String.format("parseAtom(): (%04x %c)", (int)ch, ch));
|
|
|
|
}
|
|
|
|
return sb.toString();
|
|
|
|
} else {
|
|
|
|
sb.append((char)mIn.read());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A { has been read, read the rest of the size string, the space and then
|
|
|
|
* notify the listener with an InputStream.
|
|
|
|
*
|
|
|
|
* @param mListener
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
private InputStream parseLiteral() throws IOException {
|
|
|
|
expect('{');
|
|
|
|
int size = Integer.parseInt(readStringUntil('}'));
|
|
|
|
expect('\r');
|
|
|
|
expect('\n');
|
|
|
|
FixedLengthInputStream fixed = new FixedLengthInputStream(mIn, size);
|
|
|
|
return fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A " has been read, read to the end of the quoted string and notify the
|
|
|
|
* listener.
|
|
|
|
*
|
|
|
|
* @param mListener
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
private String parseQuoted() throws IOException {
|
|
|
|
expect('"');
|
|
|
|
return readStringUntil('"');
|
|
|
|
}
|
|
|
|
|
|
|
|
private String readStringUntil(char end) throws IOException {
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
int ch;
|
|
|
|
while ((ch = mIn.read()) != -1) {
|
|
|
|
if (ch == end) {
|
|
|
|
return sb.toString();
|
|
|
|
} else {
|
|
|
|
sb.append((char)ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new IOException("readQuotedString(): end of stream reached");
|
|
|
|
}
|
|
|
|
|
|
|
|
private int expect(char ch) throws IOException {
|
|
|
|
int d;
|
|
|
|
if ((d = mIn.read()) != ch) {
|
|
|
|
throw new IOException(String.format("Expected %04x (%c) but got %04x (%c)", (int)ch,
|
|
|
|
ch, d, (char)d));
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents an IMAP LIST response and is also the base class for the
|
|
|
|
* ImapResponse.
|
|
|
|
*/
|
|
|
|
public class ImapList extends ArrayList<Object> {
|
|
|
|
public ImapList getList(int index) {
|
|
|
|
return (ImapList)get(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getString(int index) {
|
|
|
|
return (String)get(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream getLiteral(int index) {
|
|
|
|
return (InputStream)get(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getNumber(int index) {
|
|
|
|
return Integer.parseInt(getString(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getDate(int index) throws MessagingException {
|
|
|
|
try {
|
|
|
|
return mDateTimeFormat.parse(getString(index));
|
|
|
|
} catch (ParseException pe) {
|
|
|
|
throw new MessagingException("Unable to parse IMAP datetime", pe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object getKeyedValue(Object key) {
|
|
|
|
for (int i = 0, count = size(); i < count; i++) {
|
|
|
|
if (get(i).equals(key)) {
|
|
|
|
return get(i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ImapList getKeyedList(Object key) {
|
|
|
|
return (ImapList)getKeyedValue(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getKeyedString(Object key) {
|
|
|
|
return (String)getKeyedValue(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream getKeyedLiteral(Object key) {
|
|
|
|
return (InputStream)getKeyedValue(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getKeyedNumber(Object key) {
|
|
|
|
return Integer.parseInt(getKeyedString(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getKeyedDate(Object key) throws MessagingException {
|
|
|
|
try {
|
|
|
|
String value = getKeyedString(key);
|
|
|
|
if (value == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return mDateTimeFormat.parse(value);
|
|
|
|
} catch (ParseException pe) {
|
|
|
|
throw new MessagingException("Unable to parse IMAP datetime", pe);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a single response from the IMAP server. Tagged responses will
|
|
|
|
* have a non-null tag. Untagged responses will have a null tag. The object
|
|
|
|
* will contain all of the available tokens at the time the response is
|
|
|
|
* received. In general, it will either contain all of the tokens of the
|
|
|
|
* response or all of the tokens up until the first LITERAL. If the object
|
|
|
|
* does not contain the entire response the caller must call more() to
|
|
|
|
* continue reading the response until more returns false.
|
|
|
|
*/
|
|
|
|
public class ImapResponse extends ImapList {
|
|
|
|
private boolean mCompleted;
|
|
|
|
|
|
|
|
boolean mCommandContinuationRequested;
|
|
|
|
String mTag;
|
|
|
|
|
|
|
|
public boolean more() throws IOException {
|
|
|
|
if (mCompleted) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
readTokens(this);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAlertText() {
|
2009-01-07 01:37:44 -05:00
|
|
|
if (size() > 1 && "[ALERT]".equals(get(1))) {
|
2008-11-01 17:32:06 -04:00
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
for (int i = 2, count = size(); i < count; i++) {
|
|
|
|
sb.append(get(i).toString());
|
|
|
|
sb.append(' ');
|
|
|
|
}
|
|
|
|
return sb.toString();
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return "#" + mTag + "# " + super.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|