blob: ee2834cf42f81cc299cf13248f3eb6b4ab28164e [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Multibyte extensions partly by Sung-Hoon Baek
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10/*
11 * mbyte.c: Code specifically for handling multi-byte characters.
12 *
13 * The encoding used in the core is set with 'encoding'. When 'encoding' is
14 * changed, the following four variables are set (for speed).
15 * Currently these types of character encodings are supported:
16 *
17 * "enc_dbcs" When non-zero it tells the type of double byte character
18 * encoding (Chinese, Korean, Japanese, etc.).
19 * The cell width on the display is equal to the number of
20 * bytes. (exception: DBCS_JPNU with first byte 0x8e)
21 * Recognizing the first or second byte is difficult, it
22 * requires checking a byte sequence from the start.
23 * "enc_utf8" When TRUE use Unicode characters in UTF-8 encoding.
24 * The cell width on the display needs to be determined from
25 * the character value.
26 * Recognizing bytes is easy: 0xxx.xxxx is a single-byte
27 * char, 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading
28 * byte of a multi-byte character.
Bram Moolenaar3e8cb582010-01-12 19:52:03 +010029 * To make things complicated, up to six composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +000030 * are allowed. These are drawn on top of the first char.
31 * For most editing the sequence of bytes with composing
32 * characters included is considered to be one character.
33 * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16).
34 * When 4 use 32-but Unicode characters.
35 * Internally characters are stored in UTF-8 encoding to
36 * avoid NUL bytes. Conversion happens when doing I/O.
37 * "enc_utf8" will also be TRUE.
38 *
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
40 *
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
43 *
44 * 'encoding' specifies the encoding used in the core. This is in registers,
45 * text manipulation, buffers, etc. Conversion has to be done when characters
46 * in another encoding are received or send:
47 *
48 * clipboard
49 * ^
50 * | (2)
51 * V
52 * +---------------+
53 * (1) | | (3)
54 * keyboard ----->| core |-----> display
55 * | |
56 * +---------------+
57 * ^
58 * | (4)
59 * V
60 * file
61 *
62 * (1) Typed characters arrive in the current locale. Conversion is to be
63 * done when 'encoding' is different from 'termencoding'.
64 * (2) Text will be made available with the encoding specified with
65 * 'encoding'. If this is not sufficient, system-specific conversion
66 * might be required.
67 * (3) For the GUI the correct font must be selected, no conversion done.
68 * Otherwise, conversion is to be done when 'encoding' differs from
69 * 'termencoding'. (Different in the GTK+ 2 port -- 'termencoding'
70 * is always used for both input and output and must always be set to
71 * "utf-8". gui_mch_init() does this automatically.)
72 * (4) The encoding of the file is specified with 'fileencoding'. Conversion
73 * is to be done when it's different from 'encoding'.
74 *
75 * The viminfo file is a special case: Only text is converted, not file names.
76 * Vim scripts may contain an ":encoding" command. This has an effect for
77 * some commands, like ":menutrans"
78 */
79
80#include "vim.h"
81
82#ifdef WIN32UNIX
83# ifndef WIN32_LEAN_AND_MEAN
84# define WIN32_LEAN_AND_MEAN
85# endif
Bram Moolenaarca058dc2014-01-14 13:26:21 +010086# if defined(FEAT_GUI) || defined(FEAT_XCLIPBOARD)
Bram Moolenaar825b55e2022-04-11 15:28:50 +010087# ifdef __CYGWIN__
88 // ControlMask from <X11/X.h> (included in "vim.h") is conflicting with
89 // <w32api/windows.h> (included in <X11/Xwindows.h>).
90# undef ControlMask
91# endif
Bram Moolenaarca058dc2014-01-14 13:26:21 +010092# include <X11/Xwindows.h>
93# define WINBYTE wBYTE
94# else
95# include <windows.h>
96# define WINBYTE BYTE
97# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000098# ifdef WIN32
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010099# undef WIN32 // Some windows.h define WIN32, we don't want that here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100# endif
Bram Moolenaarca058dc2014-01-14 13:26:21 +0100101#else
102# define WINBYTE BYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
104
Bram Moolenaar4f974752019-02-17 17:44:42 +0100105#if (defined(MSWIN) || defined(WIN32UNIX)) && !defined(__MINGW32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106# include <winnls.h>
107#endif
108
109#ifdef FEAT_GUI_X11
110# include <X11/Intrinsic.h>
111#endif
112#ifdef X_LOCALE
Bram Moolenaard0573012017-10-28 21:11:06 +0200113# include <X11/Xlocale.h>
114# if !defined(HAVE_MBLEN) && !defined(mblen)
115# define mblen _Xmblen
116# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117#endif
118
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119#ifdef HAVE_WCHAR_H
120# include <wchar.h>
121#endif
122
123#if 0
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100124// This has been disabled, because several people reported problems with the
125// wcwidth() and iswprint() library functions, esp. for Hebrew.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126# ifdef __STDC_ISO_10646__
127# define USE_WCHAR_FUNCTIONS
128# endif
129#endif
130
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100131static int dbcs_char2len(int c);
132static int dbcs_char2bytes(int c, char_u *buf);
133static int dbcs_ptr2len(char_u *p);
134static int dbcs_ptr2len_len(char_u *p, int size);
135static int utf_ptr2cells_len(char_u *p, int size);
136static int dbcs_char2cells(int c);
137static int dbcs_ptr2cells_len(char_u *p, int size);
138static int dbcs_ptr2char(char_u *p);
Bram Moolenaar840d16f2019-09-10 21:27:18 +0200139static int dbcs_head_off(char_u *base, char_u *p);
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200140#ifdef FEAT_EVAL
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200141static int cw_value(int c);
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
Bram Moolenaar24397332009-12-02 14:02:39 +0000144/*
145 * Lookup table to quickly get the length in bytes of a UTF-8 character from
146 * the first byte of a UTF-8 string.
147 * Bytes which are illegal when used as the first byte have a 1.
148 * The NUL byte has length 1.
149 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150static char utf8len_tab[256] =
151{
152 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
153 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
154 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
155 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
Bram Moolenaar24397332009-12-02 14:02:39 +0000156 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
157 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
159 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1,
160};
161
162/*
Bram Moolenaar24397332009-12-02 14:02:39 +0000163 * Like utf8len_tab above, but using a zero for illegal lead bytes.
164 */
165static char utf8len_tab_zero[256] =
166{
167 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
168 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
169 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
170 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
171 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
172 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
173 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
174 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,0,0,
175};
176
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178/*
179 * Canonical encoding names and their properties.
180 * "iso-8859-n" is handled by enc_canonize() directly.
181 */
182static struct
183{ char *name; int prop; int codepage;}
184enc_canon_table[] =
185{
186#define IDX_LATIN_1 0
187 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
188#define IDX_ISO_2 1
189 {"iso-8859-2", ENC_8BIT, 0},
190#define IDX_ISO_3 2
191 {"iso-8859-3", ENC_8BIT, 0},
192#define IDX_ISO_4 3
193 {"iso-8859-4", ENC_8BIT, 0},
194#define IDX_ISO_5 4
195 {"iso-8859-5", ENC_8BIT, 0},
196#define IDX_ISO_6 5
197 {"iso-8859-6", ENC_8BIT, 0},
198#define IDX_ISO_7 6
199 {"iso-8859-7", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000200#define IDX_ISO_8 7
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 {"iso-8859-8", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000202#define IDX_ISO_9 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 {"iso-8859-9", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000204#define IDX_ISO_10 9
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205 {"iso-8859-10", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000206#define IDX_ISO_11 10
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 {"iso-8859-11", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000208#define IDX_ISO_13 11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209 {"iso-8859-13", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000210#define IDX_ISO_14 12
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211 {"iso-8859-14", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000212#define IDX_ISO_15 13
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000213 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000214#define IDX_KOI8_R 14
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 {"koi8-r", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000216#define IDX_KOI8_U 15
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 {"koi8-u", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000218#define IDX_UTF8 16
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 {"utf-8", ENC_UNICODE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000220#define IDX_UCS2 17
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000222#define IDX_UCS2LE 18
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000224#define IDX_UTF16 19
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000226#define IDX_UTF16LE 20
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000228#define IDX_UCS4 21
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000230#define IDX_UCS4LE 22
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000232
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100233 // For debugging DBCS encoding on Unix.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000234#define IDX_DEBUG 23
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {"debug", ENC_DBCS, DBCS_DEBUG},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000236#define IDX_EUC_JP 24
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 {"euc-jp", ENC_DBCS, DBCS_JPNU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000238#define IDX_SJIS 25
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 {"sjis", ENC_DBCS, DBCS_JPN},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000240#define IDX_EUC_KR 26
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 {"euc-kr", ENC_DBCS, DBCS_KORU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000242#define IDX_EUC_CN 27
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 {"euc-cn", ENC_DBCS, DBCS_CHSU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000244#define IDX_EUC_TW 28
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 {"euc-tw", ENC_DBCS, DBCS_CHTU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000246#define IDX_BIG5 29
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 {"big5", ENC_DBCS, DBCS_CHT},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000248
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100249 // MS-DOS and MS-Windows codepages are included here, so that they can be
250 // used on Unix too. Most of them are similar to ISO-8859 encodings, but
251 // not exactly the same.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000252#define IDX_CP437 30
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100253 {"cp437", ENC_8BIT, 437}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000254#define IDX_CP737 31
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100255 {"cp737", ENC_8BIT, 737}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000256#define IDX_CP775 32
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100257 {"cp775", ENC_8BIT, 775}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000258#define IDX_CP850 33
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100259 {"cp850", ENC_8BIT, 850}, // like iso-8859-4
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000260#define IDX_CP852 34
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100261 {"cp852", ENC_8BIT, 852}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000262#define IDX_CP855 35
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100263 {"cp855", ENC_8BIT, 855}, // like iso-8859-2
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000264#define IDX_CP857 36
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100265 {"cp857", ENC_8BIT, 857}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000266#define IDX_CP860 37
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100267 {"cp860", ENC_8BIT, 860}, // like iso-8859-9
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000268#define IDX_CP861 38
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100269 {"cp861", ENC_8BIT, 861}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000270#define IDX_CP862 39
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100271 {"cp862", ENC_8BIT, 862}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000272#define IDX_CP863 40
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100273 {"cp863", ENC_8BIT, 863}, // like iso-8859-8
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000274#define IDX_CP865 41
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100275 {"cp865", ENC_8BIT, 865}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000276#define IDX_CP866 42
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100277 {"cp866", ENC_8BIT, 866}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000278#define IDX_CP869 43
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100279 {"cp869", ENC_8BIT, 869}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000280#define IDX_CP874 44
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100281 {"cp874", ENC_8BIT, 874}, // Thai
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000282#define IDX_CP932 45
283 {"cp932", ENC_DBCS, DBCS_JPN},
284#define IDX_CP936 46
285 {"cp936", ENC_DBCS, DBCS_CHS},
286#define IDX_CP949 47
287 {"cp949", ENC_DBCS, DBCS_KOR},
288#define IDX_CP950 48
289 {"cp950", ENC_DBCS, DBCS_CHT},
290#define IDX_CP1250 49
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100291 {"cp1250", ENC_8BIT, 1250}, // Czech, Polish, etc.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000292#define IDX_CP1251 50
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100293 {"cp1251", ENC_8BIT, 1251}, // Cyrillic
294 // cp1252 is considered to be equal to latin1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000295#define IDX_CP1253 51
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100296 {"cp1253", ENC_8BIT, 1253}, // Greek
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000297#define IDX_CP1254 52
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100298 {"cp1254", ENC_8BIT, 1254}, // Turkish
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000299#define IDX_CP1255 53
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100300 {"cp1255", ENC_8BIT, 1255}, // Hebrew
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000301#define IDX_CP1256 54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100302 {"cp1256", ENC_8BIT, 1256}, // Arabic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000303#define IDX_CP1257 55
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100304 {"cp1257", ENC_8BIT, 1257}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000305#define IDX_CP1258 56
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100306 {"cp1258", ENC_8BIT, 1258}, // Vietnamese
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000307
308#define IDX_MACROMAN 57
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100309 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, // Mac OS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000310#define IDX_DECMCS 58
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100311 {"dec-mcs", ENC_8BIT, 0}, // DEC MCS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000312#define IDX_HPROMAN8 59
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100313 {"hp-roman8", ENC_8BIT, 0}, // HP Roman8
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000314#define IDX_COUNT 60
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315};
316
317/*
318 * Aliases for encoding names.
319 */
320static struct
321{ char *name; int canon;}
322enc_alias_table[] =
323{
324 {"ansi", IDX_LATIN_1},
325 {"iso-8859-1", IDX_LATIN_1},
Bram Moolenaar1349bd72022-02-22 12:34:28 +0000326 {"iso-8859", IDX_LATIN_1},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 {"latin2", IDX_ISO_2},
328 {"latin3", IDX_ISO_3},
329 {"latin4", IDX_ISO_4},
330 {"cyrillic", IDX_ISO_5},
331 {"arabic", IDX_ISO_6},
332 {"greek", IDX_ISO_7},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100333#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 {"hebrew", IDX_CP1255},
335#else
336 {"hebrew", IDX_ISO_8},
337#endif
338 {"latin5", IDX_ISO_9},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100339 {"turkish", IDX_ISO_9}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 {"latin6", IDX_ISO_10},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100341 {"nordic", IDX_ISO_10}, // ?
342 {"thai", IDX_ISO_11}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 {"latin7", IDX_ISO_13},
344 {"latin8", IDX_ISO_14},
345 {"latin9", IDX_ISO_15},
346 {"utf8", IDX_UTF8},
347 {"unicode", IDX_UCS2},
348 {"ucs2", IDX_UCS2},
349 {"ucs2be", IDX_UCS2},
350 {"ucs-2be", IDX_UCS2},
351 {"ucs2le", IDX_UCS2LE},
352 {"utf16", IDX_UTF16},
353 {"utf16be", IDX_UTF16},
354 {"utf-16be", IDX_UTF16},
355 {"utf16le", IDX_UTF16LE},
356 {"ucs4", IDX_UCS4},
357 {"ucs4be", IDX_UCS4},
358 {"ucs-4be", IDX_UCS4},
359 {"ucs4le", IDX_UCS4LE},
Bram Moolenaar5360af92008-02-20 10:29:39 +0000360 {"utf32", IDX_UCS4},
361 {"utf-32", IDX_UCS4},
362 {"utf32be", IDX_UCS4},
363 {"utf-32be", IDX_UCS4},
364 {"utf32le", IDX_UCS4LE},
365 {"utf-32le", IDX_UCS4LE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 {"932", IDX_CP932},
367 {"949", IDX_CP949},
368 {"936", IDX_CP936},
Bram Moolenaar0928caa2006-08-16 16:03:34 +0000369 {"gbk", IDX_CP936},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 {"950", IDX_CP950},
371 {"eucjp", IDX_EUC_JP},
372 {"unix-jis", IDX_EUC_JP},
373 {"ujis", IDX_EUC_JP},
374 {"shift-jis", IDX_SJIS},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100375 {"pck", IDX_SJIS}, // Sun: PCK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 {"euckr", IDX_EUC_KR},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100377 {"5601", IDX_EUC_KR}, // Sun: KS C 5601
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 {"euccn", IDX_EUC_CN},
379 {"gb2312", IDX_EUC_CN},
380 {"euctw", IDX_EUC_TW},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100381#if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382 {"japan", IDX_CP932},
383 {"korea", IDX_CP949},
384 {"prc", IDX_CP936},
385 {"chinese", IDX_CP936},
386 {"taiwan", IDX_CP950},
387 {"big5", IDX_CP950},
388#else
389 {"japan", IDX_EUC_JP},
390 {"korea", IDX_EUC_KR},
391 {"prc", IDX_EUC_CN},
392 {"chinese", IDX_EUC_CN},
393 {"taiwan", IDX_EUC_TW},
394 {"cp950", IDX_BIG5},
395 {"950", IDX_BIG5},
396#endif
397 {"mac", IDX_MACROMAN},
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000398 {"mac-roman", IDX_MACROMAN},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 {NULL, 0}
400};
401
402#ifndef CP_UTF8
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100403# define CP_UTF8 65001 // magic number from winnls.h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404#endif
405
406/*
407 * Find encoding "name" in the list of canonical encoding names.
408 * Returns -1 if not found.
409 */
410 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100411enc_canon_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412{
413 int i;
414
415 for (i = 0; i < IDX_COUNT; ++i)
416 if (STRCMP(name, enc_canon_table[i].name) == 0)
417 return i;
418 return -1;
419}
420
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421
422/*
423 * Find canonical encoding "name" in the list and return its properties.
424 * Returns 0 if not found.
425 */
426 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100427enc_canon_props(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428{
429 int i;
430
431 i = enc_canon_search(name);
432 if (i >= 0)
433 return enc_canon_table[i].prop;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100434#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
436 {
437 CPINFO cpinfo;
438
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100439 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100440 if (GetCPInfo(atoi((char *)name + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100442 if (cpinfo.MaxCharSize == 1) // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 return ENC_8BIT;
444 if (cpinfo.MaxCharSize == 2
445 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100446 // must be a DBCS encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 return ENC_DBCS;
448 }
449 return 0;
450 }
451#endif
452 if (STRNCMP(name, "2byte-", 6) == 0)
453 return ENC_DBCS;
454 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
455 return ENC_8BIT;
456 return 0;
457}
458
459/*
460 * Set up for using multi-byte characters.
461 * Called in three cases:
462 * - by main() to initialize (p_enc == NULL)
463 * - by set_init_1() after 'encoding' was set to its default.
464 * - by do_set() when 'encoding' has been set.
465 * p_enc must have been passed through enc_canonize() already.
466 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
467 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
468 * When there is something wrong: Returns an error message and doesn't change
469 * anything.
470 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100471 char *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100472mb_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473{
474 int i;
475 int idx;
476 int n;
477 int enc_dbcs_new = 0;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100478#if defined(USE_ICONV) && !defined(MSWIN) && !defined(WIN32UNIX) \
Bram Moolenaard0573012017-10-28 21:11:06 +0200479 && !defined(MACOS_CONVERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480# define LEN_FROM_CONV
481 vimconv_T vimconv;
482 char_u *p;
483#endif
484
485 if (p_enc == NULL)
486 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100487 // Just starting up: set the whole table to one's.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 for (i = 0; i < 256; ++i)
489 mb_bytelen_tab[i] = 1;
490 input_conv.vc_type = CONV_NONE;
491 input_conv.vc_factor = 1;
492 output_conv.vc_type = CONV_NONE;
493 return NULL;
494 }
495
Bram Moolenaar4f974752019-02-17 17:44:42 +0100496#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
498 {
499 CPINFO cpinfo;
500
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100501 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100502 if (GetCPInfo(atoi((char *)p_enc + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 {
504 if (cpinfo.MaxCharSize == 1)
505 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100506 // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 enc_unicode = 0;
508 enc_utf8 = FALSE;
509 }
510 else if (cpinfo.MaxCharSize == 2
511 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
512 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100513 // must be a DBCS encoding, check below
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100514 enc_dbcs_new = atoi((char *)p_enc + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 }
516 else
517 goto codepage_invalid;
518 }
519 else if (GetLastError() == ERROR_INVALID_PARAMETER)
520 {
521codepage_invalid:
Bram Moolenaar1d423ef2022-01-02 21:26:16 +0000522 return N_(e_not_valid_codepage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 }
524 }
525#endif
526 else if (STRNCMP(p_enc, "8bit-", 5) == 0
527 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
528 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100529 // Accept any "8bit-" or "iso-8859-" name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 enc_unicode = 0;
531 enc_utf8 = FALSE;
532 }
533 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
534 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100535#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100536 // Windows: accept only valid codepage numbers, check below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 if (p_enc[6] != 'c' || p_enc[7] != 'p'
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100538 || (enc_dbcs_new = atoi((char *)p_enc + 8)) == 0)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000539 return e_invalid_argument;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100541 // Unix: accept any "2byte-" name, assume current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 enc_dbcs_new = DBCS_2BYTE;
543#endif
544 }
545 else if ((idx = enc_canon_search(p_enc)) >= 0)
546 {
547 i = enc_canon_table[idx].prop;
548 if (i & ENC_UNICODE)
549 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100550 // Unicode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 enc_utf8 = TRUE;
552 if (i & (ENC_2BYTE | ENC_2WORD))
553 enc_unicode = 2;
554 else if (i & ENC_4BYTE)
555 enc_unicode = 4;
556 else
557 enc_unicode = 0;
558 }
559 else if (i & ENC_DBCS)
560 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100561 // 2byte, handle below
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 enc_dbcs_new = enc_canon_table[idx].codepage;
563 }
564 else
565 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100566 // Must be 8-bit.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 enc_unicode = 0;
568 enc_utf8 = FALSE;
569 }
570 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100571 else // Don't know what encoding this is, reject it.
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000572 return e_invalid_argument;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573
574 if (enc_dbcs_new != 0)
575 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100576#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100577 // Check if the DBCS code page is OK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 if (!IsValidCodePage(enc_dbcs_new))
579 goto codepage_invalid;
580#endif
581 enc_unicode = 0;
582 enc_utf8 = FALSE;
583 }
584 enc_dbcs = enc_dbcs_new;
585 has_mbyte = (enc_dbcs != 0 || enc_utf8);
586
Bram Moolenaar4f974752019-02-17 17:44:42 +0100587#if defined(MSWIN) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 enc_codepage = encname2codepage(p_enc);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000589 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590#endif
591
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100592 // Detect an encoding that uses latin1 characters.
Bram Moolenaar78622822005-08-23 21:00:13 +0000593 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
594 || STRCMP(p_enc, "iso-8859-15") == 0);
595
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 /*
597 * Set the function pointers.
598 */
599 if (enc_utf8)
600 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000601 mb_ptr2len = utfc_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000602 mb_ptr2len_len = utfc_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 mb_char2len = utf_char2len;
604 mb_char2bytes = utf_char2bytes;
605 mb_ptr2cells = utf_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000606 mb_ptr2cells_len = utf_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 mb_char2cells = utf_char2cells;
608 mb_off2cells = utf_off2cells;
609 mb_ptr2char = utf_ptr2char;
610 mb_head_off = utf_head_off;
611 }
612 else if (enc_dbcs != 0)
613 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000614 mb_ptr2len = dbcs_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000615 mb_ptr2len_len = dbcs_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 mb_char2len = dbcs_char2len;
617 mb_char2bytes = dbcs_char2bytes;
618 mb_ptr2cells = dbcs_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000619 mb_ptr2cells_len = dbcs_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 mb_char2cells = dbcs_char2cells;
621 mb_off2cells = dbcs_off2cells;
622 mb_ptr2char = dbcs_ptr2char;
623 mb_head_off = dbcs_head_off;
624 }
625 else
626 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000627 mb_ptr2len = latin_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000628 mb_ptr2len_len = latin_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 mb_char2len = latin_char2len;
630 mb_char2bytes = latin_char2bytes;
631 mb_ptr2cells = latin_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000632 mb_ptr2cells_len = latin_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 mb_char2cells = latin_char2cells;
634 mb_off2cells = latin_off2cells;
635 mb_ptr2char = latin_ptr2char;
636 mb_head_off = latin_head_off;
637 }
638
639 /*
640 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
641 */
642#ifdef LEN_FROM_CONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100643 // When 'encoding' is different from the current locale mblen() won't
644 // work. Use conversion to "utf-8" instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 vimconv.vc_type = CONV_NONE;
646 if (enc_dbcs)
647 {
648 p = enc_locale();
649 if (p == NULL || STRCMP(p, p_enc) != 0)
650 {
651 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
652 vimconv.vc_fail = TRUE;
653 }
654 vim_free(p);
655 }
656#endif
657
658 for (i = 0; i < 256; ++i)
659 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100660 // Our own function to reliably check the length of UTF-8 characters,
661 // independent of mblen().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 if (enc_utf8)
663 n = utf8len_tab[i];
664 else if (enc_dbcs == 0)
665 n = 1;
666 else
667 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100668#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100669 // enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
670 // CodePage identifier, which we can pass directly in to Windows
671 // API
Bram Moolenaarca058dc2014-01-14 13:26:21 +0100672 n = IsDBCSLeadByteEx(enc_dbcs, (WINBYTE)i) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673#else
Bram Moolenaard0573012017-10-28 21:11:06 +0200674# if defined(__amigaos4__) || defined(__ANDROID__) || \
675 !(defined(HAVE_MBLEN) || defined(X_LOCALE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 /*
677 * if mblen() is not available, character which MSB is turned on
678 * are treated as leading byte character. (note : This assumption
679 * is not always true.)
680 */
681 n = (i & 0x80) ? 2 : 1;
682# else
Bram Moolenaar9a920d82012-06-01 15:21:02 +0200683 char buf[MB_MAXBYTES + 1];
Bram Moolenaard0573012017-10-28 21:11:06 +0200684
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100685 if (i == NUL) // just in case mblen() can't handle ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 n = 1;
687 else
688 {
689 buf[0] = i;
690 buf[1] = 0;
Bram Moolenaard0573012017-10-28 21:11:06 +0200691# ifdef LEN_FROM_CONV
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 if (vimconv.vc_type != CONV_NONE)
693 {
694 /*
695 * string_convert() should fail when converting the first
696 * byte of a double-byte character.
697 */
698 p = string_convert(&vimconv, (char_u *)buf, NULL);
699 if (p != NULL)
700 {
701 vim_free(p);
702 n = 1;
703 }
704 else
705 n = 2;
706 }
707 else
Bram Moolenaard0573012017-10-28 21:11:06 +0200708# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 {
710 /*
711 * mblen() should return -1 for invalid (means the leading
712 * multibyte) character. However there are some platforms
713 * where mblen() returns 0 for invalid character.
714 * Therefore, following condition includes 0.
715 */
Bram Moolenaar42335f52018-09-13 15:33:43 +0200716 vim_ignored = mblen(NULL, 0); // First reset the state.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 if (mblen(buf, (size_t)1) <= 0)
718 n = 2;
719 else
720 n = 1;
721 }
722 }
723# endif
724#endif
725 }
726
727 mb_bytelen_tab[i] = n;
728 }
729
730#ifdef LEN_FROM_CONV
731 convert_setup(&vimconv, NULL, NULL);
732#endif
733
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100734 // The cell width depends on the type of multi-byte characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 (void)init_chartab();
736
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100737 // When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 screenalloc(FALSE);
739
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100740 // When using Unicode, set default for 'fileencodings'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +0200742 set_fencs_unicode();
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000743
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744#if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100745 // GNU gettext 0.10.37 supports this feature: set the codeset used for
746 // translated messages independently from the current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 (void)bind_textdomain_codeset(VIMPACKAGE,
748 enc_utf8 ? "utf-8" : (char *)p_enc);
749#endif
750
Bram Moolenaar4f974752019-02-17 17:44:42 +0100751#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100752 // When changing 'encoding' while starting up, then convert the command
753 // line arguments from the active codepage to 'encoding'.
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000754 if (starting != 0)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000755 fix_arg_enc();
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000756#endif
757
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100758 // Fire an autocommand to let people do custom font setup. This must be
759 // after Vim has been setup for the new encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000762#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100763 // Need to reload spell dictionaries
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000764 spell_reload();
765#endif
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 return NULL;
768}
769
770/*
771 * Return the size of the BOM for the current buffer:
772 * 0 - no BOM
773 * 2 - UCS-2 or UTF-16 BOM
774 * 4 - UCS-4 BOM
775 * 3 - UTF-8 BOM
776 */
777 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100778bomb_size(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779{
780 int n = 0;
781
782 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
783 {
784 if (*curbuf->b_p_fenc == NUL)
785 {
786 if (enc_utf8)
787 {
788 if (enc_unicode != 0)
789 n = enc_unicode;
790 else
791 n = 3;
792 }
793 }
794 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
795 n = 3;
796 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
797 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
798 n = 2;
799 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
800 n = 4;
801 }
802 return n;
803}
804
Bram Moolenaar113e1072019-01-20 15:30:40 +0100805#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806/*
Bram Moolenaar836082d2011-08-10 13:21:46 +0200807 * Remove all BOM from "s" by moving remaining text.
808 */
809 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100810remove_bom(char_u *s)
Bram Moolenaar836082d2011-08-10 13:21:46 +0200811{
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000812 if (!enc_utf8)
813 return;
Bram Moolenaar836082d2011-08-10 13:21:46 +0200814
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000815 char_u *p = s;
816
817 while ((p = vim_strbyte(p, 0xef)) != NULL)
818 {
819 if (p[1] == 0xbb && p[2] == 0xbf)
820 STRMOVE(p, p + 3);
821 else
822 ++p;
Bram Moolenaar836082d2011-08-10 13:21:46 +0200823 }
824}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100825#endif
Bram Moolenaar836082d2011-08-10 13:21:46 +0200826
827/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 * Get class of pointer:
829 * 0 for blank or NUL
830 * 1 for punctuation
831 * 2 for an (ASCII) word character
832 * >2 for other word characters
833 */
834 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100835mb_get_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
Bram Moolenaarf813a182013-01-30 13:59:37 +0100837 return mb_get_class_buf(p, curbuf);
838}
839
840 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100841mb_get_class_buf(char_u *p, buf_T *buf)
Bram Moolenaarf813a182013-01-30 13:59:37 +0100842{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 if (MB_BYTE2LEN(p[0]) == 1)
844 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100845 if (p[0] == NUL || VIM_ISWHITE(p[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 return 0;
Bram Moolenaarf813a182013-01-30 13:59:37 +0100847 if (vim_iswordc_buf(p[0], buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 return 2;
849 return 1;
850 }
851 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
852 return dbcs_class(p[0], p[1]);
853 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100854 return utf_class_buf(utf_ptr2char(p), buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 return 0;
856}
857
858/*
859 * Get class of a double-byte character. This always returns 3 or bigger.
860 * TODO: Should return 1 for punctuation.
861 */
862 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100863dbcs_class(unsigned lead, unsigned trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864{
865 switch (enc_dbcs)
866 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100867 // please add classify routine for your language in here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100869 case DBCS_JPNU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 case DBCS_JPN:
871 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100872 // JIS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 unsigned char lb = lead;
874 unsigned char tb = trail;
875
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100876 // convert process code to JIS
Bram Moolenaar4f974752019-02-17 17:44:42 +0100877# if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100878 // process code is SJIS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 if (lb <= 0x9f)
880 lb = (lb - 0x81) * 2 + 0x21;
881 else
882 lb = (lb - 0xc1) * 2 + 0x21;
883 if (tb <= 0x7e)
884 tb -= 0x1f;
885 else if (tb <= 0x9e)
886 tb -= 0x20;
887 else
888 {
889 tb -= 0x7e;
890 lb += 1;
891 }
892# else
893 /*
894 * XXX: Code page identification can not use with all
895 * system! So, some other encoding information
896 * will be needed.
897 * In japanese: SJIS,EUC,UNICODE,(JIS)
898 * Note that JIS-code system don't use as
899 * process code in most system because it uses
900 * escape sequences(JIS is context depend encoding).
901 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100902 // assume process code is JAPANESE-EUC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 lb &= 0x7f;
904 tb &= 0x7f;
905# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100906 // exceptions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 switch (lb << 8 | tb)
908 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100909 case 0x2121: // ZENKAKU space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100911 case 0x2122: // TOU-TEN (Japanese comma)
912 case 0x2123: // KU-TEN (Japanese period)
913 case 0x2124: // ZENKAKU comma
914 case 0x2125: // ZENKAKU period
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100916 case 0x213c: // prolongedsound handled as KATAKANA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 return 13;
918 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100919 // sieved by KU code
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 switch (lb)
921 {
922 case 0x21:
923 case 0x22:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100924 // special symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 return 10;
926 case 0x23:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100927 // alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 return 11;
929 case 0x24:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100930 // hiragana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 return 12;
932 case 0x25:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100933 // katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 return 13;
935 case 0x26:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100936 // greek
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 return 14;
938 case 0x27:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100939 // russian
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 return 15;
941 case 0x28:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100942 // lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 return 16;
944 default:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100945 // kanji
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 return 17;
947 }
948 }
949
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100950 case DBCS_KORU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 case DBCS_KOR:
952 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100953 // KS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 unsigned char c1 = lead;
955 unsigned char c2 = trail;
956
957 /*
958 * 20 : Hangul
959 * 21 : Hanja
960 * 22 : Symbols
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100961 * 23 : Alphanumeric/Roman Letter (Full width)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 * 24 : Hangul Letter(Alphabet)
963 * 25 : Roman Numeral/Greek Letter
964 * 26 : Box Drawings
965 * 27 : Unit Symbols
966 * 28 : Circled/Parenthesized Letter
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200967 * 29 : Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 * 30 : Cyrillic Letter
969 */
970
971 if (c1 >= 0xB0 && c1 <= 0xC8)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100972 // Hangul
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 return 20;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100974#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 else if (c1 <= 0xA0 || c2 <= 0xA0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100976 // Extended Hangul Region : MS UHC(Unified Hangul Code)
977 // c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
978 // c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 return 20;
980#endif
981
982 else if (c1 >= 0xCA && c1 <= 0xFD)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100983 // Hanja
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 return 21;
985 else switch (c1)
986 {
987 case 0xA1:
988 case 0xA2:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100989 // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 return 22;
991 case 0xA3:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100992 // Alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 return 23;
994 case 0xA4:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100995 // Hangul Letter(Alphabet)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 return 24;
997 case 0xA5:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100998 // Roman Numeral/Greek Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 return 25;
1000 case 0xA6:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001001 // Box Drawings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 return 26;
1003 case 0xA7:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001004 // Unit Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 return 27;
1006 case 0xA8:
1007 case 0xA9:
1008 if (c2 <= 0xAF)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001009 return 25; // Roman Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 else if (c2 >= 0xF6)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001011 return 22; // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001013 // Circled/Parenthesized Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 return 28;
1015 case 0xAA:
1016 case 0xAB:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001017 // Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 return 29;
1019 case 0xAC:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001020 // Cyrillic Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 return 30;
1022 }
1023 }
1024 default:
1025 break;
1026 }
1027 return 3;
1028}
1029
1030/*
1031 * mb_char2len() function pointer.
1032 * Return length in bytes of character "c".
1033 * Returns 1 for a single-byte character.
1034 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001036latin_char2len(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037{
1038 return 1;
1039}
1040
1041 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001042dbcs_char2len(
1043 int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044{
1045 if (c >= 0x100)
1046 return 2;
1047 return 1;
1048}
1049
1050/*
1051 * mb_char2bytes() function pointer.
1052 * Convert a character to its bytes.
1053 * Returns the length in bytes.
1054 */
1055 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001056latin_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057{
1058 buf[0] = c;
1059 return 1;
1060}
1061
1062 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001063dbcs_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
1065 if (c >= 0x100)
1066 {
1067 buf[0] = (unsigned)c >> 8;
1068 buf[1] = c;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001069 // Never use a NUL byte, it causes lots of trouble. It's an invalid
1070 // character anyway.
Bram Moolenaar217ad922005-03-20 22:37:15 +00001071 if (buf[1] == NUL)
1072 buf[1] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 return 2;
1074 }
1075 buf[0] = c;
1076 return 1;
1077}
1078
1079/*
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001080 * Get byte length of character at "*p". Returns zero when "*p" is NUL.
1081 * Used for mb_ptr2len() when 'encoding' latin.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 */
1083 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001084latin_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085{
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001086 return *p == NUL ? 0 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087}
1088
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001089/*
1090 * Get byte length of character at "*p". Returns zero when "*p" is NUL.
1091 * Used for mb_ptr2len() when 'encoding' DBCS.
1092 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 static int
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001094dbcs_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095{
1096 int len;
1097
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001098 if (*p == NUL)
1099 return 0;
1100
1101 // if the second byte is missing the length is 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 len = MB_BYTE2LEN(*p);
1103 if (len == 2 && p[1] == NUL)
1104 len = 1;
1105 return len;
1106}
1107
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001108/*
1109 * mb_ptr2len_len() function pointer.
1110 * Like mb_ptr2len(), but limit to read "size" bytes.
1111 * Returns 0 for an empty string.
1112 * Returns 1 for an illegal char or an incomplete byte sequence.
1113 */
1114 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001115latin_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001116{
1117 if (size < 1 || *p == NUL)
1118 return 0;
1119 return 1;
1120}
1121
1122 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001123dbcs_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001124{
1125 int len;
1126
1127 if (size < 1 || *p == NUL)
1128 return 0;
1129 if (size == 1)
1130 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001131 // Check that second byte is not missing.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001132 len = MB_BYTE2LEN(*p);
1133 if (len == 2 && p[1] == NUL)
1134 len = 1;
1135 return len;
1136}
1137
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138struct interval
1139{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01001140 long first;
1141 long last;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143
1144/*
1145 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1146 */
1147 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001148intable(struct interval *table, size_t size, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149{
1150 int mid, bot, top;
1151
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001152 // first quick check for Latin1 etc. characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 if (c < table[0].first)
1154 return FALSE;
1155
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001156 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 bot = 0;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001158 top = (int)(size / sizeof(struct interval) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 while (top >= bot)
1160 {
1161 mid = (bot + top) / 2;
1162 if (table[mid].last < c)
1163 bot = mid + 1;
1164 else if (table[mid].first > c)
1165 top = mid - 1;
1166 else
1167 return TRUE;
1168 }
1169 return FALSE;
1170}
1171
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001172// Sorted list of non-overlapping intervals of East Asian Ambiguous
1173// characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarcb070082016-04-02 22:14:51 +02001174static struct interval ambiguous[] =
1175{
1176 {0x00a1, 0x00a1},
1177 {0x00a4, 0x00a4},
1178 {0x00a7, 0x00a8},
1179 {0x00aa, 0x00aa},
1180 {0x00ad, 0x00ae},
1181 {0x00b0, 0x00b4},
1182 {0x00b6, 0x00ba},
1183 {0x00bc, 0x00bf},
1184 {0x00c6, 0x00c6},
1185 {0x00d0, 0x00d0},
1186 {0x00d7, 0x00d8},
1187 {0x00de, 0x00e1},
1188 {0x00e6, 0x00e6},
1189 {0x00e8, 0x00ea},
1190 {0x00ec, 0x00ed},
1191 {0x00f0, 0x00f0},
1192 {0x00f2, 0x00f3},
1193 {0x00f7, 0x00fa},
1194 {0x00fc, 0x00fc},
1195 {0x00fe, 0x00fe},
1196 {0x0101, 0x0101},
1197 {0x0111, 0x0111},
1198 {0x0113, 0x0113},
1199 {0x011b, 0x011b},
1200 {0x0126, 0x0127},
1201 {0x012b, 0x012b},
1202 {0x0131, 0x0133},
1203 {0x0138, 0x0138},
1204 {0x013f, 0x0142},
1205 {0x0144, 0x0144},
1206 {0x0148, 0x014b},
1207 {0x014d, 0x014d},
1208 {0x0152, 0x0153},
1209 {0x0166, 0x0167},
1210 {0x016b, 0x016b},
1211 {0x01ce, 0x01ce},
1212 {0x01d0, 0x01d0},
1213 {0x01d2, 0x01d2},
1214 {0x01d4, 0x01d4},
1215 {0x01d6, 0x01d6},
1216 {0x01d8, 0x01d8},
1217 {0x01da, 0x01da},
1218 {0x01dc, 0x01dc},
1219 {0x0251, 0x0251},
1220 {0x0261, 0x0261},
1221 {0x02c4, 0x02c4},
1222 {0x02c7, 0x02c7},
1223 {0x02c9, 0x02cb},
1224 {0x02cd, 0x02cd},
1225 {0x02d0, 0x02d0},
1226 {0x02d8, 0x02db},
1227 {0x02dd, 0x02dd},
1228 {0x02df, 0x02df},
1229 {0x0300, 0x036f},
1230 {0x0391, 0x03a1},
1231 {0x03a3, 0x03a9},
1232 {0x03b1, 0x03c1},
1233 {0x03c3, 0x03c9},
1234 {0x0401, 0x0401},
1235 {0x0410, 0x044f},
1236 {0x0451, 0x0451},
1237 {0x2010, 0x2010},
1238 {0x2013, 0x2016},
1239 {0x2018, 0x2019},
1240 {0x201c, 0x201d},
1241 {0x2020, 0x2022},
1242 {0x2024, 0x2027},
1243 {0x2030, 0x2030},
1244 {0x2032, 0x2033},
1245 {0x2035, 0x2035},
1246 {0x203b, 0x203b},
1247 {0x203e, 0x203e},
1248 {0x2074, 0x2074},
1249 {0x207f, 0x207f},
1250 {0x2081, 0x2084},
1251 {0x20ac, 0x20ac},
1252 {0x2103, 0x2103},
1253 {0x2105, 0x2105},
1254 {0x2109, 0x2109},
1255 {0x2113, 0x2113},
1256 {0x2116, 0x2116},
1257 {0x2121, 0x2122},
1258 {0x2126, 0x2126},
1259 {0x212b, 0x212b},
1260 {0x2153, 0x2154},
1261 {0x215b, 0x215e},
1262 {0x2160, 0x216b},
1263 {0x2170, 0x2179},
1264 {0x2189, 0x2189},
1265 {0x2190, 0x2199},
1266 {0x21b8, 0x21b9},
1267 {0x21d2, 0x21d2},
1268 {0x21d4, 0x21d4},
1269 {0x21e7, 0x21e7},
1270 {0x2200, 0x2200},
1271 {0x2202, 0x2203},
1272 {0x2207, 0x2208},
1273 {0x220b, 0x220b},
1274 {0x220f, 0x220f},
1275 {0x2211, 0x2211},
1276 {0x2215, 0x2215},
1277 {0x221a, 0x221a},
1278 {0x221d, 0x2220},
1279 {0x2223, 0x2223},
1280 {0x2225, 0x2225},
1281 {0x2227, 0x222c},
1282 {0x222e, 0x222e},
1283 {0x2234, 0x2237},
1284 {0x223c, 0x223d},
1285 {0x2248, 0x2248},
1286 {0x224c, 0x224c},
1287 {0x2252, 0x2252},
1288 {0x2260, 0x2261},
1289 {0x2264, 0x2267},
1290 {0x226a, 0x226b},
1291 {0x226e, 0x226f},
1292 {0x2282, 0x2283},
1293 {0x2286, 0x2287},
1294 {0x2295, 0x2295},
1295 {0x2299, 0x2299},
1296 {0x22a5, 0x22a5},
1297 {0x22bf, 0x22bf},
1298 {0x2312, 0x2312},
1299 {0x2460, 0x24e9},
1300 {0x24eb, 0x254b},
1301 {0x2550, 0x2573},
1302 {0x2580, 0x258f},
1303 {0x2592, 0x2595},
1304 {0x25a0, 0x25a1},
1305 {0x25a3, 0x25a9},
1306 {0x25b2, 0x25b3},
1307 {0x25b6, 0x25b7},
1308 {0x25bc, 0x25bd},
1309 {0x25c0, 0x25c1},
1310 {0x25c6, 0x25c8},
1311 {0x25cb, 0x25cb},
1312 {0x25ce, 0x25d1},
1313 {0x25e2, 0x25e5},
1314 {0x25ef, 0x25ef},
1315 {0x2605, 0x2606},
1316 {0x2609, 0x2609},
1317 {0x260e, 0x260f},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001318 {0x261c, 0x261c},
1319 {0x261e, 0x261e},
1320 {0x2640, 0x2640},
1321 {0x2642, 0x2642},
1322 {0x2660, 0x2661},
1323 {0x2663, 0x2665},
1324 {0x2667, 0x266a},
1325 {0x266c, 0x266d},
1326 {0x266f, 0x266f},
1327 {0x269e, 0x269f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001328 {0x26bf, 0x26bf},
1329 {0x26c6, 0x26cd},
1330 {0x26cf, 0x26d3},
1331 {0x26d5, 0x26e1},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001332 {0x26e3, 0x26e3},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001333 {0x26e8, 0x26e9},
1334 {0x26eb, 0x26f1},
1335 {0x26f4, 0x26f4},
1336 {0x26f6, 0x26f9},
1337 {0x26fb, 0x26fc},
1338 {0x26fe, 0x26ff},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001339 {0x273d, 0x273d},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001340 {0x2776, 0x277f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001341 {0x2b56, 0x2b59},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001342 {0x3248, 0x324f},
1343 {0xe000, 0xf8ff},
1344 {0xfe00, 0xfe0f},
1345 {0xfffd, 0xfffd},
1346 {0x1f100, 0x1f10a},
1347 {0x1f110, 0x1f12d},
1348 {0x1f130, 0x1f169},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001349 {0x1f170, 0x1f18d},
1350 {0x1f18f, 0x1f190},
1351 {0x1f19b, 0x1f1ac},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001352 {0xe0100, 0xe01ef},
1353 {0xf0000, 0xffffd},
1354 {0x100000, 0x10fffd}
1355};
1356
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001357#if defined(FEAT_TERMINAL) || defined(PROTO)
1358/*
1359 * utf_char2cells() with different argument type for libvterm.
1360 */
1361 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02001362utf_uint2cells(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001363{
Bram Moolenaar6daeef12017-10-15 22:56:49 +02001364 if (c >= 0x100 && utf_iscomposing((int)c))
1365 return 0;
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001366 return utf_char2cells((int)c);
1367}
1368#endif
1369
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370/*
1371 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1372 * Returns 4 or 6 for an unprintable character.
1373 * Is only correct for characters >= 0x80.
1374 * When p_ambw is "double", return 2 for a character with East Asian Width
1375 * class 'A'(mbiguous).
1376 */
1377 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001378utf_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001380 // Sorted list of non-overlapping intervals of East Asian double width
1381 // characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001382 static struct interval doublewidth[] =
1383 {
1384 {0x1100, 0x115f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001385 {0x231a, 0x231b},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001386 {0x2329, 0x232a},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001387 {0x23e9, 0x23ec},
1388 {0x23f0, 0x23f0},
1389 {0x23f3, 0x23f3},
1390 {0x25fd, 0x25fe},
1391 {0x2614, 0x2615},
1392 {0x2648, 0x2653},
1393 {0x267f, 0x267f},
1394 {0x2693, 0x2693},
1395 {0x26a1, 0x26a1},
1396 {0x26aa, 0x26ab},
1397 {0x26bd, 0x26be},
1398 {0x26c4, 0x26c5},
1399 {0x26ce, 0x26ce},
1400 {0x26d4, 0x26d4},
1401 {0x26ea, 0x26ea},
Christian Brabandtd8872972021-06-27 21:30:14 +02001402 {0x26f2, 0x26f3},
1403 {0x26f5, 0x26f5},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001404 {0x26fa, 0x26fa},
1405 {0x26fd, 0x26fd},
1406 {0x2705, 0x2705},
1407 {0x270a, 0x270b},
1408 {0x2728, 0x2728},
1409 {0x274c, 0x274c},
1410 {0x274e, 0x274e},
1411 {0x2753, 0x2755},
1412 {0x2757, 0x2757},
1413 {0x2795, 0x2797},
1414 {0x27b0, 0x27b0},
1415 {0x27bf, 0x27bf},
1416 {0x2b1b, 0x2b1c},
1417 {0x2b50, 0x2b50},
1418 {0x2b55, 0x2b55},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001419 {0x2e80, 0x2e99},
1420 {0x2e9b, 0x2ef3},
1421 {0x2f00, 0x2fd5},
Christian Brabandta634b922023-10-11 21:24:49 +02001422 {0x2ff0, 0x303e},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001423 {0x3041, 0x3096},
Bram Moolenaarea676722015-01-14 17:40:09 +01001424 {0x3099, 0x30ff},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02001425 {0x3105, 0x312f},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001426 {0x3131, 0x318e},
Christian Brabandtd8872972021-06-27 21:30:14 +02001427 {0x3190, 0x31e3},
Christian Brabandta634b922023-10-11 21:24:49 +02001428 {0x31ef, 0x321e},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001429 {0x3220, 0x3247},
Bram Moolenaar6d718c42019-06-05 22:46:13 +02001430 {0x3250, 0x4dbf},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001431 {0x4e00, 0xa48c},
1432 {0xa490, 0xa4c6},
1433 {0xa960, 0xa97c},
1434 {0xac00, 0xd7a3},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001435 {0xf900, 0xfaff},
1436 {0xfe10, 0xfe19},
1437 {0xfe30, 0xfe52},
1438 {0xfe54, 0xfe66},
1439 {0xfe68, 0xfe6b},
1440 {0xff01, 0xff60},
1441 {0xffe0, 0xffe6},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001442 {0x16fe0, 0x16fe3},
Christian Brabandtd8872972021-06-27 21:30:14 +02001443 {0x16ff0, 0x16ff1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001444 {0x17000, 0x187f7},
Christian Brabandtd8872972021-06-27 21:30:14 +02001445 {0x18800, 0x18cd5},
1446 {0x18d00, 0x18d08},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01001447 {0x1aff0, 0x1aff3},
1448 {0x1aff5, 0x1affb},
1449 {0x1affd, 0x1affe},
1450 {0x1b000, 0x1b122},
1451 {0x1b132, 0x1b132},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001452 {0x1b150, 0x1b152},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01001453 {0x1b155, 0x1b155},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001454 {0x1b164, 0x1b167},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001455 {0x1b170, 0x1b2fb},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001456 {0x1f004, 0x1f004},
1457 {0x1f0cf, 0x1f0cf},
1458 {0x1f18e, 0x1f18e},
1459 {0x1f191, 0x1f19a},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001460 {0x1f200, 0x1f202},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001461 {0x1f210, 0x1f23b},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001462 {0x1f240, 0x1f248},
1463 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001464 {0x1f260, 0x1f265},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001465 {0x1f300, 0x1f320},
1466 {0x1f32d, 0x1f335},
1467 {0x1f337, 0x1f37c},
1468 {0x1f37e, 0x1f393},
1469 {0x1f3a0, 0x1f3ca},
1470 {0x1f3cf, 0x1f3d3},
1471 {0x1f3e0, 0x1f3f0},
1472 {0x1f3f4, 0x1f3f4},
1473 {0x1f3f8, 0x1f43e},
1474 {0x1f440, 0x1f440},
1475 {0x1f442, 0x1f4fc},
1476 {0x1f4ff, 0x1f53d},
1477 {0x1f54b, 0x1f54e},
1478 {0x1f550, 0x1f567},
1479 {0x1f57a, 0x1f57a},
1480 {0x1f595, 0x1f596},
1481 {0x1f5a4, 0x1f5a4},
1482 {0x1f5fb, 0x1f64f},
1483 {0x1f680, 0x1f6c5},
1484 {0x1f6cc, 0x1f6cc},
1485 {0x1f6d0, 0x1f6d2},
Christian Brabandtd8872972021-06-27 21:30:14 +02001486 {0x1f6d5, 0x1f6d7},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01001487 {0x1f6dc, 0x1f6df},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001488 {0x1f6eb, 0x1f6ec},
Christian Brabandtd8872972021-06-27 21:30:14 +02001489 {0x1f6f4, 0x1f6fc},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001490 {0x1f7e0, 0x1f7eb},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01001491 {0x1f7f0, 0x1f7f0},
Christian Brabandtd8872972021-06-27 21:30:14 +02001492 {0x1f90c, 0x1f93a},
1493 {0x1f93c, 0x1f945},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01001494 {0x1f947, 0x1f9ff},
1495 {0x1fa70, 0x1fa7c},
1496 {0x1fa80, 0x1fa88},
1497 {0x1fa90, 0x1fabd},
1498 {0x1fabf, 0x1fac5},
1499 {0x1face, 0x1fadb},
1500 {0x1fae0, 0x1fae8},
1501 {0x1faf0, 0x1faf8},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001502 {0x20000, 0x2fffd},
1503 {0x30000, 0x3fffd}
1504 };
Bram Moolenaarea676722015-01-14 17:40:09 +01001505
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001506 // Sorted list of non-overlapping intervals of Emoji characters that don't
1507 // have ambiguous or double width,
1508 // based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001509 static struct interval emoji_wide[] =
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001510 {
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001511 {0x23ed, 0x23ef},
1512 {0x23f1, 0x23f2},
1513 {0x23f8, 0x23fa},
1514 {0x24c2, 0x24c2},
1515 {0x261d, 0x261d},
1516 {0x26c8, 0x26c8},
1517 {0x26cf, 0x26cf},
1518 {0x26d1, 0x26d1},
1519 {0x26d3, 0x26d3},
1520 {0x26e9, 0x26e9},
1521 {0x26f0, 0x26f1},
1522 {0x26f7, 0x26f9},
1523 {0x270c, 0x270d},
1524 {0x2934, 0x2935},
1525 {0x1f170, 0x1f189},
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001526 {0x1f1e6, 0x1f1ff},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001527 {0x1f321, 0x1f321},
1528 {0x1f324, 0x1f32c},
1529 {0x1f336, 0x1f336},
1530 {0x1f37d, 0x1f37d},
1531 {0x1f396, 0x1f397},
1532 {0x1f399, 0x1f39b},
1533 {0x1f39e, 0x1f39f},
1534 {0x1f3cb, 0x1f3ce},
1535 {0x1f3d4, 0x1f3df},
1536 {0x1f3f3, 0x1f3f5},
1537 {0x1f3f7, 0x1f3f7},
1538 {0x1f43f, 0x1f43f},
1539 {0x1f441, 0x1f441},
1540 {0x1f4fd, 0x1f4fd},
1541 {0x1f549, 0x1f54a},
1542 {0x1f56f, 0x1f570},
1543 {0x1f573, 0x1f579},
1544 {0x1f587, 0x1f587},
1545 {0x1f58a, 0x1f58d},
1546 {0x1f590, 0x1f590},
1547 {0x1f5a5, 0x1f5a5},
1548 {0x1f5a8, 0x1f5a8},
1549 {0x1f5b1, 0x1f5b2},
1550 {0x1f5bc, 0x1f5bc},
1551 {0x1f5c2, 0x1f5c4},
1552 {0x1f5d1, 0x1f5d3},
1553 {0x1f5dc, 0x1f5de},
1554 {0x1f5e1, 0x1f5e1},
1555 {0x1f5e3, 0x1f5e3},
1556 {0x1f5e8, 0x1f5e8},
1557 {0x1f5ef, 0x1f5ef},
1558 {0x1f5f3, 0x1f5f3},
1559 {0x1f5fa, 0x1f5fa},
1560 {0x1f6cb, 0x1f6cf},
1561 {0x1f6e0, 0x1f6e5},
1562 {0x1f6e9, 0x1f6e9},
1563 {0x1f6f0, 0x1f6f0},
1564 {0x1f6f3, 0x1f6f3}
Bram Moolenaar8dddc1f2021-04-07 19:00:25 +02001565
1566#ifdef MACOS_X
Yee Cheng Chin0e364c92022-11-07 11:05:52 +00001567 // Include SF Symbols 4 characters, which should be rendered as
1568 // double-width. SF Symbols is an Apple-specific set of symbols and
1569 // icons for use in Apple operating systems. They are included as
1570 // glyphs as part of the default San Francisco fonts shipped with
1571 // macOS. The current version is SF Symbols 4.
1572 //
1573 // These Apple-specific glyphs are not part of standard Unicode, and
1574 // all of them are in the Supplementary Private Use Area-B range. The
1575 // exact range was determined by downloading the 'SF Symbols 4' app
1576 // from Apple (https://developer.apple.com/sf-symbols/), and then
1577 // selecting all symbols, copying them out, and inspecting the unicode
1578 // values of them.
1579 //
1580 // Note that these symbols are of varying widths, as they are symbols
Yegappan Lakshmanan14113fd2023-03-07 17:13:51 +00001581 // representing different things ranging from a simple gear icon to an
Yee Cheng Chin0e364c92022-11-07 11:05:52 +00001582 // airplane. Some of them are in fact wider than double-width, but Vim
1583 // doesn't support non-fixed-width font, and tagging them as
1584 // double-width is the best way to handle them.
1585 //
1586 // Also see https://en.wikipedia.org/wiki/San_Francisco_(sans-serif_typeface)#SF_Symbols
1587 , {0x100000, 0x1018c7}
Bram Moolenaar8dddc1f2021-04-07 19:00:25 +02001588#endif
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001589 };
1590
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001591#ifdef FEAT_EVAL
K.Takata71933232023-01-20 16:00:55 +00001592 // Use the value from setcellwidths() at 0x80 and higher, unless the
1593 // character is not printable.
1594 if (c >= 0x80 &&
1595# ifdef USE_WCHAR_FUNCTIONS
1596 wcwidth(c) >= 1 &&
1597# endif
1598 vim_isprintc(c))
1599 {
1600 int n = cw_value(c);
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001601 if (n != 0)
1602 return n;
K.Takata71933232023-01-20 16:00:55 +00001603 }
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001604#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001605
K.Takata71933232023-01-20 16:00:55 +00001606 if (c >= 0x100)
1607 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608#ifdef USE_WCHAR_FUNCTIONS
K.Takata71933232023-01-20 16:00:55 +00001609 int n;
1610
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 /*
1612 * Assume the library function wcwidth() works better than our own
1613 * stuff. It should return 1 for ambiguous width chars!
1614 */
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001615 n = wcwidth(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616
1617 if (n < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001618 return 6; // unprintable, displays <xxxx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 if (n > 1)
1620 return n;
1621#else
1622 if (!utf_printable(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001623 return 6; // unprintable, displays <xxxx>
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001624 if (intable(doublewidth, sizeof(doublewidth), c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 return 2;
1626#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001627 if (p_emoji && intable(emoji_wide, sizeof(emoji_wide), c))
Bram Moolenaar3848e002016-03-19 18:42:29 +01001628 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 }
1630
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001631 // Characters below 0x100 are influenced by 'isprint' option
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 else if (c >= 0x80 && !vim_isprintc(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001633 return 4; // unprintable, displays <xx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634
1635 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1636 return 2;
1637
1638 return 1;
1639}
1640
1641/*
1642 * mb_ptr2cells() function pointer.
1643 * Return the number of display cells character at "*p" occupies.
1644 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1645 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001647latin_ptr2cells(char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648{
1649 return 1;
1650}
1651
1652 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001653utf_ptr2cells(
1654 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655{
1656 int c;
1657
Bram Moolenaar02c037a2020-08-30 19:26:45 +02001658 // Need to convert to a character number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 if (*p >= 0x80)
1660 {
1661 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001662 // An illegal byte is displayed as <xx>.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001663 if (utf_ptr2len(p) == 1 || c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001665 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 if (c < 0x80)
1667 return char2cells(c);
1668 return utf_char2cells(c);
1669 }
1670 return 1;
1671}
1672
1673 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001674dbcs_ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001676 // Number of cells is equal to number of bytes, except for euc-jp when
1677 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1679 return 1;
1680 return MB_BYTE2LEN(*p);
1681}
1682
1683/*
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001684 * mb_ptr2cells_len() function pointer.
1685 * Like mb_ptr2cells(), but limit string length to "size".
1686 * For an empty string or truncated character returns 1.
1687 */
1688 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001689latin_ptr2cells_len(char_u *p UNUSED, int size UNUSED)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001690{
1691 return 1;
1692}
1693
1694 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001695utf_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001696{
1697 int c;
1698
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001699 // Need to convert to a wide character.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001700 if (size > 0 && *p >= 0x80)
1701 {
1702 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001703 return 1; // truncated
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001704 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001705 // An illegal byte is displayed as <xx>.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001706 if (utf_ptr2len(p) == 1 || c == NUL)
1707 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001708 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001709 if (c < 0x80)
1710 return char2cells(c);
1711 return utf_char2cells(c);
1712 }
1713 return 1;
1714}
1715
1716 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001717dbcs_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001718{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001719 // Number of cells is equal to number of bytes, except for euc-jp when
1720 // the first byte is 0x8e.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001721 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1722 return 1;
1723 return MB_BYTE2LEN(*p);
1724}
1725
1726/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 * mb_char2cells() function pointer.
1728 * Return the number of display cells character "c" occupies.
1729 * Only takes care of multi-byte chars, not "^C" and such.
1730 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001732latin_char2cells(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733{
1734 return 1;
1735}
1736
1737 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001738dbcs_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001740 // Number of cells is equal to number of bytes, except for euc-jp when
1741 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1743 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001744 // use the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 return MB_BYTE2LEN((unsigned)c >> 8);
1746}
1747
1748/*
Bram Moolenaar72597a52010-07-18 15:31:08 +02001749 * Return the number of cells occupied by string "p".
1750 * Stop at a NUL character. When "len" >= 0 stop at character "p[len]".
1751 */
1752 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001753mb_string2cells(char_u *p, int len)
Bram Moolenaar72597a52010-07-18 15:31:08 +02001754{
1755 int i;
1756 int clen = 0;
1757
1758 for (i = 0; (len < 0 || i < len) && p[i] != NUL; i += (*mb_ptr2len)(p + i))
1759 clen += (*mb_ptr2cells)(p + i);
1760 return clen;
1761}
1762
1763/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 * mb_off2cells() function pointer.
1765 * Return number of display cells for char at ScreenLines[off].
Bram Moolenaar367329b2007-08-30 11:53:22 +00001766 * We make sure that the offset used is less than "max_off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001769latin_off2cells(unsigned off UNUSED, unsigned max_off UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770{
1771 return 1;
1772}
1773
1774 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001775dbcs_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001777 // never check beyond end of the line
Bram Moolenaar367329b2007-08-30 11:53:22 +00001778 if (off >= max_off)
1779 return 1;
1780
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001781 // Number of cells is equal to number of bytes, except for euc-jp when
1782 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1784 return 1;
1785 return MB_BYTE2LEN(ScreenLines[off]);
1786}
1787
1788 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001789utf_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790{
Bram Moolenaar367329b2007-08-30 11:53:22 +00001791 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792}
1793
1794/*
1795 * mb_ptr2char() function pointer.
1796 * Convert a byte sequence into a character.
1797 */
1798 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001799latin_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800{
1801 return *p;
1802}
1803
1804 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001805dbcs_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806{
1807 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1808 return (p[0] << 8) + p[1];
1809 return *p;
1810}
1811
1812/*
Bram Moolenaar02c037a2020-08-30 19:26:45 +02001813 * Convert a UTF-8 byte sequence to a character number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 * If the sequence is illegal or truncated by a NUL the first byte is
1815 * returned.
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01001816 * For an overlong sequence this may return zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 * Does not include composing characters, of course.
1818 */
1819 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001820utf_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821{
1822 int len;
1823
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001824 if (p[0] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 return p[0];
1826
Bram Moolenaar24397332009-12-02 14:02:39 +00001827 len = utf8len_tab_zero[p[0]];
Bram Moolenaar89bf0922008-06-29 14:16:06 +00001828 if (len > 1 && (p[1] & 0xc0) == 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 {
1830 if (len == 2)
1831 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1832 if ((p[2] & 0xc0) == 0x80)
1833 {
1834 if (len == 3)
1835 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1836 + (p[2] & 0x3f);
1837 if ((p[3] & 0xc0) == 0x80)
1838 {
1839 if (len == 4)
1840 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1841 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1842 if ((p[4] & 0xc0) == 0x80)
1843 {
1844 if (len == 5)
1845 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1846 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1847 + (p[4] & 0x3f);
1848 if ((p[5] & 0xc0) == 0x80 && len == 6)
1849 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1850 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1851 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1852 }
1853 }
1854 }
1855 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001856 // Illegal value, just return the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 return p[0];
1858}
1859
1860/*
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001861 * Convert a UTF-8 byte sequence to a wide character.
1862 * String is assumed to be terminated by NUL or after "n" bytes, whichever
1863 * comes first.
1864 * The function is safe in the sense that it never accesses memory beyond the
1865 * first "n" bytes of "s".
1866 *
1867 * On success, returns decoded codepoint, advances "s" to the beginning of
1868 * next character and decreases "n" accordingly.
1869 *
1870 * If end of string was reached, returns 0 and, if "n" > 0, advances "s" past
1871 * NUL byte.
1872 *
1873 * If byte sequence is illegal or incomplete, returns -1 and does not advance
1874 * "s".
1875 */
1876 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001877utf_safe_read_char_adv(char_u **s, size_t *n)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001878{
1879 int c, k;
1880
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001881 if (*n == 0) // end of buffer
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001882 return 0;
1883
1884 k = utf8len_tab_zero[**s];
1885
1886 if (k == 1)
1887 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001888 // ASCII character or NUL
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001889 (*n)--;
1890 return *(*s)++;
1891 }
1892
1893 if ((size_t)k <= *n)
1894 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001895 // We have a multibyte sequence and it isn't truncated by buffer
1896 // limits so utf_ptr2char() is safe to use. Or the first byte is
1897 // illegal (k=0), and it's also safe to use utf_ptr2char().
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001898 c = utf_ptr2char(*s);
1899
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001900 // On failure, utf_ptr2char() returns the first byte, so here we
1901 // check equality with the first byte. The only non-ASCII character
1902 // which equals the first byte of its own UTF-8 representation is
1903 // U+00C3 (UTF-8: 0xC3 0x83), so need to check that special case too.
1904 // It's safe even if n=1, else we would have k=2 > n.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001905 if (c != (int)(**s) || (c == 0xC3 && (*s)[1] == 0x83))
1906 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001907 // byte sequence was successfully decoded
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001908 *s += k;
1909 *n -= k;
1910 return c;
1911 }
1912 }
1913
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001914 // byte sequence is incomplete or illegal
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001915 return -1;
1916}
1917
1918/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 * Get character at **pp and advance *pp to the next character.
1920 * Note: composing characters are skipped!
1921 */
1922 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001923mb_ptr2char_adv(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924{
1925 int c;
1926
1927 c = (*mb_ptr2char)(*pp);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001928 *pp += (*mb_ptr2len)(*pp);
1929 return c;
1930}
1931
1932/*
1933 * Get character at **pp and advance *pp to the next character.
1934 * Note: composing characters are returned as separate characters.
1935 */
1936 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001937mb_cptr2char_adv(char_u **pp)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001938{
1939 int c;
1940
1941 c = (*mb_ptr2char)(*pp);
1942 if (enc_utf8)
1943 *pp += utf_ptr2len(*pp);
1944 else
1945 *pp += (*mb_ptr2len)(*pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 return c;
1947}
1948
1949#if defined(FEAT_ARABIC) || defined(PROTO)
1950/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 * Check if the character pointed to by "p2" is a composing character when it
1952 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1953 * behaves like a composing character.
1954 */
1955 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001956utf_composinglike(char_u *p1, char_u *p2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957{
1958 int c2;
1959
1960 c2 = utf_ptr2char(p2);
1961 if (utf_iscomposing(c2))
1962 return TRUE;
1963 if (!arabic_maycombine(c2))
1964 return FALSE;
1965 return arabic_combine(utf_ptr2char(p1), c2);
1966}
1967#endif
1968
1969/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001970 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 * composing characters.
1972 */
1973 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001974utfc_ptr2char(
1975 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001976 int *pcc) // return: composing chars, last one is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977{
1978 int len;
1979 int c;
1980 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001981 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982
1983 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001984 len = utf_ptr2len(p);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001985
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001986 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 if ((len > 1 || *p < 0x80)
1988 && p[len] >= 0x80
1989 && UTF_COMPOSINGLIKE(p, p + len))
1990 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001991 cc = utf_ptr2char(p + len);
1992 for (;;)
1993 {
1994 pcc[i++] = cc;
1995 if (i == MAX_MCO)
1996 break;
1997 len += utf_ptr2len(p + len);
1998 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1999 break;
2000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002002
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002003 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002004 pcc[i] = 0;
2005
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 return c;
2007}
2008
2009/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00002010 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 * composing characters. Use no more than p[maxlen].
2012 */
2013 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002014utfc_ptr2char_len(
2015 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002016 int *pcc, // return: composing chars, last one is 0
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002017 int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018{
2019 int len;
2020 int c;
2021 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002022 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002025 len = utf_ptr2len_len(p, maxlen);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002026 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 if ((len > 1 || *p < 0x80)
2028 && len < maxlen
2029 && p[len] >= 0x80
2030 && UTF_COMPOSINGLIKE(p, p + len))
2031 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002032 cc = utf_ptr2char(p + len);
2033 for (;;)
2034 {
2035 pcc[i++] = cc;
2036 if (i == MAX_MCO)
2037 break;
2038 len += utf_ptr2len_len(p + len, maxlen - len);
2039 if (len >= maxlen
2040 || p[len] < 0x80
2041 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
2042 break;
2043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002045
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002046 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002047 pcc[i] = 0;
2048
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 return c;
2050}
2051
2052/*
2053 * Convert the character at screen position "off" to a sequence of bytes.
2054 * Includes the composing characters.
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002055 * "buf" must at least have the length MB_MAXBYTES + 1.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02002056 * Only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 * Returns the produced number of bytes.
2058 */
2059 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002060utfc_char2bytes(int off, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061{
2062 int len;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002063 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
2065 len = utf_char2bytes(ScreenLinesUC[off], buf);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002066 for (i = 0; i < Screen_mco; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002068 if (ScreenLinesC[i][off] == 0)
2069 break;
2070 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 }
2072 return len;
2073}
2074
2075/*
2076 * Get the length of a UTF-8 byte sequence, not including any following
2077 * composing characters.
2078 * Returns 0 for "".
2079 * Returns 1 for an illegal byte sequence.
2080 */
2081 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002082utf_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083{
2084 int len;
2085 int i;
2086
2087 if (*p == NUL)
2088 return 0;
2089 len = utf8len_tab[*p];
2090 for (i = 1; i < len; ++i)
2091 if ((p[i] & 0xc0) != 0x80)
2092 return 1;
2093 return len;
2094}
2095
2096/*
2097 * Return length of UTF-8 character, obtained from the first byte.
2098 * "b" must be between 0 and 255!
Bram Moolenaar24397332009-12-02 14:02:39 +00002099 * Returns 1 for an invalid first byte value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 */
2101 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002102utf_byte2len(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103{
2104 return utf8len_tab[b];
2105}
2106
2107/*
2108 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
2109 * following composing characters.
2110 * Returns 1 for "".
Bram Moolenaarc048f672008-01-04 16:47:25 +00002111 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 * Returns number > "size" for an incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002113 * Never returns zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 */
2115 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002116utf_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117{
2118 int len;
2119 int i;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002120 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121
Bram Moolenaar24397332009-12-02 14:02:39 +00002122 len = utf8len_tab[*p];
2123 if (len == 1)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002124 return 1; // NUL, ascii or illegal lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 if (len > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002126 m = size; // incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002127 else
2128 m = len;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002129 for (i = 1; i < m; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 if ((p[i] & 0xc0) != 0x80)
2131 return 1;
2132 return len;
2133}
2134
2135/*
2136 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
2137 * This includes following composing characters.
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01002138 * Returns zero for NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 */
2140 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002141utfc_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142{
2143 int len;
Bram Moolenaarc669e662005-06-08 22:00:03 +00002144 int b0 = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145#ifdef FEAT_ARABIC
2146 int prevlen;
2147#endif
2148
Bram Moolenaarc669e662005-06-08 22:00:03 +00002149 if (b0 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002151 if (b0 < 0x80 && p[1] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 return 1;
2153
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002154 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002155 len = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002157 // Check for illegal byte.
Bram Moolenaarc669e662005-06-08 22:00:03 +00002158 if (len == 1 && b0 >= 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 return 1;
2160
2161 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002162 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 * skip all of them (otherwise the cursor would get stuck).
2164 */
2165#ifdef FEAT_ARABIC
2166 prevlen = 0;
2167#endif
2168 for (;;)
2169 {
2170 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
2171 return len;
2172
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002173 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174#ifdef FEAT_ARABIC
2175 prevlen = len;
2176#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002177 len += utf_ptr2len(p + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 }
2179}
2180
2181/*
2182 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
2183 * takes. This includes following composing characters.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002184 * Returns 0 for an empty string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 * Returns 1 for an illegal char or an incomplete byte sequence.
2186 */
2187 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002188utfc_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
2190 int len;
2191#ifdef FEAT_ARABIC
2192 int prevlen;
2193#endif
2194
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002195 if (size < 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002197 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 return 1;
2199
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002200 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002201 len = utf_ptr2len_len(p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002203 // Check for illegal byte and incomplete byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 if ((len == 1 && p[0] >= 0x80) || len > size)
2205 return 1;
2206
2207 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002208 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 * skip all of them (otherwise the cursor would get stuck).
2210 */
2211#ifdef FEAT_ARABIC
2212 prevlen = 0;
2213#endif
2214 while (len < size)
2215 {
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002216 int len_next_char;
2217
2218 if (p[len] < 0x80)
2219 break;
2220
2221 /*
2222 * Next character length should not go beyond size to ensure that
2223 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2224 */
2225 len_next_char = utf_ptr2len_len(p + len, size - len);
2226 if (len_next_char > size - len)
2227 break;
2228
2229 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 break;
2231
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002232 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233#ifdef FEAT_ARABIC
2234 prevlen = len;
2235#endif
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002236 len += len_next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 }
2238 return len;
2239}
2240
2241/*
2242 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2243 * This does not include composing characters.
2244 */
2245 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002246utf_char2len(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247{
2248 if (c < 0x80)
2249 return 1;
2250 if (c < 0x800)
2251 return 2;
2252 if (c < 0x10000)
2253 return 3;
2254 if (c < 0x200000)
2255 return 4;
2256 if (c < 0x4000000)
2257 return 5;
2258 return 6;
2259}
2260
2261/*
2262 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2263 * Returns the number of bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 */
2265 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002266utf_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002268 if (c < 0x80) // 7 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 {
2270 buf[0] = c;
2271 return 1;
2272 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002273 if (c < 0x800) // 11 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 {
2275 buf[0] = 0xc0 + ((unsigned)c >> 6);
2276 buf[1] = 0x80 + (c & 0x3f);
2277 return 2;
2278 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002279 if (c < 0x10000) // 16 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 {
2281 buf[0] = 0xe0 + ((unsigned)c >> 12);
2282 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2283 buf[2] = 0x80 + (c & 0x3f);
2284 return 3;
2285 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002286 if (c < 0x200000) // 21 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 {
2288 buf[0] = 0xf0 + ((unsigned)c >> 18);
2289 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2290 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2291 buf[3] = 0x80 + (c & 0x3f);
2292 return 4;
2293 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002294 if (c < 0x4000000) // 26 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 {
2296 buf[0] = 0xf8 + ((unsigned)c >> 24);
2297 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2298 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2299 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2300 buf[4] = 0x80 + (c & 0x3f);
2301 return 5;
2302 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002303 // 31 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 buf[0] = 0xfc + ((unsigned)c >> 30);
2305 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2306 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2307 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2308 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2309 buf[5] = 0x80 + (c & 0x3f);
2310 return 6;
2311}
2312
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002313#if defined(FEAT_TERMINAL) || defined(PROTO)
2314/*
2315 * utf_iscomposing() with different argument type for libvterm.
2316 */
2317 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02002318utf_iscomposing_uint(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002319{
2320 return utf_iscomposing((int)c);
2321}
2322#endif
2323
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324/*
2325 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2326 * drawn on top of the preceding character.
2327 * Based on code from Markus Kuhn.
2328 */
2329 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002330utf_iscomposing(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002332 // Sorted list of non-overlapping intervals.
2333 // Generated by ../runtime/tools/unicode.vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 static struct interval combining[] =
2335 {
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002336 {0x0300, 0x036f},
2337 {0x0483, 0x0489},
2338 {0x0591, 0x05bd},
2339 {0x05bf, 0x05bf},
2340 {0x05c1, 0x05c2},
2341 {0x05c4, 0x05c5},
2342 {0x05c7, 0x05c7},
2343 {0x0610, 0x061a},
Bram Moolenaarea676722015-01-14 17:40:09 +01002344 {0x064b, 0x065f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002345 {0x0670, 0x0670},
2346 {0x06d6, 0x06dc},
Bram Moolenaarea676722015-01-14 17:40:09 +01002347 {0x06df, 0x06e4},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002348 {0x06e7, 0x06e8},
2349 {0x06ea, 0x06ed},
2350 {0x0711, 0x0711},
2351 {0x0730, 0x074a},
2352 {0x07a6, 0x07b0},
2353 {0x07eb, 0x07f3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002354 {0x07fd, 0x07fd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002355 {0x0816, 0x0819},
2356 {0x081b, 0x0823},
2357 {0x0825, 0x0827},
2358 {0x0829, 0x082d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002359 {0x0859, 0x085b},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002360 {0x0898, 0x089f},
2361 {0x08ca, 0x08e1},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002362 {0x08e3, 0x0902},
2363 {0x093a, 0x093a},
2364 {0x093c, 0x093c},
2365 {0x0941, 0x0948},
2366 {0x094d, 0x094d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002367 {0x0951, 0x0957},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002368 {0x0962, 0x0963},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002369 {0x0981, 0x0981},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002370 {0x09bc, 0x09bc},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002371 {0x09c1, 0x09c4},
2372 {0x09cd, 0x09cd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002373 {0x09e2, 0x09e3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002374 {0x09fe, 0x09fe},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002375 {0x0a01, 0x0a02},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002376 {0x0a3c, 0x0a3c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002377 {0x0a41, 0x0a42},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002378 {0x0a47, 0x0a48},
2379 {0x0a4b, 0x0a4d},
2380 {0x0a51, 0x0a51},
2381 {0x0a70, 0x0a71},
2382 {0x0a75, 0x0a75},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002383 {0x0a81, 0x0a82},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002384 {0x0abc, 0x0abc},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002385 {0x0ac1, 0x0ac5},
2386 {0x0ac7, 0x0ac8},
2387 {0x0acd, 0x0acd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002388 {0x0ae2, 0x0ae3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002389 {0x0afa, 0x0aff},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002390 {0x0b01, 0x0b01},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002391 {0x0b3c, 0x0b3c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002392 {0x0b3f, 0x0b3f},
2393 {0x0b41, 0x0b44},
2394 {0x0b4d, 0x0b4d},
2395 {0x0b55, 0x0b56},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002396 {0x0b62, 0x0b63},
2397 {0x0b82, 0x0b82},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002398 {0x0bc0, 0x0bc0},
2399 {0x0bcd, 0x0bcd},
2400 {0x0c00, 0x0c00},
2401 {0x0c04, 0x0c04},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002402 {0x0c3c, 0x0c3c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002403 {0x0c3e, 0x0c40},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002404 {0x0c46, 0x0c48},
2405 {0x0c4a, 0x0c4d},
2406 {0x0c55, 0x0c56},
2407 {0x0c62, 0x0c63},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002408 {0x0c81, 0x0c81},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002409 {0x0cbc, 0x0cbc},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002410 {0x0cbf, 0x0cbf},
2411 {0x0cc6, 0x0cc6},
2412 {0x0ccc, 0x0ccd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002413 {0x0ce2, 0x0ce3},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002414 {0x0d00, 0x0d01},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002415 {0x0d3b, 0x0d3c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002416 {0x0d41, 0x0d44},
2417 {0x0d4d, 0x0d4d},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002418 {0x0d62, 0x0d63},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002419 {0x0d81, 0x0d81},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002420 {0x0dca, 0x0dca},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002421 {0x0dd2, 0x0dd4},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002422 {0x0dd6, 0x0dd6},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002423 {0x0e31, 0x0e31},
2424 {0x0e34, 0x0e3a},
2425 {0x0e47, 0x0e4e},
2426 {0x0eb1, 0x0eb1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002427 {0x0eb4, 0x0ebc},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002428 {0x0ec8, 0x0ece},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002429 {0x0f18, 0x0f19},
2430 {0x0f35, 0x0f35},
2431 {0x0f37, 0x0f37},
2432 {0x0f39, 0x0f39},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002433 {0x0f71, 0x0f7e},
2434 {0x0f80, 0x0f84},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002435 {0x0f86, 0x0f87},
Bram Moolenaarea676722015-01-14 17:40:09 +01002436 {0x0f8d, 0x0f97},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002437 {0x0f99, 0x0fbc},
2438 {0x0fc6, 0x0fc6},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002439 {0x102d, 0x1030},
2440 {0x1032, 0x1037},
2441 {0x1039, 0x103a},
2442 {0x103d, 0x103e},
2443 {0x1058, 0x1059},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002444 {0x105e, 0x1060},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002445 {0x1071, 0x1074},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002446 {0x1082, 0x1082},
2447 {0x1085, 0x1086},
2448 {0x108d, 0x108d},
2449 {0x109d, 0x109d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002450 {0x135d, 0x135f},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002451 {0x1712, 0x1714},
2452 {0x1732, 0x1733},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002453 {0x1752, 0x1753},
2454 {0x1772, 0x1773},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002455 {0x17b4, 0x17b5},
2456 {0x17b7, 0x17bd},
2457 {0x17c6, 0x17c6},
2458 {0x17c9, 0x17d3},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002459 {0x17dd, 0x17dd},
2460 {0x180b, 0x180d},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002461 {0x180f, 0x180f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002462 {0x1885, 0x1886},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002463 {0x18a9, 0x18a9},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002464 {0x1920, 0x1922},
2465 {0x1927, 0x1928},
2466 {0x1932, 0x1932},
2467 {0x1939, 0x193b},
2468 {0x1a17, 0x1a18},
2469 {0x1a1b, 0x1a1b},
2470 {0x1a56, 0x1a56},
2471 {0x1a58, 0x1a5e},
2472 {0x1a60, 0x1a60},
2473 {0x1a62, 0x1a62},
2474 {0x1a65, 0x1a6c},
2475 {0x1a73, 0x1a7c},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002476 {0x1a7f, 0x1a7f},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002477 {0x1ab0, 0x1ace},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002478 {0x1b00, 0x1b03},
2479 {0x1b34, 0x1b34},
2480 {0x1b36, 0x1b3a},
2481 {0x1b3c, 0x1b3c},
2482 {0x1b42, 0x1b42},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002483 {0x1b6b, 0x1b73},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002484 {0x1b80, 0x1b81},
2485 {0x1ba2, 0x1ba5},
2486 {0x1ba8, 0x1ba9},
2487 {0x1bab, 0x1bad},
2488 {0x1be6, 0x1be6},
2489 {0x1be8, 0x1be9},
2490 {0x1bed, 0x1bed},
2491 {0x1bef, 0x1bf1},
2492 {0x1c2c, 0x1c33},
2493 {0x1c36, 0x1c37},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002494 {0x1cd0, 0x1cd2},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002495 {0x1cd4, 0x1ce0},
2496 {0x1ce2, 0x1ce8},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002497 {0x1ced, 0x1ced},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002498 {0x1cf4, 0x1cf4},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002499 {0x1cf8, 0x1cf9},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002500 {0x1dc0, 0x1dff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002501 {0x20d0, 0x20f0},
2502 {0x2cef, 0x2cf1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002503 {0x2d7f, 0x2d7f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002504 {0x2de0, 0x2dff},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002505 {0x302a, 0x302d},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002506 {0x3099, 0x309a},
2507 {0xa66f, 0xa672},
Bram Moolenaarea676722015-01-14 17:40:09 +01002508 {0xa674, 0xa67d},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002509 {0xa69e, 0xa69f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002510 {0xa6f0, 0xa6f1},
2511 {0xa802, 0xa802},
2512 {0xa806, 0xa806},
2513 {0xa80b, 0xa80b},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002514 {0xa825, 0xa826},
Christian Brabandtd8872972021-06-27 21:30:14 +02002515 {0xa82c, 0xa82c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002516 {0xa8c4, 0xa8c5},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002517 {0xa8e0, 0xa8f1},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002518 {0xa8ff, 0xa8ff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002519 {0xa926, 0xa92d},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002520 {0xa947, 0xa951},
2521 {0xa980, 0xa982},
2522 {0xa9b3, 0xa9b3},
2523 {0xa9b6, 0xa9b9},
2524 {0xa9bc, 0xa9bd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002525 {0xa9e5, 0xa9e5},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002526 {0xaa29, 0xaa2e},
2527 {0xaa31, 0xaa32},
2528 {0xaa35, 0xaa36},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002529 {0xaa43, 0xaa43},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002530 {0xaa4c, 0xaa4c},
2531 {0xaa7c, 0xaa7c},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002532 {0xaab0, 0xaab0},
2533 {0xaab2, 0xaab4},
2534 {0xaab7, 0xaab8},
2535 {0xaabe, 0xaabf},
2536 {0xaac1, 0xaac1},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002537 {0xaaec, 0xaaed},
2538 {0xaaf6, 0xaaf6},
2539 {0xabe5, 0xabe5},
2540 {0xabe8, 0xabe8},
2541 {0xabed, 0xabed},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002542 {0xfb1e, 0xfb1e},
2543 {0xfe00, 0xfe0f},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002544 {0xfe20, 0xfe2f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002545 {0x101fd, 0x101fd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002546 {0x102e0, 0x102e0},
2547 {0x10376, 0x1037a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002548 {0x10a01, 0x10a03},
2549 {0x10a05, 0x10a06},
2550 {0x10a0c, 0x10a0f},
2551 {0x10a38, 0x10a3a},
2552 {0x10a3f, 0x10a3f},
Bram Moolenaarea676722015-01-14 17:40:09 +01002553 {0x10ae5, 0x10ae6},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002554 {0x10d24, 0x10d27},
Christian Brabandtd8872972021-06-27 21:30:14 +02002555 {0x10eab, 0x10eac},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002556 {0x10efd, 0x10eff},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002557 {0x10f46, 0x10f50},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002558 {0x10f82, 0x10f85},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002559 {0x11001, 0x11001},
Bram Moolenaarea676722015-01-14 17:40:09 +01002560 {0x11038, 0x11046},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002561 {0x11070, 0x11070},
2562 {0x11073, 0x11074},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002563 {0x1107f, 0x11081},
2564 {0x110b3, 0x110b6},
2565 {0x110b9, 0x110ba},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002566 {0x110c2, 0x110c2},
Bram Moolenaarea676722015-01-14 17:40:09 +01002567 {0x11100, 0x11102},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002568 {0x11127, 0x1112b},
2569 {0x1112d, 0x11134},
Bram Moolenaarea676722015-01-14 17:40:09 +01002570 {0x11173, 0x11173},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002571 {0x11180, 0x11181},
2572 {0x111b6, 0x111be},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002573 {0x111c9, 0x111cc},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002574 {0x111cf, 0x111cf},
2575 {0x1122f, 0x11231},
2576 {0x11234, 0x11234},
2577 {0x11236, 0x11237},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002578 {0x1123e, 0x1123e},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002579 {0x11241, 0x11241},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002580 {0x112df, 0x112df},
2581 {0x112e3, 0x112ea},
2582 {0x11300, 0x11301},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002583 {0x1133b, 0x1133c},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002584 {0x11340, 0x11340},
Bram Moolenaarea676722015-01-14 17:40:09 +01002585 {0x11366, 0x1136c},
2586 {0x11370, 0x11374},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002587 {0x11438, 0x1143f},
2588 {0x11442, 0x11444},
2589 {0x11446, 0x11446},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002590 {0x1145e, 0x1145e},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002591 {0x114b3, 0x114b8},
2592 {0x114ba, 0x114ba},
2593 {0x114bf, 0x114c0},
2594 {0x114c2, 0x114c3},
2595 {0x115b2, 0x115b5},
2596 {0x115bc, 0x115bd},
2597 {0x115bf, 0x115c0},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002598 {0x115dc, 0x115dd},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002599 {0x11633, 0x1163a},
2600 {0x1163d, 0x1163d},
2601 {0x1163f, 0x11640},
2602 {0x116ab, 0x116ab},
2603 {0x116ad, 0x116ad},
2604 {0x116b0, 0x116b5},
2605 {0x116b7, 0x116b7},
2606 {0x1171d, 0x1171f},
2607 {0x11722, 0x11725},
2608 {0x11727, 0x1172b},
2609 {0x1182f, 0x11837},
2610 {0x11839, 0x1183a},
2611 {0x1193b, 0x1193c},
2612 {0x1193e, 0x1193e},
2613 {0x11943, 0x11943},
2614 {0x119d4, 0x119d7},
2615 {0x119da, 0x119db},
2616 {0x119e0, 0x119e0},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002617 {0x11a01, 0x11a0a},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002618 {0x11a33, 0x11a38},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002619 {0x11a3b, 0x11a3e},
2620 {0x11a47, 0x11a47},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002621 {0x11a51, 0x11a56},
2622 {0x11a59, 0x11a5b},
2623 {0x11a8a, 0x11a96},
2624 {0x11a98, 0x11a99},
2625 {0x11c30, 0x11c36},
2626 {0x11c38, 0x11c3d},
2627 {0x11c3f, 0x11c3f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002628 {0x11c92, 0x11ca7},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002629 {0x11caa, 0x11cb0},
2630 {0x11cb2, 0x11cb3},
2631 {0x11cb5, 0x11cb6},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002632 {0x11d31, 0x11d36},
2633 {0x11d3a, 0x11d3a},
2634 {0x11d3c, 0x11d3d},
2635 {0x11d3f, 0x11d45},
2636 {0x11d47, 0x11d47},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002637 {0x11d90, 0x11d91},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002638 {0x11d95, 0x11d95},
2639 {0x11d97, 0x11d97},
2640 {0x11ef3, 0x11ef4},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002641 {0x11f00, 0x11f01},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002642 {0x11f36, 0x11f3a},
2643 {0x11f40, 0x11f40},
2644 {0x11f42, 0x11f42},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002645 {0x13440, 0x13440},
2646 {0x13447, 0x13455},
Bram Moolenaarea676722015-01-14 17:40:09 +01002647 {0x16af0, 0x16af4},
2648 {0x16b30, 0x16b36},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002649 {0x16f4f, 0x16f4f},
Bram Moolenaarea676722015-01-14 17:40:09 +01002650 {0x16f8f, 0x16f92},
Christian Brabandtd8872972021-06-27 21:30:14 +02002651 {0x16fe4, 0x16fe4},
Bram Moolenaarea676722015-01-14 17:40:09 +01002652 {0x1bc9d, 0x1bc9e},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002653 {0x1cf00, 0x1cf2d},
2654 {0x1cf30, 0x1cf46},
Bram Moolenaar7beaf6a2022-10-05 18:03:00 +01002655 {0x1d167, 0x1d169},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002656 {0x1d17b, 0x1d182},
2657 {0x1d185, 0x1d18b},
2658 {0x1d1aa, 0x1d1ad},
2659 {0x1d242, 0x1d244},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002660 {0x1da00, 0x1da36},
2661 {0x1da3b, 0x1da6c},
2662 {0x1da75, 0x1da75},
2663 {0x1da84, 0x1da84},
2664 {0x1da9b, 0x1da9f},
2665 {0x1daa1, 0x1daaf},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002666 {0x1e000, 0x1e006},
2667 {0x1e008, 0x1e018},
2668 {0x1e01b, 0x1e021},
2669 {0x1e023, 0x1e024},
2670 {0x1e026, 0x1e02a},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002671 {0x1e08f, 0x1e08f},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002672 {0x1e130, 0x1e136},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002673 {0x1e2ae, 0x1e2ae},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002674 {0x1e2ec, 0x1e2ef},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002675 {0x1e4ec, 0x1e4ef},
Bram Moolenaarea676722015-01-14 17:40:09 +01002676 {0x1e8d0, 0x1e8d6},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002677 {0x1e944, 0x1e94a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002678 {0xe0100, 0xe01ef}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 };
2680
2681 return intable(combining, sizeof(combining), c);
2682}
2683
2684/*
2685 * Return TRUE for characters that can be displayed in a normal way.
2686 * Only for characters of 0x100 and above!
2687 */
2688 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002689utf_printable(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690{
2691#ifdef USE_WCHAR_FUNCTIONS
2692 /*
2693 * Assume the iswprint() library function works better than our own stuff.
2694 */
2695 return iswprint(c);
2696#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002697 // Sorted list of non-overlapping intervals.
2698 // 0xd800-0xdfff is reserved for UTF-16, actually illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 static struct interval nonprint[] =
2700 {
2701 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
Bram Moolenaare2f66062021-11-02 20:24:38 +00002702 {0x2060, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 {0xfffe, 0xffff}
2704 };
2705
2706 return !intable(nonprint, sizeof(nonprint), c);
2707#endif
2708}
2709
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002710// Sorted list of non-overlapping intervals of all Emoji characters,
2711// based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002712// Generated by ../runtime/tools/unicode.vim.
2713// Excludes 0x00a9 and 0x00ae because they are considered latin1.
Bram Moolenaarcb070082016-04-02 22:14:51 +02002714static struct interval emoji_all[] =
2715{
2716 {0x203c, 0x203c},
2717 {0x2049, 0x2049},
2718 {0x2122, 0x2122},
2719 {0x2139, 0x2139},
2720 {0x2194, 0x2199},
2721 {0x21a9, 0x21aa},
2722 {0x231a, 0x231b},
2723 {0x2328, 0x2328},
2724 {0x23cf, 0x23cf},
2725 {0x23e9, 0x23f3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002726 {0x23f8, 0x23fa},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002727 {0x24c2, 0x24c2},
2728 {0x25aa, 0x25ab},
2729 {0x25b6, 0x25b6},
2730 {0x25c0, 0x25c0},
2731 {0x25fb, 0x25fe},
2732 {0x2600, 0x2604},
2733 {0x260e, 0x260e},
2734 {0x2611, 0x2611},
2735 {0x2614, 0x2615},
2736 {0x2618, 0x2618},
2737 {0x261d, 0x261d},
2738 {0x2620, 0x2620},
2739 {0x2622, 0x2623},
2740 {0x2626, 0x2626},
2741 {0x262a, 0x262a},
2742 {0x262e, 0x262f},
2743 {0x2638, 0x263a},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002744 {0x2640, 0x2640},
2745 {0x2642, 0x2642},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002746 {0x2648, 0x2653},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002747 {0x265f, 0x2660},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002748 {0x2663, 0x2663},
2749 {0x2665, 0x2666},
2750 {0x2668, 0x2668},
2751 {0x267b, 0x267b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002752 {0x267e, 0x267f},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002753 {0x2692, 0x2697},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002754 {0x2699, 0x2699},
2755 {0x269b, 0x269c},
2756 {0x26a0, 0x26a1},
Christian Brabandtd8872972021-06-27 21:30:14 +02002757 {0x26a7, 0x26a7},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002758 {0x26aa, 0x26ab},
2759 {0x26b0, 0x26b1},
2760 {0x26bd, 0x26be},
2761 {0x26c4, 0x26c5},
2762 {0x26c8, 0x26c8},
2763 {0x26ce, 0x26cf},
2764 {0x26d1, 0x26d1},
2765 {0x26d3, 0x26d4},
2766 {0x26e9, 0x26ea},
2767 {0x26f0, 0x26f5},
2768 {0x26f7, 0x26fa},
2769 {0x26fd, 0x26fd},
2770 {0x2702, 0x2702},
2771 {0x2705, 0x2705},
2772 {0x2708, 0x270d},
2773 {0x270f, 0x270f},
2774 {0x2712, 0x2712},
2775 {0x2714, 0x2714},
2776 {0x2716, 0x2716},
2777 {0x271d, 0x271d},
2778 {0x2721, 0x2721},
2779 {0x2728, 0x2728},
2780 {0x2733, 0x2734},
2781 {0x2744, 0x2744},
2782 {0x2747, 0x2747},
2783 {0x274c, 0x274c},
2784 {0x274e, 0x274e},
2785 {0x2753, 0x2755},
2786 {0x2757, 0x2757},
2787 {0x2763, 0x2764},
2788 {0x2795, 0x2797},
2789 {0x27a1, 0x27a1},
2790 {0x27b0, 0x27b0},
2791 {0x27bf, 0x27bf},
2792 {0x2934, 0x2935},
2793 {0x2b05, 0x2b07},
2794 {0x2b1b, 0x2b1c},
2795 {0x2b50, 0x2b50},
2796 {0x2b55, 0x2b55},
2797 {0x3030, 0x3030},
2798 {0x303d, 0x303d},
2799 {0x3297, 0x3297},
2800 {0x3299, 0x3299},
2801 {0x1f004, 0x1f004},
2802 {0x1f0cf, 0x1f0cf},
Christian Brabandtd8872972021-06-27 21:30:14 +02002803 {0x1f170, 0x1f171},
2804 {0x1f17e, 0x1f17f},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002805 {0x1f18e, 0x1f18e},
2806 {0x1f191, 0x1f19a},
2807 {0x1f1e6, 0x1f1ff},
2808 {0x1f201, 0x1f202},
2809 {0x1f21a, 0x1f21a},
2810 {0x1f22f, 0x1f22f},
2811 {0x1f232, 0x1f23a},
2812 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002813 {0x1f300, 0x1f321},
2814 {0x1f324, 0x1f393},
2815 {0x1f396, 0x1f397},
2816 {0x1f399, 0x1f39b},
2817 {0x1f39e, 0x1f3f0},
2818 {0x1f3f3, 0x1f3f5},
2819 {0x1f3f7, 0x1f4fd},
2820 {0x1f4ff, 0x1f53d},
2821 {0x1f549, 0x1f54e},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002822 {0x1f550, 0x1f567},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002823 {0x1f56f, 0x1f570},
2824 {0x1f573, 0x1f57a},
2825 {0x1f587, 0x1f587},
2826 {0x1f58a, 0x1f58d},
2827 {0x1f590, 0x1f590},
2828 {0x1f595, 0x1f596},
2829 {0x1f5a4, 0x1f5a5},
2830 {0x1f5a8, 0x1f5a8},
2831 {0x1f5b1, 0x1f5b2},
2832 {0x1f5bc, 0x1f5bc},
2833 {0x1f5c2, 0x1f5c4},
2834 {0x1f5d1, 0x1f5d3},
2835 {0x1f5dc, 0x1f5de},
2836 {0x1f5e1, 0x1f5e1},
2837 {0x1f5e3, 0x1f5e3},
2838 {0x1f5e8, 0x1f5e8},
2839 {0x1f5ef, 0x1f5ef},
2840 {0x1f5f3, 0x1f5f3},
2841 {0x1f5fa, 0x1f64f},
2842 {0x1f680, 0x1f6c5},
2843 {0x1f6cb, 0x1f6d2},
Christian Brabandtd8872972021-06-27 21:30:14 +02002844 {0x1f6d5, 0x1f6d7},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002845 {0x1f6dc, 0x1f6e5},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002846 {0x1f6e9, 0x1f6e9},
2847 {0x1f6eb, 0x1f6ec},
2848 {0x1f6f0, 0x1f6f0},
Christian Brabandtd8872972021-06-27 21:30:14 +02002849 {0x1f6f3, 0x1f6fc},
2850 {0x1f7e0, 0x1f7eb},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002851 {0x1f7f0, 0x1f7f0},
Christian Brabandtd8872972021-06-27 21:30:14 +02002852 {0x1f90c, 0x1f93a},
2853 {0x1f93c, 0x1f945},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01002854 {0x1f947, 0x1f9ff},
2855 {0x1fa70, 0x1fa7c},
2856 {0x1fa80, 0x1fa88},
2857 {0x1fa90, 0x1fabd},
2858 {0x1fabf, 0x1fac5},
2859 {0x1face, 0x1fadb},
2860 {0x1fae0, 0x1fae8},
2861 {0x1faf0, 0x1faf8}
Bram Moolenaarcb070082016-04-02 22:14:51 +02002862};
2863
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864/*
2865 * Get class of a Unicode character.
2866 * 0: white space
2867 * 1: punctuation
2868 * 2 or bigger: some class of word character.
2869 */
2870 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002871utf_class(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872{
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002873 return utf_class_buf(c, curbuf);
2874}
2875
2876 int
2877utf_class_buf(int c, buf_T *buf)
2878{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002879 // sorted list of non-overlapping intervals
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880 static struct clinterval
2881 {
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002882 unsigned int first;
2883 unsigned int last;
2884 unsigned int class;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 } classes[] =
2886 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002887 {0x037e, 0x037e, 1}, // Greek question mark
2888 {0x0387, 0x0387, 1}, // Greek ano teleia
2889 {0x055a, 0x055f, 1}, // Armenian punctuation
2890 {0x0589, 0x0589, 1}, // Armenian full stop
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 {0x05be, 0x05be, 1},
2892 {0x05c0, 0x05c0, 1},
2893 {0x05c3, 0x05c3, 1},
2894 {0x05f3, 0x05f4, 1},
2895 {0x060c, 0x060c, 1},
2896 {0x061b, 0x061b, 1},
2897 {0x061f, 0x061f, 1},
2898 {0x066a, 0x066d, 1},
2899 {0x06d4, 0x06d4, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002900 {0x0700, 0x070d, 1}, // Syriac punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 {0x0964, 0x0965, 1},
2902 {0x0970, 0x0970, 1},
2903 {0x0df4, 0x0df4, 1},
2904 {0x0e4f, 0x0e4f, 1},
2905 {0x0e5a, 0x0e5b, 1},
2906 {0x0f04, 0x0f12, 1},
2907 {0x0f3a, 0x0f3d, 1},
2908 {0x0f85, 0x0f85, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002909 {0x104a, 0x104f, 1}, // Myanmar punctuation
2910 {0x10fb, 0x10fb, 1}, // Georgian punctuation
2911 {0x1361, 0x1368, 1}, // Ethiopic punctuation
2912 {0x166d, 0x166e, 1}, // Canadian Syl. punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 {0x1680, 0x1680, 0},
2914 {0x169b, 0x169c, 1},
2915 {0x16eb, 0x16ed, 1},
2916 {0x1735, 0x1736, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002917 {0x17d4, 0x17dc, 1}, // Khmer punctuation
2918 {0x1800, 0x180a, 1}, // Mongolian punctuation
2919 {0x2000, 0x200b, 0}, // spaces
2920 {0x200c, 0x2027, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 {0x2028, 0x2029, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002922 {0x202a, 0x202e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 {0x202f, 0x202f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002924 {0x2030, 0x205e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 {0x205f, 0x205f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002926 {0x2060, 0x27ff, 1}, // punctuation and symbols
2927 {0x2070, 0x207f, 0x2070}, // superscript
2928 {0x2080, 0x2094, 0x2080}, // subscript
2929 {0x20a0, 0x27ff, 1}, // all kinds of symbols
2930 {0x2800, 0x28ff, 0x2800}, // braille
2931 {0x2900, 0x2998, 1}, // arrows, brackets, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 {0x29d8, 0x29db, 1},
2933 {0x29fc, 0x29fd, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002934 {0x2e00, 0x2e7f, 1}, // supplemental punctuation
2935 {0x3000, 0x3000, 0}, // ideographic space
2936 {0x3001, 0x3020, 1}, // ideographic punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 {0x3030, 0x3030, 1},
2938 {0x303d, 0x303d, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002939 {0x3040, 0x309f, 0x3040}, // Hiragana
2940 {0x30a0, 0x30ff, 0x30a0}, // Katakana
2941 {0x3300, 0x9fff, 0x4e00}, // CJK Ideographs
2942 {0xac00, 0xd7a3, 0xac00}, // Hangul Syllables
2943 {0xf900, 0xfaff, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 {0xfd3e, 0xfd3f, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002945 {0xfe30, 0xfe6b, 1}, // punctuation forms
2946 {0xff00, 0xff0f, 1}, // half/fullwidth ASCII
2947 {0xff1a, 0xff20, 1}, // half/fullwidth ASCII
2948 {0xff3b, 0xff40, 1}, // half/fullwidth ASCII
2949 {0xff5b, 0xff65, 1}, // half/fullwidth ASCII
2950 {0x1d000, 0x1d24f, 1}, // Musical notation
2951 {0x1d400, 0x1d7ff, 1}, // Mathematical Alphanumeric Symbols
2952 {0x1f000, 0x1f2ff, 1}, // Game pieces; enclosed characters
2953 {0x1f300, 0x1f9ff, 1}, // Many symbol blocks
2954 {0x20000, 0x2a6df, 0x4e00}, // CJK Ideographs
2955 {0x2a700, 0x2b73f, 0x4e00}, // CJK Ideographs
2956 {0x2b740, 0x2b81f, 0x4e00}, // CJK Ideographs
2957 {0x2f800, 0x2fa1f, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 };
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01002959
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 int bot = 0;
K.Takataeeec2542021-06-02 13:28:16 +02002961 int top = ARRAY_LENGTH(classes) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 int mid;
2963
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002964 // First quick check for Latin1 characters, use 'iskeyword'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 if (c < 0x100)
2966 {
Bram Moolenaarf7bbbc52005-06-17 21:55:00 +00002967 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002968 return 0; // blank
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002969 if (vim_iswordc_buf(c, buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002970 return 2; // word character
2971 return 1; // punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972 }
2973
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02002974 // emoji
2975 if (intable(emoji_all, sizeof(emoji_all), c))
2976 return 3;
2977
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002978 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 while (top >= bot)
2980 {
2981 mid = (bot + top) / 2;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002982 if (classes[mid].last < (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983 bot = mid + 1;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002984 else if (classes[mid].first > (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 top = mid - 1;
2986 else
2987 return (int)classes[mid].class;
2988 }
2989
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002990 // most other characters are "word" characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 return 2;
2992}
2993
Bram Moolenaarcb070082016-04-02 22:14:51 +02002994 int
2995utf_ambiguous_width(int c)
2996{
2997 return c >= 0x80 && (intable(ambiguous, sizeof(ambiguous), c)
2998 || intable(emoji_all, sizeof(emoji_all), c));
2999}
3000
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001/*
3002 * Code for Unicode case-dependent operations. Based on notes in
3003 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
3004 * This code uses simple case folding, not full case folding.
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003005 * Last updated for Unicode 5.2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 */
3007
3008/*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003009 * The following tables are built by ../runtime/tools/unicode.vim.
3010 * They must be in numeric order, because we use binary search.
3011 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
3012 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
3013 * folded/upper/lower by adding 32.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015typedef struct
3016{
3017 int rangeStart;
3018 int rangeEnd;
3019 int step;
3020 int offset;
3021} convertStruct;
3022
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003023static convertStruct foldCase[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003025 {0x41,0x5a,1,32},
3026 {0xb5,0xb5,-1,775},
3027 {0xc0,0xd6,1,32},
3028 {0xd8,0xde,1,32},
3029 {0x100,0x12e,2,1},
3030 {0x132,0x136,2,1},
3031 {0x139,0x147,2,1},
3032 {0x14a,0x176,2,1},
3033 {0x178,0x178,-1,-121},
3034 {0x179,0x17d,2,1},
3035 {0x17f,0x17f,-1,-268},
3036 {0x181,0x181,-1,210},
3037 {0x182,0x184,2,1},
3038 {0x186,0x186,-1,206},
3039 {0x187,0x187,-1,1},
3040 {0x189,0x18a,1,205},
3041 {0x18b,0x18b,-1,1},
3042 {0x18e,0x18e,-1,79},
3043 {0x18f,0x18f,-1,202},
3044 {0x190,0x190,-1,203},
3045 {0x191,0x191,-1,1},
3046 {0x193,0x193,-1,205},
3047 {0x194,0x194,-1,207},
3048 {0x196,0x196,-1,211},
3049 {0x197,0x197,-1,209},
3050 {0x198,0x198,-1,1},
3051 {0x19c,0x19c,-1,211},
3052 {0x19d,0x19d,-1,213},
3053 {0x19f,0x19f,-1,214},
3054 {0x1a0,0x1a4,2,1},
3055 {0x1a6,0x1a6,-1,218},
3056 {0x1a7,0x1a7,-1,1},
3057 {0x1a9,0x1a9,-1,218},
3058 {0x1ac,0x1ac,-1,1},
3059 {0x1ae,0x1ae,-1,218},
3060 {0x1af,0x1af,-1,1},
3061 {0x1b1,0x1b2,1,217},
3062 {0x1b3,0x1b5,2,1},
3063 {0x1b7,0x1b7,-1,219},
3064 {0x1b8,0x1bc,4,1},
3065 {0x1c4,0x1c4,-1,2},
3066 {0x1c5,0x1c5,-1,1},
3067 {0x1c7,0x1c7,-1,2},
3068 {0x1c8,0x1c8,-1,1},
3069 {0x1ca,0x1ca,-1,2},
3070 {0x1cb,0x1db,2,1},
3071 {0x1de,0x1ee,2,1},
3072 {0x1f1,0x1f1,-1,2},
3073 {0x1f2,0x1f4,2,1},
3074 {0x1f6,0x1f6,-1,-97},
3075 {0x1f7,0x1f7,-1,-56},
3076 {0x1f8,0x21e,2,1},
3077 {0x220,0x220,-1,-130},
3078 {0x222,0x232,2,1},
3079 {0x23a,0x23a,-1,10795},
3080 {0x23b,0x23b,-1,1},
3081 {0x23d,0x23d,-1,-163},
3082 {0x23e,0x23e,-1,10792},
3083 {0x241,0x241,-1,1},
3084 {0x243,0x243,-1,-195},
3085 {0x244,0x244,-1,69},
3086 {0x245,0x245,-1,71},
3087 {0x246,0x24e,2,1},
3088 {0x345,0x345,-1,116},
3089 {0x370,0x372,2,1},
3090 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003091 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003092 {0x386,0x386,-1,38},
3093 {0x388,0x38a,1,37},
3094 {0x38c,0x38c,-1,64},
3095 {0x38e,0x38f,1,63},
3096 {0x391,0x3a1,1,32},
3097 {0x3a3,0x3ab,1,32},
3098 {0x3c2,0x3c2,-1,1},
3099 {0x3cf,0x3cf,-1,8},
3100 {0x3d0,0x3d0,-1,-30},
3101 {0x3d1,0x3d1,-1,-25},
3102 {0x3d5,0x3d5,-1,-15},
3103 {0x3d6,0x3d6,-1,-22},
3104 {0x3d8,0x3ee,2,1},
3105 {0x3f0,0x3f0,-1,-54},
3106 {0x3f1,0x3f1,-1,-48},
3107 {0x3f4,0x3f4,-1,-60},
3108 {0x3f5,0x3f5,-1,-64},
3109 {0x3f7,0x3f7,-1,1},
3110 {0x3f9,0x3f9,-1,-7},
3111 {0x3fa,0x3fa,-1,1},
3112 {0x3fd,0x3ff,1,-130},
3113 {0x400,0x40f,1,80},
3114 {0x410,0x42f,1,32},
3115 {0x460,0x480,2,1},
3116 {0x48a,0x4be,2,1},
3117 {0x4c0,0x4c0,-1,15},
3118 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003119 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003120 {0x531,0x556,1,48},
3121 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003122 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003123 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003124 {0x1c80,0x1c80,-1,-6222},
3125 {0x1c81,0x1c81,-1,-6221},
3126 {0x1c82,0x1c82,-1,-6212},
3127 {0x1c83,0x1c84,1,-6210},
3128 {0x1c85,0x1c85,-1,-6211},
3129 {0x1c86,0x1c86,-1,-6204},
3130 {0x1c87,0x1c87,-1,-6180},
3131 {0x1c88,0x1c88,-1,35267},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003132 {0x1c90,0x1cba,1,-3008},
3133 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003134 {0x1e00,0x1e94,2,1},
3135 {0x1e9b,0x1e9b,-1,-58},
3136 {0x1e9e,0x1e9e,-1,-7615},
3137 {0x1ea0,0x1efe,2,1},
3138 {0x1f08,0x1f0f,1,-8},
3139 {0x1f18,0x1f1d,1,-8},
3140 {0x1f28,0x1f2f,1,-8},
3141 {0x1f38,0x1f3f,1,-8},
3142 {0x1f48,0x1f4d,1,-8},
3143 {0x1f59,0x1f5f,2,-8},
3144 {0x1f68,0x1f6f,1,-8},
3145 {0x1f88,0x1f8f,1,-8},
3146 {0x1f98,0x1f9f,1,-8},
3147 {0x1fa8,0x1faf,1,-8},
3148 {0x1fb8,0x1fb9,1,-8},
3149 {0x1fba,0x1fbb,1,-74},
3150 {0x1fbc,0x1fbc,-1,-9},
3151 {0x1fbe,0x1fbe,-1,-7173},
3152 {0x1fc8,0x1fcb,1,-86},
3153 {0x1fcc,0x1fcc,-1,-9},
Christian Brabandta634b922023-10-11 21:24:49 +02003154 {0x1fd3,0x1fd3,-1,-7235},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003155 {0x1fd8,0x1fd9,1,-8},
3156 {0x1fda,0x1fdb,1,-100},
Christian Brabandta634b922023-10-11 21:24:49 +02003157 {0x1fe3,0x1fe3,-1,-7219},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003158 {0x1fe8,0x1fe9,1,-8},
3159 {0x1fea,0x1feb,1,-112},
3160 {0x1fec,0x1fec,-1,-7},
3161 {0x1ff8,0x1ff9,1,-128},
3162 {0x1ffa,0x1ffb,1,-126},
3163 {0x1ffc,0x1ffc,-1,-9},
3164 {0x2126,0x2126,-1,-7517},
3165 {0x212a,0x212a,-1,-8383},
3166 {0x212b,0x212b,-1,-8262},
3167 {0x2132,0x2132,-1,28},
3168 {0x2160,0x216f,1,16},
3169 {0x2183,0x2183,-1,1},
3170 {0x24b6,0x24cf,1,26},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003171 {0x2c00,0x2c2f,1,48},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003172 {0x2c60,0x2c60,-1,1},
3173 {0x2c62,0x2c62,-1,-10743},
3174 {0x2c63,0x2c63,-1,-3814},
3175 {0x2c64,0x2c64,-1,-10727},
3176 {0x2c67,0x2c6b,2,1},
3177 {0x2c6d,0x2c6d,-1,-10780},
3178 {0x2c6e,0x2c6e,-1,-10749},
3179 {0x2c6f,0x2c6f,-1,-10783},
3180 {0x2c70,0x2c70,-1,-10782},
3181 {0x2c72,0x2c75,3,1},
3182 {0x2c7e,0x2c7f,1,-10815},
3183 {0x2c80,0x2ce2,2,1},
3184 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003185 {0x2cf2,0xa640,31054,1},
3186 {0xa642,0xa66c,2,1},
3187 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003188 {0xa722,0xa72e,2,1},
3189 {0xa732,0xa76e,2,1},
3190 {0xa779,0xa77b,2,1},
3191 {0xa77d,0xa77d,-1,-35332},
3192 {0xa77e,0xa786,2,1},
3193 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003194 {0xa78d,0xa78d,-1,-42280},
3195 {0xa790,0xa792,2,1},
3196 {0xa796,0xa7a8,2,1},
3197 {0xa7aa,0xa7aa,-1,-42308},
3198 {0xa7ab,0xa7ab,-1,-42319},
3199 {0xa7ac,0xa7ac,-1,-42315},
3200 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003201 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003202 {0xa7b0,0xa7b0,-1,-42258},
3203 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003204 {0xa7b2,0xa7b2,-1,-42261},
3205 {0xa7b3,0xa7b3,-1,928},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003206 {0xa7b4,0xa7c2,2,1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003207 {0xa7c4,0xa7c4,-1,-48},
3208 {0xa7c5,0xa7c5,-1,-42307},
3209 {0xa7c6,0xa7c6,-1,-35384},
Christian Brabandtd8872972021-06-27 21:30:14 +02003210 {0xa7c7,0xa7c9,2,1},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003211 {0xa7d0,0xa7d6,6,1},
3212 {0xa7d8,0xa7f5,29,1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003213 {0xab70,0xabbf,1,-38864},
Christian Brabandta634b922023-10-11 21:24:49 +02003214 {0xfb05,0xfb05,-1,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003215 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003216 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003217 {0x104b0,0x104d3,1,40},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003218 {0x10570,0x1057a,1,39},
3219 {0x1057c,0x1058a,1,39},
3220 {0x1058c,0x10592,1,39},
3221 {0x10594,0x10595,1,39},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003222 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003223 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003224 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003225 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226};
3227
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228/*
3229 * Generic conversion function for case operations.
3230 * Return the converted equivalent of "a", which is a UCS-4 character. Use
3231 * the given conversion "table". Uses binary search on "table".
3232 */
3233 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003234utf_convert(
3235 int a,
3236 convertStruct table[],
3237 int tableSize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003239 int start, mid, end; // indices into table
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003240 int entries = tableSize / sizeof(convertStruct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241
3242 start = 0;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003243 end = entries;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 while (start < end)
3245 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003246 // need to search further
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003247 mid = (end + start) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 if (table[mid].rangeEnd < a)
3249 start = mid + 1;
3250 else
3251 end = mid;
3252 }
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003253 if (start < entries
3254 && table[start].rangeStart <= a
3255 && a <= table[start].rangeEnd
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 && (a - table[start].rangeStart) % table[start].step == 0)
3257 return (a + table[start].offset);
3258 else
3259 return a;
3260}
3261
3262/*
3263 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
3264 * simple case folding.
3265 */
3266 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003267utf_fold(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268{
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003269 if (a < 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003270 // be fast for ASCII
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003271 return a >= 0x41 && a <= 0x5a ? a + 32 : a;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003272 return utf_convert(a, foldCase, (int)sizeof(foldCase));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273}
3274
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003275static convertStruct toLower[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003277 {0x41,0x5a,1,32},
3278 {0xc0,0xd6,1,32},
3279 {0xd8,0xde,1,32},
3280 {0x100,0x12e,2,1},
3281 {0x130,0x130,-1,-199},
3282 {0x132,0x136,2,1},
3283 {0x139,0x147,2,1},
3284 {0x14a,0x176,2,1},
3285 {0x178,0x178,-1,-121},
3286 {0x179,0x17d,2,1},
3287 {0x181,0x181,-1,210},
3288 {0x182,0x184,2,1},
3289 {0x186,0x186,-1,206},
3290 {0x187,0x187,-1,1},
3291 {0x189,0x18a,1,205},
3292 {0x18b,0x18b,-1,1},
3293 {0x18e,0x18e,-1,79},
3294 {0x18f,0x18f,-1,202},
3295 {0x190,0x190,-1,203},
3296 {0x191,0x191,-1,1},
3297 {0x193,0x193,-1,205},
3298 {0x194,0x194,-1,207},
3299 {0x196,0x196,-1,211},
3300 {0x197,0x197,-1,209},
3301 {0x198,0x198,-1,1},
3302 {0x19c,0x19c,-1,211},
3303 {0x19d,0x19d,-1,213},
3304 {0x19f,0x19f,-1,214},
3305 {0x1a0,0x1a4,2,1},
3306 {0x1a6,0x1a6,-1,218},
3307 {0x1a7,0x1a7,-1,1},
3308 {0x1a9,0x1a9,-1,218},
3309 {0x1ac,0x1ac,-1,1},
3310 {0x1ae,0x1ae,-1,218},
3311 {0x1af,0x1af,-1,1},
3312 {0x1b1,0x1b2,1,217},
3313 {0x1b3,0x1b5,2,1},
3314 {0x1b7,0x1b7,-1,219},
3315 {0x1b8,0x1bc,4,1},
3316 {0x1c4,0x1c4,-1,2},
3317 {0x1c5,0x1c5,-1,1},
3318 {0x1c7,0x1c7,-1,2},
3319 {0x1c8,0x1c8,-1,1},
3320 {0x1ca,0x1ca,-1,2},
3321 {0x1cb,0x1db,2,1},
3322 {0x1de,0x1ee,2,1},
3323 {0x1f1,0x1f1,-1,2},
3324 {0x1f2,0x1f4,2,1},
3325 {0x1f6,0x1f6,-1,-97},
3326 {0x1f7,0x1f7,-1,-56},
3327 {0x1f8,0x21e,2,1},
3328 {0x220,0x220,-1,-130},
3329 {0x222,0x232,2,1},
3330 {0x23a,0x23a,-1,10795},
3331 {0x23b,0x23b,-1,1},
3332 {0x23d,0x23d,-1,-163},
3333 {0x23e,0x23e,-1,10792},
3334 {0x241,0x241,-1,1},
3335 {0x243,0x243,-1,-195},
3336 {0x244,0x244,-1,69},
3337 {0x245,0x245,-1,71},
3338 {0x246,0x24e,2,1},
3339 {0x370,0x372,2,1},
3340 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003341 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003342 {0x386,0x386,-1,38},
3343 {0x388,0x38a,1,37},
3344 {0x38c,0x38c,-1,64},
3345 {0x38e,0x38f,1,63},
3346 {0x391,0x3a1,1,32},
3347 {0x3a3,0x3ab,1,32},
3348 {0x3cf,0x3cf,-1,8},
3349 {0x3d8,0x3ee,2,1},
3350 {0x3f4,0x3f4,-1,-60},
3351 {0x3f7,0x3f7,-1,1},
3352 {0x3f9,0x3f9,-1,-7},
3353 {0x3fa,0x3fa,-1,1},
3354 {0x3fd,0x3ff,1,-130},
3355 {0x400,0x40f,1,80},
3356 {0x410,0x42f,1,32},
3357 {0x460,0x480,2,1},
3358 {0x48a,0x4be,2,1},
3359 {0x4c0,0x4c0,-1,15},
3360 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003361 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003362 {0x531,0x556,1,48},
3363 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003364 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003365 {0x13a0,0x13ef,1,38864},
3366 {0x13f0,0x13f5,1,8},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003367 {0x1c90,0x1cba,1,-3008},
3368 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003369 {0x1e00,0x1e94,2,1},
3370 {0x1e9e,0x1e9e,-1,-7615},
3371 {0x1ea0,0x1efe,2,1},
3372 {0x1f08,0x1f0f,1,-8},
3373 {0x1f18,0x1f1d,1,-8},
3374 {0x1f28,0x1f2f,1,-8},
3375 {0x1f38,0x1f3f,1,-8},
3376 {0x1f48,0x1f4d,1,-8},
3377 {0x1f59,0x1f5f,2,-8},
3378 {0x1f68,0x1f6f,1,-8},
3379 {0x1f88,0x1f8f,1,-8},
3380 {0x1f98,0x1f9f,1,-8},
3381 {0x1fa8,0x1faf,1,-8},
3382 {0x1fb8,0x1fb9,1,-8},
3383 {0x1fba,0x1fbb,1,-74},
3384 {0x1fbc,0x1fbc,-1,-9},
3385 {0x1fc8,0x1fcb,1,-86},
3386 {0x1fcc,0x1fcc,-1,-9},
3387 {0x1fd8,0x1fd9,1,-8},
3388 {0x1fda,0x1fdb,1,-100},
3389 {0x1fe8,0x1fe9,1,-8},
3390 {0x1fea,0x1feb,1,-112},
3391 {0x1fec,0x1fec,-1,-7},
3392 {0x1ff8,0x1ff9,1,-128},
3393 {0x1ffa,0x1ffb,1,-126},
3394 {0x1ffc,0x1ffc,-1,-9},
3395 {0x2126,0x2126,-1,-7517},
3396 {0x212a,0x212a,-1,-8383},
3397 {0x212b,0x212b,-1,-8262},
3398 {0x2132,0x2132,-1,28},
3399 {0x2160,0x216f,1,16},
3400 {0x2183,0x2183,-1,1},
3401 {0x24b6,0x24cf,1,26},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003402 {0x2c00,0x2c2f,1,48},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003403 {0x2c60,0x2c60,-1,1},
3404 {0x2c62,0x2c62,-1,-10743},
3405 {0x2c63,0x2c63,-1,-3814},
3406 {0x2c64,0x2c64,-1,-10727},
3407 {0x2c67,0x2c6b,2,1},
3408 {0x2c6d,0x2c6d,-1,-10780},
3409 {0x2c6e,0x2c6e,-1,-10749},
3410 {0x2c6f,0x2c6f,-1,-10783},
3411 {0x2c70,0x2c70,-1,-10782},
3412 {0x2c72,0x2c75,3,1},
3413 {0x2c7e,0x2c7f,1,-10815},
3414 {0x2c80,0x2ce2,2,1},
3415 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003416 {0x2cf2,0xa640,31054,1},
3417 {0xa642,0xa66c,2,1},
3418 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003419 {0xa722,0xa72e,2,1},
3420 {0xa732,0xa76e,2,1},
3421 {0xa779,0xa77b,2,1},
3422 {0xa77d,0xa77d,-1,-35332},
3423 {0xa77e,0xa786,2,1},
3424 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003425 {0xa78d,0xa78d,-1,-42280},
3426 {0xa790,0xa792,2,1},
3427 {0xa796,0xa7a8,2,1},
3428 {0xa7aa,0xa7aa,-1,-42308},
3429 {0xa7ab,0xa7ab,-1,-42319},
3430 {0xa7ac,0xa7ac,-1,-42315},
3431 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003432 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003433 {0xa7b0,0xa7b0,-1,-42258},
3434 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003435 {0xa7b2,0xa7b2,-1,-42261},
3436 {0xa7b3,0xa7b3,-1,928},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003437 {0xa7b4,0xa7c2,2,1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003438 {0xa7c4,0xa7c4,-1,-48},
3439 {0xa7c5,0xa7c5,-1,-42307},
3440 {0xa7c6,0xa7c6,-1,-35384},
Christian Brabandtd8872972021-06-27 21:30:14 +02003441 {0xa7c7,0xa7c9,2,1},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003442 {0xa7d0,0xa7d6,6,1},
3443 {0xa7d8,0xa7f5,29,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003444 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003445 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003446 {0x104b0,0x104d3,1,40},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003447 {0x10570,0x1057a,1,39},
3448 {0x1057c,0x1058a,1,39},
3449 {0x1058c,0x10592,1,39},
3450 {0x10594,0x10595,1,39},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003451 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003452 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003453 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003454 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455};
3456
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003457static convertStruct toUpper[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003459 {0x61,0x7a,1,-32},
3460 {0xb5,0xb5,-1,743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003461 {0xe0,0xf6,1,-32},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003462 {0xf8,0xfe,1,-32},
3463 {0xff,0xff,-1,121},
3464 {0x101,0x12f,2,-1},
3465 {0x131,0x131,-1,-232},
3466 {0x133,0x137,2,-1},
3467 {0x13a,0x148,2,-1},
3468 {0x14b,0x177,2,-1},
3469 {0x17a,0x17e,2,-1},
3470 {0x17f,0x17f,-1,-300},
3471 {0x180,0x180,-1,195},
3472 {0x183,0x185,2,-1},
3473 {0x188,0x18c,4,-1},
3474 {0x192,0x192,-1,-1},
3475 {0x195,0x195,-1,97},
3476 {0x199,0x199,-1,-1},
3477 {0x19a,0x19a,-1,163},
3478 {0x19e,0x19e,-1,130},
3479 {0x1a1,0x1a5,2,-1},
3480 {0x1a8,0x1ad,5,-1},
3481 {0x1b0,0x1b4,4,-1},
3482 {0x1b6,0x1b9,3,-1},
3483 {0x1bd,0x1bd,-1,-1},
3484 {0x1bf,0x1bf,-1,56},
3485 {0x1c5,0x1c5,-1,-1},
3486 {0x1c6,0x1c6,-1,-2},
3487 {0x1c8,0x1c8,-1,-1},
3488 {0x1c9,0x1c9,-1,-2},
3489 {0x1cb,0x1cb,-1,-1},
3490 {0x1cc,0x1cc,-1,-2},
3491 {0x1ce,0x1dc,2,-1},
3492 {0x1dd,0x1dd,-1,-79},
3493 {0x1df,0x1ef,2,-1},
3494 {0x1f2,0x1f2,-1,-1},
3495 {0x1f3,0x1f3,-1,-2},
3496 {0x1f5,0x1f9,4,-1},
3497 {0x1fb,0x21f,2,-1},
3498 {0x223,0x233,2,-1},
3499 {0x23c,0x23c,-1,-1},
3500 {0x23f,0x240,1,10815},
3501 {0x242,0x247,5,-1},
3502 {0x249,0x24f,2,-1},
3503 {0x250,0x250,-1,10783},
3504 {0x251,0x251,-1,10780},
3505 {0x252,0x252,-1,10782},
3506 {0x253,0x253,-1,-210},
3507 {0x254,0x254,-1,-206},
3508 {0x256,0x257,1,-205},
3509 {0x259,0x259,-1,-202},
3510 {0x25b,0x25b,-1,-203},
Bram Moolenaarea676722015-01-14 17:40:09 +01003511 {0x25c,0x25c,-1,42319},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003512 {0x260,0x260,-1,-205},
Bram Moolenaarea676722015-01-14 17:40:09 +01003513 {0x261,0x261,-1,42315},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003514 {0x263,0x263,-1,-207},
Bram Moolenaarea676722015-01-14 17:40:09 +01003515 {0x265,0x265,-1,42280},
3516 {0x266,0x266,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003517 {0x268,0x268,-1,-209},
3518 {0x269,0x269,-1,-211},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003519 {0x26a,0x26a,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003520 {0x26b,0x26b,-1,10743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003521 {0x26c,0x26c,-1,42305},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003522 {0x26f,0x26f,-1,-211},
3523 {0x271,0x271,-1,10749},
3524 {0x272,0x272,-1,-213},
3525 {0x275,0x275,-1,-214},
3526 {0x27d,0x27d,-1,10727},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003527 {0x280,0x280,-1,-218},
3528 {0x282,0x282,-1,42307},
3529 {0x283,0x283,-1,-218},
Bram Moolenaarea676722015-01-14 17:40:09 +01003530 {0x287,0x287,-1,42282},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003531 {0x288,0x288,-1,-218},
3532 {0x289,0x289,-1,-69},
3533 {0x28a,0x28b,1,-217},
3534 {0x28c,0x28c,-1,-71},
3535 {0x292,0x292,-1,-219},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003536 {0x29d,0x29d,-1,42261},
Bram Moolenaarea676722015-01-14 17:40:09 +01003537 {0x29e,0x29e,-1,42258},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003538 {0x345,0x345,-1,84},
3539 {0x371,0x373,2,-1},
3540 {0x377,0x377,-1,-1},
3541 {0x37b,0x37d,1,130},
3542 {0x3ac,0x3ac,-1,-38},
3543 {0x3ad,0x3af,1,-37},
3544 {0x3b1,0x3c1,1,-32},
3545 {0x3c2,0x3c2,-1,-31},
3546 {0x3c3,0x3cb,1,-32},
3547 {0x3cc,0x3cc,-1,-64},
3548 {0x3cd,0x3ce,1,-63},
3549 {0x3d0,0x3d0,-1,-62},
3550 {0x3d1,0x3d1,-1,-57},
3551 {0x3d5,0x3d5,-1,-47},
3552 {0x3d6,0x3d6,-1,-54},
3553 {0x3d7,0x3d7,-1,-8},
3554 {0x3d9,0x3ef,2,-1},
3555 {0x3f0,0x3f0,-1,-86},
3556 {0x3f1,0x3f1,-1,-80},
3557 {0x3f2,0x3f2,-1,7},
Bram Moolenaarea676722015-01-14 17:40:09 +01003558 {0x3f3,0x3f3,-1,-116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003559 {0x3f5,0x3f5,-1,-96},
3560 {0x3f8,0x3fb,3,-1},
3561 {0x430,0x44f,1,-32},
3562 {0x450,0x45f,1,-80},
3563 {0x461,0x481,2,-1},
3564 {0x48b,0x4bf,2,-1},
3565 {0x4c2,0x4ce,2,-1},
3566 {0x4cf,0x4cf,-1,-15},
Bram Moolenaarea676722015-01-14 17:40:09 +01003567 {0x4d1,0x52f,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003568 {0x561,0x586,1,-48},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003569 {0x10d0,0x10fa,1,3008},
3570 {0x10fd,0x10ff,1,3008},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003571 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003572 {0x1c80,0x1c80,-1,-6254},
3573 {0x1c81,0x1c81,-1,-6253},
3574 {0x1c82,0x1c82,-1,-6244},
3575 {0x1c83,0x1c84,1,-6242},
3576 {0x1c85,0x1c85,-1,-6243},
3577 {0x1c86,0x1c86,-1,-6236},
3578 {0x1c87,0x1c87,-1,-6181},
3579 {0x1c88,0x1c88,-1,35266},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003580 {0x1d79,0x1d79,-1,35332},
3581 {0x1d7d,0x1d7d,-1,3814},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003582 {0x1d8e,0x1d8e,-1,35384},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003583 {0x1e01,0x1e95,2,-1},
3584 {0x1e9b,0x1e9b,-1,-59},
3585 {0x1ea1,0x1eff,2,-1},
3586 {0x1f00,0x1f07,1,8},
3587 {0x1f10,0x1f15,1,8},
3588 {0x1f20,0x1f27,1,8},
3589 {0x1f30,0x1f37,1,8},
3590 {0x1f40,0x1f45,1,8},
3591 {0x1f51,0x1f57,2,8},
3592 {0x1f60,0x1f67,1,8},
3593 {0x1f70,0x1f71,1,74},
3594 {0x1f72,0x1f75,1,86},
3595 {0x1f76,0x1f77,1,100},
3596 {0x1f78,0x1f79,1,128},
3597 {0x1f7a,0x1f7b,1,112},
3598 {0x1f7c,0x1f7d,1,126},
3599 {0x1f80,0x1f87,1,8},
3600 {0x1f90,0x1f97,1,8},
3601 {0x1fa0,0x1fa7,1,8},
3602 {0x1fb0,0x1fb1,1,8},
3603 {0x1fb3,0x1fb3,-1,9},
3604 {0x1fbe,0x1fbe,-1,-7205},
3605 {0x1fc3,0x1fc3,-1,9},
3606 {0x1fd0,0x1fd1,1,8},
3607 {0x1fe0,0x1fe1,1,8},
3608 {0x1fe5,0x1fe5,-1,7},
3609 {0x1ff3,0x1ff3,-1,9},
3610 {0x214e,0x214e,-1,-28},
3611 {0x2170,0x217f,1,-16},
3612 {0x2184,0x2184,-1,-1},
3613 {0x24d0,0x24e9,1,-26},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003614 {0x2c30,0x2c5f,1,-48},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003615 {0x2c61,0x2c61,-1,-1},
3616 {0x2c65,0x2c65,-1,-10795},
3617 {0x2c66,0x2c66,-1,-10792},
3618 {0x2c68,0x2c6c,2,-1},
3619 {0x2c73,0x2c76,3,-1},
3620 {0x2c81,0x2ce3,2,-1},
3621 {0x2cec,0x2cee,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003622 {0x2cf3,0x2cf3,-1,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003623 {0x2d00,0x2d25,1,-7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003624 {0x2d27,0x2d2d,6,-7264},
3625 {0xa641,0xa66d,2,-1},
3626 {0xa681,0xa69b,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003627 {0xa723,0xa72f,2,-1},
3628 {0xa733,0xa76f,2,-1},
3629 {0xa77a,0xa77c,2,-1},
3630 {0xa77f,0xa787,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003631 {0xa78c,0xa791,5,-1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003632 {0xa793,0xa793,-1,-1},
3633 {0xa794,0xa794,-1,48},
3634 {0xa797,0xa7a9,2,-1},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003635 {0xa7b5,0xa7c3,2,-1},
3636 {0xa7c8,0xa7ca,2,-1},
3637 {0xa7d1,0xa7d7,6,-1},
3638 {0xa7d9,0xa7f6,29,-1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003639 {0xab53,0xab53,-1,-928},
3640 {0xab70,0xabbf,1,-38864},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003641 {0xff41,0xff5a,1,-32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003642 {0x10428,0x1044f,1,-40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003643 {0x104d8,0x104fb,1,-40},
Christian Brabandt9882e9d2022-09-25 19:25:51 +01003644 {0x10597,0x105a1,1,-39},
3645 {0x105a3,0x105b1,1,-39},
3646 {0x105b3,0x105b9,1,-39},
3647 {0x105bb,0x105bc,1,-39},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003648 {0x10cc0,0x10cf2,1,-64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003649 {0x118c0,0x118df,1,-32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003650 {0x16e60,0x16e7f,1,-32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003651 {0x1e922,0x1e943,1,-34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652};
Bram Moolenaard63aff02016-03-21 22:15:30 +01003653
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654/*
3655 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3656 * simple case folding.
3657 */
3658 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003659utf_toupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003661 // If 'casemap' contains "keepascii" use ASCII style toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3663 return TOUPPER_ASC(a);
3664
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003665#if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003666 // If towupper() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 if (!(cmp_flags & CMP_INTERNAL))
3668 return towupper(a);
3669#endif
3670
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003671 // For characters below 128 use locale sensitive toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 if (a < 128)
3673 return TOUPPER_LOC(a);
3674
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003675 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003676 return utf_convert(a, toUpper, (int)sizeof(toUpper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677}
3678
3679 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003680utf_islower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003682 // German sharp s is lower case but has no upper case equivalent.
Bram Moolenaar88178de2012-06-01 17:46:59 +02003683 return (utf_toupper(a) != a) || a == 0xdf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684}
3685
3686/*
3687 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3688 * simple case folding.
3689 */
3690 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003691utf_tolower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003693 // If 'casemap' contains "keepascii" use ASCII style tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3695 return TOLOWER_ASC(a);
3696
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003697#if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003698 // If towlower() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 if (!(cmp_flags & CMP_INTERNAL))
3700 return towlower(a);
3701#endif
3702
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003703 // For characters below 128 use locale sensitive tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 if (a < 128)
3705 return TOLOWER_LOC(a);
3706
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003707 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003708 return utf_convert(a, toLower, (int)sizeof(toLower));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709}
3710
3711 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003712utf_isupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713{
3714 return (utf_tolower(a) != a);
3715}
3716
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003717 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003718utf_strnicmp(
3719 char_u *s1,
3720 char_u *s2,
3721 size_t n1,
3722 size_t n2)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003723{
3724 int c1, c2, cdiff;
3725 char_u buffer[6];
3726
3727 for (;;)
3728 {
3729 c1 = utf_safe_read_char_adv(&s1, &n1);
3730 c2 = utf_safe_read_char_adv(&s2, &n2);
3731
3732 if (c1 <= 0 || c2 <= 0)
3733 break;
3734
3735 if (c1 == c2)
3736 continue;
3737
3738 cdiff = utf_fold(c1) - utf_fold(c2);
3739 if (cdiff != 0)
3740 return cdiff;
3741 }
3742
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003743 // some string ended or has an incomplete/illegal character sequence
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003744
3745 if (c1 == 0 || c2 == 0)
3746 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003747 // some string ended. shorter string is smaller
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003748 if (c1 == 0 && c2 == 0)
3749 return 0;
3750 return c1 == 0 ? -1 : 1;
3751 }
3752
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003753 // Continue with bytewise comparison to produce some result that
3754 // would make comparison operations involving this function transitive.
3755 //
3756 // If only one string had an error, comparison should be made with
3757 // folded version of the other string. In this case it is enough
3758 // to fold just one character to determine the result of comparison.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003759
3760 if (c1 != -1 && c2 == -1)
3761 {
3762 n1 = utf_char2bytes(utf_fold(c1), buffer);
3763 s1 = buffer;
3764 }
3765 else if (c2 != -1 && c1 == -1)
3766 {
3767 n2 = utf_char2bytes(utf_fold(c2), buffer);
3768 s2 = buffer;
3769 }
3770
3771 while (n1 > 0 && n2 > 0 && *s1 != NUL && *s2 != NUL)
3772 {
3773 cdiff = (int)(*s1) - (int)(*s2);
3774 if (cdiff != 0)
3775 return cdiff;
3776
3777 s1++;
3778 s2++;
3779 n1--;
3780 n2--;
3781 }
3782
3783 if (n1 > 0 && *s1 == NUL)
3784 n1 = 0;
3785 if (n2 > 0 && *s2 == NUL)
3786 n2 = 0;
3787
3788 if (n1 == 0 && n2 == 0)
3789 return 0;
3790 return n1 == 0 ? -1 : 1;
3791}
3792
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793/*
3794 * Version of strnicmp() that handles multi-byte characters.
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01003795 * Needed for Big5, Shift-JIS and UTF-8 encoding. Other DBCS encodings can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 * probably use strnicmp(), because there are no ASCII characters in the
3797 * second byte.
3798 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3799 * two characters otherwise.
3800 */
3801 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003802mb_strnicmp(char_u *s1, char_u *s2, size_t nn)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803{
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003804 int i, l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 int cdiff;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003806 int n = (int)nn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003808 if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 {
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003810 return utf_strnicmp(s1, s2, nn, nn);
3811 }
3812 else
3813 {
3814 for (i = 0; i < n; i += l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003816 if (s1[i] == NUL && s2[i] == NUL) // both strings end
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003817 return 0;
3818
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003819 l = (*mb_ptr2len)(s1 + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 if (l <= 1)
3821 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003822 // Single byte: first check normally, then with ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 if (s1[i] != s2[i])
3824 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003825 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 if (cdiff != 0)
3827 return cdiff;
3828 }
3829 }
3830 else
3831 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003832 // For non-Unicode multi-byte don't ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 if (l > n - i)
3834 l = n - i;
3835 cdiff = STRNCMP(s1 + i, s2 + i, l);
3836 if (cdiff != 0)
3837 return cdiff;
3838 }
3839 }
3840 }
3841 return 0;
3842}
3843
3844/*
3845 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3846 * 'encoding' has been set to.
3847 */
3848 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003849show_utf8(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850{
3851 int len;
Bram Moolenaar051b7822005-05-19 21:00:46 +00003852 int rlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 char_u *line;
3854 int clen;
3855 int i;
3856
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003857 // Get the byte length of the char under the cursor, including composing
3858 // characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 line = ml_get_cursor();
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003860 len = utfc_ptr2len(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 if (len == 0)
3862 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003863 msg("NUL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 return;
3865 }
3866
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 clen = 0;
3868 for (i = 0; i < len; ++i)
3869 {
3870 if (clen == 0)
3871 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003872 // start of (composing) character, get its length
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 if (i > 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +00003874 {
3875 STRCPY(IObuff + rlen, "+ ");
3876 rlen += 2;
3877 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003878 clen = utf_ptr2len(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 }
Bram Moolenaarb382ad12010-05-21 15:46:35 +02003880 sprintf((char *)IObuff + rlen, "%02x ",
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003881 (line[i] == NL) ? NUL : line[i]); // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 --clen;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003883 rlen += (int)STRLEN(IObuff + rlen);
Bram Moolenaar051b7822005-05-19 21:00:46 +00003884 if (rlen > IOSIZE - 20)
3885 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 }
3887
Bram Moolenaar32526b32019-01-19 17:43:09 +01003888 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889}
3890
3891/*
3892 * mb_head_off() function pointer.
3893 * Return offset from "p" to the first byte of the character it points into.
Bram Moolenaar24397332009-12-02 14:02:39 +00003894 * If "p" points to the NUL at the end of the string return 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 * Returns 0 when already at the first byte of a character.
3896 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003898latin_head_off(char_u *base UNUSED, char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899{
3900 return 0;
3901}
3902
Bram Moolenaar840d16f2019-09-10 21:27:18 +02003903 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003904dbcs_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905{
3906 char_u *q;
3907
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003908 // It can't be a trailing byte when not using DBCS, at the start of the
3909 // string or the previous byte can't start a double-byte.
Bram Moolenaar24397332009-12-02 14:02:39 +00003910 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 return 0;
3912
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003913 // This is slow: need to start at the base and go forward until the
3914 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 q = base;
3916 while (q < p)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003917 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 return (q == p) ? 0 : 1;
3919}
3920
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921/*
3922 * Special version of dbcs_head_off() that works for ScreenLines[], where
3923 * single-width DBCS_JPNU characters are stored separately.
3924 */
3925 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003926dbcs_screen_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927{
3928 char_u *q;
3929
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003930 // It can't be a trailing byte when not using DBCS, at the start of the
3931 // string or the previous byte can't start a double-byte.
3932 // For euc-jp an 0x8e byte in the previous cell always means we have a
3933 // lead byte in the current cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 if (p <= base
3935 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
Bram Moolenaar24397332009-12-02 14:02:39 +00003936 || MB_BYTE2LEN(p[-1]) == 1
3937 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 return 0;
3939
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003940 // This is slow: need to start at the base and go forward until the
3941 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
3942 // For DBCS_JPNU look out for 0x8e, which means the second byte is not
3943 // stored as the next byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 q = base;
3945 while (q < p)
3946 {
3947 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3948 ++q;
3949 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003950 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 }
3952 return (q == p) ? 0 : 1;
3953}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954
Bram Moolenaar52797ba2021-12-16 14:45:13 +00003955/*
3956 * Return offset from "p" to the start of a character, including composing
3957 * characters. "base" must be the start of the string, which must be NUL
3958 * terminated.
3959 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003961utf_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962{
3963 char_u *q;
3964 char_u *s;
3965 int c;
Bram Moolenaar24397332009-12-02 14:02:39 +00003966 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967#ifdef FEAT_ARABIC
3968 char_u *j;
3969#endif
3970
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003971 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 return 0;
3973
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003974 // Skip backwards over trailing bytes: 10xx.xxxx
3975 // Skip backwards again if on a composing char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 for (q = p; ; --q)
3977 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003978 // Move s to the last byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3980 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003981 // Move q to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 while (q > base && (*q & 0xc0) == 0x80)
3983 --q;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003984 // Check for illegal sequence. Do allow an illegal byte after where we
3985 // started.
Bram Moolenaar24397332009-12-02 14:02:39 +00003986 len = utf8len_tab[*q];
3987 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 return 0;
3989
3990 if (q <= base)
3991 break;
3992
3993 c = utf_ptr2char(q);
3994 if (utf_iscomposing(c))
3995 continue;
3996
3997#ifdef FEAT_ARABIC
3998 if (arabic_maycombine(c))
3999 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004000 // Advance to get a sneak-peak at the next char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 j = q;
4002 --j;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004003 // Move j to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 while (j > base && (*j & 0xc0) == 0x80)
4005 --j;
4006 if (arabic_combine(utf_ptr2char(j), c))
4007 continue;
4008 }
4009#endif
4010 break;
4011 }
4012
4013 return (int)(p - q);
4014}
4015
4016/*
Bram Moolenaare52702f2020-06-04 18:22:13 +02004017 * Whether space is NOT allowed before/after 'c'.
4018 */
4019 int
4020utf_eat_space(int cc)
4021{
4022 return ((cc >= 0x2000 && cc <= 0x206F) // General punctuations
4023 || (cc >= 0x2e00 && cc <= 0x2e7f) // Supplemental punctuations
4024 || (cc >= 0x3000 && cc <= 0x303f) // CJK symbols and punctuations
4025 || (cc >= 0xff01 && cc <= 0xff0f) // Full width ASCII punctuations
4026 || (cc >= 0xff1a && cc <= 0xff20) // ..
4027 || (cc >= 0xff3b && cc <= 0xff40) // ..
4028 || (cc >= 0xff5b && cc <= 0xff65)); // ..
4029}
4030
4031/*
4032 * Whether line break is allowed before "cc".
4033 */
4034 int
4035utf_allow_break_before(int cc)
4036{
4037 static const int BOL_prohibition_punct[] =
4038 {
4039 '!',
4040 '%',
4041 ')',
4042 ',',
4043 ':',
4044 ';',
4045 '>',
4046 '?',
4047 ']',
4048 '}',
4049 0x2019, // ’ right single quotation mark
4050 0x201d, // ” right double quotation mark
4051 0x2020, // † dagger
4052 0x2021, // ‡ double dagger
4053 0x2026, // … horizontal ellipsis
4054 0x2030, // ‰ per mille sign
Christian Brabandtee17b6f2023-09-09 11:23:50 +02004055 0x2031, // ‱ per ten thousand sign
Bram Moolenaare52702f2020-06-04 18:22:13 +02004056 0x203c, // ‼ double exclamation mark
4057 0x2047, // ⁇ double question mark
4058 0x2048, // ⁈ question exclamation mark
4059 0x2049, // ⁉ exclamation question mark
4060 0x2103, // ℃ degree celsius
4061 0x2109, // ℉ degree fahrenheit
4062 0x3001, // 、 ideographic comma
4063 0x3002, // 。 ideographic full stop
4064 0x3009, // 〉 right angle bracket
4065 0x300b, // 》 right double angle bracket
4066 0x300d, // 」 right corner bracket
4067 0x300f, // 』 right white corner bracket
4068 0x3011, // 】 right black lenticular bracket
4069 0x3015, // 〕 right tortoise shell bracket
4070 0x3017, // 〗 right white lenticular bracket
4071 0x3019, // 〙 right white tortoise shell bracket
4072 0x301b, // 〛 right white square bracket
4073 0xff01, // ! fullwidth exclamation mark
4074 0xff09, // ) fullwidth right parenthesis
4075 0xff0c, // , fullwidth comma
4076 0xff0e, // . fullwidth full stop
4077 0xff1a, // : fullwidth colon
4078 0xff1b, // ; fullwidth semicolon
4079 0xff1f, // ? fullwidth question mark
4080 0xff3d, // ] fullwidth right square bracket
4081 0xff5d, // } fullwidth right curly bracket
4082 };
4083
4084 int first = 0;
K.Takataeeec2542021-06-02 13:28:16 +02004085 int last = ARRAY_LENGTH(BOL_prohibition_punct) - 1;
Bram Moolenaare52702f2020-06-04 18:22:13 +02004086 int mid = 0;
4087
4088 while (first < last)
4089 {
4090 mid = (first + last)/2;
4091
4092 if (cc == BOL_prohibition_punct[mid])
4093 return FALSE;
4094 else if (cc > BOL_prohibition_punct[mid])
4095 first = mid + 1;
4096 else
4097 last = mid - 1;
4098 }
4099
4100 return cc != BOL_prohibition_punct[first];
4101}
4102
4103/*
4104 * Whether line break is allowed after "cc".
4105 */
4106 static int
4107utf_allow_break_after(int cc)
4108{
4109 static const int EOL_prohibition_punct[] =
4110 {
4111 '(',
4112 '<',
4113 '[',
4114 '`',
4115 '{',
4116 //0x2014, // — em dash
4117 0x2018, // ‘ left single quotation mark
4118 0x201c, // “ left double quotation mark
4119 //0x2053, // ~ swung dash
4120 0x3008, // 〈 left angle bracket
4121 0x300a, // 《 left double angle bracket
4122 0x300c, // 「 left corner bracket
4123 0x300e, // 『 left white corner bracket
4124 0x3010, // 【 left black lenticular bracket
4125 0x3014, // 〔 left tortoise shell bracket
4126 0x3016, // 〖 left white lenticular bracket
4127 0x3018, // 〘 left white tortoise shell bracket
4128 0x301a, // 〚 left white square bracket
4129 0xff08, // ( fullwidth left parenthesis
4130 0xff3b, // [ fullwidth left square bracket
4131 0xff5b, // { fullwidth left curly bracket
4132 };
4133
4134 int first = 0;
K.Takataeeec2542021-06-02 13:28:16 +02004135 int last = ARRAY_LENGTH(EOL_prohibition_punct) - 1;
Bram Moolenaare52702f2020-06-04 18:22:13 +02004136 int mid = 0;
4137
4138 while (first < last)
4139 {
4140 mid = (first + last)/2;
4141
4142 if (cc == EOL_prohibition_punct[mid])
4143 return FALSE;
4144 else if (cc > EOL_prohibition_punct[mid])
4145 first = mid + 1;
4146 else
4147 last = mid - 1;
4148 }
4149
4150 return cc != EOL_prohibition_punct[first];
4151}
4152
4153/*
4154 * Whether line break is allowed between "cc" and "ncc".
4155 */
4156 int
4157utf_allow_break(int cc, int ncc)
4158{
4159 // don't break between two-letter punctuations
4160 if (cc == ncc
4161 && (cc == 0x2014 // em dash
4162 || cc == 0x2026)) // horizontal ellipsis
4163 return FALSE;
4164
4165 return utf_allow_break_after(cc) && utf_allow_break_before(ncc);
4166}
4167
4168/*
Bram Moolenaard8b02732005-01-14 21:48:43 +00004169 * Copy a character from "*fp" to "*tp" and advance the pointers.
4170 */
4171 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004172mb_copy_char(char_u **fp, char_u **tp)
Bram Moolenaard8b02732005-01-14 21:48:43 +00004173{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004174 int l = (*mb_ptr2len)(*fp);
Bram Moolenaard8b02732005-01-14 21:48:43 +00004175
4176 mch_memmove(*tp, *fp, (size_t)l);
4177 *tp += l;
4178 *fp += l;
4179}
4180
4181/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 * Return the offset from "p" to the first byte of a character. When "p" is
4183 * at the start of a character 0 is returned, otherwise the offset to the next
4184 * character. Can start anywhere in a stream of bytes.
4185 */
4186 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004187mb_off_next(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188{
4189 int i;
4190 int j;
4191
4192 if (enc_utf8)
4193 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004194 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 return 0;
4196
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004197 // Find the next character that isn't 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
4199 ;
4200 if (i > 0)
4201 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004202 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 for (j = 0; p - j > base; ++j)
4204 if ((p[-j] & 0xc0) != 0x80)
4205 break;
4206 if (utf8len_tab[p[-j]] != i + j)
4207 return 0;
4208 }
4209 return i;
4210 }
4211
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004212 // Only need to check if we're on a trail byte, it doesn't matter if we
4213 // want the offset to the next or current character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 return (*mb_head_off)(base, p);
4215}
4216
4217/*
4218 * Return the offset from "p" to the last byte of the character it points
4219 * into. Can start anywhere in a stream of bytes.
Bram Moolenaar52797ba2021-12-16 14:45:13 +00004220 * Composing characters are not included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 */
4222 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004223mb_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224{
4225 int i;
4226 int j;
4227
4228 if (*p == NUL)
4229 return 0;
4230
4231 if (enc_utf8)
4232 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004233 // Find the last character that is 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
4235 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004236 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 for (j = 0; p - j > base; ++j)
4238 if ((p[-j] & 0xc0) != 0x80)
4239 break;
4240 if (utf8len_tab[p[-j]] != i + j + 1)
4241 return 0;
4242 return i;
4243 }
4244
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004245 // It can't be the first byte if a double-byte when not using DBCS, at the
4246 // end of the string or the byte can't start a double-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
4248 return 0;
4249
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004250 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 return 1 - dbcs_head_off(base, p);
4252}
4253
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004254/*
4255 * Find the next illegal byte sequence.
4256 */
4257 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004258utf_find_illegal(void)
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004259{
4260 pos_T pos = curwin->w_cursor;
4261 char_u *p;
4262 int len;
4263 vimconv_T vimconv;
4264 char_u *tofree = NULL;
4265
4266 vimconv.vc_type = CONV_NONE;
4267 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
4268 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004269 // 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
4270 // possibly a utf-8 file with illegal bytes. Setup for conversion
4271 // from utf-8 to 'fileencoding'.
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004272 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
4273 }
4274
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004275 curwin->w_cursor.coladd = 0;
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004276 for (;;)
4277 {
4278 p = ml_get_cursor();
4279 if (vimconv.vc_type != CONV_NONE)
4280 {
4281 vim_free(tofree);
4282 tofree = string_convert(&vimconv, p, NULL);
4283 if (tofree == NULL)
4284 break;
4285 p = tofree;
4286 }
4287
4288 while (*p != NUL)
4289 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004290 // Illegal means that there are not enough trail bytes (checked by
4291 // utf_ptr2len()) or too many of them (overlong sequence).
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004292 len = utf_ptr2len(p);
4293 if (*p >= 0x80 && (len == 1
4294 || utf_char2len(utf_ptr2char(p)) != len))
4295 {
4296 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004297 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004298 else
4299 {
4300 int l;
4301
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004302 len = (int)(p - tofree);
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004303 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
4304 {
4305 l = utf_ptr2len(p);
4306 curwin->w_cursor.col += l;
4307 }
4308 }
4309 goto theend;
4310 }
4311 p += len;
4312 }
4313 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4314 break;
4315 ++curwin->w_cursor.lnum;
4316 curwin->w_cursor.col = 0;
4317 }
4318
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004319 // didn't find it: don't move and beep
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004320 curwin->w_cursor = pos;
4321 beep_flush();
4322
4323theend:
4324 vim_free(tofree);
4325 convert_setup(&vimconv, NULL, NULL);
4326}
4327
Bram Moolenaar7c824682022-05-08 22:32:58 +01004328#if defined(FEAT_GUI_GTK) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004329/*
4330 * Return TRUE if string "s" is a valid utf-8 string.
Bram Moolenaar96ba25a2022-07-04 17:34:33 +01004331 * When "end" is NULL stop at the first NUL. Otherwise stop at "end".
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004332 */
4333 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004334utf_valid_string(char_u *s, char_u *end)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004335{
4336 int l;
4337 char_u *p = s;
4338
4339 while (end == NULL ? *p != NUL : p < end)
4340 {
Bram Moolenaar24397332009-12-02 14:02:39 +00004341 l = utf8len_tab_zero[*p];
4342 if (l == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004343 return FALSE; // invalid lead byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004344 if (end != NULL && p + l > end)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004345 return FALSE; // incomplete byte sequence
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004346 ++p;
4347 while (--l > 0)
4348 if ((*p++ & 0xc0) != 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004349 return FALSE; // invalid trail byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004350 }
4351 return TRUE;
4352}
4353#endif
4354
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355#if defined(FEAT_GUI) || defined(PROTO)
4356/*
4357 * Special version of mb_tail_off() for use in ScreenLines[].
4358 */
4359 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004360dbcs_screen_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004362 // It can't be the first byte if a double-byte when not using DBCS, at the
4363 // end of the string or the byte can't start a double-byte.
4364 // For euc-jp an 0x8e byte always means we have a lead byte in the current
4365 // cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 if (*p == NUL || p[1] == NUL
4367 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
4368 || MB_BYTE2LEN(*p) == 1)
4369 return 0;
4370
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004371 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 return 1 - dbcs_screen_head_off(base, p);
4373}
4374#endif
4375
4376/*
4377 * If the cursor moves on an trail byte, set the cursor on the lead byte.
4378 * Thus it moves left if necessary.
4379 * Return TRUE when the cursor was adjusted.
4380 */
4381 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004382mb_adjust_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383{
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004384 mb_adjustpos(curbuf, &curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385}
4386
4387/*
4388 * Adjust position "*lp" to point to the first byte of a multi-byte character.
4389 * If it points to a tail byte it's moved backwards to the head byte.
4390 */
4391 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004392mb_adjustpos(buf_T *buf, pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393{
4394 char_u *p;
4395
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004396 if (lp->col > 0 || lp->coladd > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004398 p = ml_get_buf(buf, lp->lnum, FALSE);
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01004399 if (*p == NUL || (int)STRLEN(p) < lp->col)
4400 lp->col = 0;
4401 else
4402 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004403 // Reset "coladd" when the cursor would be on the right half of a
4404 // double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 if (lp->coladd == 1
4406 && p[lp->col] != TAB
4407 && vim_isprintc((*mb_ptr2char)(p + lp->col))
4408 && ptr2cells(p + lp->col) > 1)
4409 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 }
4411}
4412
4413/*
4414 * Return a pointer to the character before "*p", if there is one.
4415 */
4416 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004417mb_prevptr(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004418 char_u *line, // start of the string
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004419 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420{
4421 if (p > line)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004422 MB_PTR_BACK(line, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 return p;
4424}
4425
4426/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004427 * Return the character length of "str". Each multi-byte character (with
4428 * following composing characters) counts as one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 */
4430 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004431mb_charlen(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004433 char_u *p = str;
4434 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004436 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 return 0;
4438
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004439 for (count = 0; *p != NUL; count++)
4440 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441
4442 return count;
4443}
4444
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004445/*
4446 * Like mb_charlen() but for a string with specified length.
4447 */
4448 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004449mb_charlen_len(char_u *str, int len)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004450{
4451 char_u *p = str;
4452 int count;
4453
4454 for (count = 0; *p != NUL && p < str + len; count++)
4455 p += (*mb_ptr2len)(p);
4456
4457 return count;
4458}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004459
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460/*
4461 * Try to un-escape a multi-byte character.
4462 * Used for the "to" and "from" part of a mapping.
4463 * Return the un-escaped string if it is a multi-byte character, and advance
4464 * "pp" to just after the bytes that formed it.
4465 * Return NULL if no multi-byte char was found.
4466 */
4467 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004468mb_unescape(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469{
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004470 static char_u buf[6];
4471 int n;
4472 int m = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 char_u *str = *pp;
4474
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004475 // Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
4476 // KS_EXTRA KE_CSI to CSI.
4477 // Maximum length of a utf-8 character is 4 bytes.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004478 for (n = 0; str[n] != NUL && m < 4; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 {
4480 if (str[n] == K_SPECIAL
4481 && str[n + 1] == KS_SPECIAL
4482 && str[n + 2] == KE_FILLER)
4483 {
4484 buf[m++] = K_SPECIAL;
4485 n += 2;
4486 }
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004487 else if ((str[n] == K_SPECIAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488# ifdef FEAT_GUI
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004489 || str[n] == CSI
4490# endif
4491 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 && str[n + 1] == KS_EXTRA
4493 && str[n + 2] == (int)KE_CSI)
4494 {
4495 buf[m++] = CSI;
4496 n += 2;
4497 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 else if (str[n] == K_SPECIAL
4499# ifdef FEAT_GUI
4500 || str[n] == CSI
4501# endif
4502 )
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004503 break; // a special key can't be a multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 else
4505 buf[m++] = str[n];
4506 buf[m] = NUL;
4507
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004508 // Return a multi-byte character if it's found. An illegal sequence
4509 // will result in a 1 here.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004510 if ((*mb_ptr2len)(buf) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 {
4512 *pp = str + n + 1;
4513 return buf;
4514 }
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004515
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004516 // Bail out quickly for ASCII.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004517 if (buf[0] < 128)
4518 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 }
4520 return NULL;
4521}
4522
4523/*
4524 * Return TRUE if the character at "row"/"col" on the screen is the left side
4525 * of a double-width character.
4526 * Caller must make sure "row" and "col" are not invalid!
4527 */
4528 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004529mb_lefthalve(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530{
Bram Moolenaar367329b2007-08-30 11:53:22 +00004531 return (*mb_off2cells)(LineOffset[row] + col,
4532 LineOffset[row] + screen_Columns) > 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533}
4534
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535/*
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004536 * Correct a position on the screen, if it's the right half of a double-wide
4537 * char move it to the left half. Returns the corrected column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 */
4539 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004540mb_fix_col(int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541{
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004542 int off;
4543
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 col = check_col(col);
4545 row = check_row(row);
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004546 off = LineOffset[row] + col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 if (has_mbyte && ScreenLines != NULL && col > 0
4548 && ((enc_dbcs
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004549 && ScreenLines[off] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004551 ScreenLines + off))
4552 || (enc_utf8 && ScreenLines[off] == 0
4553 && ScreenLinesUC[off] == 0)))
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004554 return col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 return col;
4556}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004558static int enc_alias_search(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559
4560/*
4561 * Skip the Vim specific head of a 'encoding' name.
4562 */
4563 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004564enc_skip(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565{
4566 if (STRNCMP(p, "2byte-", 6) == 0)
4567 return p + 6;
4568 if (STRNCMP(p, "8bit-", 5) == 0)
4569 return p + 5;
4570 return p;
4571}
4572
4573/*
4574 * Find the canonical name for encoding "enc".
4575 * When the name isn't recognized, returns "enc" itself, but with all lower
4576 * case characters and '_' replaced with '-'.
4577 * Returns an allocated string. NULL for out-of-memory.
4578 */
4579 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004580enc_canonize(char_u *enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581{
4582 char_u *r;
4583 char_u *p, *s;
4584 int i;
4585
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004586 if (STRCMP(enc, "default") == 0)
4587 {
K.Takataef8706f2021-05-31 18:40:49 +02004588#ifdef MSWIN
4589 // Use the system encoding, the default is always utf-8.
4590 r = enc_locale();
4591#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004592 // Use the default encoding as it's found by set_init_1().
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004593 r = get_encoding_default();
K.Takataef8706f2021-05-31 18:40:49 +02004594#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004595 if (r == NULL)
K.Takataf883d902021-05-30 18:04:19 +02004596 r = (char_u *)ENC_DFLT;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004597 return vim_strsave(r);
4598 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004599
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004600 // copy "enc" to allocated memory, with room for two '-'
Bram Moolenaar964b3742019-05-24 18:54:09 +02004601 r = alloc(STRLEN(enc) + 3);
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004602 if (r == NULL)
4603 return NULL;
4604
4605 // Make it all lower case and replace '_' with '-'.
4606 p = r;
4607 for (s = enc; *s != NUL; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 {
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004609 if (*s == '_')
4610 *p++ = '-';
4611 else
4612 *p++ = TOLOWER_ASC(*s);
4613 }
4614 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004616 // Skip "2byte-" and "8bit-".
4617 p = enc_skip(r);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004619 // Change "microsoft-cp" to "cp". Used in some spell files.
4620 if (STRNCMP(p, "microsoft-cp", 12) == 0)
4621 STRMOVE(p, p + 10);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004622
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004623 // "iso8859" -> "iso-8859"
4624 if (STRNCMP(p, "iso8859", 7) == 0)
4625 {
4626 STRMOVE(p + 4, p + 3);
4627 p[3] = '-';
4628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004630 // "iso-8859n" -> "iso-8859-n"
Keith Thompson184f71c2024-01-04 21:19:04 +01004631 if (STRNCMP(p, "iso-8859", 8) == 0 && SAFE_isdigit(p[8]))
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004632 {
4633 STRMOVE(p + 9, p + 8);
4634 p[8] = '-';
4635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004637 // "latin-N" -> "latinN"
4638 if (STRNCMP(p, "latin-", 6) == 0)
4639 STRMOVE(p + 5, p + 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00004641 if (enc_canon_search(p) >= 0)
4642 {
4643 // canonical name can be used unmodified
4644 if (p != r)
4645 STRMOVE(r, p);
4646 }
4647 else if ((i = enc_alias_search(p)) >= 0)
4648 {
4649 // alias recognized, get canonical name
4650 vim_free(r);
4651 r = vim_strsave((char_u *)enc_canon_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 }
4653 return r;
4654}
4655
4656/*
4657 * Search for an encoding alias of "name".
4658 * Returns -1 when not found.
4659 */
4660 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004661enc_alias_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662{
4663 int i;
4664
4665 for (i = 0; enc_alias_table[i].name != NULL; ++i)
4666 if (STRCMP(name, enc_alias_table[i].name) == 0)
4667 return enc_alias_table[i].canon;
4668 return -1;
4669}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004670
4671
4672#ifdef HAVE_LANGINFO_H
4673# include <langinfo.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674#endif
4675
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004676#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677/*
Bram Moolenaar2a027452017-09-26 19:10:37 +02004678 * Get the canonicalized encoding from the specified locale string "locale"
4679 * or from the environment variables LC_ALL, LC_CTYPE and LANG.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 * Returns an allocated string when successful, NULL when not.
4681 */
4682 char_u *
Bram Moolenaar2a027452017-09-26 19:10:37 +02004683enc_locale_env(char *locale)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684{
Bram Moolenaar2a027452017-09-26 19:10:37 +02004685 char *s = locale;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 char *p;
4687 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689
4690 if (s == NULL || *s == NUL)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004691 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
4692 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
4693 s = getenv("LANG");
4694
4695 if (s == NULL || *s == NUL)
4696 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004698 // The most generic locale format is:
4699 // language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
4700 // If there is a '.' remove the part before it.
4701 // if there is something after the codeset, remove it.
4702 // Make the name lowercase and replace '_' with '-'.
4703 // Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
4704 // "ko_KR.EUC" == "euc-kr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
4706 {
4707 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
Keith Thompson184f71c2024-01-04 21:19:04 +01004708 && !SAFE_isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004710 // copy "XY.EUC" to "euc-XY" to buf[10]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 STRCPY(buf + 10, "euc-");
4712 buf[14] = p[-2];
4713 buf[15] = p[-1];
4714 buf[16] = 0;
4715 s = buf + 10;
4716 }
4717 else
4718 s = p + 1;
4719 }
Bram Moolenaar5498a412016-07-11 23:19:05 +02004720 for (i = 0; i < (int)sizeof(buf) - 1 && s[i] != NUL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 {
4722 if (s[i] == '_' || s[i] == '-')
4723 buf[i] = '-';
Keith Thompson184f71c2024-01-04 21:19:04 +01004724 else if (SAFE_isalnum(s[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 buf[i] = TOLOWER_ASC(s[i]);
4726 else
4727 break;
4728 }
4729 buf[i] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730
4731 return enc_canonize((char_u *)buf);
4732}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734
Bram Moolenaar2a027452017-09-26 19:10:37 +02004735/*
4736 * Get the canonicalized encoding of the current locale.
4737 * Returns an allocated string when successful, NULL when not.
4738 */
4739 char_u *
4740enc_locale(void)
4741{
Bram Moolenaar4f974752019-02-17 17:44:42 +01004742#ifdef MSWIN
Bram Moolenaar2a027452017-09-26 19:10:37 +02004743 char buf[50];
4744 long acp = GetACP();
4745
4746 if (acp == 1200)
4747 STRCPY(buf, "ucs-2le");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004748 else if (acp == 1252) // cp1252 is used as latin1
Bram Moolenaar2a027452017-09-26 19:10:37 +02004749 STRCPY(buf, "latin1");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004750 else if (acp == 65001)
4751 STRCPY(buf, "utf-8");
Bram Moolenaar2a027452017-09-26 19:10:37 +02004752 else
4753 sprintf(buf, "cp%ld", acp);
4754
4755 return enc_canonize((char_u *)buf);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004756#else
Bram Moolenaar2a027452017-09-26 19:10:37 +02004757 char *s;
4758
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004759# ifdef HAVE_NL_LANGINFO_CODESET
Bram Moolenaar2a027452017-09-26 19:10:37 +02004760 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004761# endif
4762# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004763 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004764# endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004765 s = NULL;
4766
4767 return enc_locale_env(s);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004768#endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004769}
4770
Bram Moolenaar4f974752019-02-17 17:44:42 +01004771# if defined(MSWIN) || defined(PROTO) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772/*
4773 * Convert an encoding name to an MS-Windows codepage.
4774 * Returns zero if no codepage can be figured out.
4775 */
4776 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004777encname2codepage(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778{
4779 int cp;
4780 char_u *p = name;
4781 int idx;
4782
4783 if (STRNCMP(p, "8bit-", 5) == 0)
4784 p += 5;
4785 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
4786 p += 6;
4787
4788 if (p[0] == 'c' && p[1] == 'p')
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +02004789 cp = atoi((char *)p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 else if ((idx = enc_canon_search(p)) >= 0)
4791 cp = enc_canon_table[idx].codepage;
4792 else
4793 return 0;
4794 if (IsValidCodePage(cp))
4795 return cp;
4796 return 0;
4797}
Bram Moolenaar2a027452017-09-26 19:10:37 +02004798# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799
4800# if defined(USE_ICONV) || defined(PROTO)
4801
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802/*
4803 * Call iconv_open() with a check if iconv() works properly (there are broken
4804 * versions).
4805 * Returns (void *)-1 if failed.
4806 * (should return iconv_t, but that causes problems with prototypes).
4807 */
4808 void *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004809my_iconv_open(char_u *to, char_u *from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810{
4811 iconv_t fd;
4812#define ICONV_TESTLEN 400
4813 char_u tobuf[ICONV_TESTLEN];
4814 char *p;
4815 size_t tolen;
4816 static int iconv_ok = -1;
4817
4818 if (iconv_ok == FALSE)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004819 return (void *)-1; // detected a broken iconv() previously
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820
4821#ifdef DYNAMIC_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004822 // Check if the iconv.dll can be found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 if (!iconv_enabled(TRUE))
4824 return (void *)-1;
4825#endif
4826
4827 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
4828
4829 if (fd != (iconv_t)-1 && iconv_ok == -1)
4830 {
4831 /*
4832 * Do a dummy iconv() call to check if it actually works. There is a
4833 * version of iconv() on Linux that is broken. We can't ignore it,
4834 * because it's wide-spread. The symptoms are that after outputting
4835 * the initial shift state the "to" pointer is NULL and conversion
4836 * stops for no apparent reason after about 8160 characters.
4837 */
4838 p = (char *)tobuf;
4839 tolen = ICONV_TESTLEN;
4840 (void)iconv(fd, NULL, NULL, &p, &tolen);
4841 if (p == NULL)
4842 {
4843 iconv_ok = FALSE;
4844 iconv_close(fd);
4845 fd = (iconv_t)-1;
4846 }
4847 else
4848 iconv_ok = TRUE;
4849 }
4850
4851 return (void *)fd;
4852}
4853
4854/*
4855 * Convert the string "str[slen]" with iconv().
4856 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4857 * sequence and set "*unconvlenp" to the length of it.
4858 * Returns the converted string in allocated memory. NULL for an error.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004859 * If resultlenp is not NULL, sets it to the result length in bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 */
4861 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004862iconv_string(
4863 vimconv_T *vcp,
4864 char_u *str,
4865 int slen,
4866 int *unconvlenp,
4867 int *resultlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868{
4869 const char *from;
4870 size_t fromlen;
4871 char *to;
4872 size_t tolen;
4873 size_t len = 0;
4874 size_t done = 0;
4875 char_u *result = NULL;
4876 char_u *p;
4877 int l;
4878
4879 from = (char *)str;
4880 fromlen = slen;
4881 for (;;)
4882 {
4883 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4884 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004885 // Allocate enough room for most conversions. When re-allocating
4886 // increase the buffer size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 len = len + fromlen * 2 + 40;
Bram Moolenaar964b3742019-05-24 18:54:09 +02004888 p = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 if (p != NULL && done > 0)
4890 mch_memmove(p, result, done);
4891 vim_free(result);
4892 result = p;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004893 if (result == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 break;
4895 }
4896
4897 to = (char *)result + done;
4898 tolen = len - done - 2;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004899 // Avoid a warning for systems with a wrong iconv() prototype by
4900 // casting the second argument to void *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4902 != (size_t)-1)
4903 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004904 // Finished, append a NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 *to = NUL;
4906 break;
4907 }
4908
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004909 // Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4910 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 if (!vcp->vc_fail && unconvlenp != NULL
4912 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4913 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004914 // Handle an incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 *to = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004916 *unconvlenp = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 break;
4918 }
4919
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004920 // Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4921 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 else if (!vcp->vc_fail
4923 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4924 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4925 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004926 // Can't convert: insert a '?' and skip a character. This assumes
4927 // conversion from 'encoding' to something else. In other
4928 // situations we don't know what to skip anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 *to++ = '?';
4930 if ((*mb_ptr2cells)((char_u *)from) > 1)
4931 *to++ = '?';
Bram Moolenaar217ad922005-03-20 22:37:15 +00004932 if (enc_utf8)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004933 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
Bram Moolenaar217ad922005-03-20 22:37:15 +00004934 else
4935 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004936 l = (*mb_ptr2len)((char_u *)from);
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004937 if (l > (int)fromlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004938 l = (int)fromlen;
Bram Moolenaar217ad922005-03-20 22:37:15 +00004939 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 from += l;
4941 fromlen -= l;
4942 }
4943 else if (ICONV_ERRNO != ICONV_E2BIG)
4944 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004945 // conversion failed
Bram Moolenaard23a8232018-02-10 18:45:26 +01004946 VIM_CLEAR(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 break;
4948 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004949 // Not enough room or skipping illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 done = to - (char *)result;
4951 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004952
Bram Moolenaar0d35e912011-04-11 14:29:17 +02004953 if (resultlenp != NULL && result != NULL)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004954 *resultlenp = (int)(to - (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 return result;
4956}
4957
4958# if defined(DYNAMIC_ICONV) || defined(PROTO)
4959/*
4960 * Dynamically load the "iconv.dll" on Win32.
4961 */
4962
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004963# ifndef DYNAMIC_ICONV // must be generating prototypes
Bram Moolenaar938ee832016-01-24 15:36:03 +01004964# define HINSTANCE int
4965# endif
Bram Moolenaard6f676d2005-06-01 21:51:55 +00004966static HINSTANCE hIconvDLL = 0;
4967static HINSTANCE hMsvcrtDLL = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968
Bram Moolenaar938ee832016-01-24 15:36:03 +01004969# ifndef DYNAMIC_ICONV_DLL
4970# define DYNAMIC_ICONV_DLL "iconv.dll"
4971# define DYNAMIC_ICONV_DLL_ALT1 "libiconv.dll"
4972# define DYNAMIC_ICONV_DLL_ALT2 "libiconv2.dll"
4973# define DYNAMIC_ICONV_DLL_ALT3 "libiconv-2.dll"
4974# endif
4975# ifndef DYNAMIC_MSVCRT_DLL
4976# define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978
4979/*
4980 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4981 */
4982 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004983iconv_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984{
4985 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4986 return TRUE;
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004987
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004988 // The iconv DLL file goes under different names, try them all.
4989 // Do the "2" version first, it's newer.
Bram Moolenaar938ee832016-01-24 15:36:03 +01004990#ifdef DYNAMIC_ICONV_DLL_ALT2
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004991 if (hIconvDLL == 0)
4992 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT2);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004993#endif
4994#ifdef DYNAMIC_ICONV_DLL_ALT3
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004995 if (hIconvDLL == 0)
4996 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT3);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004997#endif
4998 if (hIconvDLL == 0)
4999 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL);
5000#ifdef DYNAMIC_ICONV_DLL_ALT1
5001 if (hIconvDLL == 0)
5002 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT1);
5003#endif
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02005004
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 if (hIconvDLL != 0)
Bram Moolenaarebbcb822010-10-23 14:02:54 +02005006 hMsvcrtDLL = vimLoadLib(DYNAMIC_MSVCRT_DLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
5008 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005009 // Only give the message when 'verbose' is set, otherwise it might be
5010 // done whenever a conversion is attempted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005012 {
5013 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005014 semsg(_(e_could_not_load_library_str_str),
Martin Tournoij1a3e5742021-07-24 13:57:29 +02005015 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL,
5016 GetWin32Error());
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005017 verbose_leave();
5018 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 iconv_end();
5020 return FALSE;
5021 }
5022
Bram Moolenaar35d7a2f2022-06-09 20:53:54 +01005023 iconv = (size_t (*)(iconv_t, const char **,
5024 size_t *, char **, size_t *))
5025 GetProcAddress(hIconvDLL, "libiconv");
5026 iconv_open = (iconv_t (*)(const char *, const char *))
5027 GetProcAddress(hIconvDLL, "libiconv_open");
5028 iconv_close = (int (*)(iconv_t))
5029 GetProcAddress(hIconvDLL, "libiconv_close");
5030 iconvctl = (int (*)(iconv_t, int, void *))
5031 GetProcAddress(hIconvDLL, "libiconvctl");
5032 iconv_errno = (int *(*)(void))get_dll_import_func(hIconvDLL, "_errno");
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01005033 if (iconv_errno == NULL)
Bram Moolenaar35d7a2f2022-06-09 20:53:54 +01005034 iconv_errno = (int *(*)(void))GetProcAddress(hMsvcrtDLL, "_errno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
5036 || iconvctl == NULL || iconv_errno == NULL)
5037 {
5038 iconv_end();
5039 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005040 {
5041 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005042 semsg(_(e_could_not_load_library_function_str), "for libiconv");
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005043 verbose_leave();
5044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 return FALSE;
5046 }
5047 return TRUE;
5048}
5049
5050 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005051iconv_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005053 // Don't use iconv() when inputting or outputting characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 if (input_conv.vc_type == CONV_ICONV)
5055 convert_setup(&input_conv, NULL, NULL);
5056 if (output_conv.vc_type == CONV_ICONV)
5057 convert_setup(&output_conv, NULL, NULL);
5058
5059 if (hIconvDLL != 0)
5060 FreeLibrary(hIconvDLL);
5061 if (hMsvcrtDLL != 0)
5062 FreeLibrary(hMsvcrtDLL);
5063 hIconvDLL = 0;
5064 hMsvcrtDLL = 0;
5065}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005066# endif // DYNAMIC_ICONV
5067# endif // USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
Bram Moolenaara3a12462019-09-07 15:08:38 +02005069#if defined(FEAT_EVAL) || defined(PROTO)
5070/*
5071 * "getimstatus()" function
5072 */
5073 void
5074f_getimstatus(typval_T *argvars UNUSED, typval_T *rettv)
5075{
5076# if defined(HAVE_INPUT_METHOD)
5077 rettv->vval.v_number = im_get_status();
5078# endif
5079}
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02005080
5081/*
5082 * iconv() function
5083 */
5084 void
5085f_iconv(typval_T *argvars UNUSED, typval_T *rettv)
5086{
5087 char_u buf1[NUMBUFLEN];
5088 char_u buf2[NUMBUFLEN];
5089 char_u *from, *to, *str;
5090 vimconv_T vimconv;
5091
5092 rettv->v_type = VAR_STRING;
5093 rettv->vval.v_string = NULL;
5094
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02005095 if (in_vim9script()
5096 && (check_for_string_arg(argvars, 0) == FAIL
5097 || check_for_string_arg(argvars, 1) == FAIL
5098 || check_for_string_arg(argvars, 2) == FAIL))
5099 return;
5100
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02005101 str = tv_get_string(&argvars[0]);
5102 from = enc_canonize(enc_skip(tv_get_string_buf(&argvars[1], buf1)));
5103 to = enc_canonize(enc_skip(tv_get_string_buf(&argvars[2], buf2)));
5104 vimconv.vc_type = CONV_NONE;
5105 convert_setup(&vimconv, from, to);
5106
5107 // If the encodings are equal, no conversion needed.
5108 if (vimconv.vc_type == CONV_NONE)
5109 rettv->vval.v_string = vim_strsave(str);
5110 else
5111 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
5112
5113 convert_setup(&vimconv, NULL, NULL);
5114 vim_free(from);
5115 vim_free(to);
5116}
Bram Moolenaara3a12462019-09-07 15:08:38 +02005117#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118
5119/*
5120 * Setup "vcp" for conversion from "from" to "to".
5121 * The names must have been made canonical with enc_canonize().
5122 * vcp->vc_type must have been initialized to CONV_NONE.
5123 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5124 * instead).
5125 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5126 * Return FAIL when conversion is not supported, OK otherwise.
5127 */
5128 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005129convert_setup(vimconv_T *vcp, char_u *from, char_u *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130{
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005131 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
5132}
5133
5134/*
5135 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
5136 * "from" unicode charsets be considered utf-8. Same for "to".
5137 */
5138 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005139convert_setup_ext(
5140 vimconv_T *vcp,
5141 char_u *from,
5142 int from_unicode_is_utf8,
5143 char_u *to,
5144 int to_unicode_is_utf8)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005145{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 int from_prop;
5147 int to_prop;
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005148 int from_is_utf8;
5149 int to_is_utf8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005151 // Reset to no conversion.
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005152#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5154 iconv_close(vcp->vc_fd);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 vcp->vc_type = CONV_NONE;
5157 vcp->vc_factor = 1;
5158 vcp->vc_fail = FALSE;
5159
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005160 // No conversion when one of the names is empty or they are equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5162 || STRCMP(from, to) == 0)
5163 return OK;
5164
5165 from_prop = enc_canon_props(from);
5166 to_prop = enc_canon_props(to);
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005167 if (from_unicode_is_utf8)
5168 from_is_utf8 = from_prop & ENC_UNICODE;
5169 else
5170 from_is_utf8 = from_prop == ENC_UNICODE;
5171 if (to_unicode_is_utf8)
5172 to_is_utf8 = to_prop & ENC_UNICODE;
5173 else
5174 to_is_utf8 = to_prop == ENC_UNICODE;
5175
5176 if ((from_prop & ENC_LATIN1) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005178 // Internal latin1 -> utf-8 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 vcp->vc_type = CONV_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005180 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005182 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005183 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005184 // Internal latin9 -> utf-8 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005185 vcp->vc_type = CONV_9_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005186 vcp->vc_factor = 3; // up to three as long (euro sign)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005187 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005188 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005190 // Internal utf-8 -> latin1 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 vcp->vc_type = CONV_TO_LATIN1;
5192 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005193 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005194 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005195 // Internal utf-8 -> latin9 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005196 vcp->vc_type = CONV_TO_LATIN9;
5197 }
Bram Moolenaar4f974752019-02-17 17:44:42 +01005198#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005199 // Win32-specific codepage <-> codepage conversion without iconv.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005200 else if ((from_is_utf8 || encname2codepage(from) > 0)
5201 && (to_is_utf8 || encname2codepage(to) > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 {
5203 vcp->vc_type = CONV_CODEPAGE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005204 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005205 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
5206 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 }
5208#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02005209#ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
5211 {
5212 vcp->vc_type = CONV_MAC_LATIN1;
5213 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005214 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 {
5216 vcp->vc_type = CONV_MAC_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005217 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 }
5219 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
5220 {
5221 vcp->vc_type = CONV_LATIN1_MAC;
5222 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005223 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 {
5225 vcp->vc_type = CONV_UTF8_MAC;
5226 }
5227#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005228#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 else
5230 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005231 // Use iconv() for conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 vcp->vc_fd = (iconv_t)my_iconv_open(
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005233 to_is_utf8 ? (char_u *)"utf-8" : to,
5234 from_is_utf8 ? (char_u *)"utf-8" : from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 if (vcp->vc_fd != (iconv_t)-1)
5236 {
5237 vcp->vc_type = CONV_ICONV;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005238 vcp->vc_factor = 4; // could be longer too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 }
5240 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 if (vcp->vc_type == CONV_NONE)
5243 return FAIL;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005244
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245 return OK;
5246}
5247
Bram Moolenaar4f974752019-02-17 17:44:42 +01005248#if defined(FEAT_GUI) || defined(AMIGA) || defined(MSWIN) \
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005249 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250/*
5251 * Do conversion on typed input characters in-place.
5252 * The input and output are not NUL terminated!
5253 * Returns the length after conversion.
5254 */
5255 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005256convert_input(char_u *ptr, int len, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257{
5258 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
5259}
5260#endif
5261
5262/*
5263 * Like convert_input(), but when there is an incomplete byte sequence at the
5264 * end return that as an allocated string in "restp" and set "*restlenp" to
5265 * the length. If "restp" is NULL it is not used.
5266 */
5267 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005268convert_input_safe(
5269 char_u *ptr,
5270 int len,
5271 int maxlen,
5272 char_u **restp,
5273 int *restlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274{
5275 char_u *d;
5276 int dlen = len;
5277 int unconvertlen = 0;
5278
5279 d = string_convert_ext(&input_conv, ptr, &dlen,
5280 restp == NULL ? NULL : &unconvertlen);
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005281 if (d == NULL)
5282 return dlen;
5283
5284 if (dlen <= maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 {
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005286 if (unconvertlen > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 {
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005288 // Move the unconverted characters to allocated memory.
5289 *restp = alloc(unconvertlen);
5290 if (*restp != NULL)
5291 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
5292 *restlenp = unconvertlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005294 mch_memmove(ptr, d, dlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005296 else
5297 // result is too long, keep the unconverted text (the caller must
5298 // have done something wrong!)
5299 dlen = len;
5300 vim_free(d);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 return dlen;
5302}
5303
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304/*
5305 * Convert text "ptr[*lenp]" according to "vcp".
5306 * Returns the result in allocated memory and sets "*lenp".
5307 * When "lenp" is NULL, use NUL terminated strings.
5308 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
5309 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
5310 */
5311 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005312string_convert(
5313 vimconv_T *vcp,
5314 char_u *ptr,
5315 int *lenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316{
5317 return string_convert_ext(vcp, ptr, lenp, NULL);
5318}
5319
5320/*
5321 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
5322 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
5323 * set to the number of remaining bytes.
5324 */
5325 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005326string_convert_ext(
5327 vimconv_T *vcp,
5328 char_u *ptr,
5329 int *lenp,
5330 int *unconvlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331{
5332 char_u *retval = NULL;
5333 char_u *d;
5334 int len;
5335 int i;
5336 int l;
5337 int c;
5338
5339 if (lenp == NULL)
5340 len = (int)STRLEN(ptr);
5341 else
5342 len = *lenp;
5343 if (len == 0)
5344 return vim_strsave((char_u *)"");
5345
5346 switch (vcp->vc_type)
5347 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005348 case CONV_TO_UTF8: // latin1 to utf-8 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 retval = alloc(len * 2 + 1);
5350 if (retval == NULL)
5351 break;
5352 d = retval;
5353 for (i = 0; i < len; ++i)
5354 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005355 c = ptr[i];
5356 if (c < 0x80)
5357 *d++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 else
5359 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005360 *d++ = 0xc0 + ((unsigned)c >> 6);
5361 *d++ = 0x80 + (c & 0x3f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 }
5363 }
5364 *d = NUL;
5365 if (lenp != NULL)
5366 *lenp = (int)(d - retval);
5367 break;
5368
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005369 case CONV_9_TO_UTF8: // latin9 to utf-8 conversion
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005370 retval = alloc(len * 3 + 1);
5371 if (retval == NULL)
5372 break;
5373 d = retval;
5374 for (i = 0; i < len; ++i)
5375 {
5376 c = ptr[i];
5377 switch (c)
5378 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005379 case 0xa4: c = 0x20ac; break; // euro
5380 case 0xa6: c = 0x0160; break; // S hat
5381 case 0xa8: c = 0x0161; break; // S -hat
5382 case 0xb4: c = 0x017d; break; // Z hat
5383 case 0xb8: c = 0x017e; break; // Z -hat
5384 case 0xbc: c = 0x0152; break; // OE
5385 case 0xbd: c = 0x0153; break; // oe
5386 case 0xbe: c = 0x0178; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005387 }
5388 d += utf_char2bytes(c, d);
5389 }
5390 *d = NUL;
5391 if (lenp != NULL)
5392 *lenp = (int)(d - retval);
5393 break;
5394
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005395 case CONV_TO_LATIN1: // utf-8 to latin1 conversion
5396 case CONV_TO_LATIN9: // utf-8 to latin9 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397 retval = alloc(len + 1);
5398 if (retval == NULL)
5399 break;
5400 d = retval;
5401 for (i = 0; i < len; ++i)
5402 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005403 l = utf_ptr2len_len(ptr + i, len - i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 if (l == 0)
5405 *d++ = NUL;
5406 else if (l == 1)
5407 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005408 int l_w = utf8len_tab_zero[ptr[i]];
5409
5410 if (l_w == 0)
5411 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005412 // Illegal utf-8 byte cannot be converted
Bram Moolenaar24397332009-12-02 14:02:39 +00005413 vim_free(retval);
5414 return NULL;
5415 }
5416 if (unconvlenp != NULL && l_w > len - i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005418 // Incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 *unconvlenp = len - i;
5420 break;
5421 }
5422 *d++ = ptr[i];
5423 }
5424 else
5425 {
5426 c = utf_ptr2char(ptr + i);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005427 if (vcp->vc_type == CONV_TO_LATIN9)
5428 switch (c)
5429 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005430 case 0x20ac: c = 0xa4; break; // euro
5431 case 0x0160: c = 0xa6; break; // S hat
5432 case 0x0161: c = 0xa8; break; // S -hat
5433 case 0x017d: c = 0xb4; break; // Z hat
5434 case 0x017e: c = 0xb8; break; // Z -hat
5435 case 0x0152: c = 0xbc; break; // OE
5436 case 0x0153: c = 0xbd; break; // oe
5437 case 0x0178: c = 0xbe; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005438 case 0xa4:
5439 case 0xa6:
5440 case 0xa8:
5441 case 0xb4:
5442 case 0xb8:
5443 case 0xbc:
5444 case 0xbd:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005445 case 0xbe: c = 0x100; break; // not in latin9
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005446 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005447 if (!utf_iscomposing(c)) // skip composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00005448 {
5449 if (c < 0x100)
5450 *d++ = c;
5451 else if (vcp->vc_fail)
5452 {
5453 vim_free(retval);
5454 return NULL;
5455 }
5456 else
5457 {
5458 *d++ = 0xbf;
5459 if (utf_char2cells(c) > 1)
5460 *d++ = '?';
5461 }
5462 }
5463 i += l - 1;
5464 }
5465 }
5466 *d = NUL;
5467 if (lenp != NULL)
5468 *lenp = (int)(d - retval);
5469 break;
5470
Bram Moolenaar56718732006-03-15 22:53:57 +00005471# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 case CONV_MAC_LATIN1:
5473 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005474 'm', 'l', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 break;
5476
5477 case CONV_LATIN1_MAC:
5478 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005479 'l', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 break;
5481
5482 case CONV_MAC_UTF8:
5483 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005484 'm', 'u', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 break;
5486
5487 case CONV_UTF8_MAC:
5488 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005489 'u', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 break;
5491# endif
5492
5493# ifdef USE_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005494 case CONV_ICONV: // conversion with output_conv.vc_fd
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005495 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 break;
5497# endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005498# ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005499 case CONV_CODEPAGE: // codepage -> codepage
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 {
5501 int retlen;
5502 int tmp_len;
5503 short_u *tmp;
5504
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005505 // 1. codepage/UTF-8 -> ucs-2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005507 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 else
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005509 {
5510 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom,
5511 unconvlenp ? MB_ERR_INVALID_CHARS : 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005512 (char *)ptr, len, 0, 0);
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005513 if (tmp_len == 0
5514 && GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
5515 {
5516 if (lenp != NULL)
5517 *lenp = 0;
5518 if (unconvlenp != NULL)
5519 *unconvlenp = len;
5520 retval = alloc(1);
5521 if (retval)
5522 retval[0] = NUL;
5523 return retval;
5524 }
5525 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005526 tmp = ALLOC_MULT(short_u, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 if (tmp == NULL)
5528 break;
5529 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005530 utf8_to_utf16(ptr, len, tmp, unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005532 MultiByteToWideChar(vcp->vc_cpfrom, 0,
5533 (char *)ptr, len, tmp, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005535 // 2. ucs-2 -> codepage/UTF-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005537 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 else
5539 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
5540 tmp, tmp_len, 0, 0, 0, 0);
5541 retval = alloc(retlen + 1);
5542 if (retval != NULL)
5543 {
5544 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005545 utf16_to_utf8(tmp, tmp_len, retval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 else
5547 WideCharToMultiByte(vcp->vc_cpto, 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005548 tmp, tmp_len,
5549 (char *)retval, retlen, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 retval[retlen] = NUL;
5551 if (lenp != NULL)
5552 *lenp = retlen;
5553 }
5554 vim_free(tmp);
5555 break;
5556 }
5557# endif
5558 }
5559
5560 return retval;
5561}
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005562
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005563#if defined(FEAT_EVAL) || defined(PROTO)
5564
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005565/*
5566 * Table set by setcellwidths().
5567 */
5568typedef struct
5569{
5570 long first;
5571 long last;
5572 char width;
5573} cw_interval_T;
5574
5575static cw_interval_T *cw_table = NULL;
5576static size_t cw_table_size = 0;
5577
5578/*
5579 * Return 1 or 2 when "c" is in the cellwidth table.
5580 * Return 0 if not.
5581 */
5582 static int
5583cw_value(int c)
5584{
5585 int mid, bot, top;
5586
5587 if (cw_table == NULL)
5588 return 0;
5589
5590 // first quick check for Latin1 etc. characters
5591 if (c < cw_table[0].first)
5592 return 0;
5593
5594 // binary search in table
5595 bot = 0;
5596 top = (int)cw_table_size - 1;
5597 while (top >= bot)
5598 {
5599 mid = (bot + top) / 2;
5600 if (cw_table[mid].last < c)
5601 bot = mid + 1;
5602 else if (cw_table[mid].first > c)
5603 top = mid - 1;
5604 else
5605 return cw_table[mid].width;
5606 }
5607 return 0;
5608}
5609
5610 static int
5611tv_nr_compare(const void *a1, const void *a2)
5612{
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005613 listitem_T *li1 = *(listitem_T **)a1;
5614 listitem_T *li2 = *(listitem_T **)a2;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005615
5616 return li1->li_tv.vval.v_number - li2->li_tv.vval.v_number;
5617}
5618
5619 void
5620f_setcellwidths(typval_T *argvars, typval_T *rettv UNUSED)
5621{
5622 list_T *l;
5623 listitem_T *li;
5624 int item;
5625 int i;
5626 listitem_T **ptrs;
5627 cw_interval_T *table;
zeertzjq94358a12021-10-20 11:01:15 +01005628 cw_interval_T *cw_table_save;
5629 size_t cw_table_size_save;
Bram Moolenaar96ba25a2022-07-04 17:34:33 +01005630 char *error = NULL;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005631
Bram Moolenaard83392a2022-09-01 12:22:46 +01005632 if (check_for_nonnull_list_arg(argvars, 0) == FAIL)
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02005633 return;
5634
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005635 l = argvars[0].vval.v_list;
5636 if (l->lv_len == 0)
5637 {
5638 // Clearing the table.
Yegappan Lakshmanan960dcbd2023-03-07 17:45:11 +00005639 VIM_CLEAR(cw_table);
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005640 cw_table_size = 0;
5641 return;
5642 }
5643
5644 ptrs = ALLOC_MULT(listitem_T *, l->lv_len);
5645 if (ptrs == NULL)
5646 return;
5647
5648 // Check that all entries are a list with three numbers, the range is
5649 // valid and the cell width is valid.
5650 item = 0;
Yegappan Lakshmanan14113fd2023-03-07 17:13:51 +00005651 FOR_ALL_LIST_ITEMS(l, li)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005652 {
5653 listitem_T *lili;
5654 varnumber_T n1;
5655
5656 if (li->li_tv.v_type != VAR_LIST || li->li_tv.vval.v_list == NULL)
5657 {
5658 semsg(_(e_list_item_nr_is_not_list), item);
5659 vim_free(ptrs);
5660 return;
5661 }
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005662
5663 lili = li->li_tv.vval.v_list->lv_first;
5664 ptrs[item] = lili;
5665 for (i = 0; lili != NULL; lili = lili->li_next, ++i)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005666 {
5667 if (lili->li_tv.v_type != VAR_NUMBER)
5668 break;
5669 if (i == 0)
5670 {
5671 n1 = lili->li_tv.vval.v_number;
K.Takata71933232023-01-20 16:00:55 +00005672 if (n1 < 0x80)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005673 {
K.Takata71933232023-01-20 16:00:55 +00005674 emsg(_(e_only_values_of_0x80_and_higher_supported));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005675 vim_free(ptrs);
5676 return;
5677 }
5678 }
5679 else if (i == 1 && lili->li_tv.vval.v_number < n1)
5680 {
5681 semsg(_(e_list_item_nr_range_invalid), item);
5682 vim_free(ptrs);
5683 return;
5684 }
5685 else if (i == 2 && (lili->li_tv.vval.v_number < 1
5686 || lili->li_tv.vval.v_number > 2))
5687 {
5688 semsg(_(e_list_item_nr_cell_width_invalid), item);
5689 vim_free(ptrs);
5690 return;
5691 }
5692 }
5693 if (i != 3)
5694 {
5695 semsg(_(e_list_item_nr_does_not_contain_3_numbers), item);
5696 vim_free(ptrs);
5697 return;
5698 }
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005699 ++item;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005700 }
5701
5702 // Sort the list on the first number.
5703 qsort((void *)ptrs, (size_t)l->lv_len, sizeof(listitem_T *), tv_nr_compare);
5704
5705 table = ALLOC_MULT(cw_interval_T, l->lv_len);
5706 if (table == NULL)
5707 {
5708 vim_free(ptrs);
5709 return;
5710 }
5711
5712 // Store the items in the new table.
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005713 for (item = 0; item < l->lv_len; ++item)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005714 {
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005715 listitem_T *lili = ptrs[item];
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005716 varnumber_T n1;
5717
5718 n1 = lili->li_tv.vval.v_number;
5719 if (item > 0 && n1 <= table[item - 1].last)
5720 {
5721 semsg(_(e_overlapping_ranges_for_nr), (long)n1);
5722 vim_free(ptrs);
5723 vim_free(table);
5724 return;
5725 }
5726 table[item].first = n1;
5727 lili = lili->li_next;
5728 table[item].last = lili->li_tv.vval.v_number;
5729 lili = lili->li_next;
5730 table[item].width = lili->li_tv.vval.v_number;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005731 }
5732
5733 vim_free(ptrs);
zeertzjq94358a12021-10-20 11:01:15 +01005734
5735 cw_table_save = cw_table;
5736 cw_table_size_save = cw_table_size;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005737 cw_table = table;
5738 cw_table_size = l->lv_len;
zeertzjq94358a12021-10-20 11:01:15 +01005739
zeertzjq8ca29b62022-08-09 12:53:14 +01005740 // Check that the new value does not conflict with 'listchars' or
5741 // 'fillchars'.
5742 error = check_chars_options();
Bram Moolenaar96ba25a2022-07-04 17:34:33 +01005743 if (error != NULL)
5744 {
5745 emsg(_(error));
5746 cw_table = cw_table_save;
5747 cw_table_size = cw_table_size_save;
5748 vim_free(table);
5749 return;
5750 }
zeertzjq94358a12021-10-20 11:01:15 +01005751
5752 vim_free(cw_table_save);
Yasuhiro Matsumoto2bc849f2023-01-10 16:03:08 +00005753 redraw_all_later(UPD_CLEAR);
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005754}
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005755
5756 void
Kota Kato66bb9ae2023-01-17 18:31:56 +00005757f_getcellwidths(typval_T *argvars UNUSED, typval_T *rettv)
5758{
5759 if (rettv_list_alloc(rettv) == FAIL)
5760 return;
5761
5762 for (size_t i = 0; i < cw_table_size; i++)
5763 {
5764 list_T *entry = list_alloc();
5765 if (entry == NULL)
5766 break;
Bram Moolenaar64f1c412023-01-18 12:45:30 +00005767 if (list_append_number(entry, (varnumber_T)cw_table[i].first) == FAIL
5768 || list_append_number(entry, (varnumber_T)cw_table[i].last) == FAIL
5769 || list_append_number(entry, (varnumber_T)cw_table[i].width) == FAIL
5770 || list_append_list(rettv->vval.v_list, entry) == FAIL)
5771 {
5772 list_free(entry);
5773 break;
5774 }
Kota Kato66bb9ae2023-01-17 18:31:56 +00005775 }
5776}
5777
5778 void
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005779f_charclass(typval_T *argvars, typval_T *rettv UNUSED)
5780{
Christian Brabandt72463f82021-07-02 20:19:31 +02005781 if (check_for_string_arg(argvars, 0) == FAIL
5782 || argvars[0].vval.v_string == NULL)
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005783 return;
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005784 rettv->vval.v_number = mb_get_class(argvars[0].vval.v_string);
5785}
5786#endif
Yee Cheng Chin900894b2023-09-29 20:42:32 +02005787
5788/*
5789 * Function given to ExpandGeneric() to obtain the possible arguments of the
5790 * encoding options.
5791 */
5792 char_u *
5793get_encoding_name(expand_T *xp UNUSED, int idx)
5794{
5795 if (idx >= (int)(sizeof(enc_canon_table) / sizeof(enc_canon_table[0])))
5796 return NULL;
5797
5798 return (char_u*)enc_canon_table[idx].name;
5799}