blob: 78230f65e7ef7b9dec47e24f92262dc0b09836bd [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)
87# include <X11/Xwindows.h>
88# define WINBYTE wBYTE
89# else
90# include <windows.h>
91# define WINBYTE BYTE
92# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000093# ifdef WIN32
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010094# undef WIN32 // Some windows.h define WIN32, we don't want that here.
Bram Moolenaar071d4272004-06-13 20:20:40 +000095# endif
Bram Moolenaarca058dc2014-01-14 13:26:21 +010096#else
97# define WINBYTE BYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#endif
99
Bram Moolenaar4f974752019-02-17 17:44:42 +0100100#if (defined(MSWIN) || defined(WIN32UNIX)) && !defined(__MINGW32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101# include <winnls.h>
102#endif
103
104#ifdef FEAT_GUI_X11
105# include <X11/Intrinsic.h>
106#endif
107#ifdef X_LOCALE
Bram Moolenaard0573012017-10-28 21:11:06 +0200108# include <X11/Xlocale.h>
109# if !defined(HAVE_MBLEN) && !defined(mblen)
110# define mblen _Xmblen
111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112#endif
113
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef HAVE_WCHAR_H
115# include <wchar.h>
116#endif
117
118#if 0
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100119// This has been disabled, because several people reported problems with the
120// wcwidth() and iswprint() library functions, esp. for Hebrew.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121# ifdef __STDC_ISO_10646__
122# define USE_WCHAR_FUNCTIONS
123# endif
124#endif
125
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100126static int dbcs_char2len(int c);
127static int dbcs_char2bytes(int c, char_u *buf);
128static int dbcs_ptr2len(char_u *p);
129static int dbcs_ptr2len_len(char_u *p, int size);
130static int utf_ptr2cells_len(char_u *p, int size);
131static int dbcs_char2cells(int c);
132static int dbcs_ptr2cells_len(char_u *p, int size);
133static int dbcs_ptr2char(char_u *p);
Bram Moolenaar840d16f2019-09-10 21:27:18 +0200134static int dbcs_head_off(char_u *base, char_u *p);
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200135#ifdef FEAT_EVAL
Bram Moolenaar08aac3c2020-08-28 21:04:24 +0200136static int cw_value(int c);
Bram Moolenaar4e4473c2020-08-28 22:24:57 +0200137#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
Bram Moolenaar24397332009-12-02 14:02:39 +0000139/*
140 * Lookup table to quickly get the length in bytes of a UTF-8 character from
141 * the first byte of a UTF-8 string.
142 * Bytes which are illegal when used as the first byte have a 1.
143 * The NUL byte has length 1.
144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145static char utf8len_tab[256] =
146{
147 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,
148 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,
149 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,
150 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 +0000151 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,
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,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 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,
154 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,
155};
156
157/*
Bram Moolenaar24397332009-12-02 14:02:39 +0000158 * Like utf8len_tab above, but using a zero for illegal lead bytes.
159 */
160static char utf8len_tab_zero[256] =
161{
162 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,
163 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,
164 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,
165 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,
166 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,
167 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,
168 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,
169 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,
170};
171
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173/*
174 * Canonical encoding names and their properties.
175 * "iso-8859-n" is handled by enc_canonize() directly.
176 */
177static struct
178{ char *name; int prop; int codepage;}
179enc_canon_table[] =
180{
181#define IDX_LATIN_1 0
182 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
183#define IDX_ISO_2 1
184 {"iso-8859-2", ENC_8BIT, 0},
185#define IDX_ISO_3 2
186 {"iso-8859-3", ENC_8BIT, 0},
187#define IDX_ISO_4 3
188 {"iso-8859-4", ENC_8BIT, 0},
189#define IDX_ISO_5 4
190 {"iso-8859-5", ENC_8BIT, 0},
191#define IDX_ISO_6 5
192 {"iso-8859-6", ENC_8BIT, 0},
193#define IDX_ISO_7 6
194 {"iso-8859-7", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000195#define IDX_ISO_8 7
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 {"iso-8859-8", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000197#define IDX_ISO_9 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {"iso-8859-9", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000199#define IDX_ISO_10 9
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200 {"iso-8859-10", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000201#define IDX_ISO_11 10
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 {"iso-8859-11", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000203#define IDX_ISO_13 11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 {"iso-8859-13", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000205#define IDX_ISO_14 12
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 {"iso-8859-14", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000207#define IDX_ISO_15 13
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000208 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000209#define IDX_KOI8_R 14
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 {"koi8-r", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000211#define IDX_KOI8_U 15
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {"koi8-u", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000213#define IDX_UTF8 16
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 {"utf-8", ENC_UNICODE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000215#define IDX_UCS2 17
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000217#define IDX_UCS2LE 18
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000219#define IDX_UTF16 19
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000221#define IDX_UTF16LE 20
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000223#define IDX_UCS4 21
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000225#define IDX_UCS4LE 22
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000227
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100228 // For debugging DBCS encoding on Unix.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000229#define IDX_DEBUG 23
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 {"debug", ENC_DBCS, DBCS_DEBUG},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000231#define IDX_EUC_JP 24
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 {"euc-jp", ENC_DBCS, DBCS_JPNU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000233#define IDX_SJIS 25
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 {"sjis", ENC_DBCS, DBCS_JPN},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000235#define IDX_EUC_KR 26
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 {"euc-kr", ENC_DBCS, DBCS_KORU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000237#define IDX_EUC_CN 27
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 {"euc-cn", ENC_DBCS, DBCS_CHSU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000239#define IDX_EUC_TW 28
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 {"euc-tw", ENC_DBCS, DBCS_CHTU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000241#define IDX_BIG5 29
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242 {"big5", ENC_DBCS, DBCS_CHT},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000243
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100244 // MS-DOS and MS-Windows codepages are included here, so that they can be
245 // used on Unix too. Most of them are similar to ISO-8859 encodings, but
246 // not exactly the same.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000247#define IDX_CP437 30
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100248 {"cp437", ENC_8BIT, 437}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000249#define IDX_CP737 31
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100250 {"cp737", ENC_8BIT, 737}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000251#define IDX_CP775 32
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100252 {"cp775", ENC_8BIT, 775}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000253#define IDX_CP850 33
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100254 {"cp850", ENC_8BIT, 850}, // like iso-8859-4
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000255#define IDX_CP852 34
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100256 {"cp852", ENC_8BIT, 852}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000257#define IDX_CP855 35
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100258 {"cp855", ENC_8BIT, 855}, // like iso-8859-2
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000259#define IDX_CP857 36
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100260 {"cp857", ENC_8BIT, 857}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000261#define IDX_CP860 37
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100262 {"cp860", ENC_8BIT, 860}, // like iso-8859-9
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000263#define IDX_CP861 38
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100264 {"cp861", ENC_8BIT, 861}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000265#define IDX_CP862 39
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100266 {"cp862", ENC_8BIT, 862}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000267#define IDX_CP863 40
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100268 {"cp863", ENC_8BIT, 863}, // like iso-8859-8
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000269#define IDX_CP865 41
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100270 {"cp865", ENC_8BIT, 865}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000271#define IDX_CP866 42
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100272 {"cp866", ENC_8BIT, 866}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000273#define IDX_CP869 43
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100274 {"cp869", ENC_8BIT, 869}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000275#define IDX_CP874 44
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100276 {"cp874", ENC_8BIT, 874}, // Thai
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000277#define IDX_CP932 45
278 {"cp932", ENC_DBCS, DBCS_JPN},
279#define IDX_CP936 46
280 {"cp936", ENC_DBCS, DBCS_CHS},
281#define IDX_CP949 47
282 {"cp949", ENC_DBCS, DBCS_KOR},
283#define IDX_CP950 48
284 {"cp950", ENC_DBCS, DBCS_CHT},
285#define IDX_CP1250 49
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100286 {"cp1250", ENC_8BIT, 1250}, // Czech, Polish, etc.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000287#define IDX_CP1251 50
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100288 {"cp1251", ENC_8BIT, 1251}, // Cyrillic
289 // cp1252 is considered to be equal to latin1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000290#define IDX_CP1253 51
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100291 {"cp1253", ENC_8BIT, 1253}, // Greek
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000292#define IDX_CP1254 52
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100293 {"cp1254", ENC_8BIT, 1254}, // Turkish
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000294#define IDX_CP1255 53
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100295 {"cp1255", ENC_8BIT, 1255}, // Hebrew
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000296#define IDX_CP1256 54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100297 {"cp1256", ENC_8BIT, 1256}, // Arabic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000298#define IDX_CP1257 55
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100299 {"cp1257", ENC_8BIT, 1257}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000300#define IDX_CP1258 56
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100301 {"cp1258", ENC_8BIT, 1258}, // Vietnamese
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000302
303#define IDX_MACROMAN 57
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100304 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, // Mac OS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000305#define IDX_DECMCS 58
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100306 {"dec-mcs", ENC_8BIT, 0}, // DEC MCS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000307#define IDX_HPROMAN8 59
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100308 {"hp-roman8", ENC_8BIT, 0}, // HP Roman8
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000309#define IDX_COUNT 60
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310};
311
312/*
313 * Aliases for encoding names.
314 */
315static struct
316{ char *name; int canon;}
317enc_alias_table[] =
318{
319 {"ansi", IDX_LATIN_1},
320 {"iso-8859-1", IDX_LATIN_1},
Bram Moolenaar1349bd72022-02-22 12:34:28 +0000321 {"iso-8859", IDX_LATIN_1},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 {"latin2", IDX_ISO_2},
323 {"latin3", IDX_ISO_3},
324 {"latin4", IDX_ISO_4},
325 {"cyrillic", IDX_ISO_5},
326 {"arabic", IDX_ISO_6},
327 {"greek", IDX_ISO_7},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100328#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 {"hebrew", IDX_CP1255},
330#else
331 {"hebrew", IDX_ISO_8},
332#endif
333 {"latin5", IDX_ISO_9},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100334 {"turkish", IDX_ISO_9}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 {"latin6", IDX_ISO_10},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100336 {"nordic", IDX_ISO_10}, // ?
337 {"thai", IDX_ISO_11}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 {"latin7", IDX_ISO_13},
339 {"latin8", IDX_ISO_14},
340 {"latin9", IDX_ISO_15},
341 {"utf8", IDX_UTF8},
342 {"unicode", IDX_UCS2},
343 {"ucs2", IDX_UCS2},
344 {"ucs2be", IDX_UCS2},
345 {"ucs-2be", IDX_UCS2},
346 {"ucs2le", IDX_UCS2LE},
347 {"utf16", IDX_UTF16},
348 {"utf16be", IDX_UTF16},
349 {"utf-16be", IDX_UTF16},
350 {"utf16le", IDX_UTF16LE},
351 {"ucs4", IDX_UCS4},
352 {"ucs4be", IDX_UCS4},
353 {"ucs-4be", IDX_UCS4},
354 {"ucs4le", IDX_UCS4LE},
Bram Moolenaar5360af92008-02-20 10:29:39 +0000355 {"utf32", IDX_UCS4},
356 {"utf-32", IDX_UCS4},
357 {"utf32be", IDX_UCS4},
358 {"utf-32be", IDX_UCS4},
359 {"utf32le", IDX_UCS4LE},
360 {"utf-32le", IDX_UCS4LE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {"932", IDX_CP932},
362 {"949", IDX_CP949},
363 {"936", IDX_CP936},
Bram Moolenaar0928caa2006-08-16 16:03:34 +0000364 {"gbk", IDX_CP936},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 {"950", IDX_CP950},
366 {"eucjp", IDX_EUC_JP},
367 {"unix-jis", IDX_EUC_JP},
368 {"ujis", IDX_EUC_JP},
369 {"shift-jis", IDX_SJIS},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100370 {"pck", IDX_SJIS}, // Sun: PCK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 {"euckr", IDX_EUC_KR},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100372 {"5601", IDX_EUC_KR}, // Sun: KS C 5601
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 {"euccn", IDX_EUC_CN},
374 {"gb2312", IDX_EUC_CN},
375 {"euctw", IDX_EUC_TW},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100376#if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 {"japan", IDX_CP932},
378 {"korea", IDX_CP949},
379 {"prc", IDX_CP936},
380 {"chinese", IDX_CP936},
381 {"taiwan", IDX_CP950},
382 {"big5", IDX_CP950},
383#else
384 {"japan", IDX_EUC_JP},
385 {"korea", IDX_EUC_KR},
386 {"prc", IDX_EUC_CN},
387 {"chinese", IDX_EUC_CN},
388 {"taiwan", IDX_EUC_TW},
389 {"cp950", IDX_BIG5},
390 {"950", IDX_BIG5},
391#endif
392 {"mac", IDX_MACROMAN},
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000393 {"mac-roman", IDX_MACROMAN},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 {NULL, 0}
395};
396
397#ifndef CP_UTF8
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100398# define CP_UTF8 65001 // magic number from winnls.h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399#endif
400
401/*
402 * Find encoding "name" in the list of canonical encoding names.
403 * Returns -1 if not found.
404 */
405 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100406enc_canon_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407{
408 int i;
409
410 for (i = 0; i < IDX_COUNT; ++i)
411 if (STRCMP(name, enc_canon_table[i].name) == 0)
412 return i;
413 return -1;
414}
415
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417/*
418 * Find canonical encoding "name" in the list and return its properties.
419 * Returns 0 if not found.
420 */
421 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100422enc_canon_props(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423{
424 int i;
425
426 i = enc_canon_search(name);
427 if (i >= 0)
428 return enc_canon_table[i].prop;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100429#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
431 {
432 CPINFO cpinfo;
433
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100434 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100435 if (GetCPInfo(atoi((char *)name + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100437 if (cpinfo.MaxCharSize == 1) // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 return ENC_8BIT;
439 if (cpinfo.MaxCharSize == 2
440 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100441 // must be a DBCS encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 return ENC_DBCS;
443 }
444 return 0;
445 }
446#endif
447 if (STRNCMP(name, "2byte-", 6) == 0)
448 return ENC_DBCS;
449 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
450 return ENC_8BIT;
451 return 0;
452}
453
454/*
455 * Set up for using multi-byte characters.
456 * Called in three cases:
457 * - by main() to initialize (p_enc == NULL)
458 * - by set_init_1() after 'encoding' was set to its default.
459 * - by do_set() when 'encoding' has been set.
460 * p_enc must have been passed through enc_canonize() already.
461 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
462 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
463 * When there is something wrong: Returns an error message and doesn't change
464 * anything.
465 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100466 char *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100467mb_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468{
469 int i;
470 int idx;
471 int n;
472 int enc_dbcs_new = 0;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100473#if defined(USE_ICONV) && !defined(MSWIN) && !defined(WIN32UNIX) \
Bram Moolenaard0573012017-10-28 21:11:06 +0200474 && !defined(MACOS_CONVERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475# define LEN_FROM_CONV
476 vimconv_T vimconv;
477 char_u *p;
478#endif
479
480 if (p_enc == NULL)
481 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100482 // Just starting up: set the whole table to one's.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 for (i = 0; i < 256; ++i)
484 mb_bytelen_tab[i] = 1;
485 input_conv.vc_type = CONV_NONE;
486 input_conv.vc_factor = 1;
487 output_conv.vc_type = CONV_NONE;
488 return NULL;
489 }
490
Bram Moolenaar4f974752019-02-17 17:44:42 +0100491#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
493 {
494 CPINFO cpinfo;
495
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100496 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100497 if (GetCPInfo(atoi((char *)p_enc + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 {
499 if (cpinfo.MaxCharSize == 1)
500 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100501 // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 enc_unicode = 0;
503 enc_utf8 = FALSE;
504 }
505 else if (cpinfo.MaxCharSize == 2
506 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
507 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100508 // must be a DBCS encoding, check below
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100509 enc_dbcs_new = atoi((char *)p_enc + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 }
511 else
512 goto codepage_invalid;
513 }
514 else if (GetLastError() == ERROR_INVALID_PARAMETER)
515 {
516codepage_invalid:
Bram Moolenaar1d423ef2022-01-02 21:26:16 +0000517 return N_(e_not_valid_codepage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 }
519 }
520#endif
521 else if (STRNCMP(p_enc, "8bit-", 5) == 0
522 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
523 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100524 // Accept any "8bit-" or "iso-8859-" name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 enc_unicode = 0;
526 enc_utf8 = FALSE;
527 }
528 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
529 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100530#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100531 // Windows: accept only valid codepage numbers, check below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 if (p_enc[6] != 'c' || p_enc[7] != 'p'
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100533 || (enc_dbcs_new = atoi((char *)p_enc + 8)) == 0)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000534 return e_invalid_argument;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100536 // Unix: accept any "2byte-" name, assume current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 enc_dbcs_new = DBCS_2BYTE;
538#endif
539 }
540 else if ((idx = enc_canon_search(p_enc)) >= 0)
541 {
542 i = enc_canon_table[idx].prop;
543 if (i & ENC_UNICODE)
544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100545 // Unicode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 enc_utf8 = TRUE;
547 if (i & (ENC_2BYTE | ENC_2WORD))
548 enc_unicode = 2;
549 else if (i & ENC_4BYTE)
550 enc_unicode = 4;
551 else
552 enc_unicode = 0;
553 }
554 else if (i & ENC_DBCS)
555 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100556 // 2byte, handle below
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 enc_dbcs_new = enc_canon_table[idx].codepage;
558 }
559 else
560 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100561 // Must be 8-bit.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 enc_unicode = 0;
563 enc_utf8 = FALSE;
564 }
565 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100566 else // Don't know what encoding this is, reject it.
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000567 return e_invalid_argument;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568
569 if (enc_dbcs_new != 0)
570 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100571#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100572 // Check if the DBCS code page is OK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 if (!IsValidCodePage(enc_dbcs_new))
574 goto codepage_invalid;
575#endif
576 enc_unicode = 0;
577 enc_utf8 = FALSE;
578 }
579 enc_dbcs = enc_dbcs_new;
580 has_mbyte = (enc_dbcs != 0 || enc_utf8);
581
Bram Moolenaar4f974752019-02-17 17:44:42 +0100582#if defined(MSWIN) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 enc_codepage = encname2codepage(p_enc);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000584 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585#endif
586
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100587 // Detect an encoding that uses latin1 characters.
Bram Moolenaar78622822005-08-23 21:00:13 +0000588 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
589 || STRCMP(p_enc, "iso-8859-15") == 0);
590
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 /*
592 * Set the function pointers.
593 */
594 if (enc_utf8)
595 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000596 mb_ptr2len = utfc_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000597 mb_ptr2len_len = utfc_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 mb_char2len = utf_char2len;
599 mb_char2bytes = utf_char2bytes;
600 mb_ptr2cells = utf_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000601 mb_ptr2cells_len = utf_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 mb_char2cells = utf_char2cells;
603 mb_off2cells = utf_off2cells;
604 mb_ptr2char = utf_ptr2char;
605 mb_head_off = utf_head_off;
606 }
607 else if (enc_dbcs != 0)
608 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000609 mb_ptr2len = dbcs_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000610 mb_ptr2len_len = dbcs_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 mb_char2len = dbcs_char2len;
612 mb_char2bytes = dbcs_char2bytes;
613 mb_ptr2cells = dbcs_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000614 mb_ptr2cells_len = dbcs_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 mb_char2cells = dbcs_char2cells;
616 mb_off2cells = dbcs_off2cells;
617 mb_ptr2char = dbcs_ptr2char;
618 mb_head_off = dbcs_head_off;
619 }
620 else
621 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000622 mb_ptr2len = latin_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000623 mb_ptr2len_len = latin_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 mb_char2len = latin_char2len;
625 mb_char2bytes = latin_char2bytes;
626 mb_ptr2cells = latin_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000627 mb_ptr2cells_len = latin_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 mb_char2cells = latin_char2cells;
629 mb_off2cells = latin_off2cells;
630 mb_ptr2char = latin_ptr2char;
631 mb_head_off = latin_head_off;
632 }
633
634 /*
635 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
636 */
637#ifdef LEN_FROM_CONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100638 // When 'encoding' is different from the current locale mblen() won't
639 // work. Use conversion to "utf-8" instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 vimconv.vc_type = CONV_NONE;
641 if (enc_dbcs)
642 {
643 p = enc_locale();
644 if (p == NULL || STRCMP(p, p_enc) != 0)
645 {
646 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
647 vimconv.vc_fail = TRUE;
648 }
649 vim_free(p);
650 }
651#endif
652
653 for (i = 0; i < 256; ++i)
654 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655 // Our own function to reliably check the length of UTF-8 characters,
656 // independent of mblen().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (enc_utf8)
658 n = utf8len_tab[i];
659 else if (enc_dbcs == 0)
660 n = 1;
661 else
662 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100663#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100664 // enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
665 // CodePage identifier, which we can pass directly in to Windows
666 // API
Bram Moolenaarca058dc2014-01-14 13:26:21 +0100667 n = IsDBCSLeadByteEx(enc_dbcs, (WINBYTE)i) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668#else
Bram Moolenaard0573012017-10-28 21:11:06 +0200669# if defined(__amigaos4__) || defined(__ANDROID__) || \
670 !(defined(HAVE_MBLEN) || defined(X_LOCALE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 /*
672 * if mblen() is not available, character which MSB is turned on
673 * are treated as leading byte character. (note : This assumption
674 * is not always true.)
675 */
676 n = (i & 0x80) ? 2 : 1;
677# else
Bram Moolenaar9a920d82012-06-01 15:21:02 +0200678 char buf[MB_MAXBYTES + 1];
Bram Moolenaard0573012017-10-28 21:11:06 +0200679
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100680 if (i == NUL) // just in case mblen() can't handle ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681 n = 1;
682 else
683 {
684 buf[0] = i;
685 buf[1] = 0;
Bram Moolenaard0573012017-10-28 21:11:06 +0200686# ifdef LEN_FROM_CONV
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 if (vimconv.vc_type != CONV_NONE)
688 {
689 /*
690 * string_convert() should fail when converting the first
691 * byte of a double-byte character.
692 */
693 p = string_convert(&vimconv, (char_u *)buf, NULL);
694 if (p != NULL)
695 {
696 vim_free(p);
697 n = 1;
698 }
699 else
700 n = 2;
701 }
702 else
Bram Moolenaard0573012017-10-28 21:11:06 +0200703# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 {
705 /*
706 * mblen() should return -1 for invalid (means the leading
707 * multibyte) character. However there are some platforms
708 * where mblen() returns 0 for invalid character.
709 * Therefore, following condition includes 0.
710 */
Bram Moolenaar42335f52018-09-13 15:33:43 +0200711 vim_ignored = mblen(NULL, 0); // First reset the state.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 if (mblen(buf, (size_t)1) <= 0)
713 n = 2;
714 else
715 n = 1;
716 }
717 }
718# endif
719#endif
720 }
721
722 mb_bytelen_tab[i] = n;
723 }
724
725#ifdef LEN_FROM_CONV
726 convert_setup(&vimconv, NULL, NULL);
727#endif
728
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100729 // The cell width depends on the type of multi-byte characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 (void)init_chartab();
731
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100732 // When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 screenalloc(FALSE);
734
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100735 // When using Unicode, set default for 'fileencodings'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
Bram Moolenaar5ffefbb2021-06-13 20:27:36 +0200737 set_fencs_unicode();
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000738
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739#if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100740 // GNU gettext 0.10.37 supports this feature: set the codeset used for
741 // translated messages independently from the current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 (void)bind_textdomain_codeset(VIMPACKAGE,
743 enc_utf8 ? "utf-8" : (char *)p_enc);
744#endif
745
Bram Moolenaar4f974752019-02-17 17:44:42 +0100746#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100747 // When changing 'encoding' while starting up, then convert the command
748 // line arguments from the active codepage to 'encoding'.
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000749 if (starting != 0)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000750 fix_arg_enc();
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000751#endif
752
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100753 // Fire an autocommand to let people do custom font setup. This must be
754 // after Vim has been setup for the new encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000757#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100758 // Need to reload spell dictionaries
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000759 spell_reload();
760#endif
761
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 return NULL;
763}
764
765/*
766 * Return the size of the BOM for the current buffer:
767 * 0 - no BOM
768 * 2 - UCS-2 or UTF-16 BOM
769 * 4 - UCS-4 BOM
770 * 3 - UTF-8 BOM
771 */
772 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100773bomb_size(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774{
775 int n = 0;
776
777 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
778 {
779 if (*curbuf->b_p_fenc == NUL)
780 {
781 if (enc_utf8)
782 {
783 if (enc_unicode != 0)
784 n = enc_unicode;
785 else
786 n = 3;
787 }
788 }
789 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
790 n = 3;
791 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
792 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
793 n = 2;
794 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
795 n = 4;
796 }
797 return n;
798}
799
Bram Moolenaar113e1072019-01-20 15:30:40 +0100800#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801/*
Bram Moolenaar836082d2011-08-10 13:21:46 +0200802 * Remove all BOM from "s" by moving remaining text.
803 */
804 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100805remove_bom(char_u *s)
Bram Moolenaar836082d2011-08-10 13:21:46 +0200806{
807 if (enc_utf8)
808 {
809 char_u *p = s;
810
811 while ((p = vim_strbyte(p, 0xef)) != NULL)
812 {
813 if (p[1] == 0xbb && p[2] == 0xbf)
814 STRMOVE(p, p + 3);
815 else
816 ++p;
817 }
818 }
819}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100820#endif
Bram Moolenaar836082d2011-08-10 13:21:46 +0200821
822/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 * Get class of pointer:
824 * 0 for blank or NUL
825 * 1 for punctuation
826 * 2 for an (ASCII) word character
827 * >2 for other word characters
828 */
829 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100830mb_get_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831{
Bram Moolenaarf813a182013-01-30 13:59:37 +0100832 return mb_get_class_buf(p, curbuf);
833}
834
835 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100836mb_get_class_buf(char_u *p, buf_T *buf)
Bram Moolenaarf813a182013-01-30 13:59:37 +0100837{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 if (MB_BYTE2LEN(p[0]) == 1)
839 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100840 if (p[0] == NUL || VIM_ISWHITE(p[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return 0;
Bram Moolenaarf813a182013-01-30 13:59:37 +0100842 if (vim_iswordc_buf(p[0], buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 return 2;
844 return 1;
845 }
846 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
847 return dbcs_class(p[0], p[1]);
848 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100849 return utf_class_buf(utf_ptr2char(p), buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 return 0;
851}
852
853/*
854 * Get class of a double-byte character. This always returns 3 or bigger.
855 * TODO: Should return 1 for punctuation.
856 */
857 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100858dbcs_class(unsigned lead, unsigned trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
860 switch (enc_dbcs)
861 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100862 // please add classify routine for your language in here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100864 case DBCS_JPNU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 case DBCS_JPN:
866 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100867 // JIS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 unsigned char lb = lead;
869 unsigned char tb = trail;
870
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100871 // convert process code to JIS
Bram Moolenaar4f974752019-02-17 17:44:42 +0100872# if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100873 // process code is SJIS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 if (lb <= 0x9f)
875 lb = (lb - 0x81) * 2 + 0x21;
876 else
877 lb = (lb - 0xc1) * 2 + 0x21;
878 if (tb <= 0x7e)
879 tb -= 0x1f;
880 else if (tb <= 0x9e)
881 tb -= 0x20;
882 else
883 {
884 tb -= 0x7e;
885 lb += 1;
886 }
887# else
888 /*
889 * XXX: Code page identification can not use with all
890 * system! So, some other encoding information
891 * will be needed.
892 * In japanese: SJIS,EUC,UNICODE,(JIS)
893 * Note that JIS-code system don't use as
894 * process code in most system because it uses
895 * escape sequences(JIS is context depend encoding).
896 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100897 // assume process code is JAPANESE-EUC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 lb &= 0x7f;
899 tb &= 0x7f;
900# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100901 // exceptions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 switch (lb << 8 | tb)
903 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100904 case 0x2121: // ZENKAKU space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100906 case 0x2122: // TOU-TEN (Japanese comma)
907 case 0x2123: // KU-TEN (Japanese period)
908 case 0x2124: // ZENKAKU comma
909 case 0x2125: // ZENKAKU period
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100911 case 0x213c: // prolongedsound handled as KATAKANA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 return 13;
913 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100914 // sieved by KU code
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 switch (lb)
916 {
917 case 0x21:
918 case 0x22:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100919 // special symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 return 10;
921 case 0x23:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100922 // alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 return 11;
924 case 0x24:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100925 // hiragana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 return 12;
927 case 0x25:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100928 // katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 return 13;
930 case 0x26:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100931 // greek
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 return 14;
933 case 0x27:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100934 // russian
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 return 15;
936 case 0x28:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100937 // lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 return 16;
939 default:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100940 // kanji
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 return 17;
942 }
943 }
944
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100945 case DBCS_KORU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 case DBCS_KOR:
947 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100948 // KS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 unsigned char c1 = lead;
950 unsigned char c2 = trail;
951
952 /*
953 * 20 : Hangul
954 * 21 : Hanja
955 * 22 : Symbols
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100956 * 23 : Alphanumeric/Roman Letter (Full width)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 * 24 : Hangul Letter(Alphabet)
958 * 25 : Roman Numeral/Greek Letter
959 * 26 : Box Drawings
960 * 27 : Unit Symbols
961 * 28 : Circled/Parenthesized Letter
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200962 * 29 : Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 * 30 : Cyrillic Letter
964 */
965
966 if (c1 >= 0xB0 && c1 <= 0xC8)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100967 // Hangul
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 return 20;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100969#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 else if (c1 <= 0xA0 || c2 <= 0xA0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100971 // Extended Hangul Region : MS UHC(Unified Hangul Code)
972 // c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
973 // c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 return 20;
975#endif
976
977 else if (c1 >= 0xCA && c1 <= 0xFD)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100978 // Hanja
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 return 21;
980 else switch (c1)
981 {
982 case 0xA1:
983 case 0xA2:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100984 // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 return 22;
986 case 0xA3:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100987 // Alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 return 23;
989 case 0xA4:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100990 // Hangul Letter(Alphabet)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 return 24;
992 case 0xA5:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100993 // Roman Numeral/Greek Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 return 25;
995 case 0xA6:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100996 // Box Drawings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 return 26;
998 case 0xA7:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100999 // Unit Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 return 27;
1001 case 0xA8:
1002 case 0xA9:
1003 if (c2 <= 0xAF)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001004 return 25; // Roman Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 else if (c2 >= 0xF6)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001006 return 22; // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001008 // Circled/Parenthesized Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 return 28;
1010 case 0xAA:
1011 case 0xAB:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001012 // Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 return 29;
1014 case 0xAC:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001015 // Cyrillic Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 return 30;
1017 }
1018 }
1019 default:
1020 break;
1021 }
1022 return 3;
1023}
1024
1025/*
1026 * mb_char2len() function pointer.
1027 * Return length in bytes of character "c".
1028 * Returns 1 for a single-byte character.
1029 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001031latin_char2len(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032{
1033 return 1;
1034}
1035
1036 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001037dbcs_char2len(
1038 int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 if (c >= 0x100)
1041 return 2;
1042 return 1;
1043}
1044
1045/*
1046 * mb_char2bytes() function pointer.
1047 * Convert a character to its bytes.
1048 * Returns the length in bytes.
1049 */
1050 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001051latin_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052{
1053 buf[0] = c;
1054 return 1;
1055}
1056
1057 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001058dbcs_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059{
1060 if (c >= 0x100)
1061 {
1062 buf[0] = (unsigned)c >> 8;
1063 buf[1] = c;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001064 // Never use a NUL byte, it causes lots of trouble. It's an invalid
1065 // character anyway.
Bram Moolenaar217ad922005-03-20 22:37:15 +00001066 if (buf[1] == NUL)
1067 buf[1] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 return 2;
1069 }
1070 buf[0] = c;
1071 return 1;
1072}
1073
1074/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001075 * mb_ptr2len() function pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 * Get byte length of character at "*p" but stop at a NUL.
1077 * For UTF-8 this includes following composing characters.
1078 * Returns 0 when *p is NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 */
1080 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001081latin_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082{
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001083 return MB_BYTE2LEN(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084}
1085
1086 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001087dbcs_ptr2len(
1088 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089{
1090 int len;
1091
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001092 // Check if second byte is not missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 len = MB_BYTE2LEN(*p);
1094 if (len == 2 && p[1] == NUL)
1095 len = 1;
1096 return len;
1097}
1098
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001099/*
1100 * mb_ptr2len_len() function pointer.
1101 * Like mb_ptr2len(), but limit to read "size" bytes.
1102 * Returns 0 for an empty string.
1103 * Returns 1 for an illegal char or an incomplete byte sequence.
1104 */
1105 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001106latin_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001107{
1108 if (size < 1 || *p == NUL)
1109 return 0;
1110 return 1;
1111}
1112
1113 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001114dbcs_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001115{
1116 int len;
1117
1118 if (size < 1 || *p == NUL)
1119 return 0;
1120 if (size == 1)
1121 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001122 // Check that second byte is not missing.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001123 len = MB_BYTE2LEN(*p);
1124 if (len == 2 && p[1] == NUL)
1125 len = 1;
1126 return len;
1127}
1128
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129struct interval
1130{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01001131 long first;
1132 long last;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134
1135/*
1136 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1137 */
1138 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001139intable(struct interval *table, size_t size, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140{
1141 int mid, bot, top;
1142
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001143 // first quick check for Latin1 etc. characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 if (c < table[0].first)
1145 return FALSE;
1146
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001147 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 bot = 0;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001149 top = (int)(size / sizeof(struct interval) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 while (top >= bot)
1151 {
1152 mid = (bot + top) / 2;
1153 if (table[mid].last < c)
1154 bot = mid + 1;
1155 else if (table[mid].first > c)
1156 top = mid - 1;
1157 else
1158 return TRUE;
1159 }
1160 return FALSE;
1161}
1162
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001163// Sorted list of non-overlapping intervals of East Asian Ambiguous
1164// characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarcb070082016-04-02 22:14:51 +02001165static struct interval ambiguous[] =
1166{
1167 {0x00a1, 0x00a1},
1168 {0x00a4, 0x00a4},
1169 {0x00a7, 0x00a8},
1170 {0x00aa, 0x00aa},
1171 {0x00ad, 0x00ae},
1172 {0x00b0, 0x00b4},
1173 {0x00b6, 0x00ba},
1174 {0x00bc, 0x00bf},
1175 {0x00c6, 0x00c6},
1176 {0x00d0, 0x00d0},
1177 {0x00d7, 0x00d8},
1178 {0x00de, 0x00e1},
1179 {0x00e6, 0x00e6},
1180 {0x00e8, 0x00ea},
1181 {0x00ec, 0x00ed},
1182 {0x00f0, 0x00f0},
1183 {0x00f2, 0x00f3},
1184 {0x00f7, 0x00fa},
1185 {0x00fc, 0x00fc},
1186 {0x00fe, 0x00fe},
1187 {0x0101, 0x0101},
1188 {0x0111, 0x0111},
1189 {0x0113, 0x0113},
1190 {0x011b, 0x011b},
1191 {0x0126, 0x0127},
1192 {0x012b, 0x012b},
1193 {0x0131, 0x0133},
1194 {0x0138, 0x0138},
1195 {0x013f, 0x0142},
1196 {0x0144, 0x0144},
1197 {0x0148, 0x014b},
1198 {0x014d, 0x014d},
1199 {0x0152, 0x0153},
1200 {0x0166, 0x0167},
1201 {0x016b, 0x016b},
1202 {0x01ce, 0x01ce},
1203 {0x01d0, 0x01d0},
1204 {0x01d2, 0x01d2},
1205 {0x01d4, 0x01d4},
1206 {0x01d6, 0x01d6},
1207 {0x01d8, 0x01d8},
1208 {0x01da, 0x01da},
1209 {0x01dc, 0x01dc},
1210 {0x0251, 0x0251},
1211 {0x0261, 0x0261},
1212 {0x02c4, 0x02c4},
1213 {0x02c7, 0x02c7},
1214 {0x02c9, 0x02cb},
1215 {0x02cd, 0x02cd},
1216 {0x02d0, 0x02d0},
1217 {0x02d8, 0x02db},
1218 {0x02dd, 0x02dd},
1219 {0x02df, 0x02df},
1220 {0x0300, 0x036f},
1221 {0x0391, 0x03a1},
1222 {0x03a3, 0x03a9},
1223 {0x03b1, 0x03c1},
1224 {0x03c3, 0x03c9},
1225 {0x0401, 0x0401},
1226 {0x0410, 0x044f},
1227 {0x0451, 0x0451},
1228 {0x2010, 0x2010},
1229 {0x2013, 0x2016},
1230 {0x2018, 0x2019},
1231 {0x201c, 0x201d},
1232 {0x2020, 0x2022},
1233 {0x2024, 0x2027},
1234 {0x2030, 0x2030},
1235 {0x2032, 0x2033},
1236 {0x2035, 0x2035},
1237 {0x203b, 0x203b},
1238 {0x203e, 0x203e},
1239 {0x2074, 0x2074},
1240 {0x207f, 0x207f},
1241 {0x2081, 0x2084},
1242 {0x20ac, 0x20ac},
1243 {0x2103, 0x2103},
1244 {0x2105, 0x2105},
1245 {0x2109, 0x2109},
1246 {0x2113, 0x2113},
1247 {0x2116, 0x2116},
1248 {0x2121, 0x2122},
1249 {0x2126, 0x2126},
1250 {0x212b, 0x212b},
1251 {0x2153, 0x2154},
1252 {0x215b, 0x215e},
1253 {0x2160, 0x216b},
1254 {0x2170, 0x2179},
1255 {0x2189, 0x2189},
1256 {0x2190, 0x2199},
1257 {0x21b8, 0x21b9},
1258 {0x21d2, 0x21d2},
1259 {0x21d4, 0x21d4},
1260 {0x21e7, 0x21e7},
1261 {0x2200, 0x2200},
1262 {0x2202, 0x2203},
1263 {0x2207, 0x2208},
1264 {0x220b, 0x220b},
1265 {0x220f, 0x220f},
1266 {0x2211, 0x2211},
1267 {0x2215, 0x2215},
1268 {0x221a, 0x221a},
1269 {0x221d, 0x2220},
1270 {0x2223, 0x2223},
1271 {0x2225, 0x2225},
1272 {0x2227, 0x222c},
1273 {0x222e, 0x222e},
1274 {0x2234, 0x2237},
1275 {0x223c, 0x223d},
1276 {0x2248, 0x2248},
1277 {0x224c, 0x224c},
1278 {0x2252, 0x2252},
1279 {0x2260, 0x2261},
1280 {0x2264, 0x2267},
1281 {0x226a, 0x226b},
1282 {0x226e, 0x226f},
1283 {0x2282, 0x2283},
1284 {0x2286, 0x2287},
1285 {0x2295, 0x2295},
1286 {0x2299, 0x2299},
1287 {0x22a5, 0x22a5},
1288 {0x22bf, 0x22bf},
1289 {0x2312, 0x2312},
1290 {0x2460, 0x24e9},
1291 {0x24eb, 0x254b},
1292 {0x2550, 0x2573},
1293 {0x2580, 0x258f},
1294 {0x2592, 0x2595},
1295 {0x25a0, 0x25a1},
1296 {0x25a3, 0x25a9},
1297 {0x25b2, 0x25b3},
1298 {0x25b6, 0x25b7},
1299 {0x25bc, 0x25bd},
1300 {0x25c0, 0x25c1},
1301 {0x25c6, 0x25c8},
1302 {0x25cb, 0x25cb},
1303 {0x25ce, 0x25d1},
1304 {0x25e2, 0x25e5},
1305 {0x25ef, 0x25ef},
1306 {0x2605, 0x2606},
1307 {0x2609, 0x2609},
1308 {0x260e, 0x260f},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001309 {0x261c, 0x261c},
1310 {0x261e, 0x261e},
1311 {0x2640, 0x2640},
1312 {0x2642, 0x2642},
1313 {0x2660, 0x2661},
1314 {0x2663, 0x2665},
1315 {0x2667, 0x266a},
1316 {0x266c, 0x266d},
1317 {0x266f, 0x266f},
1318 {0x269e, 0x269f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001319 {0x26bf, 0x26bf},
1320 {0x26c6, 0x26cd},
1321 {0x26cf, 0x26d3},
1322 {0x26d5, 0x26e1},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001323 {0x26e3, 0x26e3},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001324 {0x26e8, 0x26e9},
1325 {0x26eb, 0x26f1},
1326 {0x26f4, 0x26f4},
1327 {0x26f6, 0x26f9},
1328 {0x26fb, 0x26fc},
1329 {0x26fe, 0x26ff},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001330 {0x273d, 0x273d},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001331 {0x2776, 0x277f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001332 {0x2b56, 0x2b59},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001333 {0x3248, 0x324f},
1334 {0xe000, 0xf8ff},
1335 {0xfe00, 0xfe0f},
1336 {0xfffd, 0xfffd},
1337 {0x1f100, 0x1f10a},
1338 {0x1f110, 0x1f12d},
1339 {0x1f130, 0x1f169},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001340 {0x1f170, 0x1f18d},
1341 {0x1f18f, 0x1f190},
1342 {0x1f19b, 0x1f1ac},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001343 {0xe0100, 0xe01ef},
1344 {0xf0000, 0xffffd},
1345 {0x100000, 0x10fffd}
1346};
1347
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001348#if defined(FEAT_TERMINAL) || defined(PROTO)
1349/*
1350 * utf_char2cells() with different argument type for libvterm.
1351 */
1352 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02001353utf_uint2cells(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001354{
Bram Moolenaar6daeef12017-10-15 22:56:49 +02001355 if (c >= 0x100 && utf_iscomposing((int)c))
1356 return 0;
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001357 return utf_char2cells((int)c);
1358}
1359#endif
1360
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361/*
1362 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1363 * Returns 4 or 6 for an unprintable character.
1364 * Is only correct for characters >= 0x80.
1365 * When p_ambw is "double", return 2 for a character with East Asian Width
1366 * class 'A'(mbiguous).
1367 */
1368 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001369utf_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001371 // Sorted list of non-overlapping intervals of East Asian double width
1372 // characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001373 static struct interval doublewidth[] =
1374 {
1375 {0x1100, 0x115f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001376 {0x231a, 0x231b},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001377 {0x2329, 0x232a},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001378 {0x23e9, 0x23ec},
1379 {0x23f0, 0x23f0},
1380 {0x23f3, 0x23f3},
1381 {0x25fd, 0x25fe},
1382 {0x2614, 0x2615},
1383 {0x2648, 0x2653},
1384 {0x267f, 0x267f},
1385 {0x2693, 0x2693},
1386 {0x26a1, 0x26a1},
1387 {0x26aa, 0x26ab},
1388 {0x26bd, 0x26be},
1389 {0x26c4, 0x26c5},
1390 {0x26ce, 0x26ce},
1391 {0x26d4, 0x26d4},
1392 {0x26ea, 0x26ea},
Christian Brabandtd8872972021-06-27 21:30:14 +02001393 {0x26f2, 0x26f3},
1394 {0x26f5, 0x26f5},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001395 {0x26fa, 0x26fa},
1396 {0x26fd, 0x26fd},
1397 {0x2705, 0x2705},
1398 {0x270a, 0x270b},
1399 {0x2728, 0x2728},
1400 {0x274c, 0x274c},
1401 {0x274e, 0x274e},
1402 {0x2753, 0x2755},
1403 {0x2757, 0x2757},
1404 {0x2795, 0x2797},
1405 {0x27b0, 0x27b0},
1406 {0x27bf, 0x27bf},
1407 {0x2b1b, 0x2b1c},
1408 {0x2b50, 0x2b50},
1409 {0x2b55, 0x2b55},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001410 {0x2e80, 0x2e99},
1411 {0x2e9b, 0x2ef3},
1412 {0x2f00, 0x2fd5},
1413 {0x2ff0, 0x2ffb},
Bram Moolenaarea676722015-01-14 17:40:09 +01001414 {0x3000, 0x303e},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001415 {0x3041, 0x3096},
Bram Moolenaarea676722015-01-14 17:40:09 +01001416 {0x3099, 0x30ff},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02001417 {0x3105, 0x312f},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001418 {0x3131, 0x318e},
Christian Brabandtd8872972021-06-27 21:30:14 +02001419 {0x3190, 0x31e3},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001420 {0x31f0, 0x321e},
1421 {0x3220, 0x3247},
Bram Moolenaar6d718c42019-06-05 22:46:13 +02001422 {0x3250, 0x4dbf},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001423 {0x4e00, 0xa48c},
1424 {0xa490, 0xa4c6},
1425 {0xa960, 0xa97c},
1426 {0xac00, 0xd7a3},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001427 {0xf900, 0xfaff},
1428 {0xfe10, 0xfe19},
1429 {0xfe30, 0xfe52},
1430 {0xfe54, 0xfe66},
1431 {0xfe68, 0xfe6b},
1432 {0xff01, 0xff60},
1433 {0xffe0, 0xffe6},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001434 {0x16fe0, 0x16fe3},
Christian Brabandtd8872972021-06-27 21:30:14 +02001435 {0x16ff0, 0x16ff1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001436 {0x17000, 0x187f7},
Christian Brabandtd8872972021-06-27 21:30:14 +02001437 {0x18800, 0x18cd5},
1438 {0x18d00, 0x18d08},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001439 {0x1b000, 0x1b11e},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001440 {0x1b150, 0x1b152},
1441 {0x1b164, 0x1b167},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001442 {0x1b170, 0x1b2fb},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001443 {0x1f004, 0x1f004},
1444 {0x1f0cf, 0x1f0cf},
1445 {0x1f18e, 0x1f18e},
1446 {0x1f191, 0x1f19a},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001447 {0x1f200, 0x1f202},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001448 {0x1f210, 0x1f23b},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001449 {0x1f240, 0x1f248},
1450 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001451 {0x1f260, 0x1f265},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001452 {0x1f300, 0x1f320},
1453 {0x1f32d, 0x1f335},
1454 {0x1f337, 0x1f37c},
1455 {0x1f37e, 0x1f393},
1456 {0x1f3a0, 0x1f3ca},
1457 {0x1f3cf, 0x1f3d3},
1458 {0x1f3e0, 0x1f3f0},
1459 {0x1f3f4, 0x1f3f4},
1460 {0x1f3f8, 0x1f43e},
1461 {0x1f440, 0x1f440},
1462 {0x1f442, 0x1f4fc},
1463 {0x1f4ff, 0x1f53d},
1464 {0x1f54b, 0x1f54e},
1465 {0x1f550, 0x1f567},
1466 {0x1f57a, 0x1f57a},
1467 {0x1f595, 0x1f596},
1468 {0x1f5a4, 0x1f5a4},
1469 {0x1f5fb, 0x1f64f},
1470 {0x1f680, 0x1f6c5},
1471 {0x1f6cc, 0x1f6cc},
1472 {0x1f6d0, 0x1f6d2},
Christian Brabandtd8872972021-06-27 21:30:14 +02001473 {0x1f6d5, 0x1f6d7},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001474 {0x1f6eb, 0x1f6ec},
Christian Brabandtd8872972021-06-27 21:30:14 +02001475 {0x1f6f4, 0x1f6fc},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001476 {0x1f7e0, 0x1f7eb},
Christian Brabandtd8872972021-06-27 21:30:14 +02001477 {0x1f90c, 0x1f93a},
1478 {0x1f93c, 0x1f945},
1479 {0x1f947, 0x1f978},
1480 {0x1f97a, 0x1f9cb},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001481 {0x1f9cd, 0x1f9ff},
Christian Brabandtd8872972021-06-27 21:30:14 +02001482 {0x1fa70, 0x1fa74},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001483 {0x1fa78, 0x1fa7a},
Christian Brabandtd8872972021-06-27 21:30:14 +02001484 {0x1fa80, 0x1fa86},
1485 {0x1fa90, 0x1faa8},
1486 {0x1fab0, 0x1fab6},
1487 {0x1fac0, 0x1fac2},
1488 {0x1fad0, 0x1fad6},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001489 {0x20000, 0x2fffd},
1490 {0x30000, 0x3fffd}
1491 };
Bram Moolenaarea676722015-01-14 17:40:09 +01001492
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001493 // Sorted list of non-overlapping intervals of Emoji characters that don't
1494 // have ambiguous or double width,
1495 // based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001496 static struct interval emoji_wide[] =
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001497 {
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001498 {0x23ed, 0x23ef},
1499 {0x23f1, 0x23f2},
1500 {0x23f8, 0x23fa},
1501 {0x24c2, 0x24c2},
1502 {0x261d, 0x261d},
1503 {0x26c8, 0x26c8},
1504 {0x26cf, 0x26cf},
1505 {0x26d1, 0x26d1},
1506 {0x26d3, 0x26d3},
1507 {0x26e9, 0x26e9},
1508 {0x26f0, 0x26f1},
1509 {0x26f7, 0x26f9},
1510 {0x270c, 0x270d},
1511 {0x2934, 0x2935},
1512 {0x1f170, 0x1f189},
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001513 {0x1f1e6, 0x1f1ff},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001514 {0x1f321, 0x1f321},
1515 {0x1f324, 0x1f32c},
1516 {0x1f336, 0x1f336},
1517 {0x1f37d, 0x1f37d},
1518 {0x1f396, 0x1f397},
1519 {0x1f399, 0x1f39b},
1520 {0x1f39e, 0x1f39f},
1521 {0x1f3cb, 0x1f3ce},
1522 {0x1f3d4, 0x1f3df},
1523 {0x1f3f3, 0x1f3f5},
1524 {0x1f3f7, 0x1f3f7},
1525 {0x1f43f, 0x1f43f},
1526 {0x1f441, 0x1f441},
1527 {0x1f4fd, 0x1f4fd},
1528 {0x1f549, 0x1f54a},
1529 {0x1f56f, 0x1f570},
1530 {0x1f573, 0x1f579},
1531 {0x1f587, 0x1f587},
1532 {0x1f58a, 0x1f58d},
1533 {0x1f590, 0x1f590},
1534 {0x1f5a5, 0x1f5a5},
1535 {0x1f5a8, 0x1f5a8},
1536 {0x1f5b1, 0x1f5b2},
1537 {0x1f5bc, 0x1f5bc},
1538 {0x1f5c2, 0x1f5c4},
1539 {0x1f5d1, 0x1f5d3},
1540 {0x1f5dc, 0x1f5de},
1541 {0x1f5e1, 0x1f5e1},
1542 {0x1f5e3, 0x1f5e3},
1543 {0x1f5e8, 0x1f5e8},
1544 {0x1f5ef, 0x1f5ef},
1545 {0x1f5f3, 0x1f5f3},
1546 {0x1f5fa, 0x1f5fa},
1547 {0x1f6cb, 0x1f6cf},
1548 {0x1f6e0, 0x1f6e5},
1549 {0x1f6e9, 0x1f6e9},
1550 {0x1f6f0, 0x1f6f0},
1551 {0x1f6f3, 0x1f6f3}
Bram Moolenaar8dddc1f2021-04-07 19:00:25 +02001552
1553#ifdef MACOS_X
1554 // Include SF Symbols characters, which should be rendered as
1555 // double-width. All of them are in the Supplementary Private Use
1556 // Area-B range. The exact range was determined by downloading the "SF
1557 // Symbols" app from Apple, and then selecting all symbols, copying
1558 // them out, and inspecting the unicode values of them.
1559 , {0x100000, 0x100d7f}
1560#endif
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001561 };
1562
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 if (c >= 0x100)
1564 {
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001565#if defined(FEAT_EVAL) || defined(USE_WCHAR_FUNCTIONS)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001566 int n;
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001567#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001568
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001569#ifdef FEAT_EVAL
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001570 n = cw_value(c);
1571 if (n != 0)
1572 return n;
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02001573#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001574
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575#ifdef USE_WCHAR_FUNCTIONS
1576 /*
1577 * Assume the library function wcwidth() works better than our own
1578 * stuff. It should return 1 for ambiguous width chars!
1579 */
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001580 n = wcwidth(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
1582 if (n < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001583 return 6; // unprintable, displays <xxxx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (n > 1)
1585 return n;
1586#else
1587 if (!utf_printable(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001588 return 6; // unprintable, displays <xxxx>
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001589 if (intable(doublewidth, sizeof(doublewidth), c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 return 2;
1591#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001592 if (p_emoji && intable(emoji_wide, sizeof(emoji_wide), c))
Bram Moolenaar3848e002016-03-19 18:42:29 +01001593 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 }
1595
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001596 // Characters below 0x100 are influenced by 'isprint' option
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 else if (c >= 0x80 && !vim_isprintc(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001598 return 4; // unprintable, displays <xx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599
1600 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1601 return 2;
1602
1603 return 1;
1604}
1605
1606/*
1607 * mb_ptr2cells() function pointer.
1608 * Return the number of display cells character at "*p" occupies.
1609 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1610 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001612latin_ptr2cells(char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613{
1614 return 1;
1615}
1616
1617 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001618utf_ptr2cells(
1619 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
1621 int c;
1622
Bram Moolenaar02c037a2020-08-30 19:26:45 +02001623 // Need to convert to a character number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 if (*p >= 0x80)
1625 {
1626 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001627 // An illegal byte is displayed as <xx>.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001628 if (utf_ptr2len(p) == 1 || c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001630 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 if (c < 0x80)
1632 return char2cells(c);
1633 return utf_char2cells(c);
1634 }
1635 return 1;
1636}
1637
1638 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001639dbcs_ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001641 // Number of cells is equal to number of bytes, except for euc-jp when
1642 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1644 return 1;
1645 return MB_BYTE2LEN(*p);
1646}
1647
1648/*
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001649 * mb_ptr2cells_len() function pointer.
1650 * Like mb_ptr2cells(), but limit string length to "size".
1651 * For an empty string or truncated character returns 1.
1652 */
1653 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001654latin_ptr2cells_len(char_u *p UNUSED, int size UNUSED)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001655{
1656 return 1;
1657}
1658
1659 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001660utf_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001661{
1662 int c;
1663
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001664 // Need to convert to a wide character.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001665 if (size > 0 && *p >= 0x80)
1666 {
1667 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001668 return 1; // truncated
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001669 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001670 // An illegal byte is displayed as <xx>.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001671 if (utf_ptr2len(p) == 1 || c == NUL)
1672 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001673 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001674 if (c < 0x80)
1675 return char2cells(c);
1676 return utf_char2cells(c);
1677 }
1678 return 1;
1679}
1680
1681 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001682dbcs_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001683{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001684 // Number of cells is equal to number of bytes, except for euc-jp when
1685 // the first byte is 0x8e.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001686 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1687 return 1;
1688 return MB_BYTE2LEN(*p);
1689}
1690
1691/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 * mb_char2cells() function pointer.
1693 * Return the number of display cells character "c" occupies.
1694 * Only takes care of multi-byte chars, not "^C" and such.
1695 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001697latin_char2cells(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698{
1699 return 1;
1700}
1701
1702 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001703dbcs_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001705 // Number of cells is equal to number of bytes, except for euc-jp when
1706 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1708 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001709 // use the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 return MB_BYTE2LEN((unsigned)c >> 8);
1711}
1712
1713/*
Bram Moolenaar72597a52010-07-18 15:31:08 +02001714 * Return the number of cells occupied by string "p".
1715 * Stop at a NUL character. When "len" >= 0 stop at character "p[len]".
1716 */
1717 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001718mb_string2cells(char_u *p, int len)
Bram Moolenaar72597a52010-07-18 15:31:08 +02001719{
1720 int i;
1721 int clen = 0;
1722
1723 for (i = 0; (len < 0 || i < len) && p[i] != NUL; i += (*mb_ptr2len)(p + i))
1724 clen += (*mb_ptr2cells)(p + i);
1725 return clen;
1726}
1727
1728/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 * mb_off2cells() function pointer.
1730 * Return number of display cells for char at ScreenLines[off].
Bram Moolenaar367329b2007-08-30 11:53:22 +00001731 * We make sure that the offset used is less than "max_off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001734latin_off2cells(unsigned off UNUSED, unsigned max_off UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735{
1736 return 1;
1737}
1738
1739 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001740dbcs_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001742 // never check beyond end of the line
Bram Moolenaar367329b2007-08-30 11:53:22 +00001743 if (off >= max_off)
1744 return 1;
1745
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001746 // Number of cells is equal to number of bytes, except for euc-jp when
1747 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1749 return 1;
1750 return MB_BYTE2LEN(ScreenLines[off]);
1751}
1752
1753 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001754utf_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755{
Bram Moolenaar367329b2007-08-30 11:53:22 +00001756 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757}
1758
1759/*
1760 * mb_ptr2char() function pointer.
1761 * Convert a byte sequence into a character.
1762 */
1763 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001764latin_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765{
1766 return *p;
1767}
1768
1769 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001770dbcs_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
1772 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1773 return (p[0] << 8) + p[1];
1774 return *p;
1775}
1776
1777/*
Bram Moolenaar02c037a2020-08-30 19:26:45 +02001778 * Convert a UTF-8 byte sequence to a character number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 * If the sequence is illegal or truncated by a NUL the first byte is
1780 * returned.
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01001781 * For an overlong sequence this may return zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 * Does not include composing characters, of course.
1783 */
1784 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001785utf_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786{
1787 int len;
1788
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001789 if (p[0] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 return p[0];
1791
Bram Moolenaar24397332009-12-02 14:02:39 +00001792 len = utf8len_tab_zero[p[0]];
Bram Moolenaar89bf0922008-06-29 14:16:06 +00001793 if (len > 1 && (p[1] & 0xc0) == 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 {
1795 if (len == 2)
1796 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1797 if ((p[2] & 0xc0) == 0x80)
1798 {
1799 if (len == 3)
1800 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1801 + (p[2] & 0x3f);
1802 if ((p[3] & 0xc0) == 0x80)
1803 {
1804 if (len == 4)
1805 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1806 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1807 if ((p[4] & 0xc0) == 0x80)
1808 {
1809 if (len == 5)
1810 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1811 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1812 + (p[4] & 0x3f);
1813 if ((p[5] & 0xc0) == 0x80 && len == 6)
1814 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1815 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1816 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1817 }
1818 }
1819 }
1820 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001821 // Illegal value, just return the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 return p[0];
1823}
1824
1825/*
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001826 * Convert a UTF-8 byte sequence to a wide character.
1827 * String is assumed to be terminated by NUL or after "n" bytes, whichever
1828 * comes first.
1829 * The function is safe in the sense that it never accesses memory beyond the
1830 * first "n" bytes of "s".
1831 *
1832 * On success, returns decoded codepoint, advances "s" to the beginning of
1833 * next character and decreases "n" accordingly.
1834 *
1835 * If end of string was reached, returns 0 and, if "n" > 0, advances "s" past
1836 * NUL byte.
1837 *
1838 * If byte sequence is illegal or incomplete, returns -1 and does not advance
1839 * "s".
1840 */
1841 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001842utf_safe_read_char_adv(char_u **s, size_t *n)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001843{
1844 int c, k;
1845
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001846 if (*n == 0) // end of buffer
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001847 return 0;
1848
1849 k = utf8len_tab_zero[**s];
1850
1851 if (k == 1)
1852 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001853 // ASCII character or NUL
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001854 (*n)--;
1855 return *(*s)++;
1856 }
1857
1858 if ((size_t)k <= *n)
1859 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001860 // We have a multibyte sequence and it isn't truncated by buffer
1861 // limits so utf_ptr2char() is safe to use. Or the first byte is
1862 // illegal (k=0), and it's also safe to use utf_ptr2char().
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001863 c = utf_ptr2char(*s);
1864
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001865 // On failure, utf_ptr2char() returns the first byte, so here we
1866 // check equality with the first byte. The only non-ASCII character
1867 // which equals the first byte of its own UTF-8 representation is
1868 // U+00C3 (UTF-8: 0xC3 0x83), so need to check that special case too.
1869 // It's safe even if n=1, else we would have k=2 > n.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001870 if (c != (int)(**s) || (c == 0xC3 && (*s)[1] == 0x83))
1871 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001872 // byte sequence was successfully decoded
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001873 *s += k;
1874 *n -= k;
1875 return c;
1876 }
1877 }
1878
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001879 // byte sequence is incomplete or illegal
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001880 return -1;
1881}
1882
1883/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 * Get character at **pp and advance *pp to the next character.
1885 * Note: composing characters are skipped!
1886 */
1887 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001888mb_ptr2char_adv(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889{
1890 int c;
1891
1892 c = (*mb_ptr2char)(*pp);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001893 *pp += (*mb_ptr2len)(*pp);
1894 return c;
1895}
1896
1897/*
1898 * Get character at **pp and advance *pp to the next character.
1899 * Note: composing characters are returned as separate characters.
1900 */
1901 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001902mb_cptr2char_adv(char_u **pp)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001903{
1904 int c;
1905
1906 c = (*mb_ptr2char)(*pp);
1907 if (enc_utf8)
1908 *pp += utf_ptr2len(*pp);
1909 else
1910 *pp += (*mb_ptr2len)(*pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 return c;
1912}
1913
1914#if defined(FEAT_ARABIC) || defined(PROTO)
1915/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 * Check if the character pointed to by "p2" is a composing character when it
1917 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1918 * behaves like a composing character.
1919 */
1920 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001921utf_composinglike(char_u *p1, char_u *p2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922{
1923 int c2;
1924
1925 c2 = utf_ptr2char(p2);
1926 if (utf_iscomposing(c2))
1927 return TRUE;
1928 if (!arabic_maycombine(c2))
1929 return FALSE;
1930 return arabic_combine(utf_ptr2char(p1), c2);
1931}
1932#endif
1933
1934/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001935 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 * composing characters.
1937 */
1938 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001939utfc_ptr2char(
1940 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001941 int *pcc) // return: composing chars, last one is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942{
1943 int len;
1944 int c;
1945 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001946 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947
1948 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001949 len = utf_ptr2len(p);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001950
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001951 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 if ((len > 1 || *p < 0x80)
1953 && p[len] >= 0x80
1954 && UTF_COMPOSINGLIKE(p, p + len))
1955 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001956 cc = utf_ptr2char(p + len);
1957 for (;;)
1958 {
1959 pcc[i++] = cc;
1960 if (i == MAX_MCO)
1961 break;
1962 len += utf_ptr2len(p + len);
1963 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1964 break;
1965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001967
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001968 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001969 pcc[i] = 0;
1970
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 return c;
1972}
1973
1974/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001975 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 * composing characters. Use no more than p[maxlen].
1977 */
1978 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001979utfc_ptr2char_len(
1980 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001981 int *pcc, // return: composing chars, last one is 0
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001982 int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983{
1984 int len;
1985 int c;
1986 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001987 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988
1989 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001990 len = utf_ptr2len_len(p, maxlen);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001991 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 if ((len > 1 || *p < 0x80)
1993 && len < maxlen
1994 && p[len] >= 0x80
1995 && UTF_COMPOSINGLIKE(p, p + len))
1996 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001997 cc = utf_ptr2char(p + len);
1998 for (;;)
1999 {
2000 pcc[i++] = cc;
2001 if (i == MAX_MCO)
2002 break;
2003 len += utf_ptr2len_len(p + len, maxlen - len);
2004 if (len >= maxlen
2005 || p[len] < 0x80
2006 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
2007 break;
2008 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002010
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002011 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002012 pcc[i] = 0;
2013
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 return c;
2015}
2016
2017/*
2018 * Convert the character at screen position "off" to a sequence of bytes.
2019 * Includes the composing characters.
Bram Moolenaar9a920d82012-06-01 15:21:02 +02002020 * "buf" must at least have the length MB_MAXBYTES + 1.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02002021 * Only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 * Returns the produced number of bytes.
2023 */
2024 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002025utfc_char2bytes(int off, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026{
2027 int len;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002028 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029
2030 len = utf_char2bytes(ScreenLinesUC[off], buf);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002031 for (i = 0; i < Screen_mco; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002033 if (ScreenLinesC[i][off] == 0)
2034 break;
2035 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 }
2037 return len;
2038}
2039
2040/*
2041 * Get the length of a UTF-8 byte sequence, not including any following
2042 * composing characters.
2043 * Returns 0 for "".
2044 * Returns 1 for an illegal byte sequence.
2045 */
2046 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002047utf_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048{
2049 int len;
2050 int i;
2051
2052 if (*p == NUL)
2053 return 0;
2054 len = utf8len_tab[*p];
2055 for (i = 1; i < len; ++i)
2056 if ((p[i] & 0xc0) != 0x80)
2057 return 1;
2058 return len;
2059}
2060
2061/*
2062 * Return length of UTF-8 character, obtained from the first byte.
2063 * "b" must be between 0 and 255!
Bram Moolenaar24397332009-12-02 14:02:39 +00002064 * Returns 1 for an invalid first byte value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 */
2066 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002067utf_byte2len(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068{
2069 return utf8len_tab[b];
2070}
2071
2072/*
2073 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
2074 * following composing characters.
2075 * Returns 1 for "".
Bram Moolenaarc048f672008-01-04 16:47:25 +00002076 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 * Returns number > "size" for an incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002078 * Never returns zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 */
2080 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002081utf_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082{
2083 int len;
2084 int i;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002085 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086
Bram Moolenaar24397332009-12-02 14:02:39 +00002087 len = utf8len_tab[*p];
2088 if (len == 1)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002089 return 1; // NUL, ascii or illegal lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 if (len > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002091 m = size; // incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002092 else
2093 m = len;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002094 for (i = 1; i < m; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 if ((p[i] & 0xc0) != 0x80)
2096 return 1;
2097 return len;
2098}
2099
2100/*
2101 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
2102 * This includes following composing characters.
2103 */
2104 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002105utfc_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
2107 int len;
Bram Moolenaarc669e662005-06-08 22:00:03 +00002108 int b0 = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109#ifdef FEAT_ARABIC
2110 int prevlen;
2111#endif
2112
Bram Moolenaarc669e662005-06-08 22:00:03 +00002113 if (b0 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002115 if (b0 < 0x80 && p[1] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 return 1;
2117
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002118 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002119 len = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002121 // Check for illegal byte.
Bram Moolenaarc669e662005-06-08 22:00:03 +00002122 if (len == 1 && b0 >= 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 return 1;
2124
2125 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002126 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 * skip all of them (otherwise the cursor would get stuck).
2128 */
2129#ifdef FEAT_ARABIC
2130 prevlen = 0;
2131#endif
2132 for (;;)
2133 {
2134 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
2135 return len;
2136
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002137 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138#ifdef FEAT_ARABIC
2139 prevlen = len;
2140#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002141 len += utf_ptr2len(p + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 }
2143}
2144
2145/*
2146 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
2147 * takes. This includes following composing characters.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002148 * Returns 0 for an empty string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 * Returns 1 for an illegal char or an incomplete byte sequence.
2150 */
2151 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002152utfc_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153{
2154 int len;
2155#ifdef FEAT_ARABIC
2156 int prevlen;
2157#endif
2158
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002159 if (size < 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002161 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 return 1;
2163
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002164 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002165 len = utf_ptr2len_len(p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002167 // Check for illegal byte and incomplete byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 if ((len == 1 && p[0] >= 0x80) || len > size)
2169 return 1;
2170
2171 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002172 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 * skip all of them (otherwise the cursor would get stuck).
2174 */
2175#ifdef FEAT_ARABIC
2176 prevlen = 0;
2177#endif
2178 while (len < size)
2179 {
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002180 int len_next_char;
2181
2182 if (p[len] < 0x80)
2183 break;
2184
2185 /*
2186 * Next character length should not go beyond size to ensure that
2187 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2188 */
2189 len_next_char = utf_ptr2len_len(p + len, size - len);
2190 if (len_next_char > size - len)
2191 break;
2192
2193 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 break;
2195
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002196 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197#ifdef FEAT_ARABIC
2198 prevlen = len;
2199#endif
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002200 len += len_next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 }
2202 return len;
2203}
2204
2205/*
2206 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2207 * This does not include composing characters.
2208 */
2209 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002210utf_char2len(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211{
2212 if (c < 0x80)
2213 return 1;
2214 if (c < 0x800)
2215 return 2;
2216 if (c < 0x10000)
2217 return 3;
2218 if (c < 0x200000)
2219 return 4;
2220 if (c < 0x4000000)
2221 return 5;
2222 return 6;
2223}
2224
2225/*
2226 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2227 * Returns the number of bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 */
2229 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002230utf_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002232 if (c < 0x80) // 7 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 {
2234 buf[0] = c;
2235 return 1;
2236 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002237 if (c < 0x800) // 11 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {
2239 buf[0] = 0xc0 + ((unsigned)c >> 6);
2240 buf[1] = 0x80 + (c & 0x3f);
2241 return 2;
2242 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002243 if (c < 0x10000) // 16 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 {
2245 buf[0] = 0xe0 + ((unsigned)c >> 12);
2246 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2247 buf[2] = 0x80 + (c & 0x3f);
2248 return 3;
2249 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002250 if (c < 0x200000) // 21 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 {
2252 buf[0] = 0xf0 + ((unsigned)c >> 18);
2253 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2254 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2255 buf[3] = 0x80 + (c & 0x3f);
2256 return 4;
2257 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002258 if (c < 0x4000000) // 26 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 {
2260 buf[0] = 0xf8 + ((unsigned)c >> 24);
2261 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2262 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2263 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2264 buf[4] = 0x80 + (c & 0x3f);
2265 return 5;
2266 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002267 // 31 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 buf[0] = 0xfc + ((unsigned)c >> 30);
2269 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2270 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2271 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2272 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2273 buf[5] = 0x80 + (c & 0x3f);
2274 return 6;
2275}
2276
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002277#if defined(FEAT_TERMINAL) || defined(PROTO)
2278/*
2279 * utf_iscomposing() with different argument type for libvterm.
2280 */
2281 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02002282utf_iscomposing_uint(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002283{
2284 return utf_iscomposing((int)c);
2285}
2286#endif
2287
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288/*
2289 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2290 * drawn on top of the preceding character.
2291 * Based on code from Markus Kuhn.
2292 */
2293 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002294utf_iscomposing(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002296 // Sorted list of non-overlapping intervals.
2297 // Generated by ../runtime/tools/unicode.vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 static struct interval combining[] =
2299 {
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002300 {0x0300, 0x036f},
2301 {0x0483, 0x0489},
2302 {0x0591, 0x05bd},
2303 {0x05bf, 0x05bf},
2304 {0x05c1, 0x05c2},
2305 {0x05c4, 0x05c5},
2306 {0x05c7, 0x05c7},
2307 {0x0610, 0x061a},
Bram Moolenaarea676722015-01-14 17:40:09 +01002308 {0x064b, 0x065f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002309 {0x0670, 0x0670},
2310 {0x06d6, 0x06dc},
Bram Moolenaarea676722015-01-14 17:40:09 +01002311 {0x06df, 0x06e4},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002312 {0x06e7, 0x06e8},
2313 {0x06ea, 0x06ed},
2314 {0x0711, 0x0711},
2315 {0x0730, 0x074a},
2316 {0x07a6, 0x07b0},
2317 {0x07eb, 0x07f3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002318 {0x07fd, 0x07fd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002319 {0x0816, 0x0819},
2320 {0x081b, 0x0823},
2321 {0x0825, 0x0827},
2322 {0x0829, 0x082d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002323 {0x0859, 0x085b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002324 {0x08d3, 0x08e1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002325 {0x08e3, 0x0903},
Bram Moolenaarea676722015-01-14 17:40:09 +01002326 {0x093a, 0x093c},
2327 {0x093e, 0x094f},
2328 {0x0951, 0x0957},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002329 {0x0962, 0x0963},
2330 {0x0981, 0x0983},
2331 {0x09bc, 0x09bc},
2332 {0x09be, 0x09c4},
2333 {0x09c7, 0x09c8},
2334 {0x09cb, 0x09cd},
2335 {0x09d7, 0x09d7},
2336 {0x09e2, 0x09e3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002337 {0x09fe, 0x09fe},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002338 {0x0a01, 0x0a03},
2339 {0x0a3c, 0x0a3c},
2340 {0x0a3e, 0x0a42},
2341 {0x0a47, 0x0a48},
2342 {0x0a4b, 0x0a4d},
2343 {0x0a51, 0x0a51},
2344 {0x0a70, 0x0a71},
2345 {0x0a75, 0x0a75},
2346 {0x0a81, 0x0a83},
2347 {0x0abc, 0x0abc},
2348 {0x0abe, 0x0ac5},
2349 {0x0ac7, 0x0ac9},
2350 {0x0acb, 0x0acd},
2351 {0x0ae2, 0x0ae3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002352 {0x0afa, 0x0aff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002353 {0x0b01, 0x0b03},
2354 {0x0b3c, 0x0b3c},
2355 {0x0b3e, 0x0b44},
2356 {0x0b47, 0x0b48},
2357 {0x0b4b, 0x0b4d},
Christian Brabandtd8872972021-06-27 21:30:14 +02002358 {0x0b55, 0x0b57},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002359 {0x0b62, 0x0b63},
2360 {0x0b82, 0x0b82},
2361 {0x0bbe, 0x0bc2},
2362 {0x0bc6, 0x0bc8},
2363 {0x0bca, 0x0bcd},
2364 {0x0bd7, 0x0bd7},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002365 {0x0c00, 0x0c04},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002366 {0x0c3e, 0x0c44},
2367 {0x0c46, 0x0c48},
2368 {0x0c4a, 0x0c4d},
2369 {0x0c55, 0x0c56},
2370 {0x0c62, 0x0c63},
Bram Moolenaarea676722015-01-14 17:40:09 +01002371 {0x0c81, 0x0c83},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002372 {0x0cbc, 0x0cbc},
2373 {0x0cbe, 0x0cc4},
2374 {0x0cc6, 0x0cc8},
2375 {0x0cca, 0x0ccd},
2376 {0x0cd5, 0x0cd6},
2377 {0x0ce2, 0x0ce3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002378 {0x0d00, 0x0d03},
2379 {0x0d3b, 0x0d3c},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002380 {0x0d3e, 0x0d44},
2381 {0x0d46, 0x0d48},
2382 {0x0d4a, 0x0d4d},
2383 {0x0d57, 0x0d57},
2384 {0x0d62, 0x0d63},
Christian Brabandtd8872972021-06-27 21:30:14 +02002385 {0x0d81, 0x0d83},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002386 {0x0dca, 0x0dca},
2387 {0x0dcf, 0x0dd4},
2388 {0x0dd6, 0x0dd6},
2389 {0x0dd8, 0x0ddf},
2390 {0x0df2, 0x0df3},
2391 {0x0e31, 0x0e31},
2392 {0x0e34, 0x0e3a},
2393 {0x0e47, 0x0e4e},
2394 {0x0eb1, 0x0eb1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002395 {0x0eb4, 0x0ebc},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002396 {0x0ec8, 0x0ecd},
2397 {0x0f18, 0x0f19},
2398 {0x0f35, 0x0f35},
2399 {0x0f37, 0x0f37},
2400 {0x0f39, 0x0f39},
2401 {0x0f3e, 0x0f3f},
2402 {0x0f71, 0x0f84},
2403 {0x0f86, 0x0f87},
Bram Moolenaarea676722015-01-14 17:40:09 +01002404 {0x0f8d, 0x0f97},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002405 {0x0f99, 0x0fbc},
2406 {0x0fc6, 0x0fc6},
2407 {0x102b, 0x103e},
2408 {0x1056, 0x1059},
2409 {0x105e, 0x1060},
2410 {0x1062, 0x1064},
2411 {0x1067, 0x106d},
2412 {0x1071, 0x1074},
2413 {0x1082, 0x108d},
2414 {0x108f, 0x108f},
2415 {0x109a, 0x109d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002416 {0x135d, 0x135f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002417 {0x1712, 0x1714},
2418 {0x1732, 0x1734},
2419 {0x1752, 0x1753},
2420 {0x1772, 0x1773},
Bram Moolenaarea676722015-01-14 17:40:09 +01002421 {0x17b4, 0x17d3},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002422 {0x17dd, 0x17dd},
2423 {0x180b, 0x180d},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002424 {0x1885, 0x1886},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002425 {0x18a9, 0x18a9},
2426 {0x1920, 0x192b},
2427 {0x1930, 0x193b},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002428 {0x1a17, 0x1a1b},
2429 {0x1a55, 0x1a5e},
2430 {0x1a60, 0x1a7c},
2431 {0x1a7f, 0x1a7f},
Christian Brabandtd8872972021-06-27 21:30:14 +02002432 {0x1ab0, 0x1ac0},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002433 {0x1b00, 0x1b04},
2434 {0x1b34, 0x1b44},
2435 {0x1b6b, 0x1b73},
2436 {0x1b80, 0x1b82},
Bram Moolenaarea676722015-01-14 17:40:09 +01002437 {0x1ba1, 0x1bad},
2438 {0x1be6, 0x1bf3},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002439 {0x1c24, 0x1c37},
2440 {0x1cd0, 0x1cd2},
2441 {0x1cd4, 0x1ce8},
2442 {0x1ced, 0x1ced},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002443 {0x1cf4, 0x1cf4},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002444 {0x1cf7, 0x1cf9},
2445 {0x1dc0, 0x1df9},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002446 {0x1dfb, 0x1dff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002447 {0x20d0, 0x20f0},
2448 {0x2cef, 0x2cf1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002449 {0x2d7f, 0x2d7f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002450 {0x2de0, 0x2dff},
2451 {0x302a, 0x302f},
2452 {0x3099, 0x309a},
2453 {0xa66f, 0xa672},
Bram Moolenaarea676722015-01-14 17:40:09 +01002454 {0xa674, 0xa67d},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002455 {0xa69e, 0xa69f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002456 {0xa6f0, 0xa6f1},
2457 {0xa802, 0xa802},
2458 {0xa806, 0xa806},
2459 {0xa80b, 0xa80b},
2460 {0xa823, 0xa827},
Christian Brabandtd8872972021-06-27 21:30:14 +02002461 {0xa82c, 0xa82c},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002462 {0xa880, 0xa881},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002463 {0xa8b4, 0xa8c5},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002464 {0xa8e0, 0xa8f1},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002465 {0xa8ff, 0xa8ff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002466 {0xa926, 0xa92d},
2467 {0xa947, 0xa953},
2468 {0xa980, 0xa983},
2469 {0xa9b3, 0xa9c0},
Bram Moolenaarea676722015-01-14 17:40:09 +01002470 {0xa9e5, 0xa9e5},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002471 {0xaa29, 0xaa36},
2472 {0xaa43, 0xaa43},
2473 {0xaa4c, 0xaa4d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002474 {0xaa7b, 0xaa7d},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002475 {0xaab0, 0xaab0},
2476 {0xaab2, 0xaab4},
2477 {0xaab7, 0xaab8},
2478 {0xaabe, 0xaabf},
2479 {0xaac1, 0xaac1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002480 {0xaaeb, 0xaaef},
2481 {0xaaf5, 0xaaf6},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002482 {0xabe3, 0xabea},
2483 {0xabec, 0xabed},
2484 {0xfb1e, 0xfb1e},
2485 {0xfe00, 0xfe0f},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002486 {0xfe20, 0xfe2f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002487 {0x101fd, 0x101fd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002488 {0x102e0, 0x102e0},
2489 {0x10376, 0x1037a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002490 {0x10a01, 0x10a03},
2491 {0x10a05, 0x10a06},
2492 {0x10a0c, 0x10a0f},
2493 {0x10a38, 0x10a3a},
2494 {0x10a3f, 0x10a3f},
Bram Moolenaarea676722015-01-14 17:40:09 +01002495 {0x10ae5, 0x10ae6},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002496 {0x10d24, 0x10d27},
Christian Brabandtd8872972021-06-27 21:30:14 +02002497 {0x10eab, 0x10eac},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002498 {0x10f46, 0x10f50},
Bram Moolenaarea676722015-01-14 17:40:09 +01002499 {0x11000, 0x11002},
2500 {0x11038, 0x11046},
2501 {0x1107f, 0x11082},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002502 {0x110b0, 0x110ba},
Bram Moolenaarea676722015-01-14 17:40:09 +01002503 {0x11100, 0x11102},
2504 {0x11127, 0x11134},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002505 {0x11145, 0x11146},
Bram Moolenaarea676722015-01-14 17:40:09 +01002506 {0x11173, 0x11173},
2507 {0x11180, 0x11182},
2508 {0x111b3, 0x111c0},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002509 {0x111c9, 0x111cc},
Christian Brabandtd8872972021-06-27 21:30:14 +02002510 {0x111ce, 0x111cf},
Bram Moolenaarea676722015-01-14 17:40:09 +01002511 {0x1122c, 0x11237},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002512 {0x1123e, 0x1123e},
Bram Moolenaarea676722015-01-14 17:40:09 +01002513 {0x112df, 0x112ea},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002514 {0x11300, 0x11303},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002515 {0x1133b, 0x1133c},
Bram Moolenaarea676722015-01-14 17:40:09 +01002516 {0x1133e, 0x11344},
2517 {0x11347, 0x11348},
2518 {0x1134b, 0x1134d},
2519 {0x11357, 0x11357},
2520 {0x11362, 0x11363},
2521 {0x11366, 0x1136c},
2522 {0x11370, 0x11374},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002523 {0x11435, 0x11446},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002524 {0x1145e, 0x1145e},
Bram Moolenaarea676722015-01-14 17:40:09 +01002525 {0x114b0, 0x114c3},
2526 {0x115af, 0x115b5},
2527 {0x115b8, 0x115c0},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002528 {0x115dc, 0x115dd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002529 {0x11630, 0x11640},
2530 {0x116ab, 0x116b7},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002531 {0x1171d, 0x1172b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002532 {0x1182c, 0x1183a},
Christian Brabandtd8872972021-06-27 21:30:14 +02002533 {0x11930, 0x11935},
2534 {0x11937, 0x11938},
2535 {0x1193b, 0x1193e},
2536 {0x11940, 0x11940},
2537 {0x11942, 0x11943},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002538 {0x119d1, 0x119d7},
2539 {0x119da, 0x119e0},
2540 {0x119e4, 0x119e4},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002541 {0x11a01, 0x11a0a},
2542 {0x11a33, 0x11a39},
2543 {0x11a3b, 0x11a3e},
2544 {0x11a47, 0x11a47},
2545 {0x11a51, 0x11a5b},
2546 {0x11a8a, 0x11a99},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002547 {0x11c2f, 0x11c36},
2548 {0x11c38, 0x11c3f},
2549 {0x11c92, 0x11ca7},
2550 {0x11ca9, 0x11cb6},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002551 {0x11d31, 0x11d36},
2552 {0x11d3a, 0x11d3a},
2553 {0x11d3c, 0x11d3d},
2554 {0x11d3f, 0x11d45},
2555 {0x11d47, 0x11d47},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002556 {0x11d8a, 0x11d8e},
2557 {0x11d90, 0x11d91},
2558 {0x11d93, 0x11d97},
2559 {0x11ef3, 0x11ef6},
Bram Moolenaarea676722015-01-14 17:40:09 +01002560 {0x16af0, 0x16af4},
2561 {0x16b30, 0x16b36},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002562 {0x16f4f, 0x16f4f},
2563 {0x16f51, 0x16f87},
Bram Moolenaarea676722015-01-14 17:40:09 +01002564 {0x16f8f, 0x16f92},
Christian Brabandtd8872972021-06-27 21:30:14 +02002565 {0x16fe4, 0x16fe4},
2566 {0x16ff0, 0x16ff1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002567 {0x1bc9d, 0x1bc9e},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002568 {0x1d165, 0x1d169},
2569 {0x1d16d, 0x1d172},
2570 {0x1d17b, 0x1d182},
2571 {0x1d185, 0x1d18b},
2572 {0x1d1aa, 0x1d1ad},
2573 {0x1d242, 0x1d244},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002574 {0x1da00, 0x1da36},
2575 {0x1da3b, 0x1da6c},
2576 {0x1da75, 0x1da75},
2577 {0x1da84, 0x1da84},
2578 {0x1da9b, 0x1da9f},
2579 {0x1daa1, 0x1daaf},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002580 {0x1e000, 0x1e006},
2581 {0x1e008, 0x1e018},
2582 {0x1e01b, 0x1e021},
2583 {0x1e023, 0x1e024},
2584 {0x1e026, 0x1e02a},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002585 {0x1e130, 0x1e136},
2586 {0x1e2ec, 0x1e2ef},
Bram Moolenaarea676722015-01-14 17:40:09 +01002587 {0x1e8d0, 0x1e8d6},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002588 {0x1e944, 0x1e94a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002589 {0xe0100, 0xe01ef}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 };
2591
2592 return intable(combining, sizeof(combining), c);
2593}
2594
2595/*
2596 * Return TRUE for characters that can be displayed in a normal way.
2597 * Only for characters of 0x100 and above!
2598 */
2599 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002600utf_printable(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601{
2602#ifdef USE_WCHAR_FUNCTIONS
2603 /*
2604 * Assume the iswprint() library function works better than our own stuff.
2605 */
2606 return iswprint(c);
2607#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002608 // Sorted list of non-overlapping intervals.
2609 // 0xd800-0xdfff is reserved for UTF-16, actually illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 static struct interval nonprint[] =
2611 {
2612 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
Bram Moolenaare2f66062021-11-02 20:24:38 +00002613 {0x2060, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 {0xfffe, 0xffff}
2615 };
2616
2617 return !intable(nonprint, sizeof(nonprint), c);
2618#endif
2619}
2620
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002621// Sorted list of non-overlapping intervals of all Emoji characters,
2622// based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002623// Generated by ../runtime/tools/unicode.vim.
2624// Excludes 0x00a9 and 0x00ae because they are considered latin1.
Bram Moolenaarcb070082016-04-02 22:14:51 +02002625static struct interval emoji_all[] =
2626{
2627 {0x203c, 0x203c},
2628 {0x2049, 0x2049},
2629 {0x2122, 0x2122},
2630 {0x2139, 0x2139},
2631 {0x2194, 0x2199},
2632 {0x21a9, 0x21aa},
2633 {0x231a, 0x231b},
2634 {0x2328, 0x2328},
2635 {0x23cf, 0x23cf},
2636 {0x23e9, 0x23f3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002637 {0x23f8, 0x23fa},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002638 {0x24c2, 0x24c2},
2639 {0x25aa, 0x25ab},
2640 {0x25b6, 0x25b6},
2641 {0x25c0, 0x25c0},
2642 {0x25fb, 0x25fe},
2643 {0x2600, 0x2604},
2644 {0x260e, 0x260e},
2645 {0x2611, 0x2611},
2646 {0x2614, 0x2615},
2647 {0x2618, 0x2618},
2648 {0x261d, 0x261d},
2649 {0x2620, 0x2620},
2650 {0x2622, 0x2623},
2651 {0x2626, 0x2626},
2652 {0x262a, 0x262a},
2653 {0x262e, 0x262f},
2654 {0x2638, 0x263a},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002655 {0x2640, 0x2640},
2656 {0x2642, 0x2642},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002657 {0x2648, 0x2653},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002658 {0x265f, 0x2660},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002659 {0x2663, 0x2663},
2660 {0x2665, 0x2666},
2661 {0x2668, 0x2668},
2662 {0x267b, 0x267b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002663 {0x267e, 0x267f},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002664 {0x2692, 0x2697},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002665 {0x2699, 0x2699},
2666 {0x269b, 0x269c},
2667 {0x26a0, 0x26a1},
Christian Brabandtd8872972021-06-27 21:30:14 +02002668 {0x26a7, 0x26a7},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002669 {0x26aa, 0x26ab},
2670 {0x26b0, 0x26b1},
2671 {0x26bd, 0x26be},
2672 {0x26c4, 0x26c5},
2673 {0x26c8, 0x26c8},
2674 {0x26ce, 0x26cf},
2675 {0x26d1, 0x26d1},
2676 {0x26d3, 0x26d4},
2677 {0x26e9, 0x26ea},
2678 {0x26f0, 0x26f5},
2679 {0x26f7, 0x26fa},
2680 {0x26fd, 0x26fd},
2681 {0x2702, 0x2702},
2682 {0x2705, 0x2705},
2683 {0x2708, 0x270d},
2684 {0x270f, 0x270f},
2685 {0x2712, 0x2712},
2686 {0x2714, 0x2714},
2687 {0x2716, 0x2716},
2688 {0x271d, 0x271d},
2689 {0x2721, 0x2721},
2690 {0x2728, 0x2728},
2691 {0x2733, 0x2734},
2692 {0x2744, 0x2744},
2693 {0x2747, 0x2747},
2694 {0x274c, 0x274c},
2695 {0x274e, 0x274e},
2696 {0x2753, 0x2755},
2697 {0x2757, 0x2757},
2698 {0x2763, 0x2764},
2699 {0x2795, 0x2797},
2700 {0x27a1, 0x27a1},
2701 {0x27b0, 0x27b0},
2702 {0x27bf, 0x27bf},
2703 {0x2934, 0x2935},
2704 {0x2b05, 0x2b07},
2705 {0x2b1b, 0x2b1c},
2706 {0x2b50, 0x2b50},
2707 {0x2b55, 0x2b55},
2708 {0x3030, 0x3030},
2709 {0x303d, 0x303d},
2710 {0x3297, 0x3297},
2711 {0x3299, 0x3299},
2712 {0x1f004, 0x1f004},
2713 {0x1f0cf, 0x1f0cf},
Christian Brabandtd8872972021-06-27 21:30:14 +02002714 {0x1f170, 0x1f171},
2715 {0x1f17e, 0x1f17f},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002716 {0x1f18e, 0x1f18e},
2717 {0x1f191, 0x1f19a},
2718 {0x1f1e6, 0x1f1ff},
2719 {0x1f201, 0x1f202},
2720 {0x1f21a, 0x1f21a},
2721 {0x1f22f, 0x1f22f},
2722 {0x1f232, 0x1f23a},
2723 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002724 {0x1f300, 0x1f321},
2725 {0x1f324, 0x1f393},
2726 {0x1f396, 0x1f397},
2727 {0x1f399, 0x1f39b},
2728 {0x1f39e, 0x1f3f0},
2729 {0x1f3f3, 0x1f3f5},
2730 {0x1f3f7, 0x1f4fd},
2731 {0x1f4ff, 0x1f53d},
2732 {0x1f549, 0x1f54e},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002733 {0x1f550, 0x1f567},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002734 {0x1f56f, 0x1f570},
2735 {0x1f573, 0x1f57a},
2736 {0x1f587, 0x1f587},
2737 {0x1f58a, 0x1f58d},
2738 {0x1f590, 0x1f590},
2739 {0x1f595, 0x1f596},
2740 {0x1f5a4, 0x1f5a5},
2741 {0x1f5a8, 0x1f5a8},
2742 {0x1f5b1, 0x1f5b2},
2743 {0x1f5bc, 0x1f5bc},
2744 {0x1f5c2, 0x1f5c4},
2745 {0x1f5d1, 0x1f5d3},
2746 {0x1f5dc, 0x1f5de},
2747 {0x1f5e1, 0x1f5e1},
2748 {0x1f5e3, 0x1f5e3},
2749 {0x1f5e8, 0x1f5e8},
2750 {0x1f5ef, 0x1f5ef},
2751 {0x1f5f3, 0x1f5f3},
2752 {0x1f5fa, 0x1f64f},
2753 {0x1f680, 0x1f6c5},
2754 {0x1f6cb, 0x1f6d2},
Christian Brabandtd8872972021-06-27 21:30:14 +02002755 {0x1f6d5, 0x1f6d7},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002756 {0x1f6e0, 0x1f6e5},
2757 {0x1f6e9, 0x1f6e9},
2758 {0x1f6eb, 0x1f6ec},
2759 {0x1f6f0, 0x1f6f0},
Christian Brabandtd8872972021-06-27 21:30:14 +02002760 {0x1f6f3, 0x1f6fc},
2761 {0x1f7e0, 0x1f7eb},
2762 {0x1f90c, 0x1f93a},
2763 {0x1f93c, 0x1f945},
2764 {0x1f947, 0x1f978},
2765 {0x1f97a, 0x1f9cb},
2766 {0x1f9cd, 0x1f9ff},
2767 {0x1fa70, 0x1fa74},
2768 {0x1fa78, 0x1fa7a},
2769 {0x1fa80, 0x1fa86},
2770 {0x1fa90, 0x1faa8},
2771 {0x1fab0, 0x1fab6},
2772 {0x1fac0, 0x1fac2},
2773 {0x1fad0, 0x1fad6}
Bram Moolenaarcb070082016-04-02 22:14:51 +02002774};
2775
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776/*
2777 * Get class of a Unicode character.
2778 * 0: white space
2779 * 1: punctuation
2780 * 2 or bigger: some class of word character.
2781 */
2782 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002783utf_class(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784{
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002785 return utf_class_buf(c, curbuf);
2786}
2787
2788 int
2789utf_class_buf(int c, buf_T *buf)
2790{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002791 // sorted list of non-overlapping intervals
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 static struct clinterval
2793 {
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002794 unsigned int first;
2795 unsigned int last;
2796 unsigned int class;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 } classes[] =
2798 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002799 {0x037e, 0x037e, 1}, // Greek question mark
2800 {0x0387, 0x0387, 1}, // Greek ano teleia
2801 {0x055a, 0x055f, 1}, // Armenian punctuation
2802 {0x0589, 0x0589, 1}, // Armenian full stop
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803 {0x05be, 0x05be, 1},
2804 {0x05c0, 0x05c0, 1},
2805 {0x05c3, 0x05c3, 1},
2806 {0x05f3, 0x05f4, 1},
2807 {0x060c, 0x060c, 1},
2808 {0x061b, 0x061b, 1},
2809 {0x061f, 0x061f, 1},
2810 {0x066a, 0x066d, 1},
2811 {0x06d4, 0x06d4, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002812 {0x0700, 0x070d, 1}, // Syriac punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 {0x0964, 0x0965, 1},
2814 {0x0970, 0x0970, 1},
2815 {0x0df4, 0x0df4, 1},
2816 {0x0e4f, 0x0e4f, 1},
2817 {0x0e5a, 0x0e5b, 1},
2818 {0x0f04, 0x0f12, 1},
2819 {0x0f3a, 0x0f3d, 1},
2820 {0x0f85, 0x0f85, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002821 {0x104a, 0x104f, 1}, // Myanmar punctuation
2822 {0x10fb, 0x10fb, 1}, // Georgian punctuation
2823 {0x1361, 0x1368, 1}, // Ethiopic punctuation
2824 {0x166d, 0x166e, 1}, // Canadian Syl. punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 {0x1680, 0x1680, 0},
2826 {0x169b, 0x169c, 1},
2827 {0x16eb, 0x16ed, 1},
2828 {0x1735, 0x1736, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002829 {0x17d4, 0x17dc, 1}, // Khmer punctuation
2830 {0x1800, 0x180a, 1}, // Mongolian punctuation
2831 {0x2000, 0x200b, 0}, // spaces
2832 {0x200c, 0x2027, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 {0x2028, 0x2029, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002834 {0x202a, 0x202e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 {0x202f, 0x202f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002836 {0x2030, 0x205e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 {0x205f, 0x205f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002838 {0x2060, 0x27ff, 1}, // punctuation and symbols
2839 {0x2070, 0x207f, 0x2070}, // superscript
2840 {0x2080, 0x2094, 0x2080}, // subscript
2841 {0x20a0, 0x27ff, 1}, // all kinds of symbols
2842 {0x2800, 0x28ff, 0x2800}, // braille
2843 {0x2900, 0x2998, 1}, // arrows, brackets, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 {0x29d8, 0x29db, 1},
2845 {0x29fc, 0x29fd, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002846 {0x2e00, 0x2e7f, 1}, // supplemental punctuation
2847 {0x3000, 0x3000, 0}, // ideographic space
2848 {0x3001, 0x3020, 1}, // ideographic punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 {0x3030, 0x3030, 1},
2850 {0x303d, 0x303d, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002851 {0x3040, 0x309f, 0x3040}, // Hiragana
2852 {0x30a0, 0x30ff, 0x30a0}, // Katakana
2853 {0x3300, 0x9fff, 0x4e00}, // CJK Ideographs
2854 {0xac00, 0xd7a3, 0xac00}, // Hangul Syllables
2855 {0xf900, 0xfaff, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 {0xfd3e, 0xfd3f, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002857 {0xfe30, 0xfe6b, 1}, // punctuation forms
2858 {0xff00, 0xff0f, 1}, // half/fullwidth ASCII
2859 {0xff1a, 0xff20, 1}, // half/fullwidth ASCII
2860 {0xff3b, 0xff40, 1}, // half/fullwidth ASCII
2861 {0xff5b, 0xff65, 1}, // half/fullwidth ASCII
2862 {0x1d000, 0x1d24f, 1}, // Musical notation
2863 {0x1d400, 0x1d7ff, 1}, // Mathematical Alphanumeric Symbols
2864 {0x1f000, 0x1f2ff, 1}, // Game pieces; enclosed characters
2865 {0x1f300, 0x1f9ff, 1}, // Many symbol blocks
2866 {0x20000, 0x2a6df, 0x4e00}, // CJK Ideographs
2867 {0x2a700, 0x2b73f, 0x4e00}, // CJK Ideographs
2868 {0x2b740, 0x2b81f, 0x4e00}, // CJK Ideographs
2869 {0x2f800, 0x2fa1f, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 };
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01002871
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 int bot = 0;
K.Takataeeec2542021-06-02 13:28:16 +02002873 int top = ARRAY_LENGTH(classes) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 int mid;
2875
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002876 // First quick check for Latin1 characters, use 'iskeyword'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 if (c < 0x100)
2878 {
Bram Moolenaarf7bbbc52005-06-17 21:55:00 +00002879 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002880 return 0; // blank
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002881 if (vim_iswordc_buf(c, buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002882 return 2; // word character
2883 return 1; // punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 }
2885
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02002886 // emoji
2887 if (intable(emoji_all, sizeof(emoji_all), c))
2888 return 3;
2889
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002890 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 while (top >= bot)
2892 {
2893 mid = (bot + top) / 2;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002894 if (classes[mid].last < (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 bot = mid + 1;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002896 else if (classes[mid].first > (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 top = mid - 1;
2898 else
2899 return (int)classes[mid].class;
2900 }
2901
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002902 // most other characters are "word" characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 return 2;
2904}
2905
Bram Moolenaarcb070082016-04-02 22:14:51 +02002906 int
2907utf_ambiguous_width(int c)
2908{
2909 return c >= 0x80 && (intable(ambiguous, sizeof(ambiguous), c)
2910 || intable(emoji_all, sizeof(emoji_all), c));
2911}
2912
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913/*
2914 * Code for Unicode case-dependent operations. Based on notes in
2915 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2916 * This code uses simple case folding, not full case folding.
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002917 * Last updated for Unicode 5.2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 */
2919
2920/*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002921 * The following tables are built by ../runtime/tools/unicode.vim.
2922 * They must be in numeric order, because we use binary search.
2923 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2924 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2925 * folded/upper/lower by adding 32.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927typedef struct
2928{
2929 int rangeStart;
2930 int rangeEnd;
2931 int step;
2932 int offset;
2933} convertStruct;
2934
Bram Moolenaard6f676d2005-06-01 21:51:55 +00002935static convertStruct foldCase[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002937 {0x41,0x5a,1,32},
2938 {0xb5,0xb5,-1,775},
2939 {0xc0,0xd6,1,32},
2940 {0xd8,0xde,1,32},
2941 {0x100,0x12e,2,1},
2942 {0x132,0x136,2,1},
2943 {0x139,0x147,2,1},
2944 {0x14a,0x176,2,1},
2945 {0x178,0x178,-1,-121},
2946 {0x179,0x17d,2,1},
2947 {0x17f,0x17f,-1,-268},
2948 {0x181,0x181,-1,210},
2949 {0x182,0x184,2,1},
2950 {0x186,0x186,-1,206},
2951 {0x187,0x187,-1,1},
2952 {0x189,0x18a,1,205},
2953 {0x18b,0x18b,-1,1},
2954 {0x18e,0x18e,-1,79},
2955 {0x18f,0x18f,-1,202},
2956 {0x190,0x190,-1,203},
2957 {0x191,0x191,-1,1},
2958 {0x193,0x193,-1,205},
2959 {0x194,0x194,-1,207},
2960 {0x196,0x196,-1,211},
2961 {0x197,0x197,-1,209},
2962 {0x198,0x198,-1,1},
2963 {0x19c,0x19c,-1,211},
2964 {0x19d,0x19d,-1,213},
2965 {0x19f,0x19f,-1,214},
2966 {0x1a0,0x1a4,2,1},
2967 {0x1a6,0x1a6,-1,218},
2968 {0x1a7,0x1a7,-1,1},
2969 {0x1a9,0x1a9,-1,218},
2970 {0x1ac,0x1ac,-1,1},
2971 {0x1ae,0x1ae,-1,218},
2972 {0x1af,0x1af,-1,1},
2973 {0x1b1,0x1b2,1,217},
2974 {0x1b3,0x1b5,2,1},
2975 {0x1b7,0x1b7,-1,219},
2976 {0x1b8,0x1bc,4,1},
2977 {0x1c4,0x1c4,-1,2},
2978 {0x1c5,0x1c5,-1,1},
2979 {0x1c7,0x1c7,-1,2},
2980 {0x1c8,0x1c8,-1,1},
2981 {0x1ca,0x1ca,-1,2},
2982 {0x1cb,0x1db,2,1},
2983 {0x1de,0x1ee,2,1},
2984 {0x1f1,0x1f1,-1,2},
2985 {0x1f2,0x1f4,2,1},
2986 {0x1f6,0x1f6,-1,-97},
2987 {0x1f7,0x1f7,-1,-56},
2988 {0x1f8,0x21e,2,1},
2989 {0x220,0x220,-1,-130},
2990 {0x222,0x232,2,1},
2991 {0x23a,0x23a,-1,10795},
2992 {0x23b,0x23b,-1,1},
2993 {0x23d,0x23d,-1,-163},
2994 {0x23e,0x23e,-1,10792},
2995 {0x241,0x241,-1,1},
2996 {0x243,0x243,-1,-195},
2997 {0x244,0x244,-1,69},
2998 {0x245,0x245,-1,71},
2999 {0x246,0x24e,2,1},
3000 {0x345,0x345,-1,116},
3001 {0x370,0x372,2,1},
3002 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003003 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003004 {0x386,0x386,-1,38},
3005 {0x388,0x38a,1,37},
3006 {0x38c,0x38c,-1,64},
3007 {0x38e,0x38f,1,63},
3008 {0x391,0x3a1,1,32},
3009 {0x3a3,0x3ab,1,32},
3010 {0x3c2,0x3c2,-1,1},
3011 {0x3cf,0x3cf,-1,8},
3012 {0x3d0,0x3d0,-1,-30},
3013 {0x3d1,0x3d1,-1,-25},
3014 {0x3d5,0x3d5,-1,-15},
3015 {0x3d6,0x3d6,-1,-22},
3016 {0x3d8,0x3ee,2,1},
3017 {0x3f0,0x3f0,-1,-54},
3018 {0x3f1,0x3f1,-1,-48},
3019 {0x3f4,0x3f4,-1,-60},
3020 {0x3f5,0x3f5,-1,-64},
3021 {0x3f7,0x3f7,-1,1},
3022 {0x3f9,0x3f9,-1,-7},
3023 {0x3fa,0x3fa,-1,1},
3024 {0x3fd,0x3ff,1,-130},
3025 {0x400,0x40f,1,80},
3026 {0x410,0x42f,1,32},
3027 {0x460,0x480,2,1},
3028 {0x48a,0x4be,2,1},
3029 {0x4c0,0x4c0,-1,15},
3030 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003031 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003032 {0x531,0x556,1,48},
3033 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003034 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003035 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003036 {0x1c80,0x1c80,-1,-6222},
3037 {0x1c81,0x1c81,-1,-6221},
3038 {0x1c82,0x1c82,-1,-6212},
3039 {0x1c83,0x1c84,1,-6210},
3040 {0x1c85,0x1c85,-1,-6211},
3041 {0x1c86,0x1c86,-1,-6204},
3042 {0x1c87,0x1c87,-1,-6180},
3043 {0x1c88,0x1c88,-1,35267},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003044 {0x1c90,0x1cba,1,-3008},
3045 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003046 {0x1e00,0x1e94,2,1},
3047 {0x1e9b,0x1e9b,-1,-58},
3048 {0x1e9e,0x1e9e,-1,-7615},
3049 {0x1ea0,0x1efe,2,1},
3050 {0x1f08,0x1f0f,1,-8},
3051 {0x1f18,0x1f1d,1,-8},
3052 {0x1f28,0x1f2f,1,-8},
3053 {0x1f38,0x1f3f,1,-8},
3054 {0x1f48,0x1f4d,1,-8},
3055 {0x1f59,0x1f5f,2,-8},
3056 {0x1f68,0x1f6f,1,-8},
3057 {0x1f88,0x1f8f,1,-8},
3058 {0x1f98,0x1f9f,1,-8},
3059 {0x1fa8,0x1faf,1,-8},
3060 {0x1fb8,0x1fb9,1,-8},
3061 {0x1fba,0x1fbb,1,-74},
3062 {0x1fbc,0x1fbc,-1,-9},
3063 {0x1fbe,0x1fbe,-1,-7173},
3064 {0x1fc8,0x1fcb,1,-86},
3065 {0x1fcc,0x1fcc,-1,-9},
3066 {0x1fd8,0x1fd9,1,-8},
3067 {0x1fda,0x1fdb,1,-100},
3068 {0x1fe8,0x1fe9,1,-8},
3069 {0x1fea,0x1feb,1,-112},
3070 {0x1fec,0x1fec,-1,-7},
3071 {0x1ff8,0x1ff9,1,-128},
3072 {0x1ffa,0x1ffb,1,-126},
3073 {0x1ffc,0x1ffc,-1,-9},
3074 {0x2126,0x2126,-1,-7517},
3075 {0x212a,0x212a,-1,-8383},
3076 {0x212b,0x212b,-1,-8262},
3077 {0x2132,0x2132,-1,28},
3078 {0x2160,0x216f,1,16},
3079 {0x2183,0x2183,-1,1},
3080 {0x24b6,0x24cf,1,26},
3081 {0x2c00,0x2c2e,1,48},
3082 {0x2c60,0x2c60,-1,1},
3083 {0x2c62,0x2c62,-1,-10743},
3084 {0x2c63,0x2c63,-1,-3814},
3085 {0x2c64,0x2c64,-1,-10727},
3086 {0x2c67,0x2c6b,2,1},
3087 {0x2c6d,0x2c6d,-1,-10780},
3088 {0x2c6e,0x2c6e,-1,-10749},
3089 {0x2c6f,0x2c6f,-1,-10783},
3090 {0x2c70,0x2c70,-1,-10782},
3091 {0x2c72,0x2c75,3,1},
3092 {0x2c7e,0x2c7f,1,-10815},
3093 {0x2c80,0x2ce2,2,1},
3094 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003095 {0x2cf2,0xa640,31054,1},
3096 {0xa642,0xa66c,2,1},
3097 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003098 {0xa722,0xa72e,2,1},
3099 {0xa732,0xa76e,2,1},
3100 {0xa779,0xa77b,2,1},
3101 {0xa77d,0xa77d,-1,-35332},
3102 {0xa77e,0xa786,2,1},
3103 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003104 {0xa78d,0xa78d,-1,-42280},
3105 {0xa790,0xa792,2,1},
3106 {0xa796,0xa7a8,2,1},
3107 {0xa7aa,0xa7aa,-1,-42308},
3108 {0xa7ab,0xa7ab,-1,-42319},
3109 {0xa7ac,0xa7ac,-1,-42315},
3110 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003111 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003112 {0xa7b0,0xa7b0,-1,-42258},
3113 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003114 {0xa7b2,0xa7b2,-1,-42261},
3115 {0xa7b3,0xa7b3,-1,928},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003116 {0xa7b4,0xa7be,2,1},
3117 {0xa7c2,0xa7c2,-1,1},
3118 {0xa7c4,0xa7c4,-1,-48},
3119 {0xa7c5,0xa7c5,-1,-42307},
3120 {0xa7c6,0xa7c6,-1,-35384},
Christian Brabandtd8872972021-06-27 21:30:14 +02003121 {0xa7c7,0xa7c9,2,1},
3122 {0xa7f5,0xa7f5,-1,1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003123 {0xab70,0xabbf,1,-38864},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003124 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003125 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003126 {0x104b0,0x104d3,1,40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003127 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003128 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003129 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003130 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131};
3132
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133/*
3134 * Generic conversion function for case operations.
3135 * Return the converted equivalent of "a", which is a UCS-4 character. Use
3136 * the given conversion "table". Uses binary search on "table".
3137 */
3138 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003139utf_convert(
3140 int a,
3141 convertStruct table[],
3142 int tableSize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003144 int start, mid, end; // indices into table
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003145 int entries = tableSize / sizeof(convertStruct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146
3147 start = 0;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003148 end = entries;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 while (start < end)
3150 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003151 // need to search further
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003152 mid = (end + start) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 if (table[mid].rangeEnd < a)
3154 start = mid + 1;
3155 else
3156 end = mid;
3157 }
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003158 if (start < entries
3159 && table[start].rangeStart <= a
3160 && a <= table[start].rangeEnd
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 && (a - table[start].rangeStart) % table[start].step == 0)
3162 return (a + table[start].offset);
3163 else
3164 return a;
3165}
3166
3167/*
3168 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
3169 * simple case folding.
3170 */
3171 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003172utf_fold(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003174 if (a < 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003175 // be fast for ASCII
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003176 return a >= 0x41 && a <= 0x5a ? a + 32 : a;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003177 return utf_convert(a, foldCase, (int)sizeof(foldCase));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178}
3179
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003180static convertStruct toLower[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003182 {0x41,0x5a,1,32},
3183 {0xc0,0xd6,1,32},
3184 {0xd8,0xde,1,32},
3185 {0x100,0x12e,2,1},
3186 {0x130,0x130,-1,-199},
3187 {0x132,0x136,2,1},
3188 {0x139,0x147,2,1},
3189 {0x14a,0x176,2,1},
3190 {0x178,0x178,-1,-121},
3191 {0x179,0x17d,2,1},
3192 {0x181,0x181,-1,210},
3193 {0x182,0x184,2,1},
3194 {0x186,0x186,-1,206},
3195 {0x187,0x187,-1,1},
3196 {0x189,0x18a,1,205},
3197 {0x18b,0x18b,-1,1},
3198 {0x18e,0x18e,-1,79},
3199 {0x18f,0x18f,-1,202},
3200 {0x190,0x190,-1,203},
3201 {0x191,0x191,-1,1},
3202 {0x193,0x193,-1,205},
3203 {0x194,0x194,-1,207},
3204 {0x196,0x196,-1,211},
3205 {0x197,0x197,-1,209},
3206 {0x198,0x198,-1,1},
3207 {0x19c,0x19c,-1,211},
3208 {0x19d,0x19d,-1,213},
3209 {0x19f,0x19f,-1,214},
3210 {0x1a0,0x1a4,2,1},
3211 {0x1a6,0x1a6,-1,218},
3212 {0x1a7,0x1a7,-1,1},
3213 {0x1a9,0x1a9,-1,218},
3214 {0x1ac,0x1ac,-1,1},
3215 {0x1ae,0x1ae,-1,218},
3216 {0x1af,0x1af,-1,1},
3217 {0x1b1,0x1b2,1,217},
3218 {0x1b3,0x1b5,2,1},
3219 {0x1b7,0x1b7,-1,219},
3220 {0x1b8,0x1bc,4,1},
3221 {0x1c4,0x1c4,-1,2},
3222 {0x1c5,0x1c5,-1,1},
3223 {0x1c7,0x1c7,-1,2},
3224 {0x1c8,0x1c8,-1,1},
3225 {0x1ca,0x1ca,-1,2},
3226 {0x1cb,0x1db,2,1},
3227 {0x1de,0x1ee,2,1},
3228 {0x1f1,0x1f1,-1,2},
3229 {0x1f2,0x1f4,2,1},
3230 {0x1f6,0x1f6,-1,-97},
3231 {0x1f7,0x1f7,-1,-56},
3232 {0x1f8,0x21e,2,1},
3233 {0x220,0x220,-1,-130},
3234 {0x222,0x232,2,1},
3235 {0x23a,0x23a,-1,10795},
3236 {0x23b,0x23b,-1,1},
3237 {0x23d,0x23d,-1,-163},
3238 {0x23e,0x23e,-1,10792},
3239 {0x241,0x241,-1,1},
3240 {0x243,0x243,-1,-195},
3241 {0x244,0x244,-1,69},
3242 {0x245,0x245,-1,71},
3243 {0x246,0x24e,2,1},
3244 {0x370,0x372,2,1},
3245 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003246 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003247 {0x386,0x386,-1,38},
3248 {0x388,0x38a,1,37},
3249 {0x38c,0x38c,-1,64},
3250 {0x38e,0x38f,1,63},
3251 {0x391,0x3a1,1,32},
3252 {0x3a3,0x3ab,1,32},
3253 {0x3cf,0x3cf,-1,8},
3254 {0x3d8,0x3ee,2,1},
3255 {0x3f4,0x3f4,-1,-60},
3256 {0x3f7,0x3f7,-1,1},
3257 {0x3f9,0x3f9,-1,-7},
3258 {0x3fa,0x3fa,-1,1},
3259 {0x3fd,0x3ff,1,-130},
3260 {0x400,0x40f,1,80},
3261 {0x410,0x42f,1,32},
3262 {0x460,0x480,2,1},
3263 {0x48a,0x4be,2,1},
3264 {0x4c0,0x4c0,-1,15},
3265 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003266 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003267 {0x531,0x556,1,48},
3268 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003269 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003270 {0x13a0,0x13ef,1,38864},
3271 {0x13f0,0x13f5,1,8},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003272 {0x1c90,0x1cba,1,-3008},
3273 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003274 {0x1e00,0x1e94,2,1},
3275 {0x1e9e,0x1e9e,-1,-7615},
3276 {0x1ea0,0x1efe,2,1},
3277 {0x1f08,0x1f0f,1,-8},
3278 {0x1f18,0x1f1d,1,-8},
3279 {0x1f28,0x1f2f,1,-8},
3280 {0x1f38,0x1f3f,1,-8},
3281 {0x1f48,0x1f4d,1,-8},
3282 {0x1f59,0x1f5f,2,-8},
3283 {0x1f68,0x1f6f,1,-8},
3284 {0x1f88,0x1f8f,1,-8},
3285 {0x1f98,0x1f9f,1,-8},
3286 {0x1fa8,0x1faf,1,-8},
3287 {0x1fb8,0x1fb9,1,-8},
3288 {0x1fba,0x1fbb,1,-74},
3289 {0x1fbc,0x1fbc,-1,-9},
3290 {0x1fc8,0x1fcb,1,-86},
3291 {0x1fcc,0x1fcc,-1,-9},
3292 {0x1fd8,0x1fd9,1,-8},
3293 {0x1fda,0x1fdb,1,-100},
3294 {0x1fe8,0x1fe9,1,-8},
3295 {0x1fea,0x1feb,1,-112},
3296 {0x1fec,0x1fec,-1,-7},
3297 {0x1ff8,0x1ff9,1,-128},
3298 {0x1ffa,0x1ffb,1,-126},
3299 {0x1ffc,0x1ffc,-1,-9},
3300 {0x2126,0x2126,-1,-7517},
3301 {0x212a,0x212a,-1,-8383},
3302 {0x212b,0x212b,-1,-8262},
3303 {0x2132,0x2132,-1,28},
3304 {0x2160,0x216f,1,16},
3305 {0x2183,0x2183,-1,1},
3306 {0x24b6,0x24cf,1,26},
3307 {0x2c00,0x2c2e,1,48},
3308 {0x2c60,0x2c60,-1,1},
3309 {0x2c62,0x2c62,-1,-10743},
3310 {0x2c63,0x2c63,-1,-3814},
3311 {0x2c64,0x2c64,-1,-10727},
3312 {0x2c67,0x2c6b,2,1},
3313 {0x2c6d,0x2c6d,-1,-10780},
3314 {0x2c6e,0x2c6e,-1,-10749},
3315 {0x2c6f,0x2c6f,-1,-10783},
3316 {0x2c70,0x2c70,-1,-10782},
3317 {0x2c72,0x2c75,3,1},
3318 {0x2c7e,0x2c7f,1,-10815},
3319 {0x2c80,0x2ce2,2,1},
3320 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003321 {0x2cf2,0xa640,31054,1},
3322 {0xa642,0xa66c,2,1},
3323 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003324 {0xa722,0xa72e,2,1},
3325 {0xa732,0xa76e,2,1},
3326 {0xa779,0xa77b,2,1},
3327 {0xa77d,0xa77d,-1,-35332},
3328 {0xa77e,0xa786,2,1},
3329 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003330 {0xa78d,0xa78d,-1,-42280},
3331 {0xa790,0xa792,2,1},
3332 {0xa796,0xa7a8,2,1},
3333 {0xa7aa,0xa7aa,-1,-42308},
3334 {0xa7ab,0xa7ab,-1,-42319},
3335 {0xa7ac,0xa7ac,-1,-42315},
3336 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003337 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003338 {0xa7b0,0xa7b0,-1,-42258},
3339 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003340 {0xa7b2,0xa7b2,-1,-42261},
3341 {0xa7b3,0xa7b3,-1,928},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003342 {0xa7b4,0xa7be,2,1},
3343 {0xa7c2,0xa7c2,-1,1},
3344 {0xa7c4,0xa7c4,-1,-48},
3345 {0xa7c5,0xa7c5,-1,-42307},
3346 {0xa7c6,0xa7c6,-1,-35384},
Christian Brabandtd8872972021-06-27 21:30:14 +02003347 {0xa7c7,0xa7c9,2,1},
3348 {0xa7f5,0xa7f5,-1,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003349 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003350 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003351 {0x104b0,0x104d3,1,40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003352 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003353 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003354 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003355 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356};
3357
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003358static convertStruct toUpper[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003360 {0x61,0x7a,1,-32},
3361 {0xb5,0xb5,-1,743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003362 {0xe0,0xf6,1,-32},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003363 {0xf8,0xfe,1,-32},
3364 {0xff,0xff,-1,121},
3365 {0x101,0x12f,2,-1},
3366 {0x131,0x131,-1,-232},
3367 {0x133,0x137,2,-1},
3368 {0x13a,0x148,2,-1},
3369 {0x14b,0x177,2,-1},
3370 {0x17a,0x17e,2,-1},
3371 {0x17f,0x17f,-1,-300},
3372 {0x180,0x180,-1,195},
3373 {0x183,0x185,2,-1},
3374 {0x188,0x18c,4,-1},
3375 {0x192,0x192,-1,-1},
3376 {0x195,0x195,-1,97},
3377 {0x199,0x199,-1,-1},
3378 {0x19a,0x19a,-1,163},
3379 {0x19e,0x19e,-1,130},
3380 {0x1a1,0x1a5,2,-1},
3381 {0x1a8,0x1ad,5,-1},
3382 {0x1b0,0x1b4,4,-1},
3383 {0x1b6,0x1b9,3,-1},
3384 {0x1bd,0x1bd,-1,-1},
3385 {0x1bf,0x1bf,-1,56},
3386 {0x1c5,0x1c5,-1,-1},
3387 {0x1c6,0x1c6,-1,-2},
3388 {0x1c8,0x1c8,-1,-1},
3389 {0x1c9,0x1c9,-1,-2},
3390 {0x1cb,0x1cb,-1,-1},
3391 {0x1cc,0x1cc,-1,-2},
3392 {0x1ce,0x1dc,2,-1},
3393 {0x1dd,0x1dd,-1,-79},
3394 {0x1df,0x1ef,2,-1},
3395 {0x1f2,0x1f2,-1,-1},
3396 {0x1f3,0x1f3,-1,-2},
3397 {0x1f5,0x1f9,4,-1},
3398 {0x1fb,0x21f,2,-1},
3399 {0x223,0x233,2,-1},
3400 {0x23c,0x23c,-1,-1},
3401 {0x23f,0x240,1,10815},
3402 {0x242,0x247,5,-1},
3403 {0x249,0x24f,2,-1},
3404 {0x250,0x250,-1,10783},
3405 {0x251,0x251,-1,10780},
3406 {0x252,0x252,-1,10782},
3407 {0x253,0x253,-1,-210},
3408 {0x254,0x254,-1,-206},
3409 {0x256,0x257,1,-205},
3410 {0x259,0x259,-1,-202},
3411 {0x25b,0x25b,-1,-203},
Bram Moolenaarea676722015-01-14 17:40:09 +01003412 {0x25c,0x25c,-1,42319},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003413 {0x260,0x260,-1,-205},
Bram Moolenaarea676722015-01-14 17:40:09 +01003414 {0x261,0x261,-1,42315},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003415 {0x263,0x263,-1,-207},
Bram Moolenaarea676722015-01-14 17:40:09 +01003416 {0x265,0x265,-1,42280},
3417 {0x266,0x266,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003418 {0x268,0x268,-1,-209},
3419 {0x269,0x269,-1,-211},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003420 {0x26a,0x26a,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003421 {0x26b,0x26b,-1,10743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003422 {0x26c,0x26c,-1,42305},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003423 {0x26f,0x26f,-1,-211},
3424 {0x271,0x271,-1,10749},
3425 {0x272,0x272,-1,-213},
3426 {0x275,0x275,-1,-214},
3427 {0x27d,0x27d,-1,10727},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003428 {0x280,0x280,-1,-218},
3429 {0x282,0x282,-1,42307},
3430 {0x283,0x283,-1,-218},
Bram Moolenaarea676722015-01-14 17:40:09 +01003431 {0x287,0x287,-1,42282},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003432 {0x288,0x288,-1,-218},
3433 {0x289,0x289,-1,-69},
3434 {0x28a,0x28b,1,-217},
3435 {0x28c,0x28c,-1,-71},
3436 {0x292,0x292,-1,-219},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003437 {0x29d,0x29d,-1,42261},
Bram Moolenaarea676722015-01-14 17:40:09 +01003438 {0x29e,0x29e,-1,42258},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003439 {0x345,0x345,-1,84},
3440 {0x371,0x373,2,-1},
3441 {0x377,0x377,-1,-1},
3442 {0x37b,0x37d,1,130},
3443 {0x3ac,0x3ac,-1,-38},
3444 {0x3ad,0x3af,1,-37},
3445 {0x3b1,0x3c1,1,-32},
3446 {0x3c2,0x3c2,-1,-31},
3447 {0x3c3,0x3cb,1,-32},
3448 {0x3cc,0x3cc,-1,-64},
3449 {0x3cd,0x3ce,1,-63},
3450 {0x3d0,0x3d0,-1,-62},
3451 {0x3d1,0x3d1,-1,-57},
3452 {0x3d5,0x3d5,-1,-47},
3453 {0x3d6,0x3d6,-1,-54},
3454 {0x3d7,0x3d7,-1,-8},
3455 {0x3d9,0x3ef,2,-1},
3456 {0x3f0,0x3f0,-1,-86},
3457 {0x3f1,0x3f1,-1,-80},
3458 {0x3f2,0x3f2,-1,7},
Bram Moolenaarea676722015-01-14 17:40:09 +01003459 {0x3f3,0x3f3,-1,-116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003460 {0x3f5,0x3f5,-1,-96},
3461 {0x3f8,0x3fb,3,-1},
3462 {0x430,0x44f,1,-32},
3463 {0x450,0x45f,1,-80},
3464 {0x461,0x481,2,-1},
3465 {0x48b,0x4bf,2,-1},
3466 {0x4c2,0x4ce,2,-1},
3467 {0x4cf,0x4cf,-1,-15},
Bram Moolenaarea676722015-01-14 17:40:09 +01003468 {0x4d1,0x52f,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003469 {0x561,0x586,1,-48},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003470 {0x10d0,0x10fa,1,3008},
3471 {0x10fd,0x10ff,1,3008},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003472 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003473 {0x1c80,0x1c80,-1,-6254},
3474 {0x1c81,0x1c81,-1,-6253},
3475 {0x1c82,0x1c82,-1,-6244},
3476 {0x1c83,0x1c84,1,-6242},
3477 {0x1c85,0x1c85,-1,-6243},
3478 {0x1c86,0x1c86,-1,-6236},
3479 {0x1c87,0x1c87,-1,-6181},
3480 {0x1c88,0x1c88,-1,35266},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003481 {0x1d79,0x1d79,-1,35332},
3482 {0x1d7d,0x1d7d,-1,3814},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003483 {0x1d8e,0x1d8e,-1,35384},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003484 {0x1e01,0x1e95,2,-1},
3485 {0x1e9b,0x1e9b,-1,-59},
3486 {0x1ea1,0x1eff,2,-1},
3487 {0x1f00,0x1f07,1,8},
3488 {0x1f10,0x1f15,1,8},
3489 {0x1f20,0x1f27,1,8},
3490 {0x1f30,0x1f37,1,8},
3491 {0x1f40,0x1f45,1,8},
3492 {0x1f51,0x1f57,2,8},
3493 {0x1f60,0x1f67,1,8},
3494 {0x1f70,0x1f71,1,74},
3495 {0x1f72,0x1f75,1,86},
3496 {0x1f76,0x1f77,1,100},
3497 {0x1f78,0x1f79,1,128},
3498 {0x1f7a,0x1f7b,1,112},
3499 {0x1f7c,0x1f7d,1,126},
3500 {0x1f80,0x1f87,1,8},
3501 {0x1f90,0x1f97,1,8},
3502 {0x1fa0,0x1fa7,1,8},
3503 {0x1fb0,0x1fb1,1,8},
3504 {0x1fb3,0x1fb3,-1,9},
3505 {0x1fbe,0x1fbe,-1,-7205},
3506 {0x1fc3,0x1fc3,-1,9},
3507 {0x1fd0,0x1fd1,1,8},
3508 {0x1fe0,0x1fe1,1,8},
3509 {0x1fe5,0x1fe5,-1,7},
3510 {0x1ff3,0x1ff3,-1,9},
3511 {0x214e,0x214e,-1,-28},
3512 {0x2170,0x217f,1,-16},
3513 {0x2184,0x2184,-1,-1},
3514 {0x24d0,0x24e9,1,-26},
3515 {0x2c30,0x2c5e,1,-48},
3516 {0x2c61,0x2c61,-1,-1},
3517 {0x2c65,0x2c65,-1,-10795},
3518 {0x2c66,0x2c66,-1,-10792},
3519 {0x2c68,0x2c6c,2,-1},
3520 {0x2c73,0x2c76,3,-1},
3521 {0x2c81,0x2ce3,2,-1},
3522 {0x2cec,0x2cee,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003523 {0x2cf3,0x2cf3,-1,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003524 {0x2d00,0x2d25,1,-7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003525 {0x2d27,0x2d2d,6,-7264},
3526 {0xa641,0xa66d,2,-1},
3527 {0xa681,0xa69b,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003528 {0xa723,0xa72f,2,-1},
3529 {0xa733,0xa76f,2,-1},
3530 {0xa77a,0xa77c,2,-1},
3531 {0xa77f,0xa787,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003532 {0xa78c,0xa791,5,-1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003533 {0xa793,0xa793,-1,-1},
3534 {0xa794,0xa794,-1,48},
3535 {0xa797,0xa7a9,2,-1},
3536 {0xa7b5,0xa7bf,2,-1},
Christian Brabandtd8872972021-06-27 21:30:14 +02003537 {0xa7c3,0xa7c8,5,-1},
3538 {0xa7ca,0xa7f6,44,-1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003539 {0xab53,0xab53,-1,-928},
3540 {0xab70,0xabbf,1,-38864},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003541 {0xff41,0xff5a,1,-32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003542 {0x10428,0x1044f,1,-40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003543 {0x104d8,0x104fb,1,-40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003544 {0x10cc0,0x10cf2,1,-64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003545 {0x118c0,0x118df,1,-32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003546 {0x16e60,0x16e7f,1,-32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003547 {0x1e922,0x1e943,1,-34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548};
Bram Moolenaard63aff02016-03-21 22:15:30 +01003549
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550/*
3551 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3552 * simple case folding.
3553 */
3554 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003555utf_toupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003557 // If 'casemap' contains "keepascii" use ASCII style toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3559 return TOUPPER_ASC(a);
3560
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003561#if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003562 // If towupper() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 if (!(cmp_flags & CMP_INTERNAL))
3564 return towupper(a);
3565#endif
3566
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003567 // For characters below 128 use locale sensitive toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 if (a < 128)
3569 return TOUPPER_LOC(a);
3570
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003571 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003572 return utf_convert(a, toUpper, (int)sizeof(toUpper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573}
3574
3575 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003576utf_islower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003578 // German sharp s is lower case but has no upper case equivalent.
Bram Moolenaar88178de2012-06-01 17:46:59 +02003579 return (utf_toupper(a) != a) || a == 0xdf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580}
3581
3582/*
3583 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3584 * simple case folding.
3585 */
3586 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003587utf_tolower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003589 // If 'casemap' contains "keepascii" use ASCII style tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3591 return TOLOWER_ASC(a);
3592
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003593#if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003594 // If towlower() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 if (!(cmp_flags & CMP_INTERNAL))
3596 return towlower(a);
3597#endif
3598
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003599 // For characters below 128 use locale sensitive tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 if (a < 128)
3601 return TOLOWER_LOC(a);
3602
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003603 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003604 return utf_convert(a, toLower, (int)sizeof(toLower));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605}
3606
3607 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003608utf_isupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609{
3610 return (utf_tolower(a) != a);
3611}
3612
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003613 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003614utf_strnicmp(
3615 char_u *s1,
3616 char_u *s2,
3617 size_t n1,
3618 size_t n2)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003619{
3620 int c1, c2, cdiff;
3621 char_u buffer[6];
3622
3623 for (;;)
3624 {
3625 c1 = utf_safe_read_char_adv(&s1, &n1);
3626 c2 = utf_safe_read_char_adv(&s2, &n2);
3627
3628 if (c1 <= 0 || c2 <= 0)
3629 break;
3630
3631 if (c1 == c2)
3632 continue;
3633
3634 cdiff = utf_fold(c1) - utf_fold(c2);
3635 if (cdiff != 0)
3636 return cdiff;
3637 }
3638
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003639 // some string ended or has an incomplete/illegal character sequence
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003640
3641 if (c1 == 0 || c2 == 0)
3642 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003643 // some string ended. shorter string is smaller
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003644 if (c1 == 0 && c2 == 0)
3645 return 0;
3646 return c1 == 0 ? -1 : 1;
3647 }
3648
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003649 // Continue with bytewise comparison to produce some result that
3650 // would make comparison operations involving this function transitive.
3651 //
3652 // If only one string had an error, comparison should be made with
3653 // folded version of the other string. In this case it is enough
3654 // to fold just one character to determine the result of comparison.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003655
3656 if (c1 != -1 && c2 == -1)
3657 {
3658 n1 = utf_char2bytes(utf_fold(c1), buffer);
3659 s1 = buffer;
3660 }
3661 else if (c2 != -1 && c1 == -1)
3662 {
3663 n2 = utf_char2bytes(utf_fold(c2), buffer);
3664 s2 = buffer;
3665 }
3666
3667 while (n1 > 0 && n2 > 0 && *s1 != NUL && *s2 != NUL)
3668 {
3669 cdiff = (int)(*s1) - (int)(*s2);
3670 if (cdiff != 0)
3671 return cdiff;
3672
3673 s1++;
3674 s2++;
3675 n1--;
3676 n2--;
3677 }
3678
3679 if (n1 > 0 && *s1 == NUL)
3680 n1 = 0;
3681 if (n2 > 0 && *s2 == NUL)
3682 n2 = 0;
3683
3684 if (n1 == 0 && n2 == 0)
3685 return 0;
3686 return n1 == 0 ? -1 : 1;
3687}
3688
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689/*
3690 * Version of strnicmp() that handles multi-byte characters.
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01003691 * Needed for Big5, Shift-JIS and UTF-8 encoding. Other DBCS encodings can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 * probably use strnicmp(), because there are no ASCII characters in the
3693 * second byte.
3694 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3695 * two characters otherwise.
3696 */
3697 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003698mb_strnicmp(char_u *s1, char_u *s2, size_t nn)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699{
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003700 int i, l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701 int cdiff;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003702 int n = (int)nn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003704 if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 {
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003706 return utf_strnicmp(s1, s2, nn, nn);
3707 }
3708 else
3709 {
3710 for (i = 0; i < n; i += l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003712 if (s1[i] == NUL && s2[i] == NUL) // both strings end
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003713 return 0;
3714
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003715 l = (*mb_ptr2len)(s1 + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 if (l <= 1)
3717 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003718 // Single byte: first check normally, then with ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719 if (s1[i] != s2[i])
3720 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003721 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 if (cdiff != 0)
3723 return cdiff;
3724 }
3725 }
3726 else
3727 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003728 // For non-Unicode multi-byte don't ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 if (l > n - i)
3730 l = n - i;
3731 cdiff = STRNCMP(s1 + i, s2 + i, l);
3732 if (cdiff != 0)
3733 return cdiff;
3734 }
3735 }
3736 }
3737 return 0;
3738}
3739
3740/*
3741 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3742 * 'encoding' has been set to.
3743 */
3744 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003745show_utf8(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746{
3747 int len;
Bram Moolenaar051b7822005-05-19 21:00:46 +00003748 int rlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 char_u *line;
3750 int clen;
3751 int i;
3752
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003753 // Get the byte length of the char under the cursor, including composing
3754 // characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 line = ml_get_cursor();
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003756 len = utfc_ptr2len(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 if (len == 0)
3758 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003759 msg("NUL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 return;
3761 }
3762
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 clen = 0;
3764 for (i = 0; i < len; ++i)
3765 {
3766 if (clen == 0)
3767 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003768 // start of (composing) character, get its length
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 if (i > 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +00003770 {
3771 STRCPY(IObuff + rlen, "+ ");
3772 rlen += 2;
3773 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003774 clen = utf_ptr2len(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 }
Bram Moolenaarb382ad12010-05-21 15:46:35 +02003776 sprintf((char *)IObuff + rlen, "%02x ",
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003777 (line[i] == NL) ? NUL : line[i]); // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 --clen;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003779 rlen += (int)STRLEN(IObuff + rlen);
Bram Moolenaar051b7822005-05-19 21:00:46 +00003780 if (rlen > IOSIZE - 20)
3781 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 }
3783
Bram Moolenaar32526b32019-01-19 17:43:09 +01003784 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785}
3786
3787/*
3788 * mb_head_off() function pointer.
3789 * Return offset from "p" to the first byte of the character it points into.
Bram Moolenaar24397332009-12-02 14:02:39 +00003790 * If "p" points to the NUL at the end of the string return 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 * Returns 0 when already at the first byte of a character.
3792 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003794latin_head_off(char_u *base UNUSED, char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795{
3796 return 0;
3797}
3798
Bram Moolenaar840d16f2019-09-10 21:27:18 +02003799 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003800dbcs_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801{
3802 char_u *q;
3803
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003804 // It can't be a trailing byte when not using DBCS, at the start of the
3805 // string or the previous byte can't start a double-byte.
Bram Moolenaar24397332009-12-02 14:02:39 +00003806 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 return 0;
3808
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003809 // This is slow: need to start at the base and go forward until the
3810 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 q = base;
3812 while (q < p)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003813 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 return (q == p) ? 0 : 1;
3815}
3816
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817/*
3818 * Special version of dbcs_head_off() that works for ScreenLines[], where
3819 * single-width DBCS_JPNU characters are stored separately.
3820 */
3821 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003822dbcs_screen_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823{
3824 char_u *q;
3825
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003826 // It can't be a trailing byte when not using DBCS, at the start of the
3827 // string or the previous byte can't start a double-byte.
3828 // For euc-jp an 0x8e byte in the previous cell always means we have a
3829 // lead byte in the current cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 if (p <= base
3831 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
Bram Moolenaar24397332009-12-02 14:02:39 +00003832 || MB_BYTE2LEN(p[-1]) == 1
3833 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 return 0;
3835
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003836 // This is slow: need to start at the base and go forward until the
3837 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
3838 // For DBCS_JPNU look out for 0x8e, which means the second byte is not
3839 // stored as the next byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 q = base;
3841 while (q < p)
3842 {
3843 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3844 ++q;
3845 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003846 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 }
3848 return (q == p) ? 0 : 1;
3849}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850
Bram Moolenaar52797ba2021-12-16 14:45:13 +00003851/*
3852 * Return offset from "p" to the start of a character, including composing
3853 * characters. "base" must be the start of the string, which must be NUL
3854 * terminated.
3855 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003857utf_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858{
3859 char_u *q;
3860 char_u *s;
3861 int c;
Bram Moolenaar24397332009-12-02 14:02:39 +00003862 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863#ifdef FEAT_ARABIC
3864 char_u *j;
3865#endif
3866
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003867 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 return 0;
3869
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003870 // Skip backwards over trailing bytes: 10xx.xxxx
3871 // Skip backwards again if on a composing char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 for (q = p; ; --q)
3873 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003874 // Move s to the last byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3876 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003877 // Move q to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 while (q > base && (*q & 0xc0) == 0x80)
3879 --q;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003880 // Check for illegal sequence. Do allow an illegal byte after where we
3881 // started.
Bram Moolenaar24397332009-12-02 14:02:39 +00003882 len = utf8len_tab[*q];
3883 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 return 0;
3885
3886 if (q <= base)
3887 break;
3888
3889 c = utf_ptr2char(q);
3890 if (utf_iscomposing(c))
3891 continue;
3892
3893#ifdef FEAT_ARABIC
3894 if (arabic_maycombine(c))
3895 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003896 // Advance to get a sneak-peak at the next char
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 j = q;
3898 --j;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003899 // Move j to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 while (j > base && (*j & 0xc0) == 0x80)
3901 --j;
3902 if (arabic_combine(utf_ptr2char(j), c))
3903 continue;
3904 }
3905#endif
3906 break;
3907 }
3908
3909 return (int)(p - q);
3910}
3911
3912/*
Bram Moolenaare52702f2020-06-04 18:22:13 +02003913 * Whether space is NOT allowed before/after 'c'.
3914 */
3915 int
3916utf_eat_space(int cc)
3917{
3918 return ((cc >= 0x2000 && cc <= 0x206F) // General punctuations
3919 || (cc >= 0x2e00 && cc <= 0x2e7f) // Supplemental punctuations
3920 || (cc >= 0x3000 && cc <= 0x303f) // CJK symbols and punctuations
3921 || (cc >= 0xff01 && cc <= 0xff0f) // Full width ASCII punctuations
3922 || (cc >= 0xff1a && cc <= 0xff20) // ..
3923 || (cc >= 0xff3b && cc <= 0xff40) // ..
3924 || (cc >= 0xff5b && cc <= 0xff65)); // ..
3925}
3926
3927/*
3928 * Whether line break is allowed before "cc".
3929 */
3930 int
3931utf_allow_break_before(int cc)
3932{
3933 static const int BOL_prohibition_punct[] =
3934 {
3935 '!',
3936 '%',
3937 ')',
3938 ',',
3939 ':',
3940 ';',
3941 '>',
3942 '?',
3943 ']',
3944 '}',
3945 0x2019, // ’ right single quotation mark
3946 0x201d, // ” right double quotation mark
3947 0x2020, // † dagger
3948 0x2021, // ‡ double dagger
3949 0x2026, // … horizontal ellipsis
3950 0x2030, // ‰ per mille sign
3951 0x2031, // ‱ per then thousand sign
3952 0x203c, // ‼ double exclamation mark
3953 0x2047, // ⁇ double question mark
3954 0x2048, // ⁈ question exclamation mark
3955 0x2049, // ⁉ exclamation question mark
3956 0x2103, // ℃ degree celsius
3957 0x2109, // ℉ degree fahrenheit
3958 0x3001, // 、 ideographic comma
3959 0x3002, // 。 ideographic full stop
3960 0x3009, // 〉 right angle bracket
3961 0x300b, // 》 right double angle bracket
3962 0x300d, // 」 right corner bracket
3963 0x300f, // 』 right white corner bracket
3964 0x3011, // 】 right black lenticular bracket
3965 0x3015, // 〕 right tortoise shell bracket
3966 0x3017, // 〗 right white lenticular bracket
3967 0x3019, // 〙 right white tortoise shell bracket
3968 0x301b, // 〛 right white square bracket
3969 0xff01, // ! fullwidth exclamation mark
3970 0xff09, // ) fullwidth right parenthesis
3971 0xff0c, // , fullwidth comma
3972 0xff0e, // . fullwidth full stop
3973 0xff1a, // : fullwidth colon
3974 0xff1b, // ; fullwidth semicolon
3975 0xff1f, // ? fullwidth question mark
3976 0xff3d, // ] fullwidth right square bracket
3977 0xff5d, // } fullwidth right curly bracket
3978 };
3979
3980 int first = 0;
K.Takataeeec2542021-06-02 13:28:16 +02003981 int last = ARRAY_LENGTH(BOL_prohibition_punct) - 1;
Bram Moolenaare52702f2020-06-04 18:22:13 +02003982 int mid = 0;
3983
3984 while (first < last)
3985 {
3986 mid = (first + last)/2;
3987
3988 if (cc == BOL_prohibition_punct[mid])
3989 return FALSE;
3990 else if (cc > BOL_prohibition_punct[mid])
3991 first = mid + 1;
3992 else
3993 last = mid - 1;
3994 }
3995
3996 return cc != BOL_prohibition_punct[first];
3997}
3998
3999/*
4000 * Whether line break is allowed after "cc".
4001 */
4002 static int
4003utf_allow_break_after(int cc)
4004{
4005 static const int EOL_prohibition_punct[] =
4006 {
4007 '(',
4008 '<',
4009 '[',
4010 '`',
4011 '{',
4012 //0x2014, // — em dash
4013 0x2018, // ‘ left single quotation mark
4014 0x201c, // “ left double quotation mark
4015 //0x2053, // ~ swung dash
4016 0x3008, // 〈 left angle bracket
4017 0x300a, // 《 left double angle bracket
4018 0x300c, // 「 left corner bracket
4019 0x300e, // 『 left white corner bracket
4020 0x3010, // 【 left black lenticular bracket
4021 0x3014, // 〔 left tortoise shell bracket
4022 0x3016, // 〖 left white lenticular bracket
4023 0x3018, // 〘 left white tortoise shell bracket
4024 0x301a, // 〚 left white square bracket
4025 0xff08, // ( fullwidth left parenthesis
4026 0xff3b, // [ fullwidth left square bracket
4027 0xff5b, // { fullwidth left curly bracket
4028 };
4029
4030 int first = 0;
K.Takataeeec2542021-06-02 13:28:16 +02004031 int last = ARRAY_LENGTH(EOL_prohibition_punct) - 1;
Bram Moolenaare52702f2020-06-04 18:22:13 +02004032 int mid = 0;
4033
4034 while (first < last)
4035 {
4036 mid = (first + last)/2;
4037
4038 if (cc == EOL_prohibition_punct[mid])
4039 return FALSE;
4040 else if (cc > EOL_prohibition_punct[mid])
4041 first = mid + 1;
4042 else
4043 last = mid - 1;
4044 }
4045
4046 return cc != EOL_prohibition_punct[first];
4047}
4048
4049/*
4050 * Whether line break is allowed between "cc" and "ncc".
4051 */
4052 int
4053utf_allow_break(int cc, int ncc)
4054{
4055 // don't break between two-letter punctuations
4056 if (cc == ncc
4057 && (cc == 0x2014 // em dash
4058 || cc == 0x2026)) // horizontal ellipsis
4059 return FALSE;
4060
4061 return utf_allow_break_after(cc) && utf_allow_break_before(ncc);
4062}
4063
4064/*
Bram Moolenaard8b02732005-01-14 21:48:43 +00004065 * Copy a character from "*fp" to "*tp" and advance the pointers.
4066 */
4067 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004068mb_copy_char(char_u **fp, char_u **tp)
Bram Moolenaard8b02732005-01-14 21:48:43 +00004069{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004070 int l = (*mb_ptr2len)(*fp);
Bram Moolenaard8b02732005-01-14 21:48:43 +00004071
4072 mch_memmove(*tp, *fp, (size_t)l);
4073 *tp += l;
4074 *fp += l;
4075}
4076
4077/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 * Return the offset from "p" to the first byte of a character. When "p" is
4079 * at the start of a character 0 is returned, otherwise the offset to the next
4080 * character. Can start anywhere in a stream of bytes.
4081 */
4082 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004083mb_off_next(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084{
4085 int i;
4086 int j;
4087
4088 if (enc_utf8)
4089 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004090 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 return 0;
4092
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004093 // Find the next character that isn't 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
4095 ;
4096 if (i > 0)
4097 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004098 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 for (j = 0; p - j > base; ++j)
4100 if ((p[-j] & 0xc0) != 0x80)
4101 break;
4102 if (utf8len_tab[p[-j]] != i + j)
4103 return 0;
4104 }
4105 return i;
4106 }
4107
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004108 // Only need to check if we're on a trail byte, it doesn't matter if we
4109 // want the offset to the next or current character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 return (*mb_head_off)(base, p);
4111}
4112
4113/*
4114 * Return the offset from "p" to the last byte of the character it points
4115 * into. Can start anywhere in a stream of bytes.
Bram Moolenaar52797ba2021-12-16 14:45:13 +00004116 * Composing characters are not included.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 */
4118 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004119mb_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120{
4121 int i;
4122 int j;
4123
4124 if (*p == NUL)
4125 return 0;
4126
4127 if (enc_utf8)
4128 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004129 // Find the last character that is 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
4131 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004132 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 for (j = 0; p - j > base; ++j)
4134 if ((p[-j] & 0xc0) != 0x80)
4135 break;
4136 if (utf8len_tab[p[-j]] != i + j + 1)
4137 return 0;
4138 return i;
4139 }
4140
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004141 // It can't be the first byte if a double-byte when not using DBCS, at the
4142 // end of the string or the byte can't start a double-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
4144 return 0;
4145
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004146 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 return 1 - dbcs_head_off(base, p);
4148}
4149
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004150/*
4151 * Find the next illegal byte sequence.
4152 */
4153 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004154utf_find_illegal(void)
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004155{
4156 pos_T pos = curwin->w_cursor;
4157 char_u *p;
4158 int len;
4159 vimconv_T vimconv;
4160 char_u *tofree = NULL;
4161
4162 vimconv.vc_type = CONV_NONE;
4163 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
4164 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004165 // 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
4166 // possibly a utf-8 file with illegal bytes. Setup for conversion
4167 // from utf-8 to 'fileencoding'.
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004168 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
4169 }
4170
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004171 curwin->w_cursor.coladd = 0;
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004172 for (;;)
4173 {
4174 p = ml_get_cursor();
4175 if (vimconv.vc_type != CONV_NONE)
4176 {
4177 vim_free(tofree);
4178 tofree = string_convert(&vimconv, p, NULL);
4179 if (tofree == NULL)
4180 break;
4181 p = tofree;
4182 }
4183
4184 while (*p != NUL)
4185 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004186 // Illegal means that there are not enough trail bytes (checked by
4187 // utf_ptr2len()) or too many of them (overlong sequence).
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004188 len = utf_ptr2len(p);
4189 if (*p >= 0x80 && (len == 1
4190 || utf_char2len(utf_ptr2char(p)) != len))
4191 {
4192 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004193 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004194 else
4195 {
4196 int l;
4197
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004198 len = (int)(p - tofree);
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004199 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
4200 {
4201 l = utf_ptr2len(p);
4202 curwin->w_cursor.col += l;
4203 }
4204 }
4205 goto theend;
4206 }
4207 p += len;
4208 }
4209 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4210 break;
4211 ++curwin->w_cursor.lnum;
4212 curwin->w_cursor.col = 0;
4213 }
4214
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004215 // didn't find it: don't move and beep
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004216 curwin->w_cursor = pos;
4217 beep_flush();
4218
4219theend:
4220 vim_free(tofree);
4221 convert_setup(&vimconv, NULL, NULL);
4222}
4223
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004224#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004225/*
4226 * Return TRUE if string "s" is a valid utf-8 string.
4227 * When "end" is NULL stop at the first NUL.
4228 * When "end" is positive stop there.
4229 */
4230 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004231utf_valid_string(char_u *s, char_u *end)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004232{
4233 int l;
4234 char_u *p = s;
4235
4236 while (end == NULL ? *p != NUL : p < end)
4237 {
Bram Moolenaar24397332009-12-02 14:02:39 +00004238 l = utf8len_tab_zero[*p];
4239 if (l == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004240 return FALSE; // invalid lead byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004241 if (end != NULL && p + l > end)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004242 return FALSE; // incomplete byte sequence
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004243 ++p;
4244 while (--l > 0)
4245 if ((*p++ & 0xc0) != 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004246 return FALSE; // invalid trail byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004247 }
4248 return TRUE;
4249}
4250#endif
4251
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252#if defined(FEAT_GUI) || defined(PROTO)
4253/*
4254 * Special version of mb_tail_off() for use in ScreenLines[].
4255 */
4256 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004257dbcs_screen_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004259 // It can't be the first byte if a double-byte when not using DBCS, at the
4260 // end of the string or the byte can't start a double-byte.
4261 // For euc-jp an 0x8e byte always means we have a lead byte in the current
4262 // cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (*p == NUL || p[1] == NUL
4264 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
4265 || MB_BYTE2LEN(*p) == 1)
4266 return 0;
4267
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004268 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 return 1 - dbcs_screen_head_off(base, p);
4270}
4271#endif
4272
4273/*
4274 * If the cursor moves on an trail byte, set the cursor on the lead byte.
4275 * Thus it moves left if necessary.
4276 * Return TRUE when the cursor was adjusted.
4277 */
4278 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004279mb_adjust_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280{
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004281 mb_adjustpos(curbuf, &curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282}
4283
4284/*
4285 * Adjust position "*lp" to point to the first byte of a multi-byte character.
4286 * If it points to a tail byte it's moved backwards to the head byte.
4287 */
4288 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004289mb_adjustpos(buf_T *buf, pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290{
4291 char_u *p;
4292
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004293 if (lp->col > 0 || lp->coladd > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004295 p = ml_get_buf(buf, lp->lnum, FALSE);
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01004296 if (*p == NUL || (int)STRLEN(p) < lp->col)
4297 lp->col = 0;
4298 else
4299 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004300 // Reset "coladd" when the cursor would be on the right half of a
4301 // double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (lp->coladd == 1
4303 && p[lp->col] != TAB
4304 && vim_isprintc((*mb_ptr2char)(p + lp->col))
4305 && ptr2cells(p + lp->col) > 1)
4306 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 }
4308}
4309
4310/*
4311 * Return a pointer to the character before "*p", if there is one.
4312 */
4313 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004314mb_prevptr(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004315 char_u *line, // start of the string
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004316 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317{
4318 if (p > line)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004319 MB_PTR_BACK(line, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 return p;
4321}
4322
4323/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004324 * Return the character length of "str". Each multi-byte character (with
4325 * following composing characters) counts as one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 */
4327 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004328mb_charlen(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004330 char_u *p = str;
4331 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004333 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 return 0;
4335
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004336 for (count = 0; *p != NUL; count++)
4337 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338
4339 return count;
4340}
4341
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004342/*
4343 * Like mb_charlen() but for a string with specified length.
4344 */
4345 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004346mb_charlen_len(char_u *str, int len)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004347{
4348 char_u *p = str;
4349 int count;
4350
4351 for (count = 0; *p != NUL && p < str + len; count++)
4352 p += (*mb_ptr2len)(p);
4353
4354 return count;
4355}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004356
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357/*
4358 * Try to un-escape a multi-byte character.
4359 * Used for the "to" and "from" part of a mapping.
4360 * Return the un-escaped string if it is a multi-byte character, and advance
4361 * "pp" to just after the bytes that formed it.
4362 * Return NULL if no multi-byte char was found.
4363 */
4364 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004365mb_unescape(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366{
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004367 static char_u buf[6];
4368 int n;
4369 int m = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 char_u *str = *pp;
4371
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004372 // Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
4373 // KS_EXTRA KE_CSI to CSI.
4374 // Maximum length of a utf-8 character is 4 bytes.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004375 for (n = 0; str[n] != NUL && m < 4; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 {
4377 if (str[n] == K_SPECIAL
4378 && str[n + 1] == KS_SPECIAL
4379 && str[n + 2] == KE_FILLER)
4380 {
4381 buf[m++] = K_SPECIAL;
4382 n += 2;
4383 }
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004384 else if ((str[n] == K_SPECIAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385# ifdef FEAT_GUI
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004386 || str[n] == CSI
4387# endif
4388 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 && str[n + 1] == KS_EXTRA
4390 && str[n + 2] == (int)KE_CSI)
4391 {
4392 buf[m++] = CSI;
4393 n += 2;
4394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 else if (str[n] == K_SPECIAL
4396# ifdef FEAT_GUI
4397 || str[n] == CSI
4398# endif
4399 )
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004400 break; // a special key can't be a multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 else
4402 buf[m++] = str[n];
4403 buf[m] = NUL;
4404
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004405 // Return a multi-byte character if it's found. An illegal sequence
4406 // will result in a 1 here.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004407 if ((*mb_ptr2len)(buf) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 {
4409 *pp = str + n + 1;
4410 return buf;
4411 }
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004412
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004413 // Bail out quickly for ASCII.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004414 if (buf[0] < 128)
4415 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 }
4417 return NULL;
4418}
4419
4420/*
4421 * Return TRUE if the character at "row"/"col" on the screen is the left side
4422 * of a double-width character.
4423 * Caller must make sure "row" and "col" are not invalid!
4424 */
4425 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004426mb_lefthalve(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427{
Bram Moolenaar367329b2007-08-30 11:53:22 +00004428 return (*mb_off2cells)(LineOffset[row] + col,
4429 LineOffset[row] + screen_Columns) > 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430}
4431
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432/*
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004433 * Correct a position on the screen, if it's the right half of a double-wide
4434 * char move it to the left half. Returns the corrected column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 */
4436 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004437mb_fix_col(int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438{
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004439 int off;
4440
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 col = check_col(col);
4442 row = check_row(row);
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004443 off = LineOffset[row] + col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 if (has_mbyte && ScreenLines != NULL && col > 0
4445 && ((enc_dbcs
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004446 && ScreenLines[off] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004448 ScreenLines + off))
4449 || (enc_utf8 && ScreenLines[off] == 0
4450 && ScreenLinesUC[off] == 0)))
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004451 return col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 return col;
4453}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004455static int enc_alias_search(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456
4457/*
4458 * Skip the Vim specific head of a 'encoding' name.
4459 */
4460 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004461enc_skip(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462{
4463 if (STRNCMP(p, "2byte-", 6) == 0)
4464 return p + 6;
4465 if (STRNCMP(p, "8bit-", 5) == 0)
4466 return p + 5;
4467 return p;
4468}
4469
4470/*
4471 * Find the canonical name for encoding "enc".
4472 * When the name isn't recognized, returns "enc" itself, but with all lower
4473 * case characters and '_' replaced with '-'.
4474 * Returns an allocated string. NULL for out-of-memory.
4475 */
4476 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004477enc_canonize(char_u *enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478{
4479 char_u *r;
4480 char_u *p, *s;
4481 int i;
4482
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004483 if (STRCMP(enc, "default") == 0)
4484 {
K.Takataef8706f2021-05-31 18:40:49 +02004485#ifdef MSWIN
4486 // Use the system encoding, the default is always utf-8.
4487 r = enc_locale();
4488#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004489 // Use the default encoding as it's found by set_init_1().
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004490 r = get_encoding_default();
K.Takataef8706f2021-05-31 18:40:49 +02004491#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004492 if (r == NULL)
K.Takataf883d902021-05-30 18:04:19 +02004493 r = (char_u *)ENC_DFLT;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004494 return vim_strsave(r);
4495 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004496
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004497 // copy "enc" to allocated memory, with room for two '-'
Bram Moolenaar964b3742019-05-24 18:54:09 +02004498 r = alloc(STRLEN(enc) + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 if (r != NULL)
4500 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004501 // Make it all lower case and replace '_' with '-'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 p = r;
4503 for (s = enc; *s != NUL; ++s)
4504 {
4505 if (*s == '_')
4506 *p++ = '-';
4507 else
4508 *p++ = TOLOWER_ASC(*s);
4509 }
4510 *p = NUL;
4511
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004512 // Skip "2byte-" and "8bit-".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 p = enc_skip(r);
4514
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004515 // Change "microsoft-cp" to "cp". Used in some spell files.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004516 if (STRNCMP(p, "microsoft-cp", 12) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004517 STRMOVE(p, p + 10);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004518
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004519 // "iso8859" -> "iso-8859"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 if (STRNCMP(p, "iso8859", 7) == 0)
4521 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004522 STRMOVE(p + 4, p + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 p[3] = '-';
4524 }
4525
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004526 // "iso-8859n" -> "iso-8859-n"
Bram Moolenaar1349bd72022-02-22 12:34:28 +00004527 if (STRNCMP(p, "iso-8859", 8) == 0 && isdigit(p[8]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004529 STRMOVE(p + 9, p + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 p[8] = '-';
4531 }
4532
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004533 // "latin-N" -> "latinN"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 if (STRNCMP(p, "latin-", 6) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004535 STRMOVE(p + 5, p + 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536
4537 if (enc_canon_search(p) >= 0)
4538 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004539 // canonical name can be used unmodified
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 if (p != r)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004541 STRMOVE(r, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 }
4543 else if ((i = enc_alias_search(p)) >= 0)
4544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004545 // alias recognized, get canonical name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 vim_free(r);
4547 r = vim_strsave((char_u *)enc_canon_table[i].name);
4548 }
4549 }
4550 return r;
4551}
4552
4553/*
4554 * Search for an encoding alias of "name".
4555 * Returns -1 when not found.
4556 */
4557 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004558enc_alias_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559{
4560 int i;
4561
4562 for (i = 0; enc_alias_table[i].name != NULL; ++i)
4563 if (STRCMP(name, enc_alias_table[i].name) == 0)
4564 return enc_alias_table[i].canon;
4565 return -1;
4566}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004567
4568
4569#ifdef HAVE_LANGINFO_H
4570# include <langinfo.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571#endif
4572
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004573#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574/*
Bram Moolenaar2a027452017-09-26 19:10:37 +02004575 * Get the canonicalized encoding from the specified locale string "locale"
4576 * or from the environment variables LC_ALL, LC_CTYPE and LANG.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 * Returns an allocated string when successful, NULL when not.
4578 */
4579 char_u *
Bram Moolenaar2a027452017-09-26 19:10:37 +02004580enc_locale_env(char *locale)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581{
Bram Moolenaar2a027452017-09-26 19:10:37 +02004582 char *s = locale;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 char *p;
4584 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586
4587 if (s == NULL || *s == NUL)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004588 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
4589 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
4590 s = getenv("LANG");
4591
4592 if (s == NULL || *s == NUL)
4593 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004595 // The most generic locale format is:
4596 // language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
4597 // If there is a '.' remove the part before it.
4598 // if there is something after the codeset, remove it.
4599 // Make the name lowercase and replace '_' with '-'.
4600 // Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
4601 // "ko_KR.EUC" == "euc-kr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
4603 {
4604 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
4605 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
4606 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004607 // copy "XY.EUC" to "euc-XY" to buf[10]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 STRCPY(buf + 10, "euc-");
4609 buf[14] = p[-2];
4610 buf[15] = p[-1];
4611 buf[16] = 0;
4612 s = buf + 10;
4613 }
4614 else
4615 s = p + 1;
4616 }
Bram Moolenaar5498a412016-07-11 23:19:05 +02004617 for (i = 0; i < (int)sizeof(buf) - 1 && s[i] != NUL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 {
4619 if (s[i] == '_' || s[i] == '-')
4620 buf[i] = '-';
4621 else if (isalnum((int)s[i]))
4622 buf[i] = TOLOWER_ASC(s[i]);
4623 else
4624 break;
4625 }
4626 buf[i] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627
4628 return enc_canonize((char_u *)buf);
4629}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004630#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631
Bram Moolenaar2a027452017-09-26 19:10:37 +02004632/*
4633 * Get the canonicalized encoding of the current locale.
4634 * Returns an allocated string when successful, NULL when not.
4635 */
4636 char_u *
4637enc_locale(void)
4638{
Bram Moolenaar4f974752019-02-17 17:44:42 +01004639#ifdef MSWIN
Bram Moolenaar2a027452017-09-26 19:10:37 +02004640 char buf[50];
4641 long acp = GetACP();
4642
4643 if (acp == 1200)
4644 STRCPY(buf, "ucs-2le");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004645 else if (acp == 1252) // cp1252 is used as latin1
Bram Moolenaar2a027452017-09-26 19:10:37 +02004646 STRCPY(buf, "latin1");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004647 else if (acp == 65001)
4648 STRCPY(buf, "utf-8");
Bram Moolenaar2a027452017-09-26 19:10:37 +02004649 else
4650 sprintf(buf, "cp%ld", acp);
4651
4652 return enc_canonize((char_u *)buf);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004653#else
Bram Moolenaar2a027452017-09-26 19:10:37 +02004654 char *s;
4655
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004656# ifdef HAVE_NL_LANGINFO_CODESET
Bram Moolenaar2a027452017-09-26 19:10:37 +02004657 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004658# endif
4659# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004660 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004661# endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004662 s = NULL;
4663
4664 return enc_locale_env(s);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004665#endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004666}
4667
Bram Moolenaar4f974752019-02-17 17:44:42 +01004668# if defined(MSWIN) || defined(PROTO) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669/*
4670 * Convert an encoding name to an MS-Windows codepage.
4671 * Returns zero if no codepage can be figured out.
4672 */
4673 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004674encname2codepage(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675{
4676 int cp;
4677 char_u *p = name;
4678 int idx;
4679
4680 if (STRNCMP(p, "8bit-", 5) == 0)
4681 p += 5;
4682 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
4683 p += 6;
4684
4685 if (p[0] == 'c' && p[1] == 'p')
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +02004686 cp = atoi((char *)p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 else if ((idx = enc_canon_search(p)) >= 0)
4688 cp = enc_canon_table[idx].codepage;
4689 else
4690 return 0;
4691 if (IsValidCodePage(cp))
4692 return cp;
4693 return 0;
4694}
Bram Moolenaar2a027452017-09-26 19:10:37 +02004695# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696
4697# if defined(USE_ICONV) || defined(PROTO)
4698
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699/*
4700 * Call iconv_open() with a check if iconv() works properly (there are broken
4701 * versions).
4702 * Returns (void *)-1 if failed.
4703 * (should return iconv_t, but that causes problems with prototypes).
4704 */
4705 void *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004706my_iconv_open(char_u *to, char_u *from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707{
4708 iconv_t fd;
4709#define ICONV_TESTLEN 400
4710 char_u tobuf[ICONV_TESTLEN];
4711 char *p;
4712 size_t tolen;
4713 static int iconv_ok = -1;
4714
4715 if (iconv_ok == FALSE)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004716 return (void *)-1; // detected a broken iconv() previously
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
4718#ifdef DYNAMIC_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004719 // Check if the iconv.dll can be found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 if (!iconv_enabled(TRUE))
4721 return (void *)-1;
4722#endif
4723
4724 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
4725
4726 if (fd != (iconv_t)-1 && iconv_ok == -1)
4727 {
4728 /*
4729 * Do a dummy iconv() call to check if it actually works. There is a
4730 * version of iconv() on Linux that is broken. We can't ignore it,
4731 * because it's wide-spread. The symptoms are that after outputting
4732 * the initial shift state the "to" pointer is NULL and conversion
4733 * stops for no apparent reason after about 8160 characters.
4734 */
4735 p = (char *)tobuf;
4736 tolen = ICONV_TESTLEN;
4737 (void)iconv(fd, NULL, NULL, &p, &tolen);
4738 if (p == NULL)
4739 {
4740 iconv_ok = FALSE;
4741 iconv_close(fd);
4742 fd = (iconv_t)-1;
4743 }
4744 else
4745 iconv_ok = TRUE;
4746 }
4747
4748 return (void *)fd;
4749}
4750
4751/*
4752 * Convert the string "str[slen]" with iconv().
4753 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4754 * sequence and set "*unconvlenp" to the length of it.
4755 * Returns the converted string in allocated memory. NULL for an error.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004756 * If resultlenp is not NULL, sets it to the result length in bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 */
4758 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004759iconv_string(
4760 vimconv_T *vcp,
4761 char_u *str,
4762 int slen,
4763 int *unconvlenp,
4764 int *resultlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765{
4766 const char *from;
4767 size_t fromlen;
4768 char *to;
4769 size_t tolen;
4770 size_t len = 0;
4771 size_t done = 0;
4772 char_u *result = NULL;
4773 char_u *p;
4774 int l;
4775
4776 from = (char *)str;
4777 fromlen = slen;
4778 for (;;)
4779 {
4780 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4781 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004782 // Allocate enough room for most conversions. When re-allocating
4783 // increase the buffer size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 len = len + fromlen * 2 + 40;
Bram Moolenaar964b3742019-05-24 18:54:09 +02004785 p = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 if (p != NULL && done > 0)
4787 mch_memmove(p, result, done);
4788 vim_free(result);
4789 result = p;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004790 if (result == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 break;
4792 }
4793
4794 to = (char *)result + done;
4795 tolen = len - done - 2;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004796 // Avoid a warning for systems with a wrong iconv() prototype by
4797 // casting the second argument to void *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4799 != (size_t)-1)
4800 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004801 // Finished, append a NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 *to = NUL;
4803 break;
4804 }
4805
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004806 // Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4807 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 if (!vcp->vc_fail && unconvlenp != NULL
4809 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4810 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004811 // Handle an incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 *to = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004813 *unconvlenp = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 break;
4815 }
4816
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004817 // Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4818 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 else if (!vcp->vc_fail
4820 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4821 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4822 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004823 // Can't convert: insert a '?' and skip a character. This assumes
4824 // conversion from 'encoding' to something else. In other
4825 // situations we don't know what to skip anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 *to++ = '?';
4827 if ((*mb_ptr2cells)((char_u *)from) > 1)
4828 *to++ = '?';
Bram Moolenaar217ad922005-03-20 22:37:15 +00004829 if (enc_utf8)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004830 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
Bram Moolenaar217ad922005-03-20 22:37:15 +00004831 else
4832 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004833 l = (*mb_ptr2len)((char_u *)from);
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004834 if (l > (int)fromlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004835 l = (int)fromlen;
Bram Moolenaar217ad922005-03-20 22:37:15 +00004836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 from += l;
4838 fromlen -= l;
4839 }
4840 else if (ICONV_ERRNO != ICONV_E2BIG)
4841 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004842 // conversion failed
Bram Moolenaard23a8232018-02-10 18:45:26 +01004843 VIM_CLEAR(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 break;
4845 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004846 // Not enough room or skipping illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 done = to - (char *)result;
4848 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004849
Bram Moolenaar0d35e912011-04-11 14:29:17 +02004850 if (resultlenp != NULL && result != NULL)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004851 *resultlenp = (int)(to - (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 return result;
4853}
4854
4855# if defined(DYNAMIC_ICONV) || defined(PROTO)
4856/*
4857 * Dynamically load the "iconv.dll" on Win32.
4858 */
4859
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004860# ifndef DYNAMIC_ICONV // must be generating prototypes
Bram Moolenaar938ee832016-01-24 15:36:03 +01004861# define HINSTANCE int
4862# endif
Bram Moolenaard6f676d2005-06-01 21:51:55 +00004863static HINSTANCE hIconvDLL = 0;
4864static HINSTANCE hMsvcrtDLL = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865
Bram Moolenaar938ee832016-01-24 15:36:03 +01004866# ifndef DYNAMIC_ICONV_DLL
4867# define DYNAMIC_ICONV_DLL "iconv.dll"
4868# define DYNAMIC_ICONV_DLL_ALT1 "libiconv.dll"
4869# define DYNAMIC_ICONV_DLL_ALT2 "libiconv2.dll"
4870# define DYNAMIC_ICONV_DLL_ALT3 "libiconv-2.dll"
4871# endif
4872# ifndef DYNAMIC_MSVCRT_DLL
4873# define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4874# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875
4876/*
4877 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4878 */
4879 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004880iconv_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881{
4882 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4883 return TRUE;
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004884
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004885 // The iconv DLL file goes under different names, try them all.
4886 // Do the "2" version first, it's newer.
Bram Moolenaar938ee832016-01-24 15:36:03 +01004887#ifdef DYNAMIC_ICONV_DLL_ALT2
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004888 if (hIconvDLL == 0)
4889 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT2);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004890#endif
4891#ifdef DYNAMIC_ICONV_DLL_ALT3
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004892 if (hIconvDLL == 0)
4893 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT3);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004894#endif
4895 if (hIconvDLL == 0)
4896 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL);
4897#ifdef DYNAMIC_ICONV_DLL_ALT1
4898 if (hIconvDLL == 0)
4899 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT1);
4900#endif
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004901
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 if (hIconvDLL != 0)
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004903 hMsvcrtDLL = vimLoadLib(DYNAMIC_MSVCRT_DLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
4905 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004906 // Only give the message when 'verbose' is set, otherwise it might be
4907 // done whenever a conversion is attempted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004909 {
4910 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004911 semsg(_(e_could_not_load_library_str_str),
Martin Tournoij1a3e5742021-07-24 13:57:29 +02004912 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL,
4913 GetWin32Error());
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004914 verbose_leave();
4915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 iconv_end();
4917 return FALSE;
4918 }
4919
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004920 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
4921 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
4922 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
4923 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004924 iconv_errno = get_dll_import_func(hIconvDLL, "_errno");
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004925 if (iconv_errno == NULL)
4926 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
4928 || iconvctl == NULL || iconv_errno == NULL)
4929 {
4930 iconv_end();
4931 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004932 {
4933 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00004934 semsg(_(e_could_not_load_library_function_str), "for libiconv");
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004935 verbose_leave();
4936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 return FALSE;
4938 }
4939 return TRUE;
4940}
4941
4942 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004943iconv_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004945 // Don't use iconv() when inputting or outputting characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 if (input_conv.vc_type == CONV_ICONV)
4947 convert_setup(&input_conv, NULL, NULL);
4948 if (output_conv.vc_type == CONV_ICONV)
4949 convert_setup(&output_conv, NULL, NULL);
4950
4951 if (hIconvDLL != 0)
4952 FreeLibrary(hIconvDLL);
4953 if (hMsvcrtDLL != 0)
4954 FreeLibrary(hMsvcrtDLL);
4955 hIconvDLL = 0;
4956 hMsvcrtDLL = 0;
4957}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004958# endif // DYNAMIC_ICONV
4959# endif // USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960
Bram Moolenaara3a12462019-09-07 15:08:38 +02004961#if defined(FEAT_EVAL) || defined(PROTO)
4962/*
4963 * "getimstatus()" function
4964 */
4965 void
4966f_getimstatus(typval_T *argvars UNUSED, typval_T *rettv)
4967{
4968# if defined(HAVE_INPUT_METHOD)
4969 rettv->vval.v_number = im_get_status();
4970# endif
4971}
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02004972
4973/*
4974 * iconv() function
4975 */
4976 void
4977f_iconv(typval_T *argvars UNUSED, typval_T *rettv)
4978{
4979 char_u buf1[NUMBUFLEN];
4980 char_u buf2[NUMBUFLEN];
4981 char_u *from, *to, *str;
4982 vimconv_T vimconv;
4983
4984 rettv->v_type = VAR_STRING;
4985 rettv->vval.v_string = NULL;
4986
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02004987 if (in_vim9script()
4988 && (check_for_string_arg(argvars, 0) == FAIL
4989 || check_for_string_arg(argvars, 1) == FAIL
4990 || check_for_string_arg(argvars, 2) == FAIL))
4991 return;
4992
Yegappan Lakshmanana2438132021-07-10 21:29:18 +02004993 str = tv_get_string(&argvars[0]);
4994 from = enc_canonize(enc_skip(tv_get_string_buf(&argvars[1], buf1)));
4995 to = enc_canonize(enc_skip(tv_get_string_buf(&argvars[2], buf2)));
4996 vimconv.vc_type = CONV_NONE;
4997 convert_setup(&vimconv, from, to);
4998
4999 // If the encodings are equal, no conversion needed.
5000 if (vimconv.vc_type == CONV_NONE)
5001 rettv->vval.v_string = vim_strsave(str);
5002 else
5003 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
5004
5005 convert_setup(&vimconv, NULL, NULL);
5006 vim_free(from);
5007 vim_free(to);
5008}
Bram Moolenaara3a12462019-09-07 15:08:38 +02005009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010
5011/*
5012 * Setup "vcp" for conversion from "from" to "to".
5013 * The names must have been made canonical with enc_canonize().
5014 * vcp->vc_type must have been initialized to CONV_NONE.
5015 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5016 * instead).
5017 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5018 * Return FAIL when conversion is not supported, OK otherwise.
5019 */
5020 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005021convert_setup(vimconv_T *vcp, char_u *from, char_u *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022{
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005023 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
5024}
5025
5026/*
5027 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
5028 * "from" unicode charsets be considered utf-8. Same for "to".
5029 */
5030 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005031convert_setup_ext(
5032 vimconv_T *vcp,
5033 char_u *from,
5034 int from_unicode_is_utf8,
5035 char_u *to,
5036 int to_unicode_is_utf8)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005037{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 int from_prop;
5039 int to_prop;
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005040 int from_is_utf8;
5041 int to_is_utf8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005043 // Reset to no conversion.
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005044#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5046 iconv_close(vcp->vc_fd);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 vcp->vc_type = CONV_NONE;
5049 vcp->vc_factor = 1;
5050 vcp->vc_fail = FALSE;
5051
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005052 // No conversion when one of the names is empty or they are equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5054 || STRCMP(from, to) == 0)
5055 return OK;
5056
5057 from_prop = enc_canon_props(from);
5058 to_prop = enc_canon_props(to);
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005059 if (from_unicode_is_utf8)
5060 from_is_utf8 = from_prop & ENC_UNICODE;
5061 else
5062 from_is_utf8 = from_prop == ENC_UNICODE;
5063 if (to_unicode_is_utf8)
5064 to_is_utf8 = to_prop & ENC_UNICODE;
5065 else
5066 to_is_utf8 = to_prop == ENC_UNICODE;
5067
5068 if ((from_prop & ENC_LATIN1) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005070 // Internal latin1 -> utf-8 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 vcp->vc_type = CONV_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005072 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005074 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005075 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005076 // Internal latin9 -> utf-8 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005077 vcp->vc_type = CONV_9_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005078 vcp->vc_factor = 3; // up to three as long (euro sign)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005079 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005080 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005082 // Internal utf-8 -> latin1 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 vcp->vc_type = CONV_TO_LATIN1;
5084 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005085 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005086 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005087 // Internal utf-8 -> latin9 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005088 vcp->vc_type = CONV_TO_LATIN9;
5089 }
Bram Moolenaar4f974752019-02-17 17:44:42 +01005090#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005091 // Win32-specific codepage <-> codepage conversion without iconv.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005092 else if ((from_is_utf8 || encname2codepage(from) > 0)
5093 && (to_is_utf8 || encname2codepage(to) > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 {
5095 vcp->vc_type = CONV_CODEPAGE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005096 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005097 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
5098 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 }
5100#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02005101#ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
5103 {
5104 vcp->vc_type = CONV_MAC_LATIN1;
5105 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005106 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 {
5108 vcp->vc_type = CONV_MAC_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005109 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 }
5111 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
5112 {
5113 vcp->vc_type = CONV_LATIN1_MAC;
5114 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005115 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 {
5117 vcp->vc_type = CONV_UTF8_MAC;
5118 }
5119#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005120#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 else
5122 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005123 // Use iconv() for conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 vcp->vc_fd = (iconv_t)my_iconv_open(
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005125 to_is_utf8 ? (char_u *)"utf-8" : to,
5126 from_is_utf8 ? (char_u *)"utf-8" : from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 if (vcp->vc_fd != (iconv_t)-1)
5128 {
5129 vcp->vc_type = CONV_ICONV;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005130 vcp->vc_factor = 4; // could be longer too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 }
5132 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005133#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 if (vcp->vc_type == CONV_NONE)
5135 return FAIL;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005136
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 return OK;
5138}
5139
Bram Moolenaar4f974752019-02-17 17:44:42 +01005140#if defined(FEAT_GUI) || defined(AMIGA) || defined(MSWIN) \
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005141 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142/*
5143 * Do conversion on typed input characters in-place.
5144 * The input and output are not NUL terminated!
5145 * Returns the length after conversion.
5146 */
5147 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005148convert_input(char_u *ptr, int len, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149{
5150 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
5151}
5152#endif
5153
5154/*
5155 * Like convert_input(), but when there is an incomplete byte sequence at the
5156 * end return that as an allocated string in "restp" and set "*restlenp" to
5157 * the length. If "restp" is NULL it is not used.
5158 */
5159 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005160convert_input_safe(
5161 char_u *ptr,
5162 int len,
5163 int maxlen,
5164 char_u **restp,
5165 int *restlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166{
5167 char_u *d;
5168 int dlen = len;
5169 int unconvertlen = 0;
5170
5171 d = string_convert_ext(&input_conv, ptr, &dlen,
5172 restp == NULL ? NULL : &unconvertlen);
5173 if (d != NULL)
5174 {
5175 if (dlen <= maxlen)
5176 {
5177 if (unconvertlen > 0)
5178 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005179 // Move the unconverted characters to allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 *restp = alloc(unconvertlen);
5181 if (*restp != NULL)
5182 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
5183 *restlenp = unconvertlen;
5184 }
5185 mch_memmove(ptr, d, dlen);
5186 }
5187 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005188 // result is too long, keep the unconverted text (the caller must
5189 // have done something wrong!)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 dlen = len;
5191 vim_free(d);
5192 }
5193 return dlen;
5194}
5195
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196/*
5197 * Convert text "ptr[*lenp]" according to "vcp".
5198 * Returns the result in allocated memory and sets "*lenp".
5199 * When "lenp" is NULL, use NUL terminated strings.
5200 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
5201 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
5202 */
5203 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005204string_convert(
5205 vimconv_T *vcp,
5206 char_u *ptr,
5207 int *lenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208{
5209 return string_convert_ext(vcp, ptr, lenp, NULL);
5210}
5211
5212/*
5213 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
5214 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
5215 * set to the number of remaining bytes.
5216 */
5217 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005218string_convert_ext(
5219 vimconv_T *vcp,
5220 char_u *ptr,
5221 int *lenp,
5222 int *unconvlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
5224 char_u *retval = NULL;
5225 char_u *d;
5226 int len;
5227 int i;
5228 int l;
5229 int c;
5230
5231 if (lenp == NULL)
5232 len = (int)STRLEN(ptr);
5233 else
5234 len = *lenp;
5235 if (len == 0)
5236 return vim_strsave((char_u *)"");
5237
5238 switch (vcp->vc_type)
5239 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005240 case CONV_TO_UTF8: // latin1 to utf-8 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 retval = alloc(len * 2 + 1);
5242 if (retval == NULL)
5243 break;
5244 d = retval;
5245 for (i = 0; i < len; ++i)
5246 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005247 c = ptr[i];
5248 if (c < 0x80)
5249 *d++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 else
5251 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005252 *d++ = 0xc0 + ((unsigned)c >> 6);
5253 *d++ = 0x80 + (c & 0x3f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 }
5255 }
5256 *d = NUL;
5257 if (lenp != NULL)
5258 *lenp = (int)(d - retval);
5259 break;
5260
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005261 case CONV_9_TO_UTF8: // latin9 to utf-8 conversion
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005262 retval = alloc(len * 3 + 1);
5263 if (retval == NULL)
5264 break;
5265 d = retval;
5266 for (i = 0; i < len; ++i)
5267 {
5268 c = ptr[i];
5269 switch (c)
5270 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005271 case 0xa4: c = 0x20ac; break; // euro
5272 case 0xa6: c = 0x0160; break; // S hat
5273 case 0xa8: c = 0x0161; break; // S -hat
5274 case 0xb4: c = 0x017d; break; // Z hat
5275 case 0xb8: c = 0x017e; break; // Z -hat
5276 case 0xbc: c = 0x0152; break; // OE
5277 case 0xbd: c = 0x0153; break; // oe
5278 case 0xbe: c = 0x0178; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005279 }
5280 d += utf_char2bytes(c, d);
5281 }
5282 *d = NUL;
5283 if (lenp != NULL)
5284 *lenp = (int)(d - retval);
5285 break;
5286
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005287 case CONV_TO_LATIN1: // utf-8 to latin1 conversion
5288 case CONV_TO_LATIN9: // utf-8 to latin9 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 retval = alloc(len + 1);
5290 if (retval == NULL)
5291 break;
5292 d = retval;
5293 for (i = 0; i < len; ++i)
5294 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005295 l = utf_ptr2len_len(ptr + i, len - i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 if (l == 0)
5297 *d++ = NUL;
5298 else if (l == 1)
5299 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005300 int l_w = utf8len_tab_zero[ptr[i]];
5301
5302 if (l_w == 0)
5303 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005304 // Illegal utf-8 byte cannot be converted
Bram Moolenaar24397332009-12-02 14:02:39 +00005305 vim_free(retval);
5306 return NULL;
5307 }
5308 if (unconvlenp != NULL && l_w > len - i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005310 // Incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 *unconvlenp = len - i;
5312 break;
5313 }
5314 *d++ = ptr[i];
5315 }
5316 else
5317 {
5318 c = utf_ptr2char(ptr + i);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005319 if (vcp->vc_type == CONV_TO_LATIN9)
5320 switch (c)
5321 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005322 case 0x20ac: c = 0xa4; break; // euro
5323 case 0x0160: c = 0xa6; break; // S hat
5324 case 0x0161: c = 0xa8; break; // S -hat
5325 case 0x017d: c = 0xb4; break; // Z hat
5326 case 0x017e: c = 0xb8; break; // Z -hat
5327 case 0x0152: c = 0xbc; break; // OE
5328 case 0x0153: c = 0xbd; break; // oe
5329 case 0x0178: c = 0xbe; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005330 case 0xa4:
5331 case 0xa6:
5332 case 0xa8:
5333 case 0xb4:
5334 case 0xb8:
5335 case 0xbc:
5336 case 0xbd:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005337 case 0xbe: c = 0x100; break; // not in latin9
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005338 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005339 if (!utf_iscomposing(c)) // skip composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 {
5341 if (c < 0x100)
5342 *d++ = c;
5343 else if (vcp->vc_fail)
5344 {
5345 vim_free(retval);
5346 return NULL;
5347 }
5348 else
5349 {
5350 *d++ = 0xbf;
5351 if (utf_char2cells(c) > 1)
5352 *d++ = '?';
5353 }
5354 }
5355 i += l - 1;
5356 }
5357 }
5358 *d = NUL;
5359 if (lenp != NULL)
5360 *lenp = (int)(d - retval);
5361 break;
5362
Bram Moolenaar56718732006-03-15 22:53:57 +00005363# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 case CONV_MAC_LATIN1:
5365 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005366 'm', 'l', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 break;
5368
5369 case CONV_LATIN1_MAC:
5370 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005371 'l', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372 break;
5373
5374 case CONV_MAC_UTF8:
5375 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005376 'm', 'u', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 break;
5378
5379 case CONV_UTF8_MAC:
5380 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005381 'u', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 break;
5383# endif
5384
5385# ifdef USE_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005386 case CONV_ICONV: // conversion with output_conv.vc_fd
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005387 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 break;
5389# endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005390# ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005391 case CONV_CODEPAGE: // codepage -> codepage
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 {
5393 int retlen;
5394 int tmp_len;
5395 short_u *tmp;
5396
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005397 // 1. codepage/UTF-8 -> ucs-2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005399 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 else
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005401 {
5402 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom,
5403 unconvlenp ? MB_ERR_INVALID_CHARS : 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005404 (char *)ptr, len, 0, 0);
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005405 if (tmp_len == 0
5406 && GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
5407 {
5408 if (lenp != NULL)
5409 *lenp = 0;
5410 if (unconvlenp != NULL)
5411 *unconvlenp = len;
5412 retval = alloc(1);
5413 if (retval)
5414 retval[0] = NUL;
5415 return retval;
5416 }
5417 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005418 tmp = ALLOC_MULT(short_u, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 if (tmp == NULL)
5420 break;
5421 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005422 utf8_to_utf16(ptr, len, tmp, unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005424 MultiByteToWideChar(vcp->vc_cpfrom, 0,
5425 (char *)ptr, len, tmp, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005427 // 2. ucs-2 -> codepage/UTF-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005429 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 else
5431 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
5432 tmp, tmp_len, 0, 0, 0, 0);
5433 retval = alloc(retlen + 1);
5434 if (retval != NULL)
5435 {
5436 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005437 utf16_to_utf8(tmp, tmp_len, retval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 else
5439 WideCharToMultiByte(vcp->vc_cpto, 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005440 tmp, tmp_len,
5441 (char *)retval, retlen, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 retval[retlen] = NUL;
5443 if (lenp != NULL)
5444 *lenp = retlen;
5445 }
5446 vim_free(tmp);
5447 break;
5448 }
5449# endif
5450 }
5451
5452 return retval;
5453}
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005454
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005455#if defined(FEAT_EVAL) || defined(PROTO)
5456
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005457/*
5458 * Table set by setcellwidths().
5459 */
5460typedef struct
5461{
5462 long first;
5463 long last;
5464 char width;
5465} cw_interval_T;
5466
5467static cw_interval_T *cw_table = NULL;
5468static size_t cw_table_size = 0;
5469
5470/*
5471 * Return 1 or 2 when "c" is in the cellwidth table.
5472 * Return 0 if not.
5473 */
5474 static int
5475cw_value(int c)
5476{
5477 int mid, bot, top;
5478
5479 if (cw_table == NULL)
5480 return 0;
5481
5482 // first quick check for Latin1 etc. characters
5483 if (c < cw_table[0].first)
5484 return 0;
5485
5486 // binary search in table
5487 bot = 0;
5488 top = (int)cw_table_size - 1;
5489 while (top >= bot)
5490 {
5491 mid = (bot + top) / 2;
5492 if (cw_table[mid].last < c)
5493 bot = mid + 1;
5494 else if (cw_table[mid].first > c)
5495 top = mid - 1;
5496 else
5497 return cw_table[mid].width;
5498 }
5499 return 0;
5500}
5501
5502 static int
5503tv_nr_compare(const void *a1, const void *a2)
5504{
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005505 listitem_T *li1 = *(listitem_T **)a1;
5506 listitem_T *li2 = *(listitem_T **)a2;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005507
5508 return li1->li_tv.vval.v_number - li2->li_tv.vval.v_number;
5509}
5510
5511 void
5512f_setcellwidths(typval_T *argvars, typval_T *rettv UNUSED)
5513{
5514 list_T *l;
5515 listitem_T *li;
5516 int item;
5517 int i;
5518 listitem_T **ptrs;
5519 cw_interval_T *table;
zeertzjq94358a12021-10-20 11:01:15 +01005520 cw_interval_T *cw_table_save;
5521 size_t cw_table_size_save;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005522
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02005523 if (in_vim9script() && check_for_list_arg(argvars, 0) == FAIL)
5524 return;
5525
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005526 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
5527 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005528 emsg(_(e_list_required));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005529 return;
5530 }
5531 l = argvars[0].vval.v_list;
5532 if (l->lv_len == 0)
5533 {
5534 // Clearing the table.
5535 vim_free(cw_table);
5536 cw_table = NULL;
5537 cw_table_size = 0;
5538 return;
5539 }
5540
5541 ptrs = ALLOC_MULT(listitem_T *, l->lv_len);
5542 if (ptrs == NULL)
5543 return;
5544
5545 // Check that all entries are a list with three numbers, the range is
5546 // valid and the cell width is valid.
5547 item = 0;
5548 for (li = l->lv_first; li != NULL; li = li->li_next)
5549 {
5550 listitem_T *lili;
5551 varnumber_T n1;
5552
5553 if (li->li_tv.v_type != VAR_LIST || li->li_tv.vval.v_list == NULL)
5554 {
5555 semsg(_(e_list_item_nr_is_not_list), item);
5556 vim_free(ptrs);
5557 return;
5558 }
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005559
5560 lili = li->li_tv.vval.v_list->lv_first;
5561 ptrs[item] = lili;
5562 for (i = 0; lili != NULL; lili = lili->li_next, ++i)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005563 {
5564 if (lili->li_tv.v_type != VAR_NUMBER)
5565 break;
5566 if (i == 0)
5567 {
5568 n1 = lili->li_tv.vval.v_number;
5569 if (n1 < 0x100)
5570 {
5571 emsg(_(e_only_values_of_0x100_and_higher_supported));
5572 vim_free(ptrs);
5573 return;
5574 }
5575 }
5576 else if (i == 1 && lili->li_tv.vval.v_number < n1)
5577 {
5578 semsg(_(e_list_item_nr_range_invalid), item);
5579 vim_free(ptrs);
5580 return;
5581 }
5582 else if (i == 2 && (lili->li_tv.vval.v_number < 1
5583 || lili->li_tv.vval.v_number > 2))
5584 {
5585 semsg(_(e_list_item_nr_cell_width_invalid), item);
5586 vim_free(ptrs);
5587 return;
5588 }
5589 }
5590 if (i != 3)
5591 {
5592 semsg(_(e_list_item_nr_does_not_contain_3_numbers), item);
5593 vim_free(ptrs);
5594 return;
5595 }
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005596 ++item;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005597 }
5598
5599 // Sort the list on the first number.
5600 qsort((void *)ptrs, (size_t)l->lv_len, sizeof(listitem_T *), tv_nr_compare);
5601
5602 table = ALLOC_MULT(cw_interval_T, l->lv_len);
5603 if (table == NULL)
5604 {
5605 vim_free(ptrs);
5606 return;
5607 }
5608
5609 // Store the items in the new table.
5610 item = 0;
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005611 for (item = 0; item < l->lv_len; ++item)
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005612 {
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02005613 listitem_T *lili = ptrs[item];
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005614 varnumber_T n1;
5615
5616 n1 = lili->li_tv.vval.v_number;
5617 if (item > 0 && n1 <= table[item - 1].last)
5618 {
5619 semsg(_(e_overlapping_ranges_for_nr), (long)n1);
5620 vim_free(ptrs);
5621 vim_free(table);
5622 return;
5623 }
5624 table[item].first = n1;
5625 lili = lili->li_next;
5626 table[item].last = lili->li_tv.vval.v_number;
5627 lili = lili->li_next;
5628 table[item].width = lili->li_tv.vval.v_number;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005629 }
5630
5631 vim_free(ptrs);
zeertzjq94358a12021-10-20 11:01:15 +01005632
5633 cw_table_save = cw_table;
5634 cw_table_size_save = cw_table_size;
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005635 cw_table = table;
5636 cw_table_size = l->lv_len;
zeertzjq94358a12021-10-20 11:01:15 +01005637
5638 // Check that the new value does not conflict with 'fillchars' or
5639 // 'listchars'.
5640 if (set_chars_option(curwin, &p_fcs) != NULL)
5641 {
5642 emsg(_(e_conflicts_with_value_of_fillchars));
5643 cw_table = cw_table_save;
5644 cw_table_size = cw_table_size_save;
5645 vim_free(table);
5646 return;
5647 }
5648 else
5649 {
5650 tabpage_T *tp;
5651 win_T *wp;
5652
5653 FOR_ALL_TAB_WINDOWS(tp, wp)
5654 {
5655 if (set_chars_option(wp, &wp->w_p_lcs) != NULL)
5656 {
5657 emsg((e_conflicts_with_value_of_listchars));
5658 cw_table = cw_table_save;
5659 cw_table_size = cw_table_size_save;
5660 vim_free(table);
5661 return;
5662 }
5663 }
5664 }
5665
5666 vim_free(cw_table_save);
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005667}
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005668
5669 void
5670f_charclass(typval_T *argvars, typval_T *rettv UNUSED)
5671{
Christian Brabandt72463f82021-07-02 20:19:31 +02005672 if (check_for_string_arg(argvars, 0) == FAIL
5673 || argvars[0].vval.v_string == NULL)
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005674 return;
Bram Moolenaar4e4473c2020-08-28 22:24:57 +02005675 rettv->vval.v_number = mb_get_class(argvars[0].vval.v_string);
5676}
5677#endif