This patch adds the following pieces to the locale base API: - __setlocale (for std::setlocale) - __lconv_t (for std::lconv) - _LIBCPP_FOO_MASK and _LIBCPP_LC_ALL This should be sufficient to implement all of the platform-agnostic localization support in libc++ without relying directly on any public API names from the C library. This makes it possible to port libc++ to platforms that don't provide the usual locale APIs.
158 lines
5.5 KiB
C++
158 lines
5.5 KiB
C++
//===-----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP___LOCALE_DIR_SUPPORT_FUCHSIA_H
|
|
#define _LIBCPP___LOCALE_DIR_SUPPORT_FUCHSIA_H
|
|
|
|
#include <__config>
|
|
#include <__utility/forward.h>
|
|
#include <clocale> // uselocale & friends
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cwchar>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
namespace __locale {
|
|
|
|
struct __locale_guard {
|
|
_LIBCPP_HIDE_FROM_ABI __locale_guard(locale_t& __loc) : __old_loc_(::uselocale(__loc)) {}
|
|
|
|
_LIBCPP_HIDE_FROM_ABI ~__locale_guard() {
|
|
if (__old_loc_)
|
|
::uselocale(__old_loc_);
|
|
}
|
|
|
|
locale_t __old_loc_;
|
|
|
|
__locale_guard(__locale_guard const&) = delete;
|
|
__locale_guard& operator=(__locale_guard const&) = delete;
|
|
};
|
|
|
|
//
|
|
// Locale management
|
|
//
|
|
#define _LIBCPP_COLLATE_MASK LC_COLLATE_MASK
|
|
#define _LIBCPP_CTYPE_MASK LC_CTYPE_MASK
|
|
#define _LIBCPP_MONETARY_MASK LC_MONETARY_MASK
|
|
#define _LIBCPP_NUMERIC_MASK LC_NUMERIC_MASK
|
|
#define _LIBCPP_TIME_MASK LC_TIME_MASK
|
|
#define _LIBCPP_MESSAGES_MASK LC_MESSAGES_MASK
|
|
#define _LIBCPP_ALL_MASK LC_ALL_MASK
|
|
#define _LIBCPP_LC_ALL LC_ALL
|
|
|
|
using __locale_t = locale_t;
|
|
using __lconv_t = std::lconv;
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI __locale_t __newlocale(int __category_mask, const char* __name, __locale_t __loc) {
|
|
return ::newlocale(__category_mask, __name, __loc);
|
|
}
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI void __freelocale(__locale_t __loc) { ::freelocale(__loc); }
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI char* __setlocale(int __category, char const* __locale) {
|
|
return ::setlocale(__category, __locale);
|
|
}
|
|
|
|
inline _LIBCPP_HIDE_FROM_ABI __lconv_t* __localeconv(__locale_t& __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::localeconv();
|
|
}
|
|
|
|
//
|
|
// Other functions
|
|
//
|
|
inline _LIBCPP_HIDE_FROM_ABI decltype(MB_CUR_MAX) __mb_len_max(__locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return MB_CUR_MAX;
|
|
}
|
|
#if _LIBCPP_HAS_WIDE_CHARACTERS
|
|
inline _LIBCPP_HIDE_FROM_ABI wint_t __btowc(int __ch, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::btowc(__ch);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI int __wctob(wint_t __ch, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::wctob(__ch);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t
|
|
__wcsnrtombs(char* __dest, const wchar_t** __src, size_t __nwc, size_t __len, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return ::wcsnrtombs(__dest, __src, __nwc, __len, __ps); // non-standard
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t __wcrtomb(char* __s, wchar_t __ch, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::wcrtomb(__s, __ch, __ps);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t
|
|
__mbsnrtowcs(wchar_t* __dest, const char** __src, size_t __nms, size_t __len, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return ::mbsnrtowcs(__dest, __src, __nms, __len, __ps); // non-standard
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t
|
|
__mbrtowc(wchar_t* __pwc, const char* __s, size_t __n, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::mbrtowc(__pwc, __s, __n, __ps);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI int __mbtowc(wchar_t* __pwc, const char* __pmb, size_t __max, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::mbtowc(__pwc, __pmb, __max);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t __mbrlen(const char* __s, size_t __n, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return std::mbrlen(__s, __n, __ps);
|
|
}
|
|
inline _LIBCPP_HIDE_FROM_ABI size_t
|
|
__mbsrtowcs(wchar_t* __dest, const char** __src, size_t __len, mbstate_t* __ps, __locale_t __loc) {
|
|
__locale_guard __current(__loc);
|
|
return ::mbsrtowcs(__dest, __src, __len, __ps);
|
|
}
|
|
#endif
|
|
|
|
_LIBCPP_DIAGNOSTIC_PUSH
|
|
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wgcc-compat")
|
|
_LIBCPP_GCC_DIAGNOSTIC_IGNORED("-Wformat-nonliteral") // GCC doesn't support [[gnu::format]] on variadic templates
|
|
#ifdef _LIBCPP_COMPILER_CLANG_BASED
|
|
# define _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT(...) _LIBCPP_ATTRIBUTE_FORMAT(__VA_ARGS__)
|
|
#else
|
|
# define _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT(...) /* nothing */
|
|
#endif
|
|
|
|
template <class... _Args>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT(__printf__, 4, 5) int __snprintf(
|
|
char* __s, size_t __n, __locale_t __loc, const char* __format, _Args&&... __args) {
|
|
__locale_guard __current(__loc);
|
|
return std::snprintf(__s, __n, __format, std::forward<_Args>(__args)...);
|
|
}
|
|
template <class... _Args>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT(__printf__, 3, 4) int __asprintf(
|
|
char** __s, __locale_t __loc, const char* __format, _Args&&... __args) {
|
|
__locale_guard __current(__loc);
|
|
return ::asprintf(__s, __format, std::forward<_Args>(__args)...); // non-standard
|
|
}
|
|
template <class... _Args>
|
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT(__scanf__, 3, 4) int __sscanf(
|
|
const char* __s, __locale_t __loc, const char* __format, _Args&&... __args) {
|
|
__locale_guard __current(__loc);
|
|
return std::sscanf(__s, __format, std::forward<_Args>(__args)...);
|
|
}
|
|
|
|
_LIBCPP_DIAGNOSTIC_POP
|
|
#undef _LIBCPP_VARIADIC_ATTRIBUTE_FORMAT
|
|
|
|
} // namespace __locale
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#include <__locale_dir/support/no_locale/characters.h>
|
|
#include <__locale_dir/support/no_locale/strtonum.h>
|
|
|
|
#endif // _LIBCPP___LOCALE_DIR_SUPPORT_FUCHSIA_H
|