From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- comm/mailnews/import/src/nsImportAddressBooks.h | 81 +++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 comm/mailnews/import/src/nsImportAddressBooks.h (limited to 'comm/mailnews/import/src/nsImportAddressBooks.h') diff --git a/comm/mailnews/import/src/nsImportAddressBooks.h b/comm/mailnews/import/src/nsImportAddressBooks.h new file mode 100644 index 0000000000..8d0edd2c67 --- /dev/null +++ b/comm/mailnews/import/src/nsImportAddressBooks.h @@ -0,0 +1,81 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, you can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsCOMPtr.h" +#include "nsIImportAddressBooks.h" +#include "nsIImportGeneric.h" +#include "nsIImportFieldMap.h" +#include "nsString.h" +#include "nsIFile.h" +#include "nsIAbDirectory.h" +#include "nsIAbLDIFService.h" +#include "nsIStringBundle.h" +#include "nsIArray.h" +#include "nsCOMArray.h" + +static void ImportAddressThread(void* stuff); + +class AddressThreadData; + +class nsImportGenericAddressBooks : public nsIImportGeneric { + public: + nsImportGenericAddressBooks(); + + NS_DECL_THREADSAFE_ISUPPORTS + NS_DECL_NSIIMPORTGENERIC + + private: + virtual ~nsImportGenericAddressBooks(); + void GetDefaultLocation(void); + void GetDefaultBooks(void); + void GetDefaultFieldMap(void); + + public: + static void SetLogs(nsString& success, nsString& error, + nsISupportsString* pSuccess, nsISupportsString* pError); + static void ReportError(const char16_t* pName, nsString* pStream, + nsIStringBundle* aBundle); + + private: + nsCOMPtr m_pInterface; + nsTArray> m_Books; + nsCOMArray m_DBs; + nsCOMPtr m_pLocation; + nsCOMPtr m_pFieldMap; + bool m_autoFind; + char16_t* m_description; + bool m_gotLocation; + bool m_found; + bool m_userVerify; + nsCOMPtr m_pSuccessLog; + nsCOMPtr m_pErrorLog; + uint32_t m_totalSize; + bool m_doImport; + AddressThreadData* m_pThreadData; + nsCString m_pDestinationUri; + nsCOMPtr m_stringBundle; +}; + +class AddressThreadData { + public: + bool driverAlive; + bool threadAlive; + bool abort; + bool fatalError; + uint32_t currentTotal; + uint32_t currentSize; + nsTArray> books; + nsCOMArray* dBs; + nsCOMPtr ldifService; + nsCOMPtr addressImport; + nsCOMPtr fieldMap; + nsCOMPtr successLog; + nsCOMPtr errorLog; + nsCString pDestinationUri; + nsCOMPtr stringBundle; + + AddressThreadData(); + ~AddressThreadData(); +}; -- cgit v1.2.3