gecko-dev/mailnews/local/build/nsMsgLocalFactory.cpp

345 строки
11 KiB
C++
Исходник Обычный вид История

1999-02-23 10:08:56 +03:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* 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-02-23 10:08:56 +03: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-02-23 10:08:56 +03:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-02-23 10:08:56 +03:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-02-23 10:08:56 +03:00
*/
#include "msgCore.h" // for pre-compiled headers...
#include "nsIModule.h"
#include "nsIGenericFactory.h"
1999-02-23 10:08:56 +03:00
#include "nsMsgLocalCID.h"
// include files for components this factory creates...
#include "nsMailboxUrl.h"
#include "nsPop3URL.h"
#include "nsMailboxService.h"
#include "nsLocalMailFolder.h"
#include "nsParseMailbox.h"
#include "nsPop3Service.h"
#include "nsPop3IncomingServer.h"
#include "nsNoIncomingServer.h"
1999-04-25 00:44:40 +04:00
#include "nsLocalMessage.h"
#include "nsCOMPtr.h"
1999-02-23 10:08:56 +03:00
static NS_DEFINE_CID(kMailboxUrlCID, NS_MAILBOXURL_CID);
static NS_DEFINE_CID(kMailboxParserCID, NS_MAILBOXPARSER_CID);
static NS_DEFINE_CID(kMailboxServiceCID, NS_MAILBOXSERVICE_CID);
1999-04-20 23:08:10 +04:00
static NS_DEFINE_CID(kLocalMailFolderResourceCID, NS_LOCALMAILFOLDERRESOURCE_CID);
1999-04-25 00:44:40 +04:00
static NS_DEFINE_CID(kMailboxMessageResourceCID, NS_MAILBOXMESSAGERESOURCE_CID);
static NS_DEFINE_CID(kPop3ServiceCID, NS_POP3SERVICE_CID);
static NS_DEFINE_CID(kPop3UrlCID, NS_POP3URL_CID);
static NS_DEFINE_CID(kPop3IncomingServerCID, NS_POP3INCOMINGSERVER_CID);
static NS_DEFINE_CID(kNoIncomingServerCID, NS_NOINCOMINGSERVER_CID);
static NS_DEFINE_CID(kParseMailMsgStateCID, NS_PARSEMAILMSGSTATE_CID);
1999-02-23 10:08:56 +03:00
// private factory declarations for each component we know how to produce
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMailboxUrl)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPop3URL)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMsgMailboxParser)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMailboxService)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPop3Service)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsMsgLocalMailFolder)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsLocalMessage)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsParseMailMessageState)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPop3IncomingServer)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsNoIncomingServer)
// Module implementation for the sample library
class nsMsgLocalModule : public nsIModule
{
1999-02-23 10:08:56 +03:00
public:
nsMsgLocalModule();
virtual ~nsMsgLocalModule();
1999-02-23 10:08:56 +03:00
NS_DECL_ISUPPORTS
1999-02-23 10:08:56 +03:00
NS_DECL_NSIMODULE
1999-02-23 10:08:56 +03:00
protected:
nsresult Initialize();
void Shutdown();
PRBool mInitialized;
nsCOMPtr<nsIGenericFactory> mMailboxUrlFactory;
nsCOMPtr<nsIGenericFactory> mPop3UrlFactory;
nsCOMPtr<nsIGenericFactory> mMailboxParserFactory;
nsCOMPtr<nsIGenericFactory> mMailboxServiceFactory;
nsCOMPtr<nsIGenericFactory> mPop3ServiceFactory;
nsCOMPtr<nsIGenericFactory> mLocalMailFolderFactory;
nsCOMPtr<nsIGenericFactory> mLocalMessageFactory;
nsCOMPtr<nsIGenericFactory> mParseMailMsgStateFactory;
nsCOMPtr<nsIGenericFactory> mPop3IncomingServerFactory;
nsCOMPtr<nsIGenericFactory> mNoIncomingServerFactory;
};
nsMsgLocalModule::nsMsgLocalModule()
: mInitialized(PR_FALSE)
{
NS_INIT_ISUPPORTS();
}
1999-02-23 10:08:56 +03:00
nsMsgLocalModule::~nsMsgLocalModule()
{
Shutdown();
}
1999-02-23 10:08:56 +03:00
NS_IMPL_ISUPPORTS(nsMsgLocalModule, NS_GET_IID(nsIModule))
1999-02-23 10:08:56 +03:00
// Perform our one-time intialization for this module
nsresult nsMsgLocalModule::Initialize()
1999-02-23 10:08:56 +03:00
{
if (mInitialized)
return NS_OK;
1999-02-23 10:08:56 +03:00
mInitialized = PR_TRUE;
return NS_OK;
1999-02-23 10:08:56 +03:00
}
// Shutdown this module, releasing all of the module resources
void nsMsgLocalModule::Shutdown()
1999-02-23 10:08:56 +03:00
{
// Release the factory object
mMailboxUrlFactory = null_nsCOMPtr();
mPop3UrlFactory = null_nsCOMPtr();
mMailboxParserFactory = null_nsCOMPtr();
mMailboxServiceFactory = null_nsCOMPtr();
mPop3ServiceFactory = null_nsCOMPtr();
mLocalMailFolderFactory = null_nsCOMPtr();
mLocalMessageFactory = null_nsCOMPtr();
mParseMailMsgStateFactory = null_nsCOMPtr();
mPop3IncomingServerFactory = null_nsCOMPtr();
mNoIncomingServerFactory = null_nsCOMPtr();
1999-02-23 10:08:56 +03:00
}
// Create a factory object for creating instances of aClass.
NS_IMETHODIMP nsMsgLocalModule::GetClassObject(nsIComponentManager *aCompMgr,
const nsCID& aClass,
const nsIID& aIID,
void** r_classObj)
1999-02-23 10:08:56 +03:00
{
nsresult rv;
// Defensive programming: Initialize *r_classObj in case of error below
if (!r_classObj)
return NS_ERROR_INVALID_POINTER;
*r_classObj = NULL;
// Do one-time-only initialization if necessary
if (!mInitialized)
{
rv = Initialize();
if (NS_FAILED(rv)) // Initialization failed! yikes!
return rv;
}
// Choose the appropriate factory, based on the desired instance
// class type (aClass).
nsCOMPtr<nsIGenericFactory> fact;
if (aClass.Equals(kMailboxUrlCID))
{
if (!mMailboxUrlFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mMailboxUrlFactory), &nsMailboxUrlConstructor);
fact = mMailboxUrlFactory;
}
else if (aClass.Equals(kPop3UrlCID))
{
if (!mPop3UrlFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mPop3UrlFactory), &nsPop3URLConstructor);
fact = mPop3UrlFactory;
}
else if (aClass.Equals(kMailboxParserCID))
{
if (!mMailboxParserFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mMailboxParserFactory), &nsMsgMailboxParserConstructor);
fact = mMailboxParserFactory;
}
else if (aClass.Equals(kMailboxServiceCID))
{
if (!mMailboxServiceFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mMailboxServiceFactory), &nsMailboxServiceConstructor);
fact = mMailboxServiceFactory;
}
else if (aClass.Equals(kPop3ServiceCID))
{
if (!mPop3ServiceFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mPop3ServiceFactory), &nsPop3ServiceConstructor);
fact = mPop3ServiceFactory;
}
else if (aClass.Equals(kLocalMailFolderResourceCID))
{
if (!mLocalMailFolderFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mLocalMailFolderFactory), &nsMsgLocalMailFolderConstructor);
fact = mLocalMailFolderFactory;
}
else if (aClass.Equals(kMailboxMessageResourceCID))
{
if (!mLocalMessageFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mLocalMessageFactory), &nsLocalMessageConstructor);
fact = mLocalMessageFactory;
}
else if (aClass.Equals(kParseMailMsgStateCID))
{
if (!mParseMailMsgStateFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mParseMailMsgStateFactory), &nsParseMailMessageStateConstructor);
fact = mParseMailMsgStateFactory;
}
else if (aClass.Equals(kPop3IncomingServerCID))
{
if (!mPop3IncomingServerFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mPop3IncomingServerFactory), &nsPop3IncomingServerConstructor);
fact = mPop3IncomingServerFactory;
}
else if (aClass.Equals(kNoIncomingServerCID))
{
if (!mNoIncomingServerFactory)
rv = NS_NewGenericFactory(getter_AddRefs(mNoIncomingServerFactory), &nsNoIncomingServerConstructor);
fact = mNoIncomingServerFactory;
}
if (fact)
rv = fact->QueryInterface(aIID, r_classObj);
return rv;
1999-02-23 10:08:56 +03:00
}
struct Components {
const char* mDescription;
const nsID* mCID;
const char* mProgID;
};
// The list of components we register
static Components gComponents[] = {
{ "Mailbox URL", &kMailboxUrlCID,
NS_MAILBOXURL_PROGID },
{ "Mailbox Service", &kMailboxServiceCID,
NS_MAILBOXSERVICE_PROGID1 },
{ "Mailbox Service", &kMailboxServiceCID,
NS_MAILBOXSERVICE_PROGID2 },
{ "Mailbox Service", &kMailboxServiceCID,
NS_MAILBOXSERVICE_PROGID3 },
{ "Mailbox Protocol Handler", &kMailboxServiceCID,
NS_MAILBOXSERVICE_PROGID4 },
{ "Mailbox Message Protocol Handler", &kMailboxServiceCID,
NS_MAILBOXSERVICE_PROGID5 },
{ "Mailbox Parser", &kMailboxParserCID,
NS_MAILBOXPARSER_PROGID },
{ "Pop3 URL", &kPop3UrlCID,
NS_POP3URL_PROGID },
{ "Pop3 Service", &kPop3ServiceCID,
NS_POP3SERVICE_PROGID1 },
{ "POP Protocol Handler", &kPop3ServiceCID,
NS_POP3SERVICE_PROGID2 },
{ "pop3 Protocol Information", &kPop3ServiceCID,
NS_POP3PROTOCOLINFO_PROGID },
{ "none Protocol Information", &kPop3ServiceCID,
NS_NONEPROTOCOLINFO_PROGID },
{ "Local Mail Folder Resource Factory", &kLocalMailFolderResourceCID,
NS_LOCALMAILFOLDERRESOURCE_PROGID },
{ "Local Message Resource Factory", &kMailboxMessageResourceCID,
NS_MAILBOXMESSAGERESOURCE_PROGID },
{ "Pop3 Incoming Server", &kPop3IncomingServerCID,
NS_POP3INCOMINGSERVER_PROGID },
{ "No Incoming Server", &kNoIncomingServerCID,
NS_NOINCOMINGSERVER_PROGID },
{ "Parse MailMessage State", &kParseMailMsgStateCID,
NS_PARSEMAILMSGSTATE_PROGID }
};
#define NUM_COMPONENTS (sizeof(gComponents) / sizeof(gComponents[0]))
NS_IMETHODIMP nsMsgLocalModule::RegisterSelf(nsIComponentManager *aCompMgr,
nsIFileSpec* aPath,
const char* registryLocation,
const char* componentType)
1999-02-23 10:08:56 +03:00
{
nsresult rv = NS_OK;
Components* cp = gComponents;
Components* end = cp + NUM_COMPONENTS;
while (cp < end)
{
rv = aCompMgr->RegisterComponentSpec(*cp->mCID, cp->mDescription,
cp->mProgID, aPath, PR_TRUE,
PR_TRUE);
if (NS_FAILED(rv))
break;
cp++;
}
return rv;
}
NS_IMETHODIMP nsMsgLocalModule::UnregisterSelf(nsIComponentManager* aCompMgr,
nsIFileSpec* aPath,
const char* registryLocation)
{
Components* cp = gComponents;
Components* end = cp + NUM_COMPONENTS;
while (cp < end)
{
aCompMgr->UnregisterComponentSpec(*cp->mCID, aPath);
cp++;
}
return NS_OK;
}
1999-02-23 10:08:56 +03:00
NS_IMETHODIMP nsMsgLocalModule::CanUnload(nsIComponentManager *aCompMgr, PRBool *okToUnload)
{
if (!okToUnload)
return NS_ERROR_INVALID_POINTER;
1999-04-25 00:44:40 +04:00
*okToUnload = PR_FALSE;
return NS_ERROR_FAILURE;
}
//----------------------------------------------------------------------
static nsMsgLocalModule *gModule = NULL;
extern "C" NS_EXPORT nsresult NSGetModule(nsIComponentManager *servMgr,
nsIFileSpec* location,
nsIModule** return_cobj)
{
nsresult rv = NS_OK;
NS_ASSERTION(return_cobj, "Null argument");
NS_ASSERTION(gModule == NULL, "nsMsgLocalModule: Module already created.");
// Create an initialize the imap module instance
nsMsgLocalModule *module = new nsMsgLocalModule();
if (!module)
return NS_ERROR_OUT_OF_MEMORY;
// Increase refcnt and store away nsIModule interface to m in return_cobj
rv = module->QueryInterface(nsIModule::GetIID(), (void**)return_cobj);
if (NS_FAILED(rv))
{
delete module;
module = nsnull;
}
gModule = module; // WARNING: Weak Reference
return rv;
1999-02-23 10:08:56 +03:00
}