mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
aef3149a23
--HG-- rename : intl/locale/src/Makefile.in => intl/locale/Makefile.in rename : intl/locale/src/PluralForm.jsm => intl/locale/PluralForm.jsm rename : intl/locale/src/langGroups.properties => intl/locale/langGroups.properties rename : intl/locale/src/language.properties => intl/locale/language.properties rename : intl/locale/src/mac/moz.build => intl/locale/mac/moz.build rename : intl/locale/src/mac/nsCollationMacUC.cpp => intl/locale/mac/nsCollationMacUC.cpp rename : intl/locale/src/mac/nsCollationMacUC.h => intl/locale/mac/nsCollationMacUC.h rename : intl/locale/src/mac/nsDateTimeFormatMac.cpp => intl/locale/mac/nsDateTimeFormatMac.cpp rename : intl/locale/src/mac/nsDateTimeFormatMac.h => intl/locale/mac/nsDateTimeFormatMac.h rename : intl/locale/src/mac/nsMacCharset.cpp => intl/locale/mac/nsMacCharset.cpp rename : intl/locale/src/nsCollation.cpp => intl/locale/nsCollation.cpp rename : intl/locale/src/nsCollation.h => intl/locale/nsCollation.h rename : intl/locale/src/nsLanguageAtomService.cpp => intl/locale/nsLanguageAtomService.cpp rename : intl/locale/src/nsLanguageAtomService.h => intl/locale/nsLanguageAtomService.h rename : intl/locale/src/nsLocale.cpp => intl/locale/nsLocale.cpp rename : intl/locale/src/nsLocale.h => intl/locale/nsLocale.h rename : intl/locale/src/nsLocaleConstructors.h => intl/locale/nsLocaleConstructors.h rename : intl/locale/src/nsLocaleService.cpp => intl/locale/nsLocaleService.cpp rename : intl/locale/src/nsPlatformCharset.h => intl/locale/nsPlatformCharset.h rename : intl/locale/src/nsScriptableDateFormat.cpp => intl/locale/nsScriptableDateFormat.cpp rename : intl/locale/src/nsUConvPropertySearch.cpp => intl/locale/nsUConvPropertySearch.cpp rename : intl/locale/src/nsUConvPropertySearch.h => intl/locale/nsUConvPropertySearch.h rename : intl/locale/src/props2arrays.py => intl/locale/props2arrays.py rename : intl/locale/src/unix/Makefile.in => intl/locale/unix/Makefile.in rename : intl/locale/src/unix/moz.build => intl/locale/unix/moz.build rename : intl/locale/src/unix/nsAndroidCharset.cpp => intl/locale/unix/nsAndroidCharset.cpp rename : intl/locale/src/unix/nsCollationUnix.cpp => intl/locale/unix/nsCollationUnix.cpp rename : intl/locale/src/unix/nsCollationUnix.h => intl/locale/unix/nsCollationUnix.h rename : intl/locale/src/unix/nsDateTimeFormatUnix.cpp => intl/locale/unix/nsDateTimeFormatUnix.cpp rename : intl/locale/src/unix/nsDateTimeFormatUnix.h => intl/locale/unix/nsDateTimeFormatUnix.h rename : intl/locale/src/unix/nsPosixLocale.cpp => intl/locale/unix/nsPosixLocale.cpp rename : intl/locale/src/unix/nsUNIXCharset.cpp => intl/locale/unix/nsUNIXCharset.cpp rename : intl/locale/src/unix/unixcharset.properties => intl/locale/unix/unixcharset.properties rename : intl/locale/src/windows/Makefile.in => intl/locale/windows/Makefile.in rename : intl/locale/src/windows/moz.build => intl/locale/windows/moz.build rename : intl/locale/src/windows/nsCollationWin.cpp => intl/locale/windows/nsCollationWin.cpp rename : intl/locale/src/windows/nsCollationWin.h => intl/locale/windows/nsCollationWin.h rename : intl/locale/src/windows/nsDateTimeFormatWin.cpp => intl/locale/windows/nsDateTimeFormatWin.cpp rename : intl/locale/src/windows/nsDateTimeFormatWin.h => intl/locale/windows/nsDateTimeFormatWin.h rename : intl/locale/src/windows/nsWin32Locale.cpp => intl/locale/windows/nsWin32Locale.cpp rename : intl/locale/src/windows/nsWinCharset.cpp => intl/locale/windows/nsWinCharset.cpp rename : intl/locale/src/windows/wincharset.properties => intl/locale/windows/wincharset.properties
147 lines
4.0 KiB
C++
147 lines
4.0 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
#include "nsCollationWin.h"
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIComponentManager.h"
|
|
#include "nsILocaleService.h"
|
|
#include "nsIPlatformCharset.h"
|
|
#include "nsWin32Locale.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "prmem.h"
|
|
#include "plstr.h"
|
|
#include <windows.h>
|
|
|
|
#undef CompareString
|
|
|
|
NS_IMPL_ISUPPORTS(nsCollationWin, nsICollation)
|
|
|
|
|
|
nsCollationWin::nsCollationWin() : mCollation(nullptr)
|
|
{
|
|
}
|
|
|
|
nsCollationWin::~nsCollationWin()
|
|
{
|
|
if (mCollation)
|
|
delete mCollation;
|
|
}
|
|
|
|
nsresult nsCollationWin::Initialize(nsILocale* locale)
|
|
{
|
|
NS_ASSERTION(!mCollation, "Should only be initialized once.");
|
|
|
|
nsresult res;
|
|
|
|
mCollation = new nsCollation;
|
|
|
|
// default LCID (en-US)
|
|
mLCID = 1033;
|
|
|
|
nsAutoString localeStr;
|
|
|
|
// get locale string, use app default if no locale specified
|
|
if (!locale) {
|
|
nsCOMPtr<nsILocaleService> localeService =
|
|
do_GetService(NS_LOCALESERVICE_CONTRACTID);
|
|
if (localeService) {
|
|
nsCOMPtr<nsILocale> appLocale;
|
|
res = localeService->GetApplicationLocale(getter_AddRefs(appLocale));
|
|
if (NS_SUCCEEDED(res)) {
|
|
res = appLocale->GetCategory(NS_LITERAL_STRING("NSILOCALE_COLLATE"),
|
|
localeStr);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
res = locale->GetCategory(NS_LITERAL_STRING("NSILOCALE_COLLATE"),
|
|
localeStr);
|
|
}
|
|
|
|
// Get LCID and charset name from locale, if available
|
|
LCID lcid;
|
|
res = nsWin32Locale::GetPlatformLocale(localeStr, &lcid);
|
|
if (NS_SUCCEEDED(res)) {
|
|
mLCID = lcid;
|
|
}
|
|
|
|
nsCOMPtr <nsIPlatformCharset> platformCharset =
|
|
do_GetService(NS_PLATFORMCHARSET_CONTRACTID);
|
|
if (platformCharset) {
|
|
nsAutoCString mappedCharset;
|
|
res = platformCharset->GetDefaultCharsetForLocale(localeStr, mappedCharset);
|
|
if (NS_SUCCEEDED(res)) {
|
|
mCollation->SetCharset(mappedCharset.get());
|
|
}
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP nsCollationWin::CompareString(int32_t strength,
|
|
const nsAString & string1,
|
|
const nsAString & string2,
|
|
int32_t *result)
|
|
{
|
|
int retval;
|
|
nsresult res;
|
|
DWORD dwMapFlags = 0;
|
|
|
|
if (strength == kCollationCaseInSensitive)
|
|
dwMapFlags |= NORM_IGNORECASE;
|
|
|
|
retval = ::CompareStringW(mLCID,
|
|
dwMapFlags,
|
|
(LPCWSTR) PromiseFlatString(string1).get(),
|
|
-1,
|
|
(LPCWSTR) PromiseFlatString(string2).get(),
|
|
-1);
|
|
if (retval) {
|
|
res = NS_OK;
|
|
*result = retval - 2;
|
|
} else {
|
|
res = NS_ERROR_FAILURE;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
nsresult nsCollationWin::AllocateRawSortKey(int32_t strength,
|
|
const nsAString& stringIn, uint8_t** key, uint32_t* outLen)
|
|
{
|
|
int byteLen;
|
|
void *buffer;
|
|
nsresult res = NS_OK;
|
|
DWORD dwMapFlags = LCMAP_SORTKEY;
|
|
|
|
if (strength == kCollationCaseInSensitive)
|
|
dwMapFlags |= NORM_IGNORECASE;
|
|
|
|
byteLen = LCMapStringW(mLCID, dwMapFlags,
|
|
(LPCWSTR) PromiseFlatString(stringIn).get(),
|
|
-1, nullptr, 0);
|
|
buffer = PR_Malloc(byteLen);
|
|
if (!buffer) {
|
|
res = NS_ERROR_OUT_OF_MEMORY;
|
|
} else {
|
|
*key = (uint8_t *)buffer;
|
|
*outLen = LCMapStringW(mLCID, dwMapFlags,
|
|
(LPCWSTR) PromiseFlatString(stringIn).get(),
|
|
-1, (LPWSTR) buffer, byteLen);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
nsresult nsCollationWin::CompareRawSortKey(const uint8_t* key1, uint32_t len1,
|
|
const uint8_t* key2, uint32_t len2,
|
|
int32_t* result)
|
|
{
|
|
*result = PL_strcmp((const char *)key1, (const char *)key2);
|
|
return NS_OK;
|
|
}
|