1999-02-11 04:01:47 +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.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
#include "msgCore.h"
|
|
|
|
|
1999-02-11 04:01:47 +03:00
|
|
|
#include "nsIFactory.h"
|
|
|
|
#include "nsISupports.h"
|
1999-02-23 04:02:49 +03:00
|
|
|
#include "pratom.h"
|
1999-02-11 04:01:47 +03:00
|
|
|
#include "nsMsgCompCID.h"
|
|
|
|
|
|
|
|
/* Include all of the interfaces our factory can generate components for */
|
1999-02-23 04:02:49 +03:00
|
|
|
#include "nsISmtpService.h"
|
|
|
|
#include "nsSmtpService.h"
|
1999-02-11 04:01:47 +03:00
|
|
|
#include "nsMsgComposeFact.h"
|
|
|
|
#include "nsMsgCompFieldsFact.h"
|
1999-02-17 22:38:44 +03:00
|
|
|
#include "nsMsgSendFact.h"
|
1999-03-09 12:52:30 +03:00
|
|
|
#include "nsIServiceManager.h"
|
1999-03-09 16:07:15 +03:00
|
|
|
#include "nsCOMPtr.h"
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-03-09 12:52:30 +03:00
|
|
|
static NS_DEFINE_CID(kComponentManagerCID, NS_COMPONENTMANAGER_CID);
|
1999-02-17 22:38:44 +03:00
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
|
1999-02-13 13:39:59 +03:00
|
|
|
static NS_DEFINE_CID(kCMsgComposeCID, NS_MSGCOMPOSE_CID);
|
|
|
|
static NS_DEFINE_CID(kCMsgCompFieldsCID, NS_MSGCOMPFIELDS_CID);
|
1999-02-17 22:38:44 +03:00
|
|
|
static NS_DEFINE_CID(kCMsgSendCID, NS_MSGSEND_CID);
|
1999-02-23 04:02:49 +03:00
|
|
|
static NS_DEFINE_CID(kCSmtpServiceCID, NS_SMTPSERVICE_CID);
|
1999-02-11 04:01:47 +03:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
1999-02-23 04:02:49 +03:00
|
|
|
static PRInt32 g_InstanceCount = 0;
|
|
|
|
static PRInt32 g_LockCount = 0;
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
class nsMsgComposeFactory : public nsIFactory
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports methods
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsMsgComposeFactory(const nsCID &aClass);
|
1999-02-11 04:01:47 +03:00
|
|
|
|
|
|
|
// nsIFactory methods
|
|
|
|
NS_IMETHOD CreateInstance(nsISupports *aOuter, const nsIID &aIID, void **aResult);
|
|
|
|
NS_IMETHOD LockFactory(PRBool aLock);
|
|
|
|
|
|
|
|
protected:
|
1999-02-23 04:02:49 +03:00
|
|
|
virtual ~nsMsgComposeFactory();
|
1999-02-11 04:01:47 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsCID mClassID;
|
|
|
|
};
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsMsgComposeFactory::nsMsgComposeFactory(const nsCID &aClass)
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
mClassID = aClass;
|
|
|
|
}
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsMsgComposeFactory::~nsMsgComposeFactory()
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mRefCnt == 0, "non-zero refcnt at destruction");
|
|
|
|
}
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsresult nsMsgComposeFactory::QueryInterface(const nsIID &aIID, void **aResult)
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
|
|
|
if (aResult == NULL)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
// Always NULL result, in case of failure
|
|
|
|
*aResult = NULL;
|
|
|
|
|
|
|
|
// we support two interfaces....nsISupports and nsFactory.....
|
1999-03-04 03:57:51 +03:00
|
|
|
if (aIID.Equals(::nsISupports::GetIID()))
|
1999-02-11 04:01:47 +03:00
|
|
|
*aResult = (void *)(nsISupports*)this;
|
1999-03-04 03:57:51 +03:00
|
|
|
else if (aIID.Equals(nsIFactory::GetIID()))
|
1999-02-11 04:01:47 +03:00
|
|
|
*aResult = (void *)(nsIFactory*)this;
|
|
|
|
|
|
|
|
if (*aResult == NULL)
|
|
|
|
return NS_NOINTERFACE;
|
|
|
|
|
|
|
|
AddRef(); // Increase reference count for caller
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
NS_IMPL_ADDREF(nsMsgComposeFactory)
|
|
|
|
NS_IMPL_RELEASE(nsMsgComposeFactory)
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsresult nsMsgComposeFactory::CreateInstance(nsISupports *aOuter, const nsIID &aIID, void **aResult)
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
|
|
|
nsresult res = NS_OK;
|
|
|
|
|
|
|
|
if (aResult == NULL)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
*aResult = NULL;
|
|
|
|
|
|
|
|
nsISupports *inst = nsnull;
|
|
|
|
|
|
|
|
// ClassID check happens here
|
|
|
|
// Whenever you add a new class that supports an interface, plug it in here!!!
|
1999-02-23 04:02:49 +03:00
|
|
|
|
|
|
|
// mscott --> I've noticed that all of the "convience" functions (NS_*) used to
|
|
|
|
// create components are adding a ref count to the returned component...then at the end of
|
|
|
|
// CreateInstance we ref count again when we query interface for the desired interface.
|
|
|
|
// That's why we need to be careful and make sure we release the first ref count before returning...
|
|
|
|
// So, if you add a component here and it doesn't ref count when you create it then you might
|
|
|
|
// have a problem....
|
1999-02-11 04:01:47 +03:00
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
if (mClassID.Equals(kCSmtpServiceCID))
|
|
|
|
{
|
|
|
|
nsSmtpService * smtpService = new nsSmtpService();
|
|
|
|
// okay now turn around and give inst a handle on it....
|
|
|
|
smtpService->QueryInterface(kISupportsIID, (void **) &inst);
|
|
|
|
}
|
1999-02-11 04:01:47 +03:00
|
|
|
// do they want an Message Compose interface ?
|
|
|
|
if (mClassID.Equals(kCMsgComposeCID))
|
|
|
|
{
|
|
|
|
res = NS_NewMsgCompose((nsIMsgCompose **) &inst);
|
|
|
|
if (res != NS_OK) // was there a problem creating the object ?
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// do they want an Message Compose Fields interface ?
|
|
|
|
if (mClassID.Equals(kCMsgCompFieldsCID))
|
|
|
|
{
|
|
|
|
res = NS_NewMsgCompFields((nsIMsgCompFields **) &inst);
|
|
|
|
if (res != NS_OK) // was there a problem creating the object ?
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
1999-02-17 22:38:44 +03:00
|
|
|
// do they want an Message Send interface ?
|
|
|
|
if (mClassID.Equals(kCMsgSendCID))
|
|
|
|
{
|
|
|
|
res = NS_NewMsgSend((nsIMsgSend **) &inst);
|
|
|
|
if (res != NS_OK) // was there a problem creating the object ?
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
1999-02-11 04:01:47 +03:00
|
|
|
// End of checking the interface ID code....
|
|
|
|
if (inst)
|
|
|
|
{
|
|
|
|
// so we now have the class that supports the desired interface...we need to turn around and
|
|
|
|
// query for our desired interface.....
|
|
|
|
res = inst->QueryInterface(aIID, aResult);
|
1999-02-23 04:02:49 +03:00
|
|
|
NS_RELEASE(inst); // because creating picked up an extra ref count...
|
1999-02-11 04:01:47 +03:00
|
|
|
if (res != NS_OK) // if the query interface failed for some reason, then the object did not get ref counted...delete it.
|
1999-02-17 22:38:44 +03:00
|
|
|
delete inst;
|
1999-02-11 04:01:47 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
res = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
1999-02-23 04:02:49 +03:00
|
|
|
nsresult nsMsgComposeFactory::LockFactory(PRBool aLock)
|
1999-02-11 04:01:47 +03:00
|
|
|
{
|
1999-02-23 04:02:49 +03:00
|
|
|
if (aLock)
|
|
|
|
PR_AtomicIncrement(&g_LockCount);
|
|
|
|
else
|
|
|
|
PR_AtomicDecrement(&g_LockCount);
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-02-11 04:01:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// return the proper factory to the caller.
|
1999-03-09 12:52:30 +03:00
|
|
|
extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
|
1999-02-26 15:24:22 +03:00
|
|
|
const nsCID &aClass,
|
|
|
|
const char *aClassName,
|
|
|
|
const char *aProgID,
|
1999-02-11 04:01:47 +03:00
|
|
|
nsIFactory **aFactory)
|
|
|
|
{
|
|
|
|
if (nsnull == aFactory)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
// If we decide to implement multiple factories in the msg.dll, then we need to check the class
|
1999-02-23 04:02:49 +03:00
|
|
|
// type here and create the appropriate factory instead of always creating a nsMsgComposeFactory...
|
|
|
|
*aFactory = new nsMsgComposeFactory(aClass);
|
1999-02-11 04:01:47 +03:00
|
|
|
|
|
|
|
if (aFactory)
|
1999-03-04 03:57:51 +03:00
|
|
|
return (*aFactory)->QueryInterface(nsIFactory::GetIID(), (void**)aFactory); // they want a Factory Interface so give it to them
|
1999-02-11 04:01:47 +03:00
|
|
|
else
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
1999-03-09 12:52:30 +03:00
|
|
|
extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr)
|
1999-02-23 04:02:49 +03:00
|
|
|
{
|
|
|
|
return PRBool(g_InstanceCount == 0 && g_LockCount == 0);
|
|
|
|
}
|
|
|
|
|
1999-03-09 12:52:30 +03:00
|
|
|
extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char* path)
|
1999-02-23 04:02:49 +03:00
|
|
|
{
|
1999-03-09 12:52:30 +03:00
|
|
|
nsresult rv;
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
1999-03-09 12:52:30 +03:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
1999-03-09 15:29:08 +03:00
|
|
|
nsIComponentManager* compMgr;
|
|
|
|
rv = servMgr->GetService(kComponentManagerCID,
|
|
|
|
nsIComponentManager::GetIID(),
|
|
|
|
(nsISupports**)&compMgr);
|
1999-03-09 12:52:30 +03:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
rv = compMgr->RegisterComponent(kCMsgComposeCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->RegisterComponent(kCSmtpServiceCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
1999-03-09 15:29:08 +03:00
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->RegisterComponent(kCMsgCompFieldsCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
1999-03-09 15:29:08 +03:00
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->RegisterComponent(kCMsgSendCID, NULL, NULL, path, PR_TRUE, PR_TRUE);
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
done:
|
|
|
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
|
|
|
return rv;
|
1999-02-23 04:02:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" NS_EXPORT nsresult
|
1999-03-09 12:52:30 +03:00
|
|
|
NSUnregisterSelf(nsISupports* aServMgr, const char* path)
|
1999-02-23 04:02:49 +03:00
|
|
|
{
|
1999-03-09 12:52:30 +03:00
|
|
|
nsresult rv;
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
1999-03-09 12:52:30 +03:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
1999-03-09 15:29:08 +03:00
|
|
|
nsIComponentManager* compMgr;
|
|
|
|
rv = servMgr->GetService(kComponentManagerCID,
|
|
|
|
nsIComponentManager::GetIID(),
|
|
|
|
(nsISupports**)&compMgr);
|
1999-03-09 12:52:30 +03:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
rv = compMgr->UnregisterComponent(kCMsgComposeCID, path);
|
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->UnregisterComponent(kCSmtpServiceCID, path);
|
1999-03-09 15:29:08 +03:00
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->UnregisterComponent(kCMsgCompFieldsCID, path);
|
1999-03-09 15:29:08 +03:00
|
|
|
if (NS_FAILED(rv)) goto done;
|
1999-03-09 12:52:30 +03:00
|
|
|
rv = compMgr->UnregisterComponent(kCMsgSendCID, path);
|
1999-03-09 15:29:08 +03:00
|
|
|
|
|
|
|
done:
|
|
|
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
|
|
|
return rv;
|
1999-02-26 15:24:22 +03:00
|
|
|
}
|