use of com.zimbra.cs.mailclient.imap.FetchResponseHandler in project zm-mailbox by Zimbra.
the class ImapFolderSync method refetchPurgedMsgsInConversation.
protected void refetchPurgedMsgsInConversation(ParsedMessage pm) throws ServiceException, IOException {
if (!mailbox.getAccount().isFeatureDataSourcePurgingEnabled()) {
return;
}
Threader threader = pm.getThreader(ds.getMailbox());
List<PurgedConversation> purgedConvs = threader.lookupPurgedConversations(ds);
if (purgedConvs.size() == 0) {
return;
} else {
for (PurgedConversation conv : purgedConvs) {
ImapConnection conn;
try {
conn = getRefetchConnection();
} catch (ServiceException e) {
ZimbraLog.datasource.warn("could not establish IMAP connection to refetch purged messages");
return;
}
for (PurgedMessage msg : conv.getMessages()) {
String remoteFolderId = msg.getRemoteFolder();
String msgUid = msg.getUid();
final Integer folderId = msg.getLocalFolderId();
ZimbraLog.datasource.info("restoring message " + msgUid + " in remote folder " + remoteFolderId);
conn.select(remoteFolderId);
final Map<Long, MessageData> msgFlags = conn.uidFetch(msgUid, "(FLAGS INTERNALDATE)");
FetchResponseHandler handler = new FetchResponseHandler() {
@Override
public void handleFetchResponse(MessageData md) throws Exception {
long uid = md.getUid();
IOExceptionHandler.getInstance().trackSyncItem(mailbox, uid);
try {
handleFetch(md, msgFlags, folderId, false, false);
clearError(uid);
} catch (OutOfMemoryError e) {
Zimbra.halt("Out of memory", e);
} catch (Exception e) {
if (!IOExceptionHandler.getInstance().isRecoverable(mailbox, uid, "Exception re-fetching UID " + uid, e)) {
syncFailed("re-fetch failed for uid " + uid, e);
SyncErrorManager.incrementErrorCount(ds, remoteId(uid));
}
}
}
};
conn.uidFetch(msgUid, "BODY.PEEK[]", handler);
}
conv.unpurge();
}
}
}
use of com.zimbra.cs.mailclient.imap.FetchResponseHandler in project zm-mailbox by Zimbra.
the class ImapFolderSync method fetchMessages.
private void fetchMessages(String seq) throws ServiceException, IOException {
final Map<Long, MessageData> flagsByUid = connection.uidFetch(seq, "(FLAGS INTERNALDATE)");
removeDeleted(flagsByUid);
final Set<Long> uidSet = flagsByUid.keySet();
if (uidSet.isEmpty())
return;
FetchResponseHandler handler = new FetchResponseHandler() {
@Override
public void handleFetchResponse(MessageData md) throws Exception {
long uid = md.getUid();
IOExceptionHandler.getInstance().trackSyncItem(mailbox, uid);
try {
handleFetch(md, flagsByUid, true);
clearError(uid);
} catch (OutOfMemoryError e) {
Zimbra.halt("Out of memory", e);
} catch (Exception e) {
if (!IOExceptionHandler.getInstance().isRecoverable(mailbox, uid, "Exception syncing UID " + uid + " in folder " + remoteFolder.getPath(), e)) {
syncFailed("Fetch failed for uid " + uid, e);
SyncErrorManager.incrementErrorCount(ds, remoteId(uid));
}
}
uidSet.remove(uid);
}
};
// Try fetching group of messages first
LOG.debug("Fetching messages for sequence: " + seq);
try {
connection.uidFetch(getSequence(uidSet), "BODY.PEEK[]", handler);
} catch (CommandFailedException e) {
String msg = "UID FETCH failed: " + e.toString();
checkCanContinue(msg, e);
LOG.warn(msg, e);
}
if (uidSet.isEmpty())
return;
LOG.info("Fetching remaining messages one at a time for UIDs: " + uidSet);
for (long uid : getOrderedUids(uidSet)) {
try {
LOG.info("Fetching message for uid: " + uid);
MessageData md = connection.uidFetch(uid, "BODY.PEEK[]");
if (md == null) {
//FLAGS returned data for UID but BODY.PEEK[] is not; server error; provide more meaningful error than NPE
throw ServiceException.FAILURE("Server returned no response for UID FETCH " + uid + " BODY.PEEK[]", null);
}
handler.handleFetchResponse(md);
} catch (Exception e) {
String msg = "Error while fetching message for UID " + uid;
checkCanContinue(msg, e);
LOG.warn(msg, e);
}
}
if (!uidSet.isEmpty()) {
LOG.error("Unable to fetch messages for uids: " + uidSet);
}
}
use of com.zimbra.cs.mailclient.imap.FetchResponseHandler in project zm-mailbox by Zimbra.
the class RemoteFolder method getFlags.
/*
* Fetch message flags for specific UID sequence. Exclude messages which
* have been flagged \Deleted.
*/
public List<MessageData> getFlags(long startUid, long endUid) throws IOException {
final List<MessageData> mds = new ArrayList<MessageData>();
String end = endUid > 0 ? String.valueOf(endUid) : "*";
connection.uidFetch(startUid + ":" + end, "FLAGS", new FetchResponseHandler() {
public void handleFetchResponse(MessageData md) {
Flags flags = md.getFlags();
if (flags != null && !flags.isDeleted()) {
mds.add(md);
}
}
});
// result.
if (endUid <= 0 && mds.size() == 1 && mds.get(0).getUid() < startUid) {
return Collections.emptyList();
}
return mds;
}
Aggregations