Rev 87916 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* Determine the user's language preferences.Copyright (C) 2004-2006 Free Software Foundation, Inc.This program is free software; you can redistribute it and/or modify itunder the terms of the GNU Library General Public License as publishedby the Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNULibrary General Public License for more details.You should have received a copy of the GNU Library General PublicLicense along with this program; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,USA. *//* Written by Bruno Haible <bruno@clisp.org>. */#ifdef HAVE_CONFIG_H# include <config.h>#endif#include <stdlib.h>#if HAVE_CFPREFERENCESCOPYAPPVALUE# include <string.h># include <CoreFoundation/CFPreferences.h># include <CoreFoundation/CFPropertyList.h># include <CoreFoundation/CFArray.h># include <CoreFoundation/CFString.h>extern void _nl_locale_name_canonicalize (char *name);#endif/* Determine the user's language preferences, as a colon separated list oflocale names in XPG syntaxlanguage[_territory][.codeset][@modifier]The result must not be freed; it is statically allocated.The LANGUAGE environment variable does not need to be considered; it isalready taken into account by the caller. */const char *_nl_language_preferences_default (void){#if HAVE_CFPREFERENCESCOPYAPPVALUE /* MacOS X 10.2 or newer */{/* Cache the preferences list, since CoreFoundation calls are expensive. */static const char *cached_languages;static int cache_initialized;if (!cache_initialized){CFTypeRef preferences =CFPreferencesCopyAppValue (CFSTR ("AppleLanguages"),kCFPreferencesCurrentApplication);if (preferences != NULL&& CFGetTypeID (preferences) == CFArrayGetTypeID ()){CFArrayRef prefArray = (CFArrayRef)preferences;long n = CFArrayGetCount (prefArray);char buf[256];size_t size = 0;int i;for (i = 0; i < n; i++){CFTypeRef element = CFArrayGetValueAtIndex (prefArray, i);if (element != NULL&& CFGetTypeID (element) == CFStringGetTypeID ()&& CFStringGetCString ((CFStringRef)element,buf, sizeof (buf),kCFStringEncodingASCII)){_nl_locale_name_canonicalize (buf);size += strlen (buf) + 1;/* Most GNU programs use msgids in English and don't shipan en.mo message catalog. Therefore when we see "en"in the preferences list, arrange for gettext() toreturn the msgid, and ignore all further elements ofthe preferences list. */if (strcmp (buf, "en") == 0)break;}elsebreak;}if (size > 0){char *languages = (char *) malloc (size);if (languages != NULL){char *p = languages;for (i = 0; i < n; i++){CFTypeRef element =CFArrayGetValueAtIndex (prefArray, i);if (element != NULL&& CFGetTypeID (element) == CFStringGetTypeID ()&& CFStringGetCString ((CFStringRef)element,buf, sizeof (buf),kCFStringEncodingASCII)){_nl_locale_name_canonicalize (buf);strcpy (p, buf);p += strlen (buf);*p++ = ':';if (strcmp (buf, "en") == 0)break;}elsebreak;}*--p = '\0';cached_languages = languages;}}}cache_initialized = 1;}if (cached_languages != NULL)return cached_languages;}#endifreturn NULL;}