1 #ifndef __PDCLIB_LOCALE_H
2 #define __PDCLIB_LOCALE_H __PDCLIB_LOCALE_H
3 #include <_PDCLIB_int.h>
8 #define _PDCLIB_LOCALE_METHOD_TSS 't'
9 #define _PDCLIB_LOCALE_METHOD_THREAD_LOCAL 'T'
11 #if !defined(_PDCLIB_LOCALE_METHOD)
12 #error _PDCLIB_LOCALE_METHOD undefined: don't know where I'm storing the thread locale
13 #elif _PDCLIB_LOCALE_METHOD == _PDCLIB_LOCALE_METHOD_TSS
14 extern tss_t _PDCLIB_locale_tss;
15 static inline locale_t _PDCLIB_threadlocale( void )
17 locale_t l = tss_get(_PDCLIB_locale_tss);
19 l = &_PDCLIB_global_locale;
23 static inline void _PDCLIB_setthreadlocale( locale_t l )
25 if(tss_set(_PDCLIB_locale_tss, l) != thrd_success)
28 #elif _PDCLIB_LOCALE_METHOD == _PDCLIB_LOCALE_METHOD_THREAD_LOCAL
29 extern thread_local locale_t _PDCLIB_locale_tls;
30 #define _PDCLIB_threadlocale() (_PDCLIB_locale_tls || &_PDCLIB_global_locale)
31 static inline locale_t _PDCLIB_threadlocale( void )
33 locale_t l = _PDCLIB_locale_tls;
35 l = &_PDCLIB_global_locale;
39 static inline void _PDCLIB_setthreadlocale( locale_t l )
41 _PDCLIB_locale_tls = l;
44 #error Locale TSS method unspecified
47 /* -------------------------------------------------------------------------- */
48 /* <ctype.h> lookup tables */
49 /* -------------------------------------------------------------------------- */
51 #define _PDCLIB_CTYPE_ALPHA 1
52 #define _PDCLIB_CTYPE_BLANK 2
53 #define _PDCLIB_CTYPE_CNTRL 4
54 #define _PDCLIB_CTYPE_GRAPH 8
55 #define _PDCLIB_CTYPE_PUNCT 16
56 #define _PDCLIB_CTYPE_SPACE 32
57 #define _PDCLIB_CTYPE_LOWER 64
58 #define _PDCLIB_CTYPE_UPPER 128
59 #define _PDCLIB_CTYPE_DIGIT 256
60 #define _PDCLIB_CTYPE_XDIGT 512
62 #define _PDCLIB_WCTRANS_TOLOWER 1
63 #define _PDCLIB_WCTRANS_TOUPPER 2
65 typedef struct _PDCLIB_ctype
67 _PDCLIB_uint16_t flags;
70 unsigned char collation;
73 typedef struct _PDCLIB_wcinfo
76 _PDCLIB_uint16_t flags;
81 extern _PDCLIB_wcinfo_t _PDCLIB_wcinfo[];
82 extern size_t _PDCLIB_wcinfo_size;
84 static inline int _PDCLIB_wcinfo_cmp( const void * _key, const void * _obj )
86 _PDCLIB_uint32_t * key = (_PDCLIB_uint32_t *) _key;
87 _PDCLIB_wcinfo_t * obj = (_PDCLIB_wcinfo_t *) _obj;
88 return *key - obj->num;
91 static inline _PDCLIB_wcinfo_t * _PDCLIB_wcgetinfo( _PDCLIB_uint32_t num )
93 _PDCLIB_wcinfo_t *info = (_PDCLIB_wcinfo_t*)
94 bsearch( &num, _PDCLIB_wcinfo, _PDCLIB_wcinfo_size,
95 sizeof( _PDCLIB_wcinfo[0] ), _PDCLIB_wcinfo_cmp );
100 static inline _PDCLIB_wint_t _PDCLIB_unpackwint( _PDCLIB_wint_t wc )
102 if( sizeof(_PDCLIB_wchar_t) == 2 && sizeof(_PDCLIB_wint_t) == 4 ) {
103 /* On UTF-16 platforms, as an extension accept a "packed surrogate"
104 * encoding. We accept the surrogate pairs either way
107 _PDCLIB_wint_t c = (wc & 0xF800F800);
108 if(c == (_PDCLIB_wint_t) 0xD800DC00) {
109 // MSW: Lead, LSW: Trail
110 _PDCLIB_wint_t lead = wc >> 16 & 0x3FF;
111 _PDCLIB_wint_t trail = wc & 0x3FF;
112 wc = lead << 10 | trail;
113 } else if(c == (_PDCLIB_wint_t) 0xDC00D800) {
114 // MSW: Trail, LSW: Lead
115 _PDCLIB_wint_t trail = wc >> 16 & 0x3FF;
116 _PDCLIB_wint_t lead = wc & 0x3FF;
117 wc = lead << 10 | trail;
124 struct _PDCLIB_locale {
125 _PDCLIB_charcodec_t _Codec;
129 _PDCLIB_ctype_t *_CType;
131 /* perror/strerror */
132 char *_ErrnoStr[_PDCLIB_ERRNO_MAX];