blob: f728d234472f9d295d1913e72a6e1650dda974b8 [file] [log] [blame]
Howard Hinnant92a07002011-09-22 19:10:18 +00001// -*- C++ -*-
Howard Hinnant14fa9f92011-09-29 20:33:10 +00002//===--------------------- support/win32/locale_win32.h -------------------===//
Howard Hinnant92a07002011-09-22 19:10:18 +00003//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
Howard Hinnant14fa9f92011-09-29 20:33:10 +000011#ifndef _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H
12#define _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H
Howard Hinnantefbe4062011-09-28 21:39:20 +000013
Howard Hinnant3c466fc2011-09-29 13:33:15 +000014// ctype mask table defined in msvcrt.dll
15extern "C" unsigned short __declspec(dllimport) _ctype[];
16
Howard Hinnantefbe4062011-09-28 21:39:20 +000017#include "support/win32/support.h"
Howard Hinnantef5aa932013-09-17 01:34:47 +000018#include <stdio.h>
Howard Hinnantefbe4062011-09-28 21:39:20 +000019#include <memory>
Dan Albert1d4a1ed2016-05-25 22:36:09 -070020#include <xlocinfo.h> // _locale_t
21#define locale_t _locale_t
22#define LC_COLLATE_MASK _M_COLLATE
23#define LC_CTYPE_MASK _M_CTYPE
24#define LC_MONETARY_MASK _M_MONETARY
25#define LC_NUMERIC_MASK _M_NUMERIC
26#define LC_TIME_MASK _M_TIME
27#define LC_MESSAGES_MASK _M_MESSAGES
28#define LC_ALL_MASK ( LC_COLLATE_MASK \
29 | LC_CTYPE_MASK \
30 | LC_MESSAGES_MASK \
31 | LC_MONETARY_MASK \
32 | LC_NUMERIC_MASK \
33 | LC_TIME_MASK )
34#define freelocale _free_locale
35// FIXME: base currently unused. Needs manual work to construct the new locale
36locale_t newlocale( int mask, const char * locale, locale_t base );
37locale_t uselocale( locale_t newloc );
Howard Hinnantefbe4062011-09-28 21:39:20 +000038lconv *localeconv_l( locale_t loc );
Howard Hinnantef5aa932013-09-17 01:34:47 +000039size_t mbrlen_l( const char *__restrict s, size_t n,
40 mbstate_t *__restrict ps, locale_t loc);
41size_t mbsrtowcs_l( wchar_t *__restrict dst, const char **__restrict src,
42 size_t len, mbstate_t *__restrict ps, locale_t loc );
43size_t wcrtomb_l( char *__restrict s, wchar_t wc, mbstate_t *__restrict ps,
Howard Hinnantefbe4062011-09-28 21:39:20 +000044 locale_t loc);
Howard Hinnantef5aa932013-09-17 01:34:47 +000045size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s,
46 size_t n, mbstate_t *__restrict ps, locale_t loc);
47size_t mbsnrtowcs_l( wchar_t *__restrict dst, const char **__restrict src,
48 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc);
49size_t wcsnrtombs_l( char *__restrict dst, const wchar_t **__restrict src,
50 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc);
Howard Hinnantefbe4062011-09-28 21:39:20 +000051wint_t btowc_l( int c, locale_t loc );
52int wctob_l( wint_t c, locale_t loc );
53typedef _VSTD::remove_pointer<locale_t>::type __locale_struct;
54typedef _VSTD::unique_ptr<__locale_struct, decltype(&uselocale)> __locale_raii;
Howard Hinnant1e564242013-10-04 22:09:00 +000055inline _LIBCPP_ALWAYS_INLINE
Howard Hinnantefbe4062011-09-28 21:39:20 +000056decltype(MB_CUR_MAX) MB_CUR_MAX_L( locale_t __l )
57{
58 __locale_raii __current( uselocale(__l), uselocale );
59 return MB_CUR_MAX;
60}
61
62// the *_l functions are prefixed on Windows, only available for msvcr80+, VS2005+
Howard Hinnantefbe4062011-09-28 21:39:20 +000063#define mbtowc_l _mbtowc_l
Howard Hinnant92a07002011-09-22 19:10:18 +000064#define strtoll_l _strtoi64_l
65#define strtoull_l _strtoui64_l
66// FIXME: current msvcrt does not know about long double
67#define strtold_l _strtod_l
Howard Hinnanta5733b32013-04-12 20:22:57 +000068
69inline _LIBCPP_INLINE_VISIBILITY
70int
71islower_l(int c, _locale_t loc)
72{
73 return _islower_l((int)c, loc);
74}
75
76inline _LIBCPP_INLINE_VISIBILITY
77int
78isupper_l(int c, _locale_t loc)
79{
80 return _isupper_l((int)c, loc);
81}
82
Howard Hinnant92a07002011-09-22 19:10:18 +000083#define isdigit_l _isdigit_l
84#define isxdigit_l _isxdigit_l
Howard Hinnant6cd05ee2011-09-23 16:11:27 +000085#define strcoll_l _strcoll_l
86#define strxfrm_l _strxfrm_l
87#define wcscoll_l _wcscoll_l
88#define wcsxfrm_l _wcsxfrm_l
89#define toupper_l _toupper_l
90#define tolower_l _tolower_l
91#define iswspace_l _iswspace_l
92#define iswprint_l _iswprint_l
93#define iswcntrl_l _iswcntrl_l
94#define iswupper_l _iswupper_l
95#define iswlower_l _iswlower_l
96#define iswalpha_l _iswalpha_l
97#define iswdigit_l _iswdigit_l
98#define iswpunct_l _iswpunct_l
99#define iswxdigit_l _iswxdigit_l
100#define towupper_l _towupper_l
101#define towlower_l _towlower_l
102#define strftime_l _strftime_l
Howard Hinnantefbe4062011-09-28 21:39:20 +0000103#define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
104#define vsscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
105#define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ )
Howard Hinnantefbe4062011-09-28 21:39:20 +0000106#define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ )
107#define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ )
Yaron Keren15c04be2013-11-18 21:12:14 +0000108int snprintf_l(char *ret, size_t n, locale_t loc, const char *format, ...);
Howard Hinnantefbe4062011-09-28 21:39:20 +0000109int asprintf_l( char **ret, locale_t loc, const char *format, ... );
110int vasprintf_l( char **ret, locale_t loc, const char *format, va_list ap );
111
112
113// not-so-pressing FIXME: use locale to determine blank characters
Howard Hinnant6cd05ee2011-09-23 16:11:27 +0000114inline int isblank_l( int c, locale_t /*loc*/ )
115{
116 return ( c == ' ' || c == '\t' );
117}
118inline int iswblank_l( wint_t c, locale_t /*loc*/ )
119{
120 return ( c == L' ' || c == L'\t' );
121}
Howard Hinnant6cd05ee2011-09-23 16:11:27 +0000122
Howard Hinnantef5aa932013-09-17 01:34:47 +0000123#if defined(_LIBCPP_MSVCRT)
Howard Hinnant9f8884e2011-10-27 16:24:42 +0000124inline int isblank( int c, locale_t /*loc*/ )
125{ return ( c == ' ' || c == '\t' ); }
126inline int iswblank( wint_t c, locale_t /*loc*/ )
127{ return ( c == L' ' || c == L'\t' ); }
Howard Hinnantef5aa932013-09-17 01:34:47 +0000128#endif // _LIBCPP_MSVCRT
Howard Hinnant14fa9f92011-09-29 20:33:10 +0000129#endif // _LIBCPP_SUPPORT_WIN32_LOCALE_WIN32_H