gecko-dev/mailnews/imap/src/nsImapMailFolder.h

393 строки
17 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
1999-04-21 09:20:11 +04:00
*
* The contents of this file are subject to the Netscape Public License
* Version 1.1 (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.mozilla.org/NPL/
1999-04-21 09:20:11 +04:00
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
1999-04-21 09:20:11 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998, 1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the NPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
1999-04-21 09:20:11 +04:00
#ifndef nsImapMailFolder_h__
#define nsImapMailFolder_h__
#include "nsImapCore.h"
1999-05-11 01:47:59 +04:00
#include "nsMsgDBFolder.h"
#include "nsIImapMailFolderSink.h"
#include "nsIImapMessageSink.h"
#include "nsIImapExtensionSink.h"
#include "nsIImapMiscellaneousSink.h"
1999-04-21 09:20:11 +04:00
#include "nsICopyMessageListener.h"
#include "nsIImapService.h"
#include "nsIUrlListener.h"
#include "nsIImapIncomingServer.h" // we need this for its IID
#include "nsIMsgParseMailMsgState.h"
#include "nsITransactionManager.h"
#include "nsMsgTxn.h"
#include "nsIMsgMessageService.h"
#include "nsIMsgFilterHitNotify.h"
#include "nsIMsgFilterList.h"
#include "prmon.h"
2000-01-11 08:57:45 +03:00
#include "nsIEventQueue.h"
#include "nsIMsgImapMailFolder.h"
#include "nsIMsgLocalMailFolder.h"
#include "nsIImapMailFolderSink.h"
#include "nsIImapServerSink.h"
1999-06-16 03:17:49 +04:00
class nsImapMoveCoalescer;
1999-04-21 09:20:11 +04:00
#define COPY_BUFFER_SIZE 16384
/* b64534f0-3d53-11d3-ac2a-00805f8ac968 */
#define NS_IMAPMAILCOPYSTATE_IID \
{ 0xb64534f0, 0x3d53, 0x11d3, \
{ 0xac, 0x2a, 0x00, 0x80, 0x5f, 0x8a, 0xc9, 0x68 } }
class nsImapMailCopyState: public nsISupports
{
public:
static const nsIID& GetIID()
{
static nsIID iid = NS_IMAPMAILCOPYSTATE_IID;
return iid;
}
NS_DECL_ISUPPORTS
nsImapMailCopyState();
virtual ~nsImapMailCopyState();
nsCOMPtr<nsISupports> m_srcSupport; // source file spec or folder
nsCOMPtr<nsISupportsArray> m_messages; // array of source messages
nsCOMPtr<nsMsgTxn> m_undoMsgTxn; // undo object with this copy operation
nsCOMPtr<nsIMsgDBHdr> m_message; // current message to be copied
nsCOMPtr<nsIMsgCopyServiceListener> m_listener; // listener of this copy
// operation
nsCOMPtr<nsIFileSpec> m_tmpFileSpec; // temp file spec for copy operation
nsCOMPtr<nsIMsgWindow> m_msgWindow; // msg window for copy operation
nsIMsgMessageService* m_msgService; // source folder message service; can
// be Nntp, Mailbox, or Imap
PRBool m_isMove; // is a move
PRBool m_selectedState; // needs to be in selected state; append msg
PRBool m_isCrossServerOp; // are we copying between imap servers?
PRUint32 m_curIndex; // message index to the message array which we are
// copying
PRUint32 m_totalCount;// total count of messages we have to do
PRBool m_streamCopy;
char *m_dataBuffer; // temporary buffer for this copy operation
PRUint32 m_leftOver;
PRBool m_allowUndo;
};
1999-05-11 01:47:59 +04:00
class nsImapMailFolder : public nsMsgDBFolder,
1999-04-21 09:20:11 +04:00
public nsIMsgImapMailFolder,
public nsIImapMailFolderSink,
public nsIImapMessageSink,
public nsIImapExtensionSink,
public nsIImapMiscellaneousSink,
public nsICopyMessageListener,
public nsIMsgFilterHitNotify
1999-04-21 09:20:11 +04:00
{
public:
nsImapMailFolder();
virtual ~nsImapMailFolder();
NS_DECL_ISUPPORTS_INHERITED
// nsICollection methods
NS_IMETHOD Enumerate(nsIEnumerator **result);
// nsIFolder methods:
NS_IMETHOD GetSubFolders(nsIEnumerator* *result);
// nsIMsgFolder methods:
NS_IMETHOD AddUnique(nsISupports* element);
NS_IMETHOD ReplaceElement(nsISupports* element, nsISupports* newElement);
NS_IMETHOD GetMessages(nsIMsgWindow *aMsgWindow, nsISimpleEnumerator* *result);
NS_IMETHOD UpdateFolder(nsIMsgWindow *aWindow);
1999-04-21 09:20:11 +04:00
2000-11-29 04:17:14 +03:00
NS_IMETHOD CreateSubfolder(const PRUnichar *folderName,nsIMsgWindow *msgWindow );
NS_IMETHOD AddSubfolderWithPath(nsAutoString *name, nsIFileSpec *dbPath, nsIMsgFolder **child);
NS_IMETHODIMP CreateStorageIfMissing(nsIUrlListener* urlListener);
1999-04-21 09:20:11 +04:00
NS_IMETHOD Compact(nsIUrlListener *aListener, nsIMsgWindow *aMsgWindow);
NS_IMETHOD CompactAll(nsIUrlListener *aListener, nsIMsgWindow *aMsgWindow, nsISupportsArray *aFolderArray, PRBool aCompactOfflineAlso, nsISupportsArray *aOfflineFolderArray);
NS_IMETHOD EmptyTrash(nsIMsgWindow *msgWindow, nsIUrlListener *aListener);
1999-04-21 09:20:11 +04:00
NS_IMETHOD Delete ();
2000-11-29 04:17:14 +03:00
NS_IMETHOD Rename (const PRUnichar *newName, nsIMsgWindow *msgWindow);
NS_IMETHOD RenameSubFolders(nsIMsgWindow *msgWindow, nsIMsgFolder *oldFolder);
NS_IMETHOD GetNoSelect(PRBool *aResult);
1999-06-29 02:29:08 +04:00
NS_IMETHOD GetPrettyName(PRUnichar ** prettyName); // Override of the base, for top-level mail folder
1999-04-21 09:20:11 +04:00
NS_IMETHOD GetFolderURL(char **url);
1999-04-21 09:20:11 +04:00
1999-07-18 00:33:15 +04:00
NS_IMETHOD UpdateSummaryTotals(PRBool force) ;
1999-04-21 09:20:11 +04:00
NS_IMETHOD GetDeletable (PRBool *deletable);
NS_IMETHOD GetRequiresCleanup(PRBool *requiresCleanup);
NS_IMETHOD GetSizeOnDisk(PRUint32 * size);
NS_IMETHOD GetCanCreateSubfolders(PRBool *aResult);
NS_IMETHOD GetCanSubscribe(PRBool *aResult);
1999-04-21 09:20:11 +04:00
NS_IMETHOD UserNeedsToAuthenticateForFolder(PRBool displayOnly, PRBool *authenticate);
NS_IMETHOD RememberPassword(const char *password);
1999-04-21 09:20:11 +04:00
NS_IMETHOD GetRememberedPassword(char ** password);
NS_IMETHOD AddMessageDispositionState(nsIMsgDBHdr *aMessage, nsMsgDispositionState aDispositionFlag);
NS_IMETHOD MarkMessagesRead(nsISupportsArray *messages, PRBool markRead);
NS_IMETHOD MarkAllMessagesRead(void);
1999-09-18 00:13:42 +04:00
NS_IMETHOD MarkMessagesFlagged(nsISupportsArray *messages, PRBool markFlagged);
NS_IMETHOD MarkThreadRead(nsIMsgThread *thread);
1999-08-10 03:20:24 +04:00
NS_IMETHOD DeleteSubFolders(nsISupportsArray *folders, nsIMsgWindow *msgWindow);
NS_IMETHOD ReadFromFolderCacheElem(nsIMsgFolderCacheElement *element);
NS_IMETHOD WriteToFolderCacheElem(nsIMsgFolderCacheElement *element);
1999-04-21 09:20:11 +04:00
NS_IMETHOD GetDBFolderInfoAndDB(nsIDBFolderInfo **folderInfo,
1999-04-21 09:20:11 +04:00
nsIMsgDatabase **db);
1999-06-10 18:55:36 +04:00
NS_IMETHOD DeleteMessages(nsISupportsArray *messages,
nsIMsgWindow *msgWindow, PRBool
deleteStorage, PRBool isMove,
nsIMsgCopyServiceListener* listener, PRBool allowUndo);
NS_IMETHOD CopyMessages(nsIMsgFolder *srcFolder,
nsISupportsArray* messages,
PRBool isMove, nsIMsgWindow *msgWindow,
nsIMsgCopyServiceListener* listener, PRBool isFolder,
PRBool allowUndo);
NS_IMETHOD CopyFolder(nsIMsgFolder *srcFolder, PRBool isMove, nsIMsgWindow *msgWindow,
nsIMsgCopyServiceListener* listener);
NS_IMETHOD CopyFileMessage(nsIFileSpec* fileSpec,
nsIMsgDBHdr* msgToReplace,
PRBool isDraftOrTemplate,
nsIMsgWindow *msgWindow,
nsIMsgCopyServiceListener* listener);
NS_IMETHOD GetNewMessages(nsIMsgWindow *aWindow, nsIUrlListener *aListener);
1999-04-21 09:20:11 +04:00
NS_IMETHOD GetPath(nsIFileSpec** aPathName);
NS_IMETHOD SetPath(nsIFileSpec * aPath);
1999-08-19 23:52:51 +04:00
NS_IMETHOD Shutdown(PRBool shutdownChildren);
NS_IMETHOD DownloadMessagesForOffline(nsISupportsArray *messages, nsIMsgWindow *msgWindow);
NS_IMETHOD DownloadAllForOffline(nsIUrlListener *listener, nsIMsgWindow *msgWindow);
NS_IMETHOD ShouldStoreMsgOffline(nsMsgKey msgKey, PRBool *result);
2001-07-03 11:32:27 +04:00
NS_IMETHOD GetOfflineStoreOutputStream(nsIOutputStream **outputStream);
NS_IMETHOD GetCanFileMessages(PRBool *aCanFileMessages);
1999-08-19 23:52:51 +04:00
// nsIMsgImapMailFolder methods
NS_DECL_NSIMSGIMAPMAILFOLDER
1999-08-19 23:52:51 +04:00
1999-04-21 09:20:11 +04:00
// nsIImapMailFolderSink methods
NS_DECL_NSIIMAPMAILFOLDERSINK
1999-04-21 09:20:11 +04:00
// nsIImapMessageSink methods
1999-09-12 21:49:08 +04:00
NS_DECL_NSIIMAPMESSAGESINK
1999-09-12 21:49:08 +04:00
//nsICopyMessageListener
NS_DECL_NSICOPYMESSAGELISTENER
1999-04-21 09:20:11 +04:00
NS_DECL_NSIREQUESTOBSERVER
// nsIUrlListener methods
NS_IMETHOD OnStartRunningUrl(nsIURI * aUrl);
NS_IMETHOD OnStopRunningUrl(nsIURI * aUrl, nsresult aExitCode);
// nsIImapExtensionSink methods
NS_IMETHOD ClearFolderRights(nsIImapProtocol* aProtocol,
nsIMAPACLRightsInfo* aclRights);
NS_IMETHOD AddFolderRights(nsIImapProtocol* aProtocol,
nsIMAPACLRightsInfo* aclRights);
NS_IMETHOD RefreshFolderRights(nsIImapProtocol* aProtocol,
nsIMAPACLRightsInfo* aclRights);
NS_IMETHOD FolderNeedsACLInitialized(nsIImapProtocol* aProtocol,
nsIMAPACLRightsInfo* aclRights);
NS_IMETHOD SetCopyResponseUid(nsIImapProtocol* aProtocol,
nsMsgKeyArray* keyArray,
const char* msgIdString,
nsIImapUrl * aUrl);
NS_IMETHOD SetAppendMsgUid(nsIImapProtocol* aProtocol,
nsMsgKey aKey,
nsIImapUrl * aUrl);
NS_IMETHOD GetMessageId(nsIImapProtocol* aProtocol,
nsCString* messageId,
nsIImapUrl * aUrl);
// nsIImapMiscellaneousSink methods
NS_IMETHOD AddSearchResult(nsIImapProtocol* aProtocol,
const char* searchHitLine);
NS_IMETHOD HeaderFetchCompleted(nsIImapProtocol* aProtocol);
NS_IMETHOD UpdateSecurityStatus(nsIImapProtocol* aProtocol);
// ****
NS_IMETHOD SetBiffStateAndUpdate(nsIImapProtocol* aProtocol,
nsMsgBiffState biffState);
NS_IMETHOD GetStoredUIDValidity(nsIImapProtocol* aProtocol,
uid_validity_info* aInfo);
NS_IMETHOD LiteSelectUIDValidity(nsIImapProtocol* aProtocol,
PRUint32 uidValidity);
NS_IMETHOD ProgressStatus(nsIImapProtocol* aProtocol,
PRUint32 aMsgId, const PRUnichar *extraInfo);
NS_IMETHOD PercentProgress(nsIImapProtocol* aProtocol,
ProgressInfo* aInfo);
NS_IMETHOD TunnelOutStream(nsIImapProtocol* aProtocol,
msg_line_info* aInfo);
NS_IMETHOD ProcessTunnel(nsIImapProtocol* aProtocol,
TunnelInfo *aInfo);
NS_IMETHOD CopyNextStreamMessage(nsIImapProtocol* aProtocol,
nsIImapUrl * aUrl,
PRBool copySucceeded);
NS_IMETHOD MatchName(nsString *name, PRBool *matches);
// nsIMsgFilterHitNotification method(s)
NS_IMETHOD ApplyFilterHit(nsIMsgFilter *filter, nsIMsgWindow *msgWindow, PRBool *applyMore);
NS_IMETHOD IsCommandEnabled(const char *command, PRBool *result);
nsresult MoveIncorporatedMessage(nsIMsgDBHdr *mailHdr,
nsIMsgDatabase *sourceDB,
const char *destFolder,
nsIMsgFilter *filter,
nsIMsgWindow *msgWindow);
static nsresult AllocateUidStringFromKeys(nsMsgKey *keys, PRInt32 numKeys, nsCString &msgIds);
1999-04-21 09:20:11 +04:00
protected:
// Helper methods
nsresult AlertSpecialFolderExists(nsIMsgWindow *msgWindow);
void FindKeysToAdd(const nsMsgKeyArray &existingKeys, nsMsgKeyArray
&keysToFetch, nsIImapFlagAndUidState *flagState);
void FindKeysToDelete(const nsMsgKeyArray &existingKeys, nsMsgKeyArray
&keysToFetch, nsIImapFlagAndUidState *flagState);
void PrepareToAddHeadersToMailDB(nsIImapProtocol* aProtocol, const
nsMsgKeyArray &keysToFetch,
nsIMailboxSpec *boxSpec);
void TweakHeaderFlags(nsIImapProtocol* aProtocol, nsIMsgDBHdr *tweakMe);
1999-04-27 06:09:42 +04:00
nsresult SyncFlags(nsIImapFlagAndUidState *flagState);
2000-08-17 03:35:48 +04:00
nsresult MarkMessagesImapDeleted(nsMsgKeyArray *keyArray, PRBool deleted, nsIMsgDatabase *db);
void UpdatePendingCounts(PRBool countUnread, PRBool missingAreRead);
1999-04-27 06:09:42 +04:00
void SetIMAPDeletedFlag(nsIMsgDatabase *mailDB, const nsMsgKeyArray &msgids, PRBool markDeleted);
virtual PRBool ShowDeletedMessages();
virtual PRBool DeleteIsMoveToTrash();
1999-04-27 06:09:42 +04:00
void ParseUidString(char *uidString, nsMsgKeyArray &keys);
nsresult GetFolder(const char *name, nsIMsgFolder **pFolder);
nsresult GetTrashFolder(nsIMsgFolder **pTrashFolder);
PRBool TrashOrDescendentOfTrash(nsIMsgFolder* folder);
nsresult GetServerKey(char **serverKey);
nsresult GetImapIncomingServer(nsIImapIncomingServer **aImapIncomingServer);
1999-04-27 06:09:42 +04:00
nsresult DisplayStatusMsg(nsIImapUrl *aImapUrl, const PRUnichar *msg);
//nsresult RenameLocal(const char *newName);
nsresult AddDirectorySeparator(nsFileSpec &path);
nsresult CreateDirectoryForFolder(nsFileSpec &path);
1999-04-21 09:20:11 +04:00
nsresult CreateSubFolders(nsFileSpec &path);
nsresult GetDatabase(nsIMsgWindow *aMsgWindow);
virtual const char *GetIncomingServerType() {return "imap";}
nsresult GetBodysToDownload(nsMsgKeyArray *keysOfMessagesToDownload);
// Uber message copy service
nsresult CopyMessagesWithStream(nsIMsgFolder* srcFolder,
nsISupportsArray* messages,
PRBool isMove,
PRBool isCrossServerOp,
nsIMsgWindow *msgWindow,
nsIMsgCopyServiceListener* listener, PRBool allowUndo);
nsresult CopyStreamMessage(nsIMsgDBHdr* message, nsIMsgFolder* dstFolder,
nsIMsgWindow *msgWindow, PRBool isMove);
nsresult InitCopyState(nsISupports* srcSupport,
nsISupportsArray* messages,
PRBool isMove,
PRBool selectedState,
nsIMsgCopyServiceListener* listener,
nsIMsgWindow *msgWindow,
PRBool allowUndo);
void ClearCopyState(nsresult exitCode);
nsresult BuildIdsAndKeyArray(nsISupportsArray* messages,
nsCString& msgIds, nsMsgKeyArray& keyArray);
virtual nsresult CreateBaseMessageURI(const char *aURI);
// offline-ish methods
nsresult GetClearedOriginalOp(nsIMsgOfflineImapOperation *op, nsIMsgOfflineImapOperation **originalOp,
nsIMsgDatabase **originalDB);
nsresult GetOriginalOp(nsIMsgOfflineImapOperation *op,
nsIMsgOfflineImapOperation **originalOp, nsIMsgDatabase **originalDB);
nsresult CopyMessagesOffline(nsIMsgFolder* srcFolder,
nsISupportsArray* messages,
PRBool isMove,
nsIMsgWindow *msgWindow,
nsIMsgCopyServiceListener* listener);
2001-07-03 11:32:27 +04:00
nsresult CopyOfflineMsgBody(nsIMsgFolder *srcFolder, nsIMsgDBHdr *destHdr, nsIMsgDBHdr *origHdr);
PRBool m_initialized;
PRBool m_haveDiscoveredAllFolders;
PRBool m_haveReadNameFromDB;
nsCOMPtr<nsIMsgParseMailMsgState> m_msgParser;
nsCOMPtr<nsIMsgFilterList> m_filterList;
PRBool m_msgMovedByFilter;
1999-06-16 03:17:49 +04:00
nsImapMoveCoalescer *m_moveCoalescer;
nsMsgKey m_curMsgUid;
PRUint32 m_uidValidity;
PRInt32 m_nextMessageByteLength;
nsCOMPtr<nsIEventQueue> m_eventQueue;
nsCOMPtr<nsIUrlListener> m_urlListener;
PRBool m_urlRunning;
1999-04-26 09:08:49 +04:00
// *** jt - undo move/copy trasaction support
nsCOMPtr<nsMsgTxn> m_pendingUndoTxn;
nsCOMPtr<nsImapMailCopyState> m_copyState;
PRMonitor *m_appendMsgMonitor;
PRBool m_verifiedAsOnlineFolder;
PRBool m_explicitlyVerify; // whether or not we need to explicitly verify this through LIST
PRUnichar m_hierarchyDelimiter;
PRInt32 m_boxFlags;
nsCString m_onlineFolderName;
nsFileSpec *m_pathName;
PRBool m_folderNeedsSubscribing;
PRBool m_folderNeedsAdded;
PRBool m_folderNeedsACLListed;
nsCOMPtr<nsIMsgMailNewsUrl> mUrlToRelease;
// offline imap support
PRBool m_downloadMessageForOfflineUse;
PRBool m_downloadingFolderForOfflineUse;
1999-04-21 09:20:11 +04:00
};
#endif