зеркало из https://github.com/mozilla/gecko-dev.git
119 строки
3.9 KiB
C++
119 строки
3.9 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 "OSPreferences.h"
|
|
#include <Carbon/Carbon.h>
|
|
|
|
using namespace mozilla::intl;
|
|
|
|
bool
|
|
OSPreferences::ReadSystemLocales(nsTArray<nsCString>& aLocaleList)
|
|
{
|
|
MOZ_ASSERT(aLocaleList.IsEmpty());
|
|
|
|
// Get string representation of user's current locale
|
|
CFLocaleRef userLocaleRef = ::CFLocaleCopyCurrent();
|
|
CFStringRef userLocaleStr = ::CFLocaleGetIdentifier(userLocaleRef);
|
|
|
|
AutoTArray<UniChar, 32> buffer;
|
|
int size = ::CFStringGetLength(userLocaleStr);
|
|
buffer.SetLength(size);
|
|
|
|
CFRange range = ::CFRangeMake(0, size);
|
|
::CFStringGetCharacters(userLocaleStr, range, buffer.Elements());
|
|
|
|
// Convert the locale string to the format that Mozilla expects
|
|
NS_LossyConvertUTF16toASCII locale(
|
|
reinterpret_cast<const char16_t*>(buffer.Elements()), buffer.Length());
|
|
|
|
CFRelease(userLocaleRef);
|
|
|
|
if (CanonicalizeLanguageTag(locale)) {
|
|
aLocaleList.AppendElement(locale);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static CFDateFormatterStyle
|
|
ToCFDateFormatterStyle(OSPreferences::DateTimeFormatStyle aFormatStyle)
|
|
{
|
|
switch (aFormatStyle) {
|
|
case OSPreferences::DateTimeFormatStyle::None:
|
|
return kCFDateFormatterNoStyle;
|
|
case OSPreferences::DateTimeFormatStyle::Short:
|
|
return kCFDateFormatterShortStyle;
|
|
case OSPreferences::DateTimeFormatStyle::Medium:
|
|
return kCFDateFormatterMediumStyle;
|
|
case OSPreferences::DateTimeFormatStyle::Long:
|
|
return kCFDateFormatterLongStyle;
|
|
case OSPreferences::DateTimeFormatStyle::Full:
|
|
return kCFDateFormatterFullStyle;
|
|
case OSPreferences::DateTimeFormatStyle::Invalid:
|
|
MOZ_ASSERT_UNREACHABLE("invalid time format");
|
|
return kCFDateFormatterNoStyle;
|
|
}
|
|
}
|
|
|
|
// Given an 8-bit Gecko string, create a corresponding CFLocale;
|
|
// if aLocale is empty, returns a copy of the system's current locale.
|
|
// May return null on failure.
|
|
// Follows Core Foundation's Create rule, so the caller is responsible to
|
|
// release the returned reference.
|
|
static CFLocaleRef
|
|
CreateCFLocaleFor(const nsACString& aLocale)
|
|
{
|
|
if (aLocale.IsEmpty()) {
|
|
return CFLocaleCopyCurrent();
|
|
}
|
|
CFStringRef identifier =
|
|
CFStringCreateWithBytesNoCopy(kCFAllocatorDefault,
|
|
(const uint8_t*)aLocale.BeginReading(),
|
|
aLocale.Length(), kCFStringEncodingASCII,
|
|
false, kCFAllocatorNull);
|
|
if (!identifier) {
|
|
return nullptr;
|
|
}
|
|
CFLocaleRef locale = CFLocaleCreate(kCFAllocatorDefault, identifier);
|
|
CFRelease(identifier);
|
|
return locale;
|
|
}
|
|
|
|
/**
|
|
* Cocoa API maps nicely to our four styles of date/time.
|
|
*
|
|
* The only caveat is that Cocoa takes regional preferences modifications
|
|
* into account only when we pass an empty string as a locale.
|
|
*
|
|
* In all other cases it will return the default pattern for a given locale.
|
|
*/
|
|
bool
|
|
OSPreferences::ReadDateTimePattern(DateTimeFormatStyle aDateStyle,
|
|
DateTimeFormatStyle aTimeStyle,
|
|
const nsACString& aLocale, nsAString& aRetVal)
|
|
{
|
|
CFLocaleRef locale = CreateCFLocaleFor(aLocale);
|
|
if (!locale) {
|
|
return false;
|
|
}
|
|
|
|
CFDateFormatterRef formatter =
|
|
CFDateFormatterCreate(kCFAllocatorDefault, locale,
|
|
ToCFDateFormatterStyle(aDateStyle),
|
|
ToCFDateFormatterStyle(aTimeStyle));
|
|
CFStringRef format = CFDateFormatterGetFormat(formatter);
|
|
CFRelease(locale);
|
|
|
|
CFRange range = CFRangeMake(0, CFStringGetLength(format));
|
|
aRetVal.SetLength(range.length);
|
|
CFStringGetCharacters(format, range,
|
|
reinterpret_cast<UniChar*>(aRetVal.BeginWriting()));
|
|
CFRelease(formatter);
|
|
|
|
return true;
|
|
}
|