nsdogbertprofilemigrator.h

来自「现在很火的邮件客户端软件thunderbird的源码」· C头文件 代码 · 共 183 行

H
183
字号
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- *//* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla 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/MPL/ * * 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. * * The Original Code is The Communicator 4.x Mail Migrator Code * * The Initial Developer of the Original Code is Scott MacGregor. * Portions created by the Initial Developer are Copyright (C) 2004 * the Initial Developer. All Rights Reserved. * * Contributor(s): *  Scott MacGregor <mscott@mozilla.org> * * 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 MPL, 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 MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */#ifndef dogbertprofilemigrator___h___#define dogbertprofilemigrator___h___#include "nsIMailProfileMigrator.h"#include "nsILocalFile.h"#include "nsIObserverService.h"#include "nsISupportsArray.h"#include "nsNetscapeProfileMigratorBase.h"#include "nsString.h"#include "nsITimer.h"#include "nsIPref.h"class nsIFile;class nsIPrefBranch;class nsIPrefService;class nsIFileSpec;class nsFileSpec;// ripped off from nsPrefMigration, warts and all#define MIGRATION_SUCCESS    0#define MIGRATION_RETRY      1#define MIGRATION_CANCEL     2#define MIGRATION_CREATE_NEW 3#define MAX_DRIVES 4//Interfaces Needed#if defined(XP_MAC) || defined(XP_MACOSX)#define IMAP_MAIL_FILTER_FILE_NAME_FORMAT_IN_4x "%s Rules" #endif#if defined(XP_UNIX) && !defined(XP_MACOSX)#define NEED_TO_COPY_AND_RENAME_NEWSRC_FILES#endifclass nsPrefConverter{public:  nsPrefConverter();  virtual ~nsPrefConverter();  nsresult ConvertPrefsToUTF8();  nsresult GetPlatformCharset(nsCString& aCharset);};class nsDogbertProfileMigrator :   public nsNetscapeProfileMigratorBase,                                    public nsIMailProfileMigrator,                                   public nsITimerCallback{public:  NS_DECL_NSIMAILPROFILEMIGRATOR  NS_DECL_ISUPPORTS  NS_DECL_NSITIMERCALLBACK  nsDogbertProfileMigrator();  virtual ~nsDogbertProfileMigrator();protected:  void GetSourceProfile(const PRUnichar* aProfile);  nsresult CopyPreferences();private:  nsCOMPtr<nsISupportsArray> mProfiles;  nsCOMPtr<nsISupportsArray> mProfileLocations;  nsCOMPtr<nsIObserverService> mObserverService;  nsCOMPtr<nsITimer> mFileIOTimer;  PRInt64 mMaxProgress;  PRInt64 mCurrentProgress;    nsCOMPtr<nsIPref> mPrefs;  nsCOMPtr<nsILocalFile> m_prefsFile;protected:  nsresult ProcessPrefsCallback(const char* oldProfilePathStr, const char * newProfilePathStr);  nsresult ConvertPersistentStringToFileSpec(const char *str, nsIFileSpec *path);  nsresult CreateNewUser5Tree(nsIFileSpec* oldProfilePath,                               nsIFileSpec* newProfilePath);  nsresult GetDirFromPref(nsIFileSpec* oldProfilePath,                          nsIFileSpec* newProfilePath,                           const char* newDirName,                          const char* pref,                           nsIFileSpec* newPath,                           nsIFileSpec* oldPath);  nsresult GetSizes(nsFileSpec inputPath,                    PRBool readSubdirs,                    PRUint32* sizeTotal);  nsresult ComputeSpaceRequirements(PRInt64 DriveArray[],                                     PRUint32 SpaceReqArray[],                                     PRInt64 Drive,                                     PRUint32 SpaceNeeded);  nsresult DoTheCopy(nsIFileSpec *oldPath,                      nsIFileSpec *newPath,                     PRBool readSubdirs);   nsresult DoTheCopy(nsIFileSpec *oldPath,                     nsIFileSpec *newPath,                     const char *fileOrDirName,                     PRBool isDirectory = PR_FALSE);  nsresult DoTheCopyAndRename(nsIFileSpec *oldPath,                           nsIFileSpec *newPath,                          PRBool readSubdirs,                          PRBool needToRenameFiles,                          const char *oldName,                          const char *newName);   nsresult DoTheCopyAndRename(nsIFileSpec *aPath,                           PRBool aReadSubdirs,                          const char *aOldName,                          const char *aNewName);  nsresult CopyFilesByPattern(nsIFileSpec * oldPathSpec,                          nsIFileSpec * newPathSpec,                          const char *pattern);  nsresult AddFileCopyToList(nsFileSpec * aOldPath, nsFileSpec * aNewPath, const char * newFileName);  void CopyNextFolder();  void EndCopyFolders();#ifdef NEED_TO_COPY_AND_RENAME_NEWSRC_FILES  nsresult CopyAndRenameNewsrcFiles(nsIFileSpec *newPath);#endif /* NEED_TO_COPY_AND_RENAME_NEWSRC_FILES */  nsresult DoSpecialUpdates(nsIFileSpec * profilePath);  nsresult Rename4xFileAfterMigration(nsIFileSpec *profilePath, const char *oldFileName, const char *newFileName);#ifdef IMAP_MAIL_FILTER_FILE_NAME_FORMAT_IN_4x  nsresult RenameAndMove4xImapFilterFile(nsIFileSpec *profilePath, const char *hostname);  nsresult RenameAndMove4xImapFilterFiles(nsIFileSpec *profilePath);#endif /* IMAP_MAIL_FILTER_FILE_NAME_FORMAT_IN_4x */  nsresult RenameAndMove4xPopStateFile(nsIFileSpec *profilePath);  nsresult RenameAndMove4xPopFilterFile(nsIFileSpec *profilePath);  nsresult RenameAndMove4xPopFile(nsIFileSpec * profilePath, const char *fileNameIn4x, const char *fileNameIn5x);    nsresult DetermineOldPath(nsIFileSpec *profilePath, const char *oldPathName, const char *oldPathEntityName, nsIFileSpec *oldPath);  nsresult SetPremigratedFilePref(const char *pref_name, nsIFileSpec *filePath);#ifdef NEED_TO_COPY_AND_RENAME_NEWSRC_FILES  nsresult GetPremigratedFilePref(const char *pref_name, nsIFileSpec **filePath);#endif /* NEED_TO_COPY_AND_RENAME_NEWSRC_FILES */};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?