mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
448 lines
12 KiB
C++
448 lines
12 KiB
C++
/* -*- 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 "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/
|
|
*
|
|
* 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 Mozilla Communicator client code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
*/
|
|
|
|
#define NS_IMPL_IDS
|
|
|
|
#include "pratom.h"
|
|
#include "nsIComponentManager.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIFactory.h"
|
|
#include "nsIRegistry.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsICharsetConverterInfo.h"
|
|
#include "nsUCvTW2CID.h"
|
|
#include "nsUCvTW2Dll.h"
|
|
#include "nsEUCTWToUnicode.h"
|
|
#include "nsUnicodeToEUCTW.h"
|
|
#include "nsUnicodeToCNS11643p1.h"
|
|
#include "nsUnicodeToCNS11643p2.h"
|
|
#include "nsUnicodeToCNS11643p3.h"
|
|
#include "nsUnicodeToCNS11643p4.h"
|
|
#include "nsUnicodeToCNS11643p5.h"
|
|
#include "nsUnicodeToCNS11643p6.h"
|
|
#include "nsUnicodeToCNS11643p7.h"
|
|
|
|
// just for NS_IMPL_IDS; this is a good, central place to implement GUIDs
|
|
#include "nsIUnicodeDecoder.h"
|
|
#include "nsIUnicodeDecodeUtil.h"
|
|
#include "nsIUnicodeDecodeHelper.h"
|
|
#include "nsIUnicodeEncoder.h"
|
|
#include "nsIUnicodeEncodeHelper.h"
|
|
#include "nsICharsetConverterManager.h"
|
|
#define DECODER_NAME_BASE "Unicode Decoder-"
|
|
#define ENCODER_NAME_BASE "Unicode Encoder-"
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
// Global functions and data [declaration]
|
|
|
|
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|
static NS_DEFINE_IID(kIFactoryIID, NS_IFACTORY_IID);
|
|
static NS_DEFINE_CID(kComponentManagerCID, NS_COMPONENTMANAGER_CID);
|
|
|
|
PRInt32 g_InstanceCount = 0;
|
|
PRInt32 g_LockCount = 0;
|
|
|
|
|
|
PRUint16 g_ASCIIMappingTable[] = {
|
|
0x0001, 0x0004, 0x0005, 0x0008, 0x0000, 0x0000, 0x007F, 0x0000
|
|
};
|
|
PRUint16 g_ufCNS1MappingTable[] = {
|
|
#include "cns_1.uf"
|
|
};
|
|
PRUint16 g_ufCNS2MappingTable[] = {
|
|
#include "cns_2.uf"
|
|
};
|
|
PRUint16 g_ufCNS3MappingTable[] = {
|
|
#include "cns3.uf"
|
|
};
|
|
PRUint16 g_ufCNS4MappingTable[] = {
|
|
#include "cns4.uf"
|
|
};
|
|
PRUint16 g_ufCNS5MappingTable[] = {
|
|
#include "cns5.uf"
|
|
};
|
|
PRUint16 g_ufCNS6MappingTable[] = {
|
|
#include "cns6.uf"
|
|
};
|
|
PRUint16 g_ufCNS7MappingTable[] = {
|
|
#include "cns7.uf"
|
|
};
|
|
PRUint16 g_utCNS1MappingTable[] = {
|
|
#include "cns_1.ut"
|
|
};
|
|
PRUint16 g_utCNS2MappingTable[] = {
|
|
#include "cns_2.ut"
|
|
};
|
|
PRUint16 g_utCNS3MappingTable[] = {
|
|
#include "cns3.ut"
|
|
};
|
|
PRUint16 g_utCNS4MappingTable[] = {
|
|
#include "cns4.ut"
|
|
};
|
|
PRUint16 g_utCNS5MappingTable[] = {
|
|
#include "cns5.ut"
|
|
};
|
|
PRUint16 g_utCNS6MappingTable[] = {
|
|
#include "cns6.ut"
|
|
};
|
|
PRUint16 g_utCNS7MappingTable[] = {
|
|
#include "cns7.ut"
|
|
};
|
|
|
|
typedef nsresult (* fpCreateInstance) (nsISupports **);
|
|
|
|
struct FactoryData
|
|
{
|
|
const nsCID * mCID;
|
|
fpCreateInstance CreateInstance;
|
|
char * mCharsetSrc;
|
|
char * mCharsetDest;
|
|
};
|
|
|
|
static FactoryData g_FactoryData[] =
|
|
{
|
|
{
|
|
&kEUCTWToUnicodeCID,
|
|
nsEUCTWToUnicode::CreateInstance,
|
|
"X-EUC-TW",
|
|
"Unicode"
|
|
},
|
|
{
|
|
&kUnicodeToEUCTWCID,
|
|
nsUnicodeToEUCTW::CreateInstance,
|
|
"Unicode",
|
|
"X-EUC-TW"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p1CID,
|
|
nsUnicodeToCNS11643p1::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-1"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p2CID,
|
|
nsUnicodeToCNS11643p2::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-2"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p3CID,
|
|
nsUnicodeToCNS11643p3::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-3"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p4CID,
|
|
nsUnicodeToCNS11643p4::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-4"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p5CID,
|
|
nsUnicodeToCNS11643p5::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-5"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p6CID,
|
|
nsUnicodeToCNS11643p6::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-6"
|
|
},
|
|
{
|
|
&kUnicodeToCNS11643p7CID,
|
|
nsUnicodeToCNS11643p7::CreateInstance,
|
|
"Unicode",
|
|
"x-cns-11643-7"
|
|
}
|
|
};
|
|
|
|
#define ARRAY_SIZE(_array) \
|
|
(sizeof(_array) / sizeof(_array[0]))
|
|
|
|
//----------------------------------------------------------------------
|
|
// Class nsConverterFactory [declaration]
|
|
|
|
/**
|
|
* General factory class for converter objects.
|
|
*
|
|
* @created 24/Feb/1998
|
|
* @author Catalin Rotaru [CATA]
|
|
*/
|
|
class nsConverterFactory : public nsIFactory,
|
|
public nsICharsetConverterInfo
|
|
{
|
|
NS_DECL_ISUPPORTS
|
|
|
|
private:
|
|
|
|
FactoryData * mData;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Class constructor.
|
|
*/
|
|
nsConverterFactory(FactoryData * aData);
|
|
|
|
/**
|
|
* Class destructor.
|
|
*/
|
|
virtual ~nsConverterFactory();
|
|
|
|
//--------------------------------------------------------------------
|
|
// Interface nsIFactory [declaration]
|
|
|
|
NS_IMETHOD CreateInstance(nsISupports *aDelegate, const nsIID &aIID,
|
|
void **aResult);
|
|
|
|
NS_IMETHOD LockFactory(PRBool aLock);
|
|
|
|
//--------------------------------------------------------------------
|
|
// Interface nsICharsetConverterInfo [declaration]
|
|
|
|
NS_IMETHOD GetCharsetSrc(char ** aCharset);
|
|
NS_IMETHOD GetCharsetDest(char ** aCharset);
|
|
};
|
|
|
|
//----------------------------------------------------------------------
|
|
// Global functions and data [implementation]
|
|
|
|
extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr)
|
|
{
|
|
return PRBool(g_InstanceCount == 0 && g_LockCount == 0);
|
|
}
|
|
|
|
extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
|
|
const nsCID &aClass,
|
|
const char *aClassName,
|
|
const char *aProgID,
|
|
nsIFactory **aFactory)
|
|
{
|
|
if (aFactory == NULL) return NS_ERROR_NULL_POINTER;
|
|
|
|
nsresult res;
|
|
nsConverterFactory * fac;
|
|
FactoryData * data;
|
|
|
|
for (PRUint32 i=0; i<ARRAY_SIZE(g_FactoryData); i++) {
|
|
data = &(g_FactoryData[i]);
|
|
if (aClass.Equals(*(data->mCID))) {
|
|
fac = new nsConverterFactory(data);
|
|
res = fac->QueryInterface(kIFactoryIID, (void **) aFactory);
|
|
if (NS_FAILED(res)) {
|
|
*aFactory = NULL;
|
|
delete fac;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
}
|
|
|
|
return NS_NOINTERFACE;
|
|
}
|
|
|
|
extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports * aServMgr,
|
|
const char * path)
|
|
{
|
|
nsresult res;
|
|
PRUint32 i;
|
|
nsIComponentManager * compMgr = NULL;
|
|
nsIRegistry * registry = NULL;
|
|
nsRegistryKey key;
|
|
char buff[1024];
|
|
|
|
// get the service manager
|
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &res));
|
|
|
|
// get the component manager
|
|
res = servMgr->GetService(kComponentManagerCID,
|
|
nsIComponentManager::GetIID(),
|
|
(nsISupports**)&compMgr);
|
|
if (NS_FAILED(res)) goto done;
|
|
|
|
// get the registry
|
|
res = servMgr->GetService(NS_REGISTRY_PROGID,
|
|
nsIRegistry::GetIID(),
|
|
(nsISupports**)®istry);
|
|
if (NS_FAILED(res)) goto done;
|
|
|
|
// open the registry
|
|
res = registry->OpenWellKnownRegistry(
|
|
nsIRegistry::ApplicationComponentRegistry);
|
|
if (NS_FAILED(res)) goto done;
|
|
|
|
char name[128];
|
|
char progid[128];
|
|
for (i=0; i<ARRAY_SIZE(g_FactoryData); i++) {
|
|
if(0==PL_strcmp(g_FactoryData[i].mCharsetSrc,"Unicode"))
|
|
{
|
|
PL_strcpy(name, DECODER_NAME_BASE);
|
|
PL_strcat(name, g_FactoryData[i].mCharsetDest);
|
|
PL_strcpy(progid, NS_UNICODEDECODER_PROGID_BASE);
|
|
PL_strcat(progid, g_FactoryData[i].mCharsetDest);
|
|
} else {
|
|
PL_strcpy(name, ENCODER_NAME_BASE);
|
|
PL_strcat(name, g_FactoryData[i].mCharsetSrc);
|
|
PL_strcpy(progid, NS_UNICODEENCODER_PROGID_BASE);
|
|
PL_strcat(progid, g_FactoryData[i].mCharsetSrc);
|
|
}
|
|
// register component
|
|
res = compMgr->RegisterComponent(*(g_FactoryData[i].mCID), name, progid,
|
|
path, PR_TRUE, PR_TRUE);
|
|
if(NS_FAILED(res) && (NS_ERROR_FACTORY_EXISTS != res)) goto done;
|
|
|
|
// register component info
|
|
// XXX take these KONSTANTS out of here
|
|
#ifdef DEBUG
|
|
char *cidString = g_FactoryData[i].mCID->ToString();
|
|
sprintf(buff, "%s/%s", "software/netscape/intl/uconv", cidString);
|
|
nsCRT::free(cidString);
|
|
#endif
|
|
res = registry -> AddSubtree(nsIRegistry::Common, buff, &key);
|
|
if (NS_FAILED(res)) goto done;
|
|
res = registry -> SetString(key, "source", g_FactoryData[i].mCharsetSrc);
|
|
if (NS_FAILED(res)) goto done;
|
|
res = registry -> SetString(key, "destination", g_FactoryData[i].mCharsetDest);
|
|
if (NS_FAILED(res)) goto done;
|
|
}
|
|
|
|
done:
|
|
if (compMgr != NULL)
|
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
|
if (registry != NULL) {
|
|
registry -> Close();
|
|
(void)servMgr->ReleaseService(NS_REGISTRY_PROGID, registry);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
extern "C" NS_EXPORT nsresult NSUnregisterSelf(nsISupports* aServMgr, const char * path)
|
|
{
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIServiceManager> servMgr(do_QueryInterface(aServMgr, &rv));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsIComponentManager* compMgr;
|
|
rv = servMgr->GetService(kComponentManagerCID,
|
|
nsIComponentManager::GetIID(),
|
|
(nsISupports**)&compMgr);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
for (PRUint32 i=0; i<ARRAY_SIZE(g_FactoryData); i++) {
|
|
rv = compMgr->UnregisterComponent(*(g_FactoryData[i].mCID), path);
|
|
if(NS_FAILED(rv)) goto done;
|
|
}
|
|
|
|
done:
|
|
(void)servMgr->ReleaseService(kComponentManagerCID, compMgr);
|
|
return rv;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Class nsConverterFactory [implementation]
|
|
|
|
nsConverterFactory::nsConverterFactory(FactoryData * aData)
|
|
{
|
|
mData = aData;
|
|
|
|
NS_INIT_REFCNT();
|
|
PR_AtomicIncrement(&g_InstanceCount);
|
|
}
|
|
|
|
nsConverterFactory::~nsConverterFactory()
|
|
{
|
|
PR_AtomicDecrement(&g_InstanceCount);
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Interface nsISupports [implementation]
|
|
|
|
NS_IMPL_ADDREF(nsConverterFactory);
|
|
NS_IMPL_RELEASE(nsConverterFactory);
|
|
|
|
nsresult nsConverterFactory::QueryInterface(REFNSIID aIID,
|
|
void** aInstancePtr)
|
|
{
|
|
if (NULL == aInstancePtr) {
|
|
return NS_ERROR_NULL_POINTER;
|
|
}
|
|
|
|
*aInstancePtr = NULL;
|
|
|
|
if (aIID.Equals(kICharsetConverterInfoIID)) {
|
|
*aInstancePtr = (void*) ((nsICharsetConverterInfo*)this);
|
|
} else if (aIID.Equals(kIFactoryIID)) {
|
|
*aInstancePtr = (void*) ((nsIFactory*)this);
|
|
} else if (aIID.Equals(kISupportsIID)) {
|
|
*aInstancePtr = (void*) ((nsISupports*)(nsIFactory*)this);
|
|
} else {
|
|
return NS_NOINTERFACE;
|
|
}
|
|
|
|
NS_ADDREF_THIS();
|
|
return NS_OK;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Interface nsIFactory [implementation]
|
|
|
|
NS_IMETHODIMP nsConverterFactory::CreateInstance(nsISupports *aDelegate,
|
|
const nsIID &aIID,
|
|
void **aResult)
|
|
{
|
|
if (aResult == NULL) return NS_ERROR_NULL_POINTER;
|
|
if (aDelegate != NULL) return NS_ERROR_NO_AGGREGATION;
|
|
|
|
nsISupports * t;
|
|
mData->CreateInstance(&t);
|
|
if (t == NULL) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
nsresult res = t->QueryInterface(aIID, aResult);
|
|
if (NS_FAILED(res)) delete t;
|
|
|
|
return res;
|
|
}
|
|
|
|
NS_IMETHODIMP nsConverterFactory::LockFactory(PRBool aLock)
|
|
{
|
|
if (aLock) PR_AtomicIncrement(&g_LockCount);
|
|
else PR_AtomicDecrement(&g_LockCount);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Interface nsICharsetConverterInfo [implementation]
|
|
|
|
NS_IMETHODIMP nsConverterFactory::GetCharsetSrc(char ** aCharset)
|
|
{
|
|
(*aCharset) = mData->mCharsetSrc;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsConverterFactory::GetCharsetDest(char ** aCharset)
|
|
{
|
|
(*aCharset) = mData->mCharsetDest;
|
|
return NS_OK;
|
|
}
|