gecko-dev/intl/locale/src/nsCollation.cpp

153 lines
4.1 KiB
C++
Raw Normal View History

1999-01-21 01:28:27 +00: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.
*/
#include "nsRepository.h"
#include "nsCollation.h"
#include "nsCollationCID.h"
#include "nsUnicharUtilCIID.h"
////////////////////////////////////////////////////////////////////////////////
1999-01-21 01:28:27 +00:00
NS_DEFINE_IID(kICollationFactoryIID, NS_ICOLLATIONFACTORY_IID);
NS_DEFINE_IID(kICollationIID, NS_ICOLLATION_IID);
NS_DEFINE_CID(kCollationCID, NS_COLLATION_CID);
NS_IMPL_ISUPPORTS(nsCollationFactory, kICollationFactoryIID);
1999-02-03 01:35:11 +00:00
nsresult nsCollationFactory::CreateCollation(nsILocale* locale, nsICollation** instancePtr)
1999-01-21 01:28:27 +00:00
{
// Create a collation interface instance.
//
nsICollation *inst;
nsresult res;
res = nsRepository::CreateInstance(kCollationCID, NULL, kICollationIID, (void**) &inst);
if (NS_FAILED(res)) {
return res;
}
inst->Initialize(locale);
*instancePtr = inst;
return res;
}
////////////////////////////////////////////////////////////////////////////////
1999-01-21 01:28:27 +00:00
NS_DEFINE_CID(kUnicharUtilCID, NS_UNICHARUTIL_CID);
NS_DEFINE_IID(kCaseConversionIID, NS_ICASECONVERSION_IID);
nsCollation::nsCollation()
{
mCaseConversion = NULL;
nsresult res = nsRepository::CreateInstance(kUnicharUtilCID, NULL, kCaseConversionIID, (void**) &mCaseConversion);
NS_ASSERTION(NS_SUCCEEDED(res), "CreateInstance failed for kCaseConversionIID");
1999-01-21 01:28:27 +00:00
}
nsCollation::~nsCollation()
{
if (mCaseConversion != NULL)
mCaseConversion->Release();
}
nsresult nsCollation::CompareString(nsICollation *inst, const nsCollationStrength strength,
const nsString& string1, const nsString& string2, PRInt32* result)
{
PRUint32 aLength1, aLength2;
PRUint8 *aKey1, *aKey2;
nsresult res;
// Create a key for string1
res = inst->GetSortKeyLen(strength, string1, &aLength1);
if (NS_FAILED(res))
return res;
aKey1 = new PRUint8[aLength1];
if (NULL == aKey1)
return NS_ERROR_OUT_OF_MEMORY;
res = inst->CreateSortKey(strength, string1, aKey1, &aLength1);
if (NS_FAILED(res)) {
delete [] aKey1;
return res;
}
// Create a key for string2
res = inst->GetSortKeyLen(strength, string2, &aLength2);
if (NS_FAILED(res)) {
delete [] aKey1;
return res;
}
aKey2 = new PRUint8[aLength2];
if (NULL == aKey2) {
delete [] aKey1;
return NS_ERROR_OUT_OF_MEMORY;
}
res = inst->CreateSortKey(strength, string2, aKey2, &aLength2);
if (NS_FAILED(res)) {
delete [] aKey1;
delete [] aKey2;
return res;
}
// Compare keys
*result = CompareSortKey(aKey1, aLength1, aKey2, aLength2);
// delete keys
delete [] aKey1;
delete [] aKey2;
return res;
}
PRInt32 nsCollation::CompareSortKey(const PRUint8* key1, const PRUint32 len1,
const PRUint8* key2, const PRUint32 len2)
{
PRUint32 len = (len1 < len2) ? len1 : len2;
PRInt32 result;
result = (PRUint32) memcmp(key1, key2, len);
1999-01-21 01:28:27 +00:00
if (result == 0 && len1 != len2) {
result = (len1 < len2) ? -1 : 1;
}
return result;
}
nsresult nsCollation::NormalizeString(nsAutoString& stringInOut)
1999-01-21 01:28:27 +00:00
{
if (mCaseConversion == NULL) {
stringInOut.ToLowerCase();
}
else {
PRUnichar *aBuffer;
PRInt32 aLength = stringInOut.Length();
aBuffer = new PRUnichar[aLength];
if (aBuffer == NULL) {
return NS_ERROR_OUT_OF_MEMORY;
}
mCaseConversion->ToLower(stringInOut.GetUnicode(), aBuffer, aLength);
stringInOut.SetString(aBuffer, aLength);
delete [] aBuffer;
}
1999-01-21 01:28:27 +00:00
return NS_OK;
}