blob: 0317a215171e9f5299c1b0384f0e32a3d6ca6709 [file] [log] [blame]
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001/* vi: set sw=4 ts=4: */
2/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2, see file LICENSE in this source tree.
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02004 */
5#ifndef UNICODE_H
6#define UNICODE_H 1
7
Denys Vlasenko19158a82010-03-26 14:06:56 +01008#if ENABLE_UNICODE_USING_LOCALE
Denys Vlasenko2f8a4602010-02-19 08:47:17 +01009# include <wchar.h>
10# include <wctype.h>
11#endif
12
Denys Vlasenkobb1dcc92010-02-02 12:45:38 +010013PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
14
Denys Vlasenko28055022010-01-04 20:49:58 +010015enum {
16 UNICODE_UNKNOWN = 0,
17 UNICODE_OFF = 1,
18 UNICODE_ON = 2,
19};
20
Tomas Heinrichaa167552010-03-26 13:13:24 +010021#define unicode_bidi_isrtl(wc) 0
22#define unicode_bidi_is_neutral_wchar(wc) (wc <= 126 && !isalpha(wc))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +010023
Denys Vlasenko19158a82010-03-26 14:06:56 +010024#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020025
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +020026# define unicode_strlen(string) strlen(string)
27# define unicode_strwidth(string) strlen(string)
Denys Vlasenko28055022010-01-04 20:49:58 +010028# define unicode_status UNICODE_OFF
29# define init_unicode() ((void)0)
Denys Vlasenko20704f02011-03-23 17:59:27 +010030# define reinit_unicode(LANG) ((void)0)
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020031
32#else
33
Tomas Heinrichc5c006c2010-03-18 18:35:37 +010034# if CONFIG_LAST_SUPPORTED_WCHAR < 126 || CONFIG_LAST_SUPPORTED_WCHAR >= 0x30000
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +020035# undef CONFIG_LAST_SUPPORTED_WCHAR
36# define CONFIG_LAST_SUPPORTED_WCHAR 0x2ffff
Tomas Heinrichc5c006c2010-03-18 18:35:37 +010037# endif
38
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +020039# if CONFIG_LAST_SUPPORTED_WCHAR < 0x300
Tomas Heinrichb8909c52010-05-16 20:46:53 +020040# undef ENABLE_UNICODE_COMBINING_WCHARS
41# define ENABLE_UNICODE_COMBINING_WCHARS 0
42# endif
43
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +020044# if CONFIG_LAST_SUPPORTED_WCHAR < 0x1100
Tomas Heinrichb8909c52010-05-16 20:46:53 +020045# undef ENABLE_UNICODE_WIDE_WCHARS
46# define ENABLE_UNICODE_WIDE_WCHARS 0
47# endif
48
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +020049# if CONFIG_LAST_SUPPORTED_WCHAR < 0x590
Tomas Heinrichc5c006c2010-03-18 18:35:37 +010050# undef ENABLE_UNICODE_BIDI_SUPPORT
51# define ENABLE_UNICODE_BIDI_SUPPORT 0
52# endif
53
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +020054/* Number of unicode chars. Falls back to strlen() on invalid unicode */
Denys Vlasenko9f93d622010-01-24 07:44:03 +010055size_t FAST_FUNC unicode_strlen(const char *string);
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +020056/* Width on terminal */
57size_t FAST_FUNC unicode_strwidth(const char *string);
Denys Vlasenkoe17764c2010-01-30 23:16:21 +010058enum {
59 UNI_FLAG_PAD = (1 << 0),
60};
Denys Vlasenkoe17764c2010-01-30 23:16:21 +010061//UNUSED: unsigned FAST_FUNC unicode_padding_to_width(unsigned width, const char *src);
62//UNUSED: char* FAST_FUNC unicode_conv_to_printable2(uni_stat_t *stats, const char *src, unsigned width, int flags);
63char* FAST_FUNC unicode_conv_to_printable(uni_stat_t *stats, const char *src);
Denys Vlasenkodc7e5c42011-01-11 13:08:28 +010064//UNUSED: char* FAST_FUNC unicode_conv_to_printable_maxwidth(uni_stat_t *stats, const char *src, unsigned maxwidth);
65char* FAST_FUNC unicode_conv_to_printable_fixedwidth(/*uni_stat_t *stats,*/ const char *src, unsigned width);
Denys Vlasenkofda8f572009-07-11 22:26:48 +020066
Denys Vlasenko19158a82010-03-26 14:06:56 +010067# if ENABLE_UNICODE_USING_LOCALE
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020068
Denys Vlasenko28055022010-01-04 20:49:58 +010069extern uint8_t unicode_status;
70void init_unicode(void) FAST_FUNC;
Denys Vlasenko20704f02011-03-23 17:59:27 +010071void reinit_unicode(const char *LANG) FAST_FUNC;
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020072
73# else
74
Denys Vlasenko9f93d622010-01-24 07:44:03 +010075/* Homegrown Unicode support. It knows only C and Unicode locales. */
Denys Vlasenkofda8f572009-07-11 22:26:48 +020076
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020077# if !ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
Denys Vlasenko28055022010-01-04 20:49:58 +010078# define unicode_status UNICODE_ON
79# define init_unicode() ((void)0)
Denys Vlasenko20704f02011-03-23 17:59:27 +010080# define reinit_unicode(LANG) ((void)0)
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020081# else
Denys Vlasenko28055022010-01-04 20:49:58 +010082extern uint8_t unicode_status;
83void init_unicode(void) FAST_FUNC;
Denys Vlasenko20704f02011-03-23 17:59:27 +010084void reinit_unicode(const char *LANG) FAST_FUNC;
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020085# endif
86
87# undef MB_CUR_MAX
88# define MB_CUR_MAX 6
89
90/* Prevent name collisions */
91# define wint_t bb_wint_t
92# define mbstate_t bb_mbstate_t
93# define mbstowcs bb_mbstowcs
94# define wcstombs bb_wcstombs
95# define wcrtomb bb_wcrtomb
96# define iswspace bb_iswspace
97# define iswalnum bb_iswalnum
98# define iswpunct bb_iswpunct
Denys Vlasenko9f93d622010-01-24 07:44:03 +010099# define wcwidth bb_wcwidth
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200100
101typedef int32_t wint_t;
102typedef struct {
103 char bogus;
104} mbstate_t;
105
106size_t mbstowcs(wchar_t *dest, const char *src, size_t n) FAST_FUNC;
107size_t wcstombs(char *dest, const wchar_t *src, size_t n) FAST_FUNC;
108size_t wcrtomb(char *s, wchar_t wc, mbstate_t *ps) FAST_FUNC;
109int iswspace(wint_t wc) FAST_FUNC;
110int iswalnum(wint_t wc) FAST_FUNC;
111int iswpunct(wint_t wc) FAST_FUNC;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200112int wcwidth(unsigned ucs) FAST_FUNC;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +0100113# if ENABLE_UNICODE_BIDI_SUPPORT
Tomas Heinrichaa167552010-03-26 13:13:24 +0100114# undef unicode_bidi_isrtl
115int unicode_bidi_isrtl(wint_t wc) FAST_FUNC;
116# if ENABLE_UNICODE_NEUTRAL_TABLE
117# undef unicode_bidi_is_neutral_wchar
118int unicode_bidi_is_neutral_wchar(wint_t wc) FAST_FUNC;
119# endif
Tomas Heinrichc5c006c2010-03-18 18:35:37 +0100120# endif
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200121
Denys Vlasenko9c3b84a2010-01-18 01:55:00 +0100122
Denys Vlasenko19158a82010-03-26 14:06:56 +0100123# endif /* !UNICODE_USING_LOCALE */
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200124
Denys Vlasenko19158a82010-03-26 14:06:56 +0100125#endif /* UNICODE_SUPPORT */
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200126
Denys Vlasenkobb1dcc92010-02-02 12:45:38 +0100127POP_SAVED_FUNCTION_VISIBILITY
128
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200129#endif