[Libreoffice-commits] core.git: sal/osl
Stephan Bergmann
sbergman at redhat.com
Wed Mar 22 07:55:19 UTC 2017
sal/osl/unx/nlsupport.cxx | 26 ++++++--------------------
1 file changed, 6 insertions(+), 20 deletions(-)
New commits:
commit 439a72a67456960055c402580988ce42b51c3d88
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Mar 22 08:50:07 2017 +0100
Use nl_langinfo_l instead of setlocale+nl_langinfo
...as the former is less of an MT nightmare (nl_langinfo_l can only conflict
with calls to nl_langinfo in other threads, not with calls to nl_langinfo_l in
other threads, so since this was the last remaining use of nl_langinfo in LO
itself after a7cdba3a0e48360e2ed549e9d8996fe41460df70 "Use nl_langinfo_l with an
explicitly created locale" things should be safer now; also, setlocale was an
MT problem, of course, inadequately atempted to be addressed with that
aLocaleMutex).
Hopefully, all relevant platforms that support nl_langinfo also support
nl_langinfo_l (where both are POSIX).
Change-Id: I28a18bc4ffa930e3f2e949634dae161377e2911c
diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx
index 79797b25929e..06c41f56d816 100644
--- a/sal/osl/unx/nlsupport.cxx
+++ b/sal/osl/unx/nlsupport.cxx
@@ -231,10 +231,7 @@ static rtl_Locale * parse_locale( const char * locale )
* nl_langinfo() is supported only on Linux, Solaris,
* >= NetBSD 1.6 and >= FreeBSD 4.4
*
- * This routine is SLOW because of the setlocale call, so
- * grab the result and cache it.
- *
- * XXX this code has the usual mt problems aligned with setlocale() XXX
+ * XXX this code has the usual mt problems aligned with nl_langinfo_l() XXX
*/
#ifdef LINUX
@@ -573,7 +570,6 @@ rtl_TextEncoding osl_getTextEncodingFromLocale( rtl_Locale * pLocale )
char locale_buf[64] = "";
char codeset_buf[64];
- char *ctype_locale = nullptr;
char *codeset = nullptr;
/* default to process locale if pLocale == NULL */
@@ -583,16 +579,10 @@ rtl_TextEncoding osl_getTextEncodingFromLocale( rtl_Locale * pLocale )
/* convert rtl_Locale to locale string */
compose_locale( pLocale, locale_buf, 64 );
- /* basic thread safeness */
- pthread_mutex_lock( &aLocalMutex );
-
- /* remember the charset as indicated by the LC_CTYPE locale */
- ctype_locale = setlocale( LC_CTYPE, nullptr );
-
- /* set the desired LC_CTYPE locale */
- if( nullptr == setlocale( LC_CTYPE, locale_buf ) )
+ locale_t ctype_locale = newlocale(
+ LC_CTYPE_MASK, locale_buf, static_cast<locale_t>(0));
+ if (ctype_locale == static_cast<locale_t>(0))
{
- pthread_mutex_unlock(&aLocalMutex);
return RTL_TEXTENCODING_DONTKNOW;
}
@@ -600,7 +590,7 @@ rtl_TextEncoding osl_getTextEncodingFromLocale( rtl_Locale * pLocale )
#if defined(NETBSD) && !defined(CODESET)
codeset = NULL;
#else
- codeset = nl_langinfo( CODESET );
+ codeset = nl_langinfo_l(CODESET, ctype_locale);
#endif
if ( codeset != nullptr )
@@ -611,11 +601,7 @@ rtl_TextEncoding osl_getTextEncodingFromLocale( rtl_Locale * pLocale )
codeset = codeset_buf;
}
- /* restore the original value of locale */
- if ( ctype_locale != nullptr )
- setlocale( LC_CTYPE, ctype_locale );
-
- pthread_mutex_unlock( &aLocalMutex );
+ freelocale(ctype_locale);
/* search the codeset in our language list */
if ( codeset != nullptr )
More information about the Libreoffice-commits
mailing list