1999-06-02 01:08:32 +04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
1999-11-06 06:43:54 +03: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-06-02 01:08:32 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +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-06-02 01:08:32 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 06:43:54 +03:00
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
1999-06-02 01:08:32 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* Contributor(s):
|
1999-06-02 01:08:32 +04:00
|
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "pratom.h"
|
|
|
|
#include "prmem.h"
|
|
|
|
#include "prio.h"
|
|
|
|
#include "plstr.h"
|
|
|
|
#include "prlog.h"
|
|
|
|
|
|
|
|
#include "xp_regexp.h"
|
|
|
|
#include "nsIComponentManager.h"
|
1999-06-23 10:16:28 +04:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-10-07 07:39:36 +04:00
|
|
|
#include "nsIModule.h"
|
|
|
|
#include "nsIGenericFactory.h"
|
1999-06-02 01:08:32 +04:00
|
|
|
|
|
|
|
#include "nsJAR.h"
|
|
|
|
#include "nsIJARFactory.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************
|
|
|
|
* Begin XPCOM-related functions
|
|
|
|
*********************************/
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------
|
|
|
|
* XPCOM-related Globals
|
|
|
|
*-----------------------------------------------------------------*/
|
|
|
|
static NS_DEFINE_CID(kComponentManagerCID, NS_COMPONENTMANAGER_CID);
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
|
|
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
|
|
|
|
|
1999-11-12 09:13:13 +03:00
|
|
|
static NS_DEFINE_IID(kIZipReaderIID, NS_IZIPREADER_IID);
|
|
|
|
static NS_DEFINE_IID(kZipReaderCID, NS_ZIPREADER_CID);
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Functions used to create new instances of a given object by the
|
|
|
|
// generic factory.
|
|
|
|
|
|
|
|
static NS_IMETHODIMP
|
|
|
|
CreateNewJAR(nsISupports* aOuter, REFNSIID aIID, void **aResult)
|
|
|
|
{
|
|
|
|
if (!aResult) {
|
|
|
|
return NS_ERROR_INVALID_POINTER;
|
|
|
|
}
|
|
|
|
if (aOuter) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
}
|
|
|
|
nsJAR* inst = new nsJAR();
|
|
|
|
|
|
|
|
if (inst == nsnull)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ADDREF(inst);
|
|
|
|
nsresult rv = inst->QueryInterface(aIID, aResult);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
}
|
|
|
|
NS_RELEASE(inst); /* get rid of extra refcnt */
|
|
|
|
return rv;
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
nsJARModule::nsJARModule()
|
|
|
|
: mInitialized(PR_FALSE)
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
1999-10-07 07:39:36 +04:00
|
|
|
NS_INIT_ISUPPORTS();
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
nsJARModule::~nsJARModule()
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
1999-10-07 07:39:36 +04:00
|
|
|
Shutdown();
|
|
|
|
}
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsJARModule, NS_GET_IID(nsIModule))
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
// Perform our one-time intialization for this module
|
|
|
|
nsresult
|
|
|
|
nsJARModule::Initialize()
|
|
|
|
{
|
|
|
|
if (mInitialized) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
mInitialized = PR_TRUE;
|
|
|
|
return NS_OK;
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
// Shutdown this module, releasing all of the module resources
|
|
|
|
void
|
|
|
|
nsJARModule::Shutdown()
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
1999-10-07 07:39:36 +04:00
|
|
|
// Release the factory object
|
|
|
|
mFactory = nsnull;
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
// Create a factory object for creating instances of aClass.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARModule::GetClassObject(nsIComponentManager *aCompMgr,
|
|
|
|
const nsCID& aClass,
|
|
|
|
const nsIID& aIID,
|
|
|
|
void** r_classObj)
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
1999-10-07 07:39:36 +04: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;
|
1999-11-12 09:13:13 +03:00
|
|
|
if (aClass.Equals(kZipReaderCID)) {
|
1999-10-07 07:39:36 +04:00
|
|
|
if (!mFactory) {
|
|
|
|
// Create and save away the factory object for creating
|
|
|
|
// new instances of JAR. This way if we are called
|
|
|
|
// again for the factory, we won't need to create a new
|
|
|
|
// one.
|
|
|
|
rv = NS_NewGenericFactory(getter_AddRefs(mFactory),
|
|
|
|
CreateNewJAR);
|
|
|
|
}
|
|
|
|
fact = mFactory;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rv = NS_ERROR_FACTORY_NOT_REGISTERED;
|
|
|
|
#ifdef DEBUG
|
|
|
|
char* cs = aClass.ToString();
|
|
|
|
printf("+++ nsJARModule: unable to create factory for %s\n", cs);
|
|
|
|
nsCRT::free(cs);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fact) {
|
|
|
|
rv = fact->QueryInterface(aIID, r_classObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
//----------------------------------------
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
struct Components {
|
|
|
|
const char* mDescription;
|
|
|
|
const nsID* mCID;
|
|
|
|
const char* mProgID;
|
|
|
|
};
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
// The list of components we register
|
|
|
|
static Components gComponents[] = {
|
1999-11-12 09:13:13 +03:00
|
|
|
{ "Zip Reader", &kZipReaderCID,
|
1999-10-07 07:39:36 +04:00
|
|
|
"component://netscape/libjar", },
|
|
|
|
};
|
|
|
|
#define NUM_COMPONENTS (sizeof(gComponents) / sizeof(gComponents[0]))
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARModule::RegisterSelf(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFileSpec* aPath,
|
|
|
|
const char* registryLocation,
|
|
|
|
const char* componentType)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("*** Registering jar components\n");
|
|
|
|
#endif
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
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)) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("nsJARModule: unable to register %s component => %x\n",
|
|
|
|
cp->mDescription, rv);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
}
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
return rv;
|
1999-06-02 01:08:32 +04:00
|
|
|
}
|
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARModule::UnregisterSelf(nsIComponentManager* aCompMgr,
|
|
|
|
nsIFileSpec* aPath,
|
|
|
|
const char* registryLocation)
|
1999-06-02 01:08:32 +04:00
|
|
|
{
|
1999-10-07 07:39:36 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("*** Unregistering jar components\n");
|
|
|
|
#endif
|
|
|
|
Components* cp = gComponents;
|
|
|
|
Components* end = cp + NUM_COMPONENTS;
|
|
|
|
while (cp < end) {
|
|
|
|
nsresult rv = aCompMgr->UnregisterComponentSpec(*cp->mCID, aPath);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("nsJARModule: unable to unregister %s component => %x\n",
|
|
|
|
cp->mDescription, rv);
|
1999-06-23 10:16:28 +04:00
|
|
|
#endif
|
1999-10-07 07:39:36 +04:00
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
}
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsJARModule::CanUnload(nsIComponentManager *aCompMgr, PRBool *okToUnload)
|
|
|
|
{
|
|
|
|
if (!okToUnload) {
|
|
|
|
return NS_ERROR_INVALID_POINTER;
|
|
|
|
}
|
|
|
|
*okToUnload = PR_FALSE;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
//----------------------------------------------------------------------
|
1999-06-23 10:16:28 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
static nsJARModule *gModule = NULL;
|
1999-06-02 01:08:32 +04:00
|
|
|
|
1999-10-07 07:39:36 +04:00
|
|
|
extern "C" NS_EXPORT nsresult NSGetModule(nsIComponentManager *servMgr,
|
|
|
|
nsIFileSpec* location,
|
|
|
|
nsIModule** return_cobj)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(return_cobj);
|
1999-11-02 00:43:56 +03:00
|
|
|
NS_ENSURE_FALSE(gModule, NS_ERROR_FAILURE);
|
1999-10-07 07:39:36 +04:00
|
|
|
|
|
|
|
// Create and initialize the module instance
|
|
|
|
nsJARModule *m = new nsJARModule();
|
|
|
|
if (!m) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increase refcnt and store away nsIModule interface to m in return_cobj
|
|
|
|
rv = m->QueryInterface(NS_GET_IID(nsIModule), (void**)return_cobj);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
delete m;
|
|
|
|
m = nsnull;
|
|
|
|
}
|
|
|
|
gModule = m; // WARNING: Weak Reference
|
|
|
|
return rv;
|
|
|
|
}
|