blob: d72fb9191b49a0834752c3017205ee7639a3f71a [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 Moolenaar08aac3c2020-08-28 21:04:24 +0200135static int cw_value(int c);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
Bram Moolenaar24397332009-12-02 14:02:39 +0000137/*
138 * Lookup table to quickly get the length in bytes of a UTF-8 character from
139 * the first byte of a UTF-8 string.
140 * Bytes which are illegal when used as the first byte have a 1.
141 * The NUL byte has length 1.
142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143static char utf8len_tab[256] =
144{
145 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,
146 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,
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,
Bram Moolenaar24397332009-12-02 14:02:39 +0000149 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 Moolenaar071d4272004-06-13 20:20:40 +0000151 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,
152 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,
153};
154
155/*
Bram Moolenaar24397332009-12-02 14:02:39 +0000156 * Like utf8len_tab above, but using a zero for illegal lead bytes.
157 */
158static char utf8len_tab_zero[256] =
159{
160 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,
161 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,
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 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,
165 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,
166 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,
167 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,
168};
169
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171/*
172 * Canonical encoding names and their properties.
173 * "iso-8859-n" is handled by enc_canonize() directly.
174 */
175static struct
176{ char *name; int prop; int codepage;}
177enc_canon_table[] =
178{
179#define IDX_LATIN_1 0
180 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
181#define IDX_ISO_2 1
182 {"iso-8859-2", ENC_8BIT, 0},
183#define IDX_ISO_3 2
184 {"iso-8859-3", ENC_8BIT, 0},
185#define IDX_ISO_4 3
186 {"iso-8859-4", ENC_8BIT, 0},
187#define IDX_ISO_5 4
188 {"iso-8859-5", ENC_8BIT, 0},
189#define IDX_ISO_6 5
190 {"iso-8859-6", ENC_8BIT, 0},
191#define IDX_ISO_7 6
192 {"iso-8859-7", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000193#define IDX_ISO_8 7
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 {"iso-8859-8", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000195#define IDX_ISO_9 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 {"iso-8859-9", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000197#define IDX_ISO_10 9
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 {"iso-8859-10", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000199#define IDX_ISO_11 10
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200 {"iso-8859-11", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000201#define IDX_ISO_13 11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 {"iso-8859-13", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000203#define IDX_ISO_14 12
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204 {"iso-8859-14", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000205#define IDX_ISO_15 13
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000206 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000207#define IDX_KOI8_R 14
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 {"koi8-r", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000209#define IDX_KOI8_U 15
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 {"koi8-u", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000211#define IDX_UTF8 16
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 {"utf-8", ENC_UNICODE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000213#define IDX_UCS2 17
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000215#define IDX_UCS2LE 18
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000217#define IDX_UTF16 19
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000219#define IDX_UTF16LE 20
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000221#define IDX_UCS4 21
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000223#define IDX_UCS4LE 22
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000225
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100226 // For debugging DBCS encoding on Unix.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000227#define IDX_DEBUG 23
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 {"debug", ENC_DBCS, DBCS_DEBUG},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000229#define IDX_EUC_JP 24
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 {"euc-jp", ENC_DBCS, DBCS_JPNU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000231#define IDX_SJIS 25
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 {"sjis", ENC_DBCS, DBCS_JPN},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000233#define IDX_EUC_KR 26
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234 {"euc-kr", ENC_DBCS, DBCS_KORU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000235#define IDX_EUC_CN 27
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236 {"euc-cn", ENC_DBCS, DBCS_CHSU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000237#define IDX_EUC_TW 28
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 {"euc-tw", ENC_DBCS, DBCS_CHTU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000239#define IDX_BIG5 29
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 {"big5", ENC_DBCS, DBCS_CHT},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000241
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100242 // MS-DOS and MS-Windows codepages are included here, so that they can be
243 // used on Unix too. Most of them are similar to ISO-8859 encodings, but
244 // not exactly the same.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000245#define IDX_CP437 30
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100246 {"cp437", ENC_8BIT, 437}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000247#define IDX_CP737 31
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100248 {"cp737", ENC_8BIT, 737}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000249#define IDX_CP775 32
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100250 {"cp775", ENC_8BIT, 775}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000251#define IDX_CP850 33
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100252 {"cp850", ENC_8BIT, 850}, // like iso-8859-4
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000253#define IDX_CP852 34
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100254 {"cp852", ENC_8BIT, 852}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000255#define IDX_CP855 35
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100256 {"cp855", ENC_8BIT, 855}, // like iso-8859-2
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000257#define IDX_CP857 36
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100258 {"cp857", ENC_8BIT, 857}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000259#define IDX_CP860 37
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100260 {"cp860", ENC_8BIT, 860}, // like iso-8859-9
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000261#define IDX_CP861 38
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100262 {"cp861", ENC_8BIT, 861}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000263#define IDX_CP862 39
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100264 {"cp862", ENC_8BIT, 862}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000265#define IDX_CP863 40
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100266 {"cp863", ENC_8BIT, 863}, // like iso-8859-8
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000267#define IDX_CP865 41
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100268 {"cp865", ENC_8BIT, 865}, // like iso-8859-1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000269#define IDX_CP866 42
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100270 {"cp866", ENC_8BIT, 866}, // like iso-8859-5
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000271#define IDX_CP869 43
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100272 {"cp869", ENC_8BIT, 869}, // like iso-8859-7
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000273#define IDX_CP874 44
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100274 {"cp874", ENC_8BIT, 874}, // Thai
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000275#define IDX_CP932 45
276 {"cp932", ENC_DBCS, DBCS_JPN},
277#define IDX_CP936 46
278 {"cp936", ENC_DBCS, DBCS_CHS},
279#define IDX_CP949 47
280 {"cp949", ENC_DBCS, DBCS_KOR},
281#define IDX_CP950 48
282 {"cp950", ENC_DBCS, DBCS_CHT},
283#define IDX_CP1250 49
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100284 {"cp1250", ENC_8BIT, 1250}, // Czech, Polish, etc.
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000285#define IDX_CP1251 50
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100286 {"cp1251", ENC_8BIT, 1251}, // Cyrillic
287 // cp1252 is considered to be equal to latin1
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000288#define IDX_CP1253 51
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100289 {"cp1253", ENC_8BIT, 1253}, // Greek
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000290#define IDX_CP1254 52
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100291 {"cp1254", ENC_8BIT, 1254}, // Turkish
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000292#define IDX_CP1255 53
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100293 {"cp1255", ENC_8BIT, 1255}, // Hebrew
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000294#define IDX_CP1256 54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100295 {"cp1256", ENC_8BIT, 1256}, // Arabic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000296#define IDX_CP1257 55
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100297 {"cp1257", ENC_8BIT, 1257}, // Baltic
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000298#define IDX_CP1258 56
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100299 {"cp1258", ENC_8BIT, 1258}, // Vietnamese
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000300
301#define IDX_MACROMAN 57
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100302 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, // Mac OS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000303#define IDX_DECMCS 58
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100304 {"dec-mcs", ENC_8BIT, 0}, // DEC MCS
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000305#define IDX_HPROMAN8 59
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100306 {"hp-roman8", ENC_8BIT, 0}, // HP Roman8
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000307#define IDX_COUNT 60
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308};
309
310/*
311 * Aliases for encoding names.
312 */
313static struct
314{ char *name; int canon;}
315enc_alias_table[] =
316{
317 {"ansi", IDX_LATIN_1},
318 {"iso-8859-1", IDX_LATIN_1},
319 {"latin2", IDX_ISO_2},
320 {"latin3", IDX_ISO_3},
321 {"latin4", IDX_ISO_4},
322 {"cyrillic", IDX_ISO_5},
323 {"arabic", IDX_ISO_6},
324 {"greek", IDX_ISO_7},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100325#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 {"hebrew", IDX_CP1255},
327#else
328 {"hebrew", IDX_ISO_8},
329#endif
330 {"latin5", IDX_ISO_9},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100331 {"turkish", IDX_ISO_9}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 {"latin6", IDX_ISO_10},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100333 {"nordic", IDX_ISO_10}, // ?
334 {"thai", IDX_ISO_11}, // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 {"latin7", IDX_ISO_13},
336 {"latin8", IDX_ISO_14},
337 {"latin9", IDX_ISO_15},
338 {"utf8", IDX_UTF8},
339 {"unicode", IDX_UCS2},
340 {"ucs2", IDX_UCS2},
341 {"ucs2be", IDX_UCS2},
342 {"ucs-2be", IDX_UCS2},
343 {"ucs2le", IDX_UCS2LE},
344 {"utf16", IDX_UTF16},
345 {"utf16be", IDX_UTF16},
346 {"utf-16be", IDX_UTF16},
347 {"utf16le", IDX_UTF16LE},
348 {"ucs4", IDX_UCS4},
349 {"ucs4be", IDX_UCS4},
350 {"ucs-4be", IDX_UCS4},
351 {"ucs4le", IDX_UCS4LE},
Bram Moolenaar5360af92008-02-20 10:29:39 +0000352 {"utf32", IDX_UCS4},
353 {"utf-32", IDX_UCS4},
354 {"utf32be", IDX_UCS4},
355 {"utf-32be", IDX_UCS4},
356 {"utf32le", IDX_UCS4LE},
357 {"utf-32le", IDX_UCS4LE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {"932", IDX_CP932},
359 {"949", IDX_CP949},
360 {"936", IDX_CP936},
Bram Moolenaar0928caa2006-08-16 16:03:34 +0000361 {"gbk", IDX_CP936},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 {"950", IDX_CP950},
363 {"eucjp", IDX_EUC_JP},
364 {"unix-jis", IDX_EUC_JP},
365 {"ujis", IDX_EUC_JP},
366 {"shift-jis", IDX_SJIS},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100367 {"pck", IDX_SJIS}, // Sun: PCK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 {"euckr", IDX_EUC_KR},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100369 {"5601", IDX_EUC_KR}, // Sun: KS C 5601
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 {"euccn", IDX_EUC_CN},
371 {"gb2312", IDX_EUC_CN},
372 {"euctw", IDX_EUC_TW},
Bram Moolenaar4f974752019-02-17 17:44:42 +0100373#if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 {"japan", IDX_CP932},
375 {"korea", IDX_CP949},
376 {"prc", IDX_CP936},
377 {"chinese", IDX_CP936},
378 {"taiwan", IDX_CP950},
379 {"big5", IDX_CP950},
380#else
381 {"japan", IDX_EUC_JP},
382 {"korea", IDX_EUC_KR},
383 {"prc", IDX_EUC_CN},
384 {"chinese", IDX_EUC_CN},
385 {"taiwan", IDX_EUC_TW},
386 {"cp950", IDX_BIG5},
387 {"950", IDX_BIG5},
388#endif
389 {"mac", IDX_MACROMAN},
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000390 {"mac-roman", IDX_MACROMAN},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {NULL, 0}
392};
393
394#ifndef CP_UTF8
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100395# define CP_UTF8 65001 // magic number from winnls.h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396#endif
397
398/*
399 * Find encoding "name" in the list of canonical encoding names.
400 * Returns -1 if not found.
401 */
402 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100403enc_canon_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404{
405 int i;
406
407 for (i = 0; i < IDX_COUNT; ++i)
408 if (STRCMP(name, enc_canon_table[i].name) == 0)
409 return i;
410 return -1;
411}
412
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
414/*
415 * Find canonical encoding "name" in the list and return its properties.
416 * Returns 0 if not found.
417 */
418 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100419enc_canon_props(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420{
421 int i;
422
423 i = enc_canon_search(name);
424 if (i >= 0)
425 return enc_canon_table[i].prop;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100426#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
428 {
429 CPINFO cpinfo;
430
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100431 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100432 if (GetCPInfo(atoi((char *)name + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100434 if (cpinfo.MaxCharSize == 1) // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 return ENC_8BIT;
436 if (cpinfo.MaxCharSize == 2
437 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100438 // must be a DBCS encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439 return ENC_DBCS;
440 }
441 return 0;
442 }
443#endif
444 if (STRNCMP(name, "2byte-", 6) == 0)
445 return ENC_DBCS;
446 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
447 return ENC_8BIT;
448 return 0;
449}
450
451/*
452 * Set up for using multi-byte characters.
453 * Called in three cases:
454 * - by main() to initialize (p_enc == NULL)
455 * - by set_init_1() after 'encoding' was set to its default.
456 * - by do_set() when 'encoding' has been set.
457 * p_enc must have been passed through enc_canonize() already.
458 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
459 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
460 * When there is something wrong: Returns an error message and doesn't change
461 * anything.
462 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100463 char *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100464mb_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465{
466 int i;
467 int idx;
468 int n;
469 int enc_dbcs_new = 0;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100470#if defined(USE_ICONV) && !defined(MSWIN) && !defined(WIN32UNIX) \
Bram Moolenaard0573012017-10-28 21:11:06 +0200471 && !defined(MACOS_CONVERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472# define LEN_FROM_CONV
473 vimconv_T vimconv;
474 char_u *p;
475#endif
476
477 if (p_enc == NULL)
478 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100479 // Just starting up: set the whole table to one's.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 for (i = 0; i < 256; ++i)
481 mb_bytelen_tab[i] = 1;
482 input_conv.vc_type = CONV_NONE;
483 input_conv.vc_factor = 1;
484 output_conv.vc_type = CONV_NONE;
485 return NULL;
486 }
487
Bram Moolenaar4f974752019-02-17 17:44:42 +0100488#ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
490 {
491 CPINFO cpinfo;
492
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100493 // Get info on this codepage to find out what it is.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100494 if (GetCPInfo(atoi((char *)p_enc + 2), &cpinfo) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 {
496 if (cpinfo.MaxCharSize == 1)
497 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100498 // some single-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 enc_unicode = 0;
500 enc_utf8 = FALSE;
501 }
502 else if (cpinfo.MaxCharSize == 2
503 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
504 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100505 // must be a DBCS encoding, check below
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100506 enc_dbcs_new = atoi((char *)p_enc + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 }
508 else
509 goto codepage_invalid;
510 }
511 else if (GetLastError() == ERROR_INVALID_PARAMETER)
512 {
513codepage_invalid:
Bram Moolenaar99b12722019-01-14 20:16:40 +0100514 return N_("E543: Not a valid codepage");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 }
516 }
517#endif
518 else if (STRNCMP(p_enc, "8bit-", 5) == 0
519 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
520 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100521 // Accept any "8bit-" or "iso-8859-" name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 enc_unicode = 0;
523 enc_utf8 = FALSE;
524 }
525 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
526 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100527#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100528 // Windows: accept only valid codepage numbers, check below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 if (p_enc[6] != 'c' || p_enc[7] != 'p'
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100530 || (enc_dbcs_new = atoi((char *)p_enc + 8)) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 return e_invarg;
532#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100533 // Unix: accept any "2byte-" name, assume current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 enc_dbcs_new = DBCS_2BYTE;
535#endif
536 }
537 else if ((idx = enc_canon_search(p_enc)) >= 0)
538 {
539 i = enc_canon_table[idx].prop;
540 if (i & ENC_UNICODE)
541 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100542 // Unicode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 enc_utf8 = TRUE;
544 if (i & (ENC_2BYTE | ENC_2WORD))
545 enc_unicode = 2;
546 else if (i & ENC_4BYTE)
547 enc_unicode = 4;
548 else
549 enc_unicode = 0;
550 }
551 else if (i & ENC_DBCS)
552 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100553 // 2byte, handle below
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 enc_dbcs_new = enc_canon_table[idx].codepage;
555 }
556 else
557 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100558 // Must be 8-bit.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 enc_unicode = 0;
560 enc_utf8 = FALSE;
561 }
562 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100563 else // Don't know what encoding this is, reject it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 return e_invarg;
565
566 if (enc_dbcs_new != 0)
567 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100568#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100569 // Check if the DBCS code page is OK.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 if (!IsValidCodePage(enc_dbcs_new))
571 goto codepage_invalid;
572#endif
573 enc_unicode = 0;
574 enc_utf8 = FALSE;
575 }
576 enc_dbcs = enc_dbcs_new;
577 has_mbyte = (enc_dbcs != 0 || enc_utf8);
578
Bram Moolenaar4f974752019-02-17 17:44:42 +0100579#if defined(MSWIN) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 enc_codepage = encname2codepage(p_enc);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000581 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582#endif
583
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100584 // Detect an encoding that uses latin1 characters.
Bram Moolenaar78622822005-08-23 21:00:13 +0000585 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
586 || STRCMP(p_enc, "iso-8859-15") == 0);
587
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 /*
589 * Set the function pointers.
590 */
591 if (enc_utf8)
592 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000593 mb_ptr2len = utfc_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000594 mb_ptr2len_len = utfc_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 mb_char2len = utf_char2len;
596 mb_char2bytes = utf_char2bytes;
597 mb_ptr2cells = utf_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000598 mb_ptr2cells_len = utf_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 mb_char2cells = utf_char2cells;
600 mb_off2cells = utf_off2cells;
601 mb_ptr2char = utf_ptr2char;
602 mb_head_off = utf_head_off;
603 }
604 else if (enc_dbcs != 0)
605 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000606 mb_ptr2len = dbcs_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000607 mb_ptr2len_len = dbcs_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 mb_char2len = dbcs_char2len;
609 mb_char2bytes = dbcs_char2bytes;
610 mb_ptr2cells = dbcs_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000611 mb_ptr2cells_len = dbcs_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 mb_char2cells = dbcs_char2cells;
613 mb_off2cells = dbcs_off2cells;
614 mb_ptr2char = dbcs_ptr2char;
615 mb_head_off = dbcs_head_off;
616 }
617 else
618 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000619 mb_ptr2len = latin_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000620 mb_ptr2len_len = latin_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 mb_char2len = latin_char2len;
622 mb_char2bytes = latin_char2bytes;
623 mb_ptr2cells = latin_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000624 mb_ptr2cells_len = latin_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 mb_char2cells = latin_char2cells;
626 mb_off2cells = latin_off2cells;
627 mb_ptr2char = latin_ptr2char;
628 mb_head_off = latin_head_off;
629 }
630
631 /*
632 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
633 */
634#ifdef LEN_FROM_CONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100635 // When 'encoding' is different from the current locale mblen() won't
636 // work. Use conversion to "utf-8" instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 vimconv.vc_type = CONV_NONE;
638 if (enc_dbcs)
639 {
640 p = enc_locale();
641 if (p == NULL || STRCMP(p, p_enc) != 0)
642 {
643 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
644 vimconv.vc_fail = TRUE;
645 }
646 vim_free(p);
647 }
648#endif
649
650 for (i = 0; i < 256; ++i)
651 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100652 // Our own function to reliably check the length of UTF-8 characters,
653 // independent of mblen().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 if (enc_utf8)
655 n = utf8len_tab[i];
656 else if (enc_dbcs == 0)
657 n = 1;
658 else
659 {
Bram Moolenaar4f974752019-02-17 17:44:42 +0100660#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100661 // enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
662 // CodePage identifier, which we can pass directly in to Windows
663 // API
Bram Moolenaarca058dc2014-01-14 13:26:21 +0100664 n = IsDBCSLeadByteEx(enc_dbcs, (WINBYTE)i) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665#else
Bram Moolenaard0573012017-10-28 21:11:06 +0200666# if defined(__amigaos4__) || defined(__ANDROID__) || \
667 !(defined(HAVE_MBLEN) || defined(X_LOCALE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 /*
669 * if mblen() is not available, character which MSB is turned on
670 * are treated as leading byte character. (note : This assumption
671 * is not always true.)
672 */
673 n = (i & 0x80) ? 2 : 1;
674# else
Bram Moolenaar9a920d82012-06-01 15:21:02 +0200675 char buf[MB_MAXBYTES + 1];
Bram Moolenaard0573012017-10-28 21:11:06 +0200676
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100677 if (i == NUL) // just in case mblen() can't handle ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 n = 1;
679 else
680 {
681 buf[0] = i;
682 buf[1] = 0;
Bram Moolenaard0573012017-10-28 21:11:06 +0200683# ifdef LEN_FROM_CONV
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 if (vimconv.vc_type != CONV_NONE)
685 {
686 /*
687 * string_convert() should fail when converting the first
688 * byte of a double-byte character.
689 */
690 p = string_convert(&vimconv, (char_u *)buf, NULL);
691 if (p != NULL)
692 {
693 vim_free(p);
694 n = 1;
695 }
696 else
697 n = 2;
698 }
699 else
Bram Moolenaard0573012017-10-28 21:11:06 +0200700# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 {
702 /*
703 * mblen() should return -1 for invalid (means the leading
704 * multibyte) character. However there are some platforms
705 * where mblen() returns 0 for invalid character.
706 * Therefore, following condition includes 0.
707 */
Bram Moolenaar42335f52018-09-13 15:33:43 +0200708 vim_ignored = mblen(NULL, 0); // First reset the state.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 if (mblen(buf, (size_t)1) <= 0)
710 n = 2;
711 else
712 n = 1;
713 }
714 }
715# endif
716#endif
717 }
718
719 mb_bytelen_tab[i] = n;
720 }
721
722#ifdef LEN_FROM_CONV
723 convert_setup(&vimconv, NULL, NULL);
724#endif
725
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100726 // The cell width depends on the type of multi-byte characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 (void)init_chartab();
728
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100729 // When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 screenalloc(FALSE);
731
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100732 // When using Unicode, set default for 'fileencodings'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
734 set_string_option_direct((char_u *)"fencs", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000735 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
736
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737#if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100738 // GNU gettext 0.10.37 supports this feature: set the codeset used for
739 // translated messages independently from the current locale.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 (void)bind_textdomain_codeset(VIMPACKAGE,
741 enc_utf8 ? "utf-8" : (char *)p_enc);
742#endif
743
Bram Moolenaar4f974752019-02-17 17:44:42 +0100744#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100745 // When changing 'encoding' while starting up, then convert the command
746 // line arguments from the active codepage to 'encoding'.
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000747 if (starting != 0)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000748 fix_arg_enc();
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000749#endif
750
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100751 // Fire an autocommand to let people do custom font setup. This must be
752 // after Vim has been setup for the new encoding.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000755#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100756 // Need to reload spell dictionaries
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000757 spell_reload();
758#endif
759
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 return NULL;
761}
762
763/*
764 * Return the size of the BOM for the current buffer:
765 * 0 - no BOM
766 * 2 - UCS-2 or UTF-16 BOM
767 * 4 - UCS-4 BOM
768 * 3 - UTF-8 BOM
769 */
770 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100771bomb_size(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772{
773 int n = 0;
774
775 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
776 {
777 if (*curbuf->b_p_fenc == NUL)
778 {
779 if (enc_utf8)
780 {
781 if (enc_unicode != 0)
782 n = enc_unicode;
783 else
784 n = 3;
785 }
786 }
787 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
788 n = 3;
789 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
790 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
791 n = 2;
792 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
793 n = 4;
794 }
795 return n;
796}
797
Bram Moolenaar113e1072019-01-20 15:30:40 +0100798#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799/*
Bram Moolenaar836082d2011-08-10 13:21:46 +0200800 * Remove all BOM from "s" by moving remaining text.
801 */
802 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100803remove_bom(char_u *s)
Bram Moolenaar836082d2011-08-10 13:21:46 +0200804{
805 if (enc_utf8)
806 {
807 char_u *p = s;
808
809 while ((p = vim_strbyte(p, 0xef)) != NULL)
810 {
811 if (p[1] == 0xbb && p[2] == 0xbf)
812 STRMOVE(p, p + 3);
813 else
814 ++p;
815 }
816 }
817}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100818#endif
Bram Moolenaar836082d2011-08-10 13:21:46 +0200819
820/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 * Get class of pointer:
822 * 0 for blank or NUL
823 * 1 for punctuation
824 * 2 for an (ASCII) word character
825 * >2 for other word characters
826 */
827 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100828mb_get_class(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829{
Bram Moolenaarf813a182013-01-30 13:59:37 +0100830 return mb_get_class_buf(p, curbuf);
831}
832
833 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100834mb_get_class_buf(char_u *p, buf_T *buf)
Bram Moolenaarf813a182013-01-30 13:59:37 +0100835{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 if (MB_BYTE2LEN(p[0]) == 1)
837 {
Bram Moolenaar1c465442017-03-12 20:10:05 +0100838 if (p[0] == NUL || VIM_ISWHITE(p[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 return 0;
Bram Moolenaarf813a182013-01-30 13:59:37 +0100840 if (vim_iswordc_buf(p[0], buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 return 2;
842 return 1;
843 }
844 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
845 return dbcs_class(p[0], p[1]);
846 if (enc_utf8)
Bram Moolenaar4019cf92017-01-28 16:39:34 +0100847 return utf_class_buf(utf_ptr2char(p), buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 return 0;
849}
850
851/*
852 * Get class of a double-byte character. This always returns 3 or bigger.
853 * TODO: Should return 1 for punctuation.
854 */
855 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100856dbcs_class(unsigned lead, unsigned trail)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
858 switch (enc_dbcs)
859 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100860 // please add classify routine for your language in here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100862 case DBCS_JPNU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 case DBCS_JPN:
864 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100865 // JIS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 unsigned char lb = lead;
867 unsigned char tb = trail;
868
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100869 // convert process code to JIS
Bram Moolenaar4f974752019-02-17 17:44:42 +0100870# if defined(MSWIN) || defined(WIN32UNIX) || defined(MACOS_X)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100871 // process code is SJIS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 if (lb <= 0x9f)
873 lb = (lb - 0x81) * 2 + 0x21;
874 else
875 lb = (lb - 0xc1) * 2 + 0x21;
876 if (tb <= 0x7e)
877 tb -= 0x1f;
878 else if (tb <= 0x9e)
879 tb -= 0x20;
880 else
881 {
882 tb -= 0x7e;
883 lb += 1;
884 }
885# else
886 /*
887 * XXX: Code page identification can not use with all
888 * system! So, some other encoding information
889 * will be needed.
890 * In japanese: SJIS,EUC,UNICODE,(JIS)
891 * Note that JIS-code system don't use as
892 * process code in most system because it uses
893 * escape sequences(JIS is context depend encoding).
894 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100895 // assume process code is JAPANESE-EUC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 lb &= 0x7f;
897 tb &= 0x7f;
898# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100899 // exceptions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 switch (lb << 8 | tb)
901 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100902 case 0x2121: // ZENKAKU space
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100904 case 0x2122: // TOU-TEN (Japanese comma)
905 case 0x2123: // KU-TEN (Japanese period)
906 case 0x2124: // ZENKAKU comma
907 case 0x2125: // ZENKAKU period
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100909 case 0x213c: // prolongedsound handled as KATAKANA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 return 13;
911 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100912 // sieved by KU code
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 switch (lb)
914 {
915 case 0x21:
916 case 0x22:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100917 // special symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 return 10;
919 case 0x23:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100920 // alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 return 11;
922 case 0x24:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100923 // hiragana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 return 12;
925 case 0x25:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100926 // katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 return 13;
928 case 0x26:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100929 // greek
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 return 14;
931 case 0x27:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100932 // russian
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 return 15;
934 case 0x28:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100935 // lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 return 16;
937 default:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100938 // kanji
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 return 17;
940 }
941 }
942
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100943 case DBCS_KORU: // ?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 case DBCS_KOR:
945 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100946 // KS code classification
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 unsigned char c1 = lead;
948 unsigned char c2 = trail;
949
950 /*
951 * 20 : Hangul
952 * 21 : Hanja
953 * 22 : Symbols
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100954 * 23 : Alphanumeric/Roman Letter (Full width)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 * 24 : Hangul Letter(Alphabet)
956 * 25 : Roman Numeral/Greek Letter
957 * 26 : Box Drawings
958 * 27 : Unit Symbols
959 * 28 : Circled/Parenthesized Letter
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200960 * 29 : Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 * 30 : Cyrillic Letter
962 */
963
964 if (c1 >= 0xB0 && c1 <= 0xC8)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100965 // Hangul
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 return 20;
Bram Moolenaar4f974752019-02-17 17:44:42 +0100967#if defined(MSWIN) || defined(WIN32UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 else if (c1 <= 0xA0 || c2 <= 0xA0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100969 // Extended Hangul Region : MS UHC(Unified Hangul Code)
970 // c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
971 // c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 return 20;
973#endif
974
975 else if (c1 >= 0xCA && c1 <= 0xFD)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100976 // Hanja
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 return 21;
978 else switch (c1)
979 {
980 case 0xA1:
981 case 0xA2:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100982 // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 return 22;
984 case 0xA3:
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100985 // Alphanumeric
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 return 23;
987 case 0xA4:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100988 // Hangul Letter(Alphabet)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 return 24;
990 case 0xA5:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100991 // Roman Numeral/Greek Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 return 25;
993 case 0xA6:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100994 // Box Drawings
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 return 26;
996 case 0xA7:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100997 // Unit Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 return 27;
999 case 0xA8:
1000 case 0xA9:
1001 if (c2 <= 0xAF)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001002 return 25; // Roman Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 else if (c2 >= 0xF6)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001004 return 22; // Symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001006 // Circled/Parenthesized Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 return 28;
1008 case 0xAA:
1009 case 0xAB:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001010 // Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 return 29;
1012 case 0xAC:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001013 // Cyrillic Letter
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 return 30;
1015 }
1016 }
1017 default:
1018 break;
1019 }
1020 return 3;
1021}
1022
1023/*
1024 * mb_char2len() function pointer.
1025 * Return length in bytes of character "c".
1026 * Returns 1 for a single-byte character.
1027 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001029latin_char2len(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 return 1;
1032}
1033
1034 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001035dbcs_char2len(
1036 int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037{
1038 if (c >= 0x100)
1039 return 2;
1040 return 1;
1041}
1042
1043/*
1044 * mb_char2bytes() function pointer.
1045 * Convert a character to its bytes.
1046 * Returns the length in bytes.
1047 */
1048 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001049latin_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050{
1051 buf[0] = c;
1052 return 1;
1053}
1054
1055 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001056dbcs_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057{
1058 if (c >= 0x100)
1059 {
1060 buf[0] = (unsigned)c >> 8;
1061 buf[1] = c;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001062 // Never use a NUL byte, it causes lots of trouble. It's an invalid
1063 // character anyway.
Bram Moolenaar217ad922005-03-20 22:37:15 +00001064 if (buf[1] == NUL)
1065 buf[1] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 return 2;
1067 }
1068 buf[0] = c;
1069 return 1;
1070}
1071
1072/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001073 * mb_ptr2len() function pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 * Get byte length of character at "*p" but stop at a NUL.
1075 * For UTF-8 this includes following composing characters.
1076 * Returns 0 when *p is NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 */
1078 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001079latin_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080{
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001081 return MB_BYTE2LEN(*p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082}
1083
1084 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001085dbcs_ptr2len(
1086 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087{
1088 int len;
1089
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001090 // Check if second byte is not missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 len = MB_BYTE2LEN(*p);
1092 if (len == 2 && p[1] == NUL)
1093 len = 1;
1094 return len;
1095}
1096
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001097/*
1098 * mb_ptr2len_len() function pointer.
1099 * Like mb_ptr2len(), but limit to read "size" bytes.
1100 * Returns 0 for an empty string.
1101 * Returns 1 for an illegal char or an incomplete byte sequence.
1102 */
1103 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001104latin_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001105{
1106 if (size < 1 || *p == NUL)
1107 return 0;
1108 return 1;
1109}
1110
1111 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001112dbcs_ptr2len_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001113{
1114 int len;
1115
1116 if (size < 1 || *p == NUL)
1117 return 0;
1118 if (size == 1)
1119 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001120 // Check that second byte is not missing.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001121 len = MB_BYTE2LEN(*p);
1122 if (len == 2 && p[1] == NUL)
1123 len = 1;
1124 return len;
1125}
1126
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127struct interval
1128{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01001129 long first;
1130 long last;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
1133/*
1134 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1135 */
1136 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001137intable(struct interval *table, size_t size, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138{
1139 int mid, bot, top;
1140
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001141 // first quick check for Latin1 etc. characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 if (c < table[0].first)
1143 return FALSE;
1144
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001145 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 bot = 0;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001147 top = (int)(size / sizeof(struct interval) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 while (top >= bot)
1149 {
1150 mid = (bot + top) / 2;
1151 if (table[mid].last < c)
1152 bot = mid + 1;
1153 else if (table[mid].first > c)
1154 top = mid - 1;
1155 else
1156 return TRUE;
1157 }
1158 return FALSE;
1159}
1160
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001161// Sorted list of non-overlapping intervals of East Asian Ambiguous
1162// characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarcb070082016-04-02 22:14:51 +02001163static struct interval ambiguous[] =
1164{
1165 {0x00a1, 0x00a1},
1166 {0x00a4, 0x00a4},
1167 {0x00a7, 0x00a8},
1168 {0x00aa, 0x00aa},
1169 {0x00ad, 0x00ae},
1170 {0x00b0, 0x00b4},
1171 {0x00b6, 0x00ba},
1172 {0x00bc, 0x00bf},
1173 {0x00c6, 0x00c6},
1174 {0x00d0, 0x00d0},
1175 {0x00d7, 0x00d8},
1176 {0x00de, 0x00e1},
1177 {0x00e6, 0x00e6},
1178 {0x00e8, 0x00ea},
1179 {0x00ec, 0x00ed},
1180 {0x00f0, 0x00f0},
1181 {0x00f2, 0x00f3},
1182 {0x00f7, 0x00fa},
1183 {0x00fc, 0x00fc},
1184 {0x00fe, 0x00fe},
1185 {0x0101, 0x0101},
1186 {0x0111, 0x0111},
1187 {0x0113, 0x0113},
1188 {0x011b, 0x011b},
1189 {0x0126, 0x0127},
1190 {0x012b, 0x012b},
1191 {0x0131, 0x0133},
1192 {0x0138, 0x0138},
1193 {0x013f, 0x0142},
1194 {0x0144, 0x0144},
1195 {0x0148, 0x014b},
1196 {0x014d, 0x014d},
1197 {0x0152, 0x0153},
1198 {0x0166, 0x0167},
1199 {0x016b, 0x016b},
1200 {0x01ce, 0x01ce},
1201 {0x01d0, 0x01d0},
1202 {0x01d2, 0x01d2},
1203 {0x01d4, 0x01d4},
1204 {0x01d6, 0x01d6},
1205 {0x01d8, 0x01d8},
1206 {0x01da, 0x01da},
1207 {0x01dc, 0x01dc},
1208 {0x0251, 0x0251},
1209 {0x0261, 0x0261},
1210 {0x02c4, 0x02c4},
1211 {0x02c7, 0x02c7},
1212 {0x02c9, 0x02cb},
1213 {0x02cd, 0x02cd},
1214 {0x02d0, 0x02d0},
1215 {0x02d8, 0x02db},
1216 {0x02dd, 0x02dd},
1217 {0x02df, 0x02df},
1218 {0x0300, 0x036f},
1219 {0x0391, 0x03a1},
1220 {0x03a3, 0x03a9},
1221 {0x03b1, 0x03c1},
1222 {0x03c3, 0x03c9},
1223 {0x0401, 0x0401},
1224 {0x0410, 0x044f},
1225 {0x0451, 0x0451},
1226 {0x2010, 0x2010},
1227 {0x2013, 0x2016},
1228 {0x2018, 0x2019},
1229 {0x201c, 0x201d},
1230 {0x2020, 0x2022},
1231 {0x2024, 0x2027},
1232 {0x2030, 0x2030},
1233 {0x2032, 0x2033},
1234 {0x2035, 0x2035},
1235 {0x203b, 0x203b},
1236 {0x203e, 0x203e},
1237 {0x2074, 0x2074},
1238 {0x207f, 0x207f},
1239 {0x2081, 0x2084},
1240 {0x20ac, 0x20ac},
1241 {0x2103, 0x2103},
1242 {0x2105, 0x2105},
1243 {0x2109, 0x2109},
1244 {0x2113, 0x2113},
1245 {0x2116, 0x2116},
1246 {0x2121, 0x2122},
1247 {0x2126, 0x2126},
1248 {0x212b, 0x212b},
1249 {0x2153, 0x2154},
1250 {0x215b, 0x215e},
1251 {0x2160, 0x216b},
1252 {0x2170, 0x2179},
1253 {0x2189, 0x2189},
1254 {0x2190, 0x2199},
1255 {0x21b8, 0x21b9},
1256 {0x21d2, 0x21d2},
1257 {0x21d4, 0x21d4},
1258 {0x21e7, 0x21e7},
1259 {0x2200, 0x2200},
1260 {0x2202, 0x2203},
1261 {0x2207, 0x2208},
1262 {0x220b, 0x220b},
1263 {0x220f, 0x220f},
1264 {0x2211, 0x2211},
1265 {0x2215, 0x2215},
1266 {0x221a, 0x221a},
1267 {0x221d, 0x2220},
1268 {0x2223, 0x2223},
1269 {0x2225, 0x2225},
1270 {0x2227, 0x222c},
1271 {0x222e, 0x222e},
1272 {0x2234, 0x2237},
1273 {0x223c, 0x223d},
1274 {0x2248, 0x2248},
1275 {0x224c, 0x224c},
1276 {0x2252, 0x2252},
1277 {0x2260, 0x2261},
1278 {0x2264, 0x2267},
1279 {0x226a, 0x226b},
1280 {0x226e, 0x226f},
1281 {0x2282, 0x2283},
1282 {0x2286, 0x2287},
1283 {0x2295, 0x2295},
1284 {0x2299, 0x2299},
1285 {0x22a5, 0x22a5},
1286 {0x22bf, 0x22bf},
1287 {0x2312, 0x2312},
1288 {0x2460, 0x24e9},
1289 {0x24eb, 0x254b},
1290 {0x2550, 0x2573},
1291 {0x2580, 0x258f},
1292 {0x2592, 0x2595},
1293 {0x25a0, 0x25a1},
1294 {0x25a3, 0x25a9},
1295 {0x25b2, 0x25b3},
1296 {0x25b6, 0x25b7},
1297 {0x25bc, 0x25bd},
1298 {0x25c0, 0x25c1},
1299 {0x25c6, 0x25c8},
1300 {0x25cb, 0x25cb},
1301 {0x25ce, 0x25d1},
1302 {0x25e2, 0x25e5},
1303 {0x25ef, 0x25ef},
1304 {0x2605, 0x2606},
1305 {0x2609, 0x2609},
1306 {0x260e, 0x260f},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001307 {0x261c, 0x261c},
1308 {0x261e, 0x261e},
1309 {0x2640, 0x2640},
1310 {0x2642, 0x2642},
1311 {0x2660, 0x2661},
1312 {0x2663, 0x2665},
1313 {0x2667, 0x266a},
1314 {0x266c, 0x266d},
1315 {0x266f, 0x266f},
1316 {0x269e, 0x269f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001317 {0x26bf, 0x26bf},
1318 {0x26c6, 0x26cd},
1319 {0x26cf, 0x26d3},
1320 {0x26d5, 0x26e1},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001321 {0x26e3, 0x26e3},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001322 {0x26e8, 0x26e9},
1323 {0x26eb, 0x26f1},
1324 {0x26f4, 0x26f4},
1325 {0x26f6, 0x26f9},
1326 {0x26fb, 0x26fc},
1327 {0x26fe, 0x26ff},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001328 {0x273d, 0x273d},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001329 {0x2776, 0x277f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001330 {0x2b56, 0x2b59},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001331 {0x3248, 0x324f},
1332 {0xe000, 0xf8ff},
1333 {0xfe00, 0xfe0f},
1334 {0xfffd, 0xfffd},
1335 {0x1f100, 0x1f10a},
1336 {0x1f110, 0x1f12d},
1337 {0x1f130, 0x1f169},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001338 {0x1f170, 0x1f18d},
1339 {0x1f18f, 0x1f190},
1340 {0x1f19b, 0x1f1ac},
Bram Moolenaarcb070082016-04-02 22:14:51 +02001341 {0xe0100, 0xe01ef},
1342 {0xf0000, 0xffffd},
1343 {0x100000, 0x10fffd}
1344};
1345
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001346#if defined(FEAT_TERMINAL) || defined(PROTO)
1347/*
1348 * utf_char2cells() with different argument type for libvterm.
1349 */
1350 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02001351utf_uint2cells(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001352{
Bram Moolenaar6daeef12017-10-15 22:56:49 +02001353 if (c >= 0x100 && utf_iscomposing((int)c))
1354 return 0;
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02001355 return utf_char2cells((int)c);
1356}
1357#endif
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359/*
1360 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1361 * Returns 4 or 6 for an unprintable character.
1362 * Is only correct for characters >= 0x80.
1363 * When p_ambw is "double", return 2 for a character with East Asian Width
1364 * class 'A'(mbiguous).
1365 */
1366 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001367utf_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001369 // Sorted list of non-overlapping intervals of East Asian double width
1370 // characters, generated with ../runtime/tools/unicode.vim.
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001371 static struct interval doublewidth[] =
1372 {
1373 {0x1100, 0x115f},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001374 {0x231a, 0x231b},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001375 {0x2329, 0x232a},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001376 {0x23e9, 0x23ec},
1377 {0x23f0, 0x23f0},
1378 {0x23f3, 0x23f3},
1379 {0x25fd, 0x25fe},
1380 {0x2614, 0x2615},
1381 {0x2648, 0x2653},
1382 {0x267f, 0x267f},
1383 {0x2693, 0x2693},
1384 {0x26a1, 0x26a1},
1385 {0x26aa, 0x26ab},
1386 {0x26bd, 0x26be},
1387 {0x26c4, 0x26c5},
1388 {0x26ce, 0x26ce},
1389 {0x26d4, 0x26d4},
1390 {0x26ea, 0x26ea},
1391 {0x26f2, 0x26f3},
1392 {0x26f5, 0x26f5},
1393 {0x26fa, 0x26fa},
1394 {0x26fd, 0x26fd},
1395 {0x2705, 0x2705},
1396 {0x270a, 0x270b},
1397 {0x2728, 0x2728},
1398 {0x274c, 0x274c},
1399 {0x274e, 0x274e},
1400 {0x2753, 0x2755},
1401 {0x2757, 0x2757},
1402 {0x2795, 0x2797},
1403 {0x27b0, 0x27b0},
1404 {0x27bf, 0x27bf},
1405 {0x2b1b, 0x2b1c},
1406 {0x2b50, 0x2b50},
1407 {0x2b55, 0x2b55},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001408 {0x2e80, 0x2e99},
1409 {0x2e9b, 0x2ef3},
1410 {0x2f00, 0x2fd5},
1411 {0x2ff0, 0x2ffb},
Bram Moolenaarea676722015-01-14 17:40:09 +01001412 {0x3000, 0x303e},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001413 {0x3041, 0x3096},
Bram Moolenaarea676722015-01-14 17:40:09 +01001414 {0x3099, 0x30ff},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02001415 {0x3105, 0x312f},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001416 {0x3131, 0x318e},
Bram Moolenaarea676722015-01-14 17:40:09 +01001417 {0x3190, 0x31ba},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001418 {0x31c0, 0x31e3},
1419 {0x31f0, 0x321e},
1420 {0x3220, 0x3247},
Bram Moolenaar6d718c42019-06-05 22:46:13 +02001421 {0x3250, 0x4dbf},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001422 {0x4e00, 0xa48c},
1423 {0xa490, 0xa4c6},
1424 {0xa960, 0xa97c},
1425 {0xac00, 0xd7a3},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001426 {0xf900, 0xfaff},
1427 {0xfe10, 0xfe19},
1428 {0xfe30, 0xfe52},
1429 {0xfe54, 0xfe66},
1430 {0xfe68, 0xfe6b},
1431 {0xff01, 0xff60},
1432 {0xffe0, 0xffe6},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001433 {0x16fe0, 0x16fe3},
1434 {0x17000, 0x187f7},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001435 {0x18800, 0x18af2},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001436 {0x1b000, 0x1b11e},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001437 {0x1b150, 0x1b152},
1438 {0x1b164, 0x1b167},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001439 {0x1b170, 0x1b2fb},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001440 {0x1f004, 0x1f004},
1441 {0x1f0cf, 0x1f0cf},
1442 {0x1f18e, 0x1f18e},
1443 {0x1f191, 0x1f19a},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001444 {0x1f200, 0x1f202},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001445 {0x1f210, 0x1f23b},
Bram Moolenaard63aff02016-03-21 22:15:30 +01001446 {0x1f240, 0x1f248},
1447 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001448 {0x1f260, 0x1f265},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001449 {0x1f300, 0x1f320},
1450 {0x1f32d, 0x1f335},
1451 {0x1f337, 0x1f37c},
1452 {0x1f37e, 0x1f393},
1453 {0x1f3a0, 0x1f3ca},
1454 {0x1f3cf, 0x1f3d3},
1455 {0x1f3e0, 0x1f3f0},
1456 {0x1f3f4, 0x1f3f4},
1457 {0x1f3f8, 0x1f43e},
1458 {0x1f440, 0x1f440},
1459 {0x1f442, 0x1f4fc},
1460 {0x1f4ff, 0x1f53d},
1461 {0x1f54b, 0x1f54e},
1462 {0x1f550, 0x1f567},
1463 {0x1f57a, 0x1f57a},
1464 {0x1f595, 0x1f596},
1465 {0x1f5a4, 0x1f5a4},
1466 {0x1f5fb, 0x1f64f},
1467 {0x1f680, 0x1f6c5},
1468 {0x1f6cc, 0x1f6cc},
1469 {0x1f6d0, 0x1f6d2},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001470 {0x1f6d5, 0x1f6d5},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02001471 {0x1f6eb, 0x1f6ec},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001472 {0x1f6f4, 0x1f6fa},
1473 {0x1f7e0, 0x1f7eb},
1474 {0x1f90d, 0x1f971},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02001475 {0x1f973, 0x1f976},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02001476 {0x1f97a, 0x1f9a2},
1477 {0x1f9a5, 0x1f9aa},
1478 {0x1f9ae, 0x1f9ca},
1479 {0x1f9cd, 0x1f9ff},
1480 {0x1fa70, 0x1fa73},
1481 {0x1fa78, 0x1fa7a},
1482 {0x1fa80, 0x1fa82},
1483 {0x1fa90, 0x1fa95},
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001484 {0x20000, 0x2fffd},
1485 {0x30000, 0x3fffd}
1486 };
Bram Moolenaarea676722015-01-14 17:40:09 +01001487
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001488 // Sorted list of non-overlapping intervals of Emoji characters that don't
1489 // have ambiguous or double width,
1490 // based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001491 static struct interval emoji_wide[] =
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001492 {
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001493 {0x1f1e6, 0x1f1ff},
Bram Moolenaar383aa842017-06-22 15:27:37 +02001494 {0x1f321, 0x1f321},
1495 {0x1f324, 0x1f32c},
1496 {0x1f336, 0x1f336},
1497 {0x1f37d, 0x1f37d},
1498 {0x1f396, 0x1f397},
1499 {0x1f399, 0x1f39b},
1500 {0x1f39e, 0x1f39f},
1501 {0x1f3cb, 0x1f3ce},
1502 {0x1f3d4, 0x1f3df},
1503 {0x1f3f3, 0x1f3f5},
1504 {0x1f3f7, 0x1f3f7},
1505 {0x1f43f, 0x1f43f},
1506 {0x1f441, 0x1f441},
1507 {0x1f4fd, 0x1f4fd},
1508 {0x1f549, 0x1f54a},
1509 {0x1f56f, 0x1f570},
1510 {0x1f573, 0x1f579},
1511 {0x1f587, 0x1f587},
1512 {0x1f58a, 0x1f58d},
1513 {0x1f590, 0x1f590},
1514 {0x1f5a5, 0x1f5a5},
1515 {0x1f5a8, 0x1f5a8},
1516 {0x1f5b1, 0x1f5b2},
1517 {0x1f5bc, 0x1f5bc},
1518 {0x1f5c2, 0x1f5c4},
1519 {0x1f5d1, 0x1f5d3},
1520 {0x1f5dc, 0x1f5de},
1521 {0x1f5e1, 0x1f5e1},
1522 {0x1f5e3, 0x1f5e3},
1523 {0x1f5e8, 0x1f5e8},
1524 {0x1f5ef, 0x1f5ef},
1525 {0x1f5f3, 0x1f5f3},
1526 {0x1f5fa, 0x1f5fa},
1527 {0x1f6cb, 0x1f6cf},
1528 {0x1f6e0, 0x1f6e5},
1529 {0x1f6e9, 0x1f6e9},
1530 {0x1f6f0, 0x1f6f0},
1531 {0x1f6f3, 0x1f6f3}
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01001532 };
1533
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 if (c >= 0x100)
1535 {
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001536 int n;
1537
1538 n = cw_value(c);
1539 if (n != 0)
1540 return n;
1541
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542#ifdef USE_WCHAR_FUNCTIONS
1543 /*
1544 * Assume the library function wcwidth() works better than our own
1545 * stuff. It should return 1 for ambiguous width chars!
1546 */
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001547 n = wcwidth(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548
1549 if (n < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001550 return 6; // unprintable, displays <xxxx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 if (n > 1)
1552 return n;
1553#else
1554 if (!utf_printable(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001555 return 6; // unprintable, displays <xxxx>
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001556 if (intable(doublewidth, sizeof(doublewidth), c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 return 2;
1558#endif
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02001559 if (p_emoji && intable(emoji_wide, sizeof(emoji_wide), c))
Bram Moolenaar3848e002016-03-19 18:42:29 +01001560 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 }
1562
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001563 // Characters below 0x100 are influenced by 'isprint' option
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 else if (c >= 0x80 && !vim_isprintc(c))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001565 return 4; // unprintable, displays <xx>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566
1567 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1568 return 2;
1569
1570 return 1;
1571}
1572
1573/*
1574 * mb_ptr2cells() function pointer.
1575 * Return the number of display cells character at "*p" occupies.
1576 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1577 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001579latin_ptr2cells(char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580{
1581 return 1;
1582}
1583
1584 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001585utf_ptr2cells(
1586 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587{
1588 int c;
1589
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001590 // Need to convert to a wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 if (*p >= 0x80)
1592 {
1593 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001594 // An illegal byte is displayed as <xx>.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001595 if (utf_ptr2len(p) == 1 || c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001597 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 if (c < 0x80)
1599 return char2cells(c);
1600 return utf_char2cells(c);
1601 }
1602 return 1;
1603}
1604
1605 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001606dbcs_ptr2cells(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001608 // Number of cells is equal to number of bytes, except for euc-jp when
1609 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1611 return 1;
1612 return MB_BYTE2LEN(*p);
1613}
1614
1615/*
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001616 * mb_ptr2cells_len() function pointer.
1617 * Like mb_ptr2cells(), but limit string length to "size".
1618 * For an empty string or truncated character returns 1.
1619 */
1620 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001621latin_ptr2cells_len(char_u *p UNUSED, int size UNUSED)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001622{
1623 return 1;
1624}
1625
1626 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001627utf_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001628{
1629 int c;
1630
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001631 // Need to convert to a wide character.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001632 if (size > 0 && *p >= 0x80)
1633 {
1634 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001635 return 1; // truncated
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001636 c = utf_ptr2char(p);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001637 // An illegal byte is displayed as <xx>.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001638 if (utf_ptr2len(p) == 1 || c == NUL)
1639 return 4;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001640 // If the char is ASCII it must be an overlong sequence.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001641 if (c < 0x80)
1642 return char2cells(c);
1643 return utf_char2cells(c);
1644 }
1645 return 1;
1646}
1647
1648 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001649dbcs_ptr2cells_len(char_u *p, int size)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001650{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001651 // Number of cells is equal to number of bytes, except for euc-jp when
1652 // the first byte is 0x8e.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001653 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1654 return 1;
1655 return MB_BYTE2LEN(*p);
1656}
1657
1658/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 * mb_char2cells() function pointer.
1660 * Return the number of display cells character "c" occupies.
1661 * Only takes care of multi-byte chars, not "^C" and such.
1662 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001664latin_char2cells(int c UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665{
1666 return 1;
1667}
1668
1669 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001670dbcs_char2cells(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001672 // Number of cells is equal to number of bytes, except for euc-jp when
1673 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1675 return 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001676 // use the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 return MB_BYTE2LEN((unsigned)c >> 8);
1678}
1679
1680/*
Bram Moolenaar72597a52010-07-18 15:31:08 +02001681 * Return the number of cells occupied by string "p".
1682 * Stop at a NUL character. When "len" >= 0 stop at character "p[len]".
1683 */
1684 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001685mb_string2cells(char_u *p, int len)
Bram Moolenaar72597a52010-07-18 15:31:08 +02001686{
1687 int i;
1688 int clen = 0;
1689
1690 for (i = 0; (len < 0 || i < len) && p[i] != NUL; i += (*mb_ptr2len)(p + i))
1691 clen += (*mb_ptr2cells)(p + i);
1692 return clen;
1693}
1694
1695/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 * mb_off2cells() function pointer.
1697 * Return number of display cells for char at ScreenLines[off].
Bram Moolenaar367329b2007-08-30 11:53:22 +00001698 * We make sure that the offset used is less than "max_off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001701latin_off2cells(unsigned off UNUSED, unsigned max_off UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702{
1703 return 1;
1704}
1705
1706 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001707dbcs_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001709 // never check beyond end of the line
Bram Moolenaar367329b2007-08-30 11:53:22 +00001710 if (off >= max_off)
1711 return 1;
1712
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001713 // Number of cells is equal to number of bytes, except for euc-jp when
1714 // the first byte is 0x8e.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1716 return 1;
1717 return MB_BYTE2LEN(ScreenLines[off]);
1718}
1719
1720 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001721utf_off2cells(unsigned off, unsigned max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
Bram Moolenaar367329b2007-08-30 11:53:22 +00001723 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724}
1725
1726/*
1727 * mb_ptr2char() function pointer.
1728 * Convert a byte sequence into a character.
1729 */
1730 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001731latin_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732{
1733 return *p;
1734}
1735
1736 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001737dbcs_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738{
1739 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1740 return (p[0] << 8) + p[1];
1741 return *p;
1742}
1743
1744/*
1745 * Convert a UTF-8 byte sequence to a wide character.
1746 * If the sequence is illegal or truncated by a NUL the first byte is
1747 * returned.
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01001748 * For an overlong sequence this may return zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 * Does not include composing characters, of course.
1750 */
1751 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001752utf_ptr2char(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753{
1754 int len;
1755
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001756 if (p[0] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 return p[0];
1758
Bram Moolenaar24397332009-12-02 14:02:39 +00001759 len = utf8len_tab_zero[p[0]];
Bram Moolenaar89bf0922008-06-29 14:16:06 +00001760 if (len > 1 && (p[1] & 0xc0) == 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 {
1762 if (len == 2)
1763 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1764 if ((p[2] & 0xc0) == 0x80)
1765 {
1766 if (len == 3)
1767 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1768 + (p[2] & 0x3f);
1769 if ((p[3] & 0xc0) == 0x80)
1770 {
1771 if (len == 4)
1772 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1773 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1774 if ((p[4] & 0xc0) == 0x80)
1775 {
1776 if (len == 5)
1777 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1778 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1779 + (p[4] & 0x3f);
1780 if ((p[5] & 0xc0) == 0x80 && len == 6)
1781 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1782 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1783 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1784 }
1785 }
1786 }
1787 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001788 // Illegal value, just return the first byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 return p[0];
1790}
1791
1792/*
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001793 * Convert a UTF-8 byte sequence to a wide character.
1794 * String is assumed to be terminated by NUL or after "n" bytes, whichever
1795 * comes first.
1796 * The function is safe in the sense that it never accesses memory beyond the
1797 * first "n" bytes of "s".
1798 *
1799 * On success, returns decoded codepoint, advances "s" to the beginning of
1800 * next character and decreases "n" accordingly.
1801 *
1802 * If end of string was reached, returns 0 and, if "n" > 0, advances "s" past
1803 * NUL byte.
1804 *
1805 * If byte sequence is illegal or incomplete, returns -1 and does not advance
1806 * "s".
1807 */
1808 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001809utf_safe_read_char_adv(char_u **s, size_t *n)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001810{
1811 int c, k;
1812
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001813 if (*n == 0) // end of buffer
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001814 return 0;
1815
1816 k = utf8len_tab_zero[**s];
1817
1818 if (k == 1)
1819 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001820 // ASCII character or NUL
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001821 (*n)--;
1822 return *(*s)++;
1823 }
1824
1825 if ((size_t)k <= *n)
1826 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001827 // We have a multibyte sequence and it isn't truncated by buffer
1828 // limits so utf_ptr2char() is safe to use. Or the first byte is
1829 // illegal (k=0), and it's also safe to use utf_ptr2char().
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001830 c = utf_ptr2char(*s);
1831
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001832 // On failure, utf_ptr2char() returns the first byte, so here we
1833 // check equality with the first byte. The only non-ASCII character
1834 // which equals the first byte of its own UTF-8 representation is
1835 // U+00C3 (UTF-8: 0xC3 0x83), so need to check that special case too.
1836 // It's safe even if n=1, else we would have k=2 > n.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001837 if (c != (int)(**s) || (c == 0xC3 && (*s)[1] == 0x83))
1838 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001839 // byte sequence was successfully decoded
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001840 *s += k;
1841 *n -= k;
1842 return c;
1843 }
1844 }
1845
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001846 // byte sequence is incomplete or illegal
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001847 return -1;
1848}
1849
1850/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 * Get character at **pp and advance *pp to the next character.
1852 * Note: composing characters are skipped!
1853 */
1854 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001855mb_ptr2char_adv(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 int c;
1858
1859 c = (*mb_ptr2char)(*pp);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001860 *pp += (*mb_ptr2len)(*pp);
1861 return c;
1862}
1863
1864/*
1865 * Get character at **pp and advance *pp to the next character.
1866 * Note: composing characters are returned as separate characters.
1867 */
1868 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001869mb_cptr2char_adv(char_u **pp)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001870{
1871 int c;
1872
1873 c = (*mb_ptr2char)(*pp);
1874 if (enc_utf8)
1875 *pp += utf_ptr2len(*pp);
1876 else
1877 *pp += (*mb_ptr2len)(*pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 return c;
1879}
1880
1881#if defined(FEAT_ARABIC) || defined(PROTO)
1882/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 * Check if the character pointed to by "p2" is a composing character when it
1884 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1885 * behaves like a composing character.
1886 */
1887 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001888utf_composinglike(char_u *p1, char_u *p2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889{
1890 int c2;
1891
1892 c2 = utf_ptr2char(p2);
1893 if (utf_iscomposing(c2))
1894 return TRUE;
1895 if (!arabic_maycombine(c2))
1896 return FALSE;
1897 return arabic_combine(utf_ptr2char(p1), c2);
1898}
1899#endif
1900
1901/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001902 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 * composing characters.
1904 */
1905 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001906utfc_ptr2char(
1907 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001908 int *pcc) // return: composing chars, last one is 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909{
1910 int len;
1911 int c;
1912 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001913 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914
1915 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001916 len = utf_ptr2len(p);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001917
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001918 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 if ((len > 1 || *p < 0x80)
1920 && p[len] >= 0x80
1921 && UTF_COMPOSINGLIKE(p, p + len))
1922 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001923 cc = utf_ptr2char(p + len);
1924 for (;;)
1925 {
1926 pcc[i++] = cc;
1927 if (i == MAX_MCO)
1928 break;
1929 len += utf_ptr2len(p + len);
1930 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1931 break;
1932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001934
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001935 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001936 pcc[i] = 0;
1937
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 return c;
1939}
1940
1941/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001942 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 * composing characters. Use no more than p[maxlen].
1944 */
1945 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001946utfc_ptr2char_len(
1947 char_u *p,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001948 int *pcc, // return: composing chars, last one is 0
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001949 int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950{
1951 int len;
1952 int c;
1953 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001954 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955
1956 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001957 len = utf_ptr2len_len(p, maxlen);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001958 // Only accept a composing char when the first char isn't illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 if ((len > 1 || *p < 0x80)
1960 && len < maxlen
1961 && p[len] >= 0x80
1962 && UTF_COMPOSINGLIKE(p, p + len))
1963 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001964 cc = utf_ptr2char(p + len);
1965 for (;;)
1966 {
1967 pcc[i++] = cc;
1968 if (i == MAX_MCO)
1969 break;
1970 len += utf_ptr2len_len(p + len, maxlen - len);
1971 if (len >= maxlen
1972 || p[len] < 0x80
1973 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1974 break;
1975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001977
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001978 if (i < MAX_MCO) // last composing char must be 0
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001979 pcc[i] = 0;
1980
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 return c;
1982}
1983
1984/*
1985 * Convert the character at screen position "off" to a sequence of bytes.
1986 * Includes the composing characters.
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001987 * "buf" must at least have the length MB_MAXBYTES + 1.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02001988 * Only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 * Returns the produced number of bytes.
1990 */
1991 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001992utfc_char2bytes(int off, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993{
1994 int len;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001995 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996
1997 len = utf_char2bytes(ScreenLinesUC[off], buf);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001998 for (i = 0; i < Screen_mco; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002000 if (ScreenLinesC[i][off] == 0)
2001 break;
2002 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 }
2004 return len;
2005}
2006
2007/*
2008 * Get the length of a UTF-8 byte sequence, not including any following
2009 * composing characters.
2010 * Returns 0 for "".
2011 * Returns 1 for an illegal byte sequence.
2012 */
2013 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002014utf_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015{
2016 int len;
2017 int i;
2018
2019 if (*p == NUL)
2020 return 0;
2021 len = utf8len_tab[*p];
2022 for (i = 1; i < len; ++i)
2023 if ((p[i] & 0xc0) != 0x80)
2024 return 1;
2025 return len;
2026}
2027
2028/*
2029 * Return length of UTF-8 character, obtained from the first byte.
2030 * "b" must be between 0 and 255!
Bram Moolenaar24397332009-12-02 14:02:39 +00002031 * Returns 1 for an invalid first byte value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 */
2033 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002034utf_byte2len(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035{
2036 return utf8len_tab[b];
2037}
2038
2039/*
2040 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
2041 * following composing characters.
2042 * Returns 1 for "".
Bram Moolenaarc048f672008-01-04 16:47:25 +00002043 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 * Returns number > "size" for an incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002045 * Never returns zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 */
2047 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002048utf_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049{
2050 int len;
2051 int i;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002052 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053
Bram Moolenaar24397332009-12-02 14:02:39 +00002054 len = utf8len_tab[*p];
2055 if (len == 1)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002056 return 1; // NUL, ascii or illegal lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (len > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002058 m = size; // incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002059 else
2060 m = len;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002061 for (i = 1; i < m; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 if ((p[i] & 0xc0) != 0x80)
2063 return 1;
2064 return len;
2065}
2066
2067/*
2068 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
2069 * This includes following composing characters.
2070 */
2071 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002072utfc_ptr2len(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073{
2074 int len;
Bram Moolenaarc669e662005-06-08 22:00:03 +00002075 int b0 = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076#ifdef FEAT_ARABIC
2077 int prevlen;
2078#endif
2079
Bram Moolenaarc669e662005-06-08 22:00:03 +00002080 if (b0 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002082 if (b0 < 0x80 && p[1] < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 return 1;
2084
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002085 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002086 len = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002088 // Check for illegal byte.
Bram Moolenaarc669e662005-06-08 22:00:03 +00002089 if (len == 1 && b0 >= 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 return 1;
2091
2092 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002093 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 * skip all of them (otherwise the cursor would get stuck).
2095 */
2096#ifdef FEAT_ARABIC
2097 prevlen = 0;
2098#endif
2099 for (;;)
2100 {
2101 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
2102 return len;
2103
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002104 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105#ifdef FEAT_ARABIC
2106 prevlen = len;
2107#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002108 len += utf_ptr2len(p + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 }
2110}
2111
2112/*
2113 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
2114 * takes. This includes following composing characters.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002115 * Returns 0 for an empty string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 * Returns 1 for an illegal char or an incomplete byte sequence.
2117 */
2118 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002119utfc_ptr2len_len(char_u *p, int size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120{
2121 int len;
2122#ifdef FEAT_ARABIC
2123 int prevlen;
2124#endif
2125
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002126 if (size < 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 return 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002128 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 return 1;
2130
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002131 // Skip over first UTF-8 char, stopping at a NUL byte.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002132 len = utf_ptr2len_len(p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002134 // Check for illegal byte and incomplete byte sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if ((len == 1 && p[0] >= 0x80) || len > size)
2136 return 1;
2137
2138 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002139 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 * skip all of them (otherwise the cursor would get stuck).
2141 */
2142#ifdef FEAT_ARABIC
2143 prevlen = 0;
2144#endif
2145 while (len < size)
2146 {
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002147 int len_next_char;
2148
2149 if (p[len] < 0x80)
2150 break;
2151
2152 /*
2153 * Next character length should not go beyond size to ensure that
2154 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2155 */
2156 len_next_char = utf_ptr2len_len(p + len, size - len);
2157 if (len_next_char > size - len)
2158 break;
2159
2160 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 break;
2162
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002163 // Skip over composing char
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164#ifdef FEAT_ARABIC
2165 prevlen = len;
2166#endif
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002167 len += len_next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 }
2169 return len;
2170}
2171
2172/*
2173 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2174 * This does not include composing characters.
2175 */
2176 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002177utf_char2len(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178{
2179 if (c < 0x80)
2180 return 1;
2181 if (c < 0x800)
2182 return 2;
2183 if (c < 0x10000)
2184 return 3;
2185 if (c < 0x200000)
2186 return 4;
2187 if (c < 0x4000000)
2188 return 5;
2189 return 6;
2190}
2191
2192/*
2193 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2194 * Returns the number of bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 */
2196 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002197utf_char2bytes(int c, char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002199 if (c < 0x80) // 7 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 {
2201 buf[0] = c;
2202 return 1;
2203 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002204 if (c < 0x800) // 11 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 {
2206 buf[0] = 0xc0 + ((unsigned)c >> 6);
2207 buf[1] = 0x80 + (c & 0x3f);
2208 return 2;
2209 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002210 if (c < 0x10000) // 16 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 {
2212 buf[0] = 0xe0 + ((unsigned)c >> 12);
2213 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2214 buf[2] = 0x80 + (c & 0x3f);
2215 return 3;
2216 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002217 if (c < 0x200000) // 21 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 {
2219 buf[0] = 0xf0 + ((unsigned)c >> 18);
2220 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2221 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2222 buf[3] = 0x80 + (c & 0x3f);
2223 return 4;
2224 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002225 if (c < 0x4000000) // 26 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 {
2227 buf[0] = 0xf8 + ((unsigned)c >> 24);
2228 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2229 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2230 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2231 buf[4] = 0x80 + (c & 0x3f);
2232 return 5;
2233 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002234 // 31 bits
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 buf[0] = 0xfc + ((unsigned)c >> 30);
2236 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2237 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2238 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2239 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2240 buf[5] = 0x80 + (c & 0x3f);
2241 return 6;
2242}
2243
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002244#if defined(FEAT_TERMINAL) || defined(PROTO)
2245/*
2246 * utf_iscomposing() with different argument type for libvterm.
2247 */
2248 int
Bram Moolenaarb47a2592017-08-30 13:22:28 +02002249utf_iscomposing_uint(UINT32_T c)
Bram Moolenaar6d0826d2017-08-22 22:12:17 +02002250{
2251 return utf_iscomposing((int)c);
2252}
2253#endif
2254
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255/*
2256 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2257 * drawn on top of the preceding character.
2258 * Based on code from Markus Kuhn.
2259 */
2260 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002261utf_iscomposing(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002263 // Sorted list of non-overlapping intervals.
2264 // Generated by ../runtime/tools/unicode.vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 static struct interval combining[] =
2266 {
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002267 {0x0300, 0x036f},
2268 {0x0483, 0x0489},
2269 {0x0591, 0x05bd},
2270 {0x05bf, 0x05bf},
2271 {0x05c1, 0x05c2},
2272 {0x05c4, 0x05c5},
2273 {0x05c7, 0x05c7},
2274 {0x0610, 0x061a},
Bram Moolenaarea676722015-01-14 17:40:09 +01002275 {0x064b, 0x065f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002276 {0x0670, 0x0670},
2277 {0x06d6, 0x06dc},
Bram Moolenaarea676722015-01-14 17:40:09 +01002278 {0x06df, 0x06e4},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002279 {0x06e7, 0x06e8},
2280 {0x06ea, 0x06ed},
2281 {0x0711, 0x0711},
2282 {0x0730, 0x074a},
2283 {0x07a6, 0x07b0},
2284 {0x07eb, 0x07f3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002285 {0x07fd, 0x07fd},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002286 {0x0816, 0x0819},
2287 {0x081b, 0x0823},
2288 {0x0825, 0x0827},
2289 {0x0829, 0x082d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002290 {0x0859, 0x085b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002291 {0x08d3, 0x08e1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002292 {0x08e3, 0x0903},
Bram Moolenaarea676722015-01-14 17:40:09 +01002293 {0x093a, 0x093c},
2294 {0x093e, 0x094f},
2295 {0x0951, 0x0957},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002296 {0x0962, 0x0963},
2297 {0x0981, 0x0983},
2298 {0x09bc, 0x09bc},
2299 {0x09be, 0x09c4},
2300 {0x09c7, 0x09c8},
2301 {0x09cb, 0x09cd},
2302 {0x09d7, 0x09d7},
2303 {0x09e2, 0x09e3},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002304 {0x09fe, 0x09fe},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002305 {0x0a01, 0x0a03},
2306 {0x0a3c, 0x0a3c},
2307 {0x0a3e, 0x0a42},
2308 {0x0a47, 0x0a48},
2309 {0x0a4b, 0x0a4d},
2310 {0x0a51, 0x0a51},
2311 {0x0a70, 0x0a71},
2312 {0x0a75, 0x0a75},
2313 {0x0a81, 0x0a83},
2314 {0x0abc, 0x0abc},
2315 {0x0abe, 0x0ac5},
2316 {0x0ac7, 0x0ac9},
2317 {0x0acb, 0x0acd},
2318 {0x0ae2, 0x0ae3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002319 {0x0afa, 0x0aff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002320 {0x0b01, 0x0b03},
2321 {0x0b3c, 0x0b3c},
2322 {0x0b3e, 0x0b44},
2323 {0x0b47, 0x0b48},
2324 {0x0b4b, 0x0b4d},
2325 {0x0b56, 0x0b57},
2326 {0x0b62, 0x0b63},
2327 {0x0b82, 0x0b82},
2328 {0x0bbe, 0x0bc2},
2329 {0x0bc6, 0x0bc8},
2330 {0x0bca, 0x0bcd},
2331 {0x0bd7, 0x0bd7},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002332 {0x0c00, 0x0c04},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002333 {0x0c3e, 0x0c44},
2334 {0x0c46, 0x0c48},
2335 {0x0c4a, 0x0c4d},
2336 {0x0c55, 0x0c56},
2337 {0x0c62, 0x0c63},
Bram Moolenaarea676722015-01-14 17:40:09 +01002338 {0x0c81, 0x0c83},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002339 {0x0cbc, 0x0cbc},
2340 {0x0cbe, 0x0cc4},
2341 {0x0cc6, 0x0cc8},
2342 {0x0cca, 0x0ccd},
2343 {0x0cd5, 0x0cd6},
2344 {0x0ce2, 0x0ce3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002345 {0x0d00, 0x0d03},
2346 {0x0d3b, 0x0d3c},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002347 {0x0d3e, 0x0d44},
2348 {0x0d46, 0x0d48},
2349 {0x0d4a, 0x0d4d},
2350 {0x0d57, 0x0d57},
2351 {0x0d62, 0x0d63},
2352 {0x0d82, 0x0d83},
2353 {0x0dca, 0x0dca},
2354 {0x0dcf, 0x0dd4},
2355 {0x0dd6, 0x0dd6},
2356 {0x0dd8, 0x0ddf},
2357 {0x0df2, 0x0df3},
2358 {0x0e31, 0x0e31},
2359 {0x0e34, 0x0e3a},
2360 {0x0e47, 0x0e4e},
2361 {0x0eb1, 0x0eb1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002362 {0x0eb4, 0x0ebc},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002363 {0x0ec8, 0x0ecd},
2364 {0x0f18, 0x0f19},
2365 {0x0f35, 0x0f35},
2366 {0x0f37, 0x0f37},
2367 {0x0f39, 0x0f39},
2368 {0x0f3e, 0x0f3f},
2369 {0x0f71, 0x0f84},
2370 {0x0f86, 0x0f87},
Bram Moolenaarea676722015-01-14 17:40:09 +01002371 {0x0f8d, 0x0f97},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002372 {0x0f99, 0x0fbc},
2373 {0x0fc6, 0x0fc6},
2374 {0x102b, 0x103e},
2375 {0x1056, 0x1059},
2376 {0x105e, 0x1060},
2377 {0x1062, 0x1064},
2378 {0x1067, 0x106d},
2379 {0x1071, 0x1074},
2380 {0x1082, 0x108d},
2381 {0x108f, 0x108f},
2382 {0x109a, 0x109d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002383 {0x135d, 0x135f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002384 {0x1712, 0x1714},
2385 {0x1732, 0x1734},
2386 {0x1752, 0x1753},
2387 {0x1772, 0x1773},
Bram Moolenaarea676722015-01-14 17:40:09 +01002388 {0x17b4, 0x17d3},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002389 {0x17dd, 0x17dd},
2390 {0x180b, 0x180d},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002391 {0x1885, 0x1886},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002392 {0x18a9, 0x18a9},
2393 {0x1920, 0x192b},
2394 {0x1930, 0x193b},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002395 {0x1a17, 0x1a1b},
2396 {0x1a55, 0x1a5e},
2397 {0x1a60, 0x1a7c},
2398 {0x1a7f, 0x1a7f},
Bram Moolenaarea676722015-01-14 17:40:09 +01002399 {0x1ab0, 0x1abe},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002400 {0x1b00, 0x1b04},
2401 {0x1b34, 0x1b44},
2402 {0x1b6b, 0x1b73},
2403 {0x1b80, 0x1b82},
Bram Moolenaarea676722015-01-14 17:40:09 +01002404 {0x1ba1, 0x1bad},
2405 {0x1be6, 0x1bf3},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002406 {0x1c24, 0x1c37},
2407 {0x1cd0, 0x1cd2},
2408 {0x1cd4, 0x1ce8},
2409 {0x1ced, 0x1ced},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002410 {0x1cf4, 0x1cf4},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002411 {0x1cf7, 0x1cf9},
2412 {0x1dc0, 0x1df9},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002413 {0x1dfb, 0x1dff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002414 {0x20d0, 0x20f0},
2415 {0x2cef, 0x2cf1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002416 {0x2d7f, 0x2d7f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002417 {0x2de0, 0x2dff},
2418 {0x302a, 0x302f},
2419 {0x3099, 0x309a},
2420 {0xa66f, 0xa672},
Bram Moolenaarea676722015-01-14 17:40:09 +01002421 {0xa674, 0xa67d},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002422 {0xa69e, 0xa69f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002423 {0xa6f0, 0xa6f1},
2424 {0xa802, 0xa802},
2425 {0xa806, 0xa806},
2426 {0xa80b, 0xa80b},
2427 {0xa823, 0xa827},
2428 {0xa880, 0xa881},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002429 {0xa8b4, 0xa8c5},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002430 {0xa8e0, 0xa8f1},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002431 {0xa8ff, 0xa8ff},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002432 {0xa926, 0xa92d},
2433 {0xa947, 0xa953},
2434 {0xa980, 0xa983},
2435 {0xa9b3, 0xa9c0},
Bram Moolenaarea676722015-01-14 17:40:09 +01002436 {0xa9e5, 0xa9e5},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002437 {0xaa29, 0xaa36},
2438 {0xaa43, 0xaa43},
2439 {0xaa4c, 0xaa4d},
Bram Moolenaarea676722015-01-14 17:40:09 +01002440 {0xaa7b, 0xaa7d},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002441 {0xaab0, 0xaab0},
2442 {0xaab2, 0xaab4},
2443 {0xaab7, 0xaab8},
2444 {0xaabe, 0xaabf},
2445 {0xaac1, 0xaac1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002446 {0xaaeb, 0xaaef},
2447 {0xaaf5, 0xaaf6},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002448 {0xabe3, 0xabea},
2449 {0xabec, 0xabed},
2450 {0xfb1e, 0xfb1e},
2451 {0xfe00, 0xfe0f},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002452 {0xfe20, 0xfe2f},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002453 {0x101fd, 0x101fd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002454 {0x102e0, 0x102e0},
2455 {0x10376, 0x1037a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002456 {0x10a01, 0x10a03},
2457 {0x10a05, 0x10a06},
2458 {0x10a0c, 0x10a0f},
2459 {0x10a38, 0x10a3a},
2460 {0x10a3f, 0x10a3f},
Bram Moolenaarea676722015-01-14 17:40:09 +01002461 {0x10ae5, 0x10ae6},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002462 {0x10d24, 0x10d27},
2463 {0x10f46, 0x10f50},
Bram Moolenaarea676722015-01-14 17:40:09 +01002464 {0x11000, 0x11002},
2465 {0x11038, 0x11046},
2466 {0x1107f, 0x11082},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002467 {0x110b0, 0x110ba},
Bram Moolenaarea676722015-01-14 17:40:09 +01002468 {0x11100, 0x11102},
2469 {0x11127, 0x11134},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002470 {0x11145, 0x11146},
Bram Moolenaarea676722015-01-14 17:40:09 +01002471 {0x11173, 0x11173},
2472 {0x11180, 0x11182},
2473 {0x111b3, 0x111c0},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002474 {0x111c9, 0x111cc},
Bram Moolenaarea676722015-01-14 17:40:09 +01002475 {0x1122c, 0x11237},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002476 {0x1123e, 0x1123e},
Bram Moolenaarea676722015-01-14 17:40:09 +01002477 {0x112df, 0x112ea},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002478 {0x11300, 0x11303},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002479 {0x1133b, 0x1133c},
Bram Moolenaarea676722015-01-14 17:40:09 +01002480 {0x1133e, 0x11344},
2481 {0x11347, 0x11348},
2482 {0x1134b, 0x1134d},
2483 {0x11357, 0x11357},
2484 {0x11362, 0x11363},
2485 {0x11366, 0x1136c},
2486 {0x11370, 0x11374},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002487 {0x11435, 0x11446},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002488 {0x1145e, 0x1145e},
Bram Moolenaarea676722015-01-14 17:40:09 +01002489 {0x114b0, 0x114c3},
2490 {0x115af, 0x115b5},
2491 {0x115b8, 0x115c0},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002492 {0x115dc, 0x115dd},
Bram Moolenaarea676722015-01-14 17:40:09 +01002493 {0x11630, 0x11640},
2494 {0x116ab, 0x116b7},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002495 {0x1171d, 0x1172b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002496 {0x1182c, 0x1183a},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002497 {0x119d1, 0x119d7},
2498 {0x119da, 0x119e0},
2499 {0x119e4, 0x119e4},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002500 {0x11a01, 0x11a0a},
2501 {0x11a33, 0x11a39},
2502 {0x11a3b, 0x11a3e},
2503 {0x11a47, 0x11a47},
2504 {0x11a51, 0x11a5b},
2505 {0x11a8a, 0x11a99},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002506 {0x11c2f, 0x11c36},
2507 {0x11c38, 0x11c3f},
2508 {0x11c92, 0x11ca7},
2509 {0x11ca9, 0x11cb6},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002510 {0x11d31, 0x11d36},
2511 {0x11d3a, 0x11d3a},
2512 {0x11d3c, 0x11d3d},
2513 {0x11d3f, 0x11d45},
2514 {0x11d47, 0x11d47},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002515 {0x11d8a, 0x11d8e},
2516 {0x11d90, 0x11d91},
2517 {0x11d93, 0x11d97},
2518 {0x11ef3, 0x11ef6},
Bram Moolenaarea676722015-01-14 17:40:09 +01002519 {0x16af0, 0x16af4},
2520 {0x16b30, 0x16b36},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002521 {0x16f4f, 0x16f4f},
2522 {0x16f51, 0x16f87},
Bram Moolenaarea676722015-01-14 17:40:09 +01002523 {0x16f8f, 0x16f92},
2524 {0x1bc9d, 0x1bc9e},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002525 {0x1d165, 0x1d169},
2526 {0x1d16d, 0x1d172},
2527 {0x1d17b, 0x1d182},
2528 {0x1d185, 0x1d18b},
2529 {0x1d1aa, 0x1d1ad},
2530 {0x1d242, 0x1d244},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002531 {0x1da00, 0x1da36},
2532 {0x1da3b, 0x1da6c},
2533 {0x1da75, 0x1da75},
2534 {0x1da84, 0x1da84},
2535 {0x1da9b, 0x1da9f},
2536 {0x1daa1, 0x1daaf},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002537 {0x1e000, 0x1e006},
2538 {0x1e008, 0x1e018},
2539 {0x1e01b, 0x1e021},
2540 {0x1e023, 0x1e024},
2541 {0x1e026, 0x1e02a},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02002542 {0x1e130, 0x1e136},
2543 {0x1e2ec, 0x1e2ef},
Bram Moolenaarea676722015-01-14 17:40:09 +01002544 {0x1e8d0, 0x1e8d6},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002545 {0x1e944, 0x1e94a},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002546 {0xe0100, 0xe01ef}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 };
2548
2549 return intable(combining, sizeof(combining), c);
2550}
2551
2552/*
2553 * Return TRUE for characters that can be displayed in a normal way.
2554 * Only for characters of 0x100 and above!
2555 */
2556 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002557utf_printable(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558{
2559#ifdef USE_WCHAR_FUNCTIONS
2560 /*
2561 * Assume the iswprint() library function works better than our own stuff.
2562 */
2563 return iswprint(c);
2564#else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002565 // Sorted list of non-overlapping intervals.
2566 // 0xd800-0xdfff is reserved for UTF-16, actually illegal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 static struct interval nonprint[] =
2568 {
2569 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2570 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2571 {0xfffe, 0xffff}
2572 };
2573
2574 return !intable(nonprint, sizeof(nonprint), c);
2575#endif
2576}
2577
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002578// Sorted list of non-overlapping intervals of all Emoji characters,
2579// based on http://unicode.org/emoji/charts/emoji-list.html
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002580// Generated by ../runtime/tools/unicode.vim.
2581// Excludes 0x00a9 and 0x00ae because they are considered latin1.
Bram Moolenaarcb070082016-04-02 22:14:51 +02002582static struct interval emoji_all[] =
2583{
2584 {0x203c, 0x203c},
2585 {0x2049, 0x2049},
2586 {0x2122, 0x2122},
2587 {0x2139, 0x2139},
2588 {0x2194, 0x2199},
2589 {0x21a9, 0x21aa},
2590 {0x231a, 0x231b},
2591 {0x2328, 0x2328},
2592 {0x23cf, 0x23cf},
2593 {0x23e9, 0x23f3},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002594 {0x23f8, 0x23fa},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002595 {0x24c2, 0x24c2},
2596 {0x25aa, 0x25ab},
2597 {0x25b6, 0x25b6},
2598 {0x25c0, 0x25c0},
2599 {0x25fb, 0x25fe},
2600 {0x2600, 0x2604},
2601 {0x260e, 0x260e},
2602 {0x2611, 0x2611},
2603 {0x2614, 0x2615},
2604 {0x2618, 0x2618},
2605 {0x261d, 0x261d},
2606 {0x2620, 0x2620},
2607 {0x2622, 0x2623},
2608 {0x2626, 0x2626},
2609 {0x262a, 0x262a},
2610 {0x262e, 0x262f},
2611 {0x2638, 0x263a},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002612 {0x2640, 0x2640},
2613 {0x2642, 0x2642},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002614 {0x2648, 0x2653},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002615 {0x265f, 0x2660},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002616 {0x2663, 0x2663},
2617 {0x2665, 0x2666},
2618 {0x2668, 0x2668},
2619 {0x267b, 0x267b},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002620 {0x267e, 0x267f},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002621 {0x2692, 0x2697},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002622 {0x2699, 0x2699},
2623 {0x269b, 0x269c},
2624 {0x26a0, 0x26a1},
2625 {0x26aa, 0x26ab},
2626 {0x26b0, 0x26b1},
2627 {0x26bd, 0x26be},
2628 {0x26c4, 0x26c5},
2629 {0x26c8, 0x26c8},
2630 {0x26ce, 0x26cf},
2631 {0x26d1, 0x26d1},
2632 {0x26d3, 0x26d4},
2633 {0x26e9, 0x26ea},
2634 {0x26f0, 0x26f5},
2635 {0x26f7, 0x26fa},
2636 {0x26fd, 0x26fd},
2637 {0x2702, 0x2702},
2638 {0x2705, 0x2705},
2639 {0x2708, 0x270d},
2640 {0x270f, 0x270f},
2641 {0x2712, 0x2712},
2642 {0x2714, 0x2714},
2643 {0x2716, 0x2716},
2644 {0x271d, 0x271d},
2645 {0x2721, 0x2721},
2646 {0x2728, 0x2728},
2647 {0x2733, 0x2734},
2648 {0x2744, 0x2744},
2649 {0x2747, 0x2747},
2650 {0x274c, 0x274c},
2651 {0x274e, 0x274e},
2652 {0x2753, 0x2755},
2653 {0x2757, 0x2757},
2654 {0x2763, 0x2764},
2655 {0x2795, 0x2797},
2656 {0x27a1, 0x27a1},
2657 {0x27b0, 0x27b0},
2658 {0x27bf, 0x27bf},
2659 {0x2934, 0x2935},
2660 {0x2b05, 0x2b07},
2661 {0x2b1b, 0x2b1c},
2662 {0x2b50, 0x2b50},
2663 {0x2b55, 0x2b55},
2664 {0x3030, 0x3030},
2665 {0x303d, 0x303d},
2666 {0x3297, 0x3297},
2667 {0x3299, 0x3299},
2668 {0x1f004, 0x1f004},
2669 {0x1f0cf, 0x1f0cf},
2670 {0x1f170, 0x1f171},
2671 {0x1f17e, 0x1f17f},
2672 {0x1f18e, 0x1f18e},
2673 {0x1f191, 0x1f19a},
2674 {0x1f1e6, 0x1f1ff},
2675 {0x1f201, 0x1f202},
2676 {0x1f21a, 0x1f21a},
2677 {0x1f22f, 0x1f22f},
2678 {0x1f232, 0x1f23a},
2679 {0x1f250, 0x1f251},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002680 {0x1f300, 0x1f321},
2681 {0x1f324, 0x1f393},
2682 {0x1f396, 0x1f397},
2683 {0x1f399, 0x1f39b},
2684 {0x1f39e, 0x1f3f0},
2685 {0x1f3f3, 0x1f3f5},
2686 {0x1f3f7, 0x1f4fd},
2687 {0x1f4ff, 0x1f53d},
2688 {0x1f549, 0x1f54e},
Bram Moolenaarcb070082016-04-02 22:14:51 +02002689 {0x1f550, 0x1f567},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002690 {0x1f56f, 0x1f570},
2691 {0x1f573, 0x1f57a},
2692 {0x1f587, 0x1f587},
2693 {0x1f58a, 0x1f58d},
2694 {0x1f590, 0x1f590},
2695 {0x1f595, 0x1f596},
2696 {0x1f5a4, 0x1f5a5},
2697 {0x1f5a8, 0x1f5a8},
2698 {0x1f5b1, 0x1f5b2},
2699 {0x1f5bc, 0x1f5bc},
2700 {0x1f5c2, 0x1f5c4},
2701 {0x1f5d1, 0x1f5d3},
2702 {0x1f5dc, 0x1f5de},
2703 {0x1f5e1, 0x1f5e1},
2704 {0x1f5e3, 0x1f5e3},
2705 {0x1f5e8, 0x1f5e8},
2706 {0x1f5ef, 0x1f5ef},
2707 {0x1f5f3, 0x1f5f3},
2708 {0x1f5fa, 0x1f64f},
2709 {0x1f680, 0x1f6c5},
2710 {0x1f6cb, 0x1f6d2},
2711 {0x1f6e0, 0x1f6e5},
2712 {0x1f6e9, 0x1f6e9},
2713 {0x1f6eb, 0x1f6ec},
2714 {0x1f6f0, 0x1f6f0},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002715 {0x1f6f3, 0x1f6f9},
Bram Moolenaar383aa842017-06-22 15:27:37 +02002716 {0x1f910, 0x1f93a},
2717 {0x1f93c, 0x1f93e},
2718 {0x1f940, 0x1f945},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002719 {0x1f947, 0x1f970},
2720 {0x1f973, 0x1f976},
2721 {0x1f97a, 0x1f97a},
2722 {0x1f97c, 0x1f9a2},
2723 {0x1f9b0, 0x1f9b9},
2724 {0x1f9c0, 0x1f9c2},
2725 {0x1f9d0, 0x1f9ff}
Bram Moolenaarcb070082016-04-02 22:14:51 +02002726};
2727
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728/*
2729 * Get class of a Unicode character.
2730 * 0: white space
2731 * 1: punctuation
2732 * 2 or bigger: some class of word character.
2733 */
2734 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002735utf_class(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002737 return utf_class_buf(c, curbuf);
2738}
2739
2740 int
2741utf_class_buf(int c, buf_T *buf)
2742{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002743 // sorted list of non-overlapping intervals
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 static struct clinterval
2745 {
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002746 unsigned int first;
2747 unsigned int last;
2748 unsigned int class;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 } classes[] =
2750 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002751 {0x037e, 0x037e, 1}, // Greek question mark
2752 {0x0387, 0x0387, 1}, // Greek ano teleia
2753 {0x055a, 0x055f, 1}, // Armenian punctuation
2754 {0x0589, 0x0589, 1}, // Armenian full stop
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 {0x05be, 0x05be, 1},
2756 {0x05c0, 0x05c0, 1},
2757 {0x05c3, 0x05c3, 1},
2758 {0x05f3, 0x05f4, 1},
2759 {0x060c, 0x060c, 1},
2760 {0x061b, 0x061b, 1},
2761 {0x061f, 0x061f, 1},
2762 {0x066a, 0x066d, 1},
2763 {0x06d4, 0x06d4, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002764 {0x0700, 0x070d, 1}, // Syriac punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 {0x0964, 0x0965, 1},
2766 {0x0970, 0x0970, 1},
2767 {0x0df4, 0x0df4, 1},
2768 {0x0e4f, 0x0e4f, 1},
2769 {0x0e5a, 0x0e5b, 1},
2770 {0x0f04, 0x0f12, 1},
2771 {0x0f3a, 0x0f3d, 1},
2772 {0x0f85, 0x0f85, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002773 {0x104a, 0x104f, 1}, // Myanmar punctuation
2774 {0x10fb, 0x10fb, 1}, // Georgian punctuation
2775 {0x1361, 0x1368, 1}, // Ethiopic punctuation
2776 {0x166d, 0x166e, 1}, // Canadian Syl. punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 {0x1680, 0x1680, 0},
2778 {0x169b, 0x169c, 1},
2779 {0x16eb, 0x16ed, 1},
2780 {0x1735, 0x1736, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002781 {0x17d4, 0x17dc, 1}, // Khmer punctuation
2782 {0x1800, 0x180a, 1}, // Mongolian punctuation
2783 {0x2000, 0x200b, 0}, // spaces
2784 {0x200c, 0x2027, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 {0x2028, 0x2029, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002786 {0x202a, 0x202e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 {0x202f, 0x202f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002788 {0x2030, 0x205e, 1}, // punctuation and symbols
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 {0x205f, 0x205f, 0},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002790 {0x2060, 0x27ff, 1}, // punctuation and symbols
2791 {0x2070, 0x207f, 0x2070}, // superscript
2792 {0x2080, 0x2094, 0x2080}, // subscript
2793 {0x20a0, 0x27ff, 1}, // all kinds of symbols
2794 {0x2800, 0x28ff, 0x2800}, // braille
2795 {0x2900, 0x2998, 1}, // arrows, brackets, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 {0x29d8, 0x29db, 1},
2797 {0x29fc, 0x29fd, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002798 {0x2e00, 0x2e7f, 1}, // supplemental punctuation
2799 {0x3000, 0x3000, 0}, // ideographic space
2800 {0x3001, 0x3020, 1}, // ideographic punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 {0x3030, 0x3030, 1},
2802 {0x303d, 0x303d, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002803 {0x3040, 0x309f, 0x3040}, // Hiragana
2804 {0x30a0, 0x30ff, 0x30a0}, // Katakana
2805 {0x3300, 0x9fff, 0x4e00}, // CJK Ideographs
2806 {0xac00, 0xd7a3, 0xac00}, // Hangul Syllables
2807 {0xf900, 0xfaff, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 {0xfd3e, 0xfd3f, 1},
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002809 {0xfe30, 0xfe6b, 1}, // punctuation forms
2810 {0xff00, 0xff0f, 1}, // half/fullwidth ASCII
2811 {0xff1a, 0xff20, 1}, // half/fullwidth ASCII
2812 {0xff3b, 0xff40, 1}, // half/fullwidth ASCII
2813 {0xff5b, 0xff65, 1}, // half/fullwidth ASCII
2814 {0x1d000, 0x1d24f, 1}, // Musical notation
2815 {0x1d400, 0x1d7ff, 1}, // Mathematical Alphanumeric Symbols
2816 {0x1f000, 0x1f2ff, 1}, // Game pieces; enclosed characters
2817 {0x1f300, 0x1f9ff, 1}, // Many symbol blocks
2818 {0x20000, 0x2a6df, 0x4e00}, // CJK Ideographs
2819 {0x2a700, 0x2b73f, 0x4e00}, // CJK Ideographs
2820 {0x2b740, 0x2b81f, 0x4e00}, // CJK Ideographs
2821 {0x2f800, 0x2fa1f, 0x4e00}, // CJK Ideographs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 };
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01002823
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 int bot = 0;
2825 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2826 int mid;
2827
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002828 // First quick check for Latin1 characters, use 'iskeyword'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 if (c < 0x100)
2830 {
Bram Moolenaarf7bbbc52005-06-17 21:55:00 +00002831 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002832 return 0; // blank
Bram Moolenaar4019cf92017-01-28 16:39:34 +01002833 if (vim_iswordc_buf(c, buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002834 return 2; // word character
2835 return 1; // punctuation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 }
2837
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002838 // binary search in table
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 while (top >= bot)
2840 {
2841 mid = (bot + top) / 2;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002842 if (classes[mid].last < (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 bot = mid + 1;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002844 else if (classes[mid].first > (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 top = mid - 1;
2846 else
2847 return (int)classes[mid].class;
2848 }
2849
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002850 // emoji
Bram Moolenaarb86f10e2016-03-21 22:09:44 +01002851 if (intable(emoji_all, sizeof(emoji_all), c))
Bram Moolenaar4077b332016-03-20 18:15:21 +01002852 return 3;
2853
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002854 // most other characters are "word" characters
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 return 2;
2856}
2857
Bram Moolenaarcb070082016-04-02 22:14:51 +02002858 int
2859utf_ambiguous_width(int c)
2860{
2861 return c >= 0x80 && (intable(ambiguous, sizeof(ambiguous), c)
2862 || intable(emoji_all, sizeof(emoji_all), c));
2863}
2864
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865/*
2866 * Code for Unicode case-dependent operations. Based on notes in
2867 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2868 * This code uses simple case folding, not full case folding.
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002869 * Last updated for Unicode 5.2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 */
2871
2872/*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002873 * The following tables are built by ../runtime/tools/unicode.vim.
2874 * They must be in numeric order, because we use binary search.
2875 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2876 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2877 * folded/upper/lower by adding 32.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879typedef struct
2880{
2881 int rangeStart;
2882 int rangeEnd;
2883 int step;
2884 int offset;
2885} convertStruct;
2886
Bram Moolenaard6f676d2005-06-01 21:51:55 +00002887static convertStruct foldCase[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002889 {0x41,0x5a,1,32},
2890 {0xb5,0xb5,-1,775},
2891 {0xc0,0xd6,1,32},
2892 {0xd8,0xde,1,32},
2893 {0x100,0x12e,2,1},
2894 {0x132,0x136,2,1},
2895 {0x139,0x147,2,1},
2896 {0x14a,0x176,2,1},
2897 {0x178,0x178,-1,-121},
2898 {0x179,0x17d,2,1},
2899 {0x17f,0x17f,-1,-268},
2900 {0x181,0x181,-1,210},
2901 {0x182,0x184,2,1},
2902 {0x186,0x186,-1,206},
2903 {0x187,0x187,-1,1},
2904 {0x189,0x18a,1,205},
2905 {0x18b,0x18b,-1,1},
2906 {0x18e,0x18e,-1,79},
2907 {0x18f,0x18f,-1,202},
2908 {0x190,0x190,-1,203},
2909 {0x191,0x191,-1,1},
2910 {0x193,0x193,-1,205},
2911 {0x194,0x194,-1,207},
2912 {0x196,0x196,-1,211},
2913 {0x197,0x197,-1,209},
2914 {0x198,0x198,-1,1},
2915 {0x19c,0x19c,-1,211},
2916 {0x19d,0x19d,-1,213},
2917 {0x19f,0x19f,-1,214},
2918 {0x1a0,0x1a4,2,1},
2919 {0x1a6,0x1a6,-1,218},
2920 {0x1a7,0x1a7,-1,1},
2921 {0x1a9,0x1a9,-1,218},
2922 {0x1ac,0x1ac,-1,1},
2923 {0x1ae,0x1ae,-1,218},
2924 {0x1af,0x1af,-1,1},
2925 {0x1b1,0x1b2,1,217},
2926 {0x1b3,0x1b5,2,1},
2927 {0x1b7,0x1b7,-1,219},
2928 {0x1b8,0x1bc,4,1},
2929 {0x1c4,0x1c4,-1,2},
2930 {0x1c5,0x1c5,-1,1},
2931 {0x1c7,0x1c7,-1,2},
2932 {0x1c8,0x1c8,-1,1},
2933 {0x1ca,0x1ca,-1,2},
2934 {0x1cb,0x1db,2,1},
2935 {0x1de,0x1ee,2,1},
2936 {0x1f1,0x1f1,-1,2},
2937 {0x1f2,0x1f4,2,1},
2938 {0x1f6,0x1f6,-1,-97},
2939 {0x1f7,0x1f7,-1,-56},
2940 {0x1f8,0x21e,2,1},
2941 {0x220,0x220,-1,-130},
2942 {0x222,0x232,2,1},
2943 {0x23a,0x23a,-1,10795},
2944 {0x23b,0x23b,-1,1},
2945 {0x23d,0x23d,-1,-163},
2946 {0x23e,0x23e,-1,10792},
2947 {0x241,0x241,-1,1},
2948 {0x243,0x243,-1,-195},
2949 {0x244,0x244,-1,69},
2950 {0x245,0x245,-1,71},
2951 {0x246,0x24e,2,1},
2952 {0x345,0x345,-1,116},
2953 {0x370,0x372,2,1},
2954 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002955 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002956 {0x386,0x386,-1,38},
2957 {0x388,0x38a,1,37},
2958 {0x38c,0x38c,-1,64},
2959 {0x38e,0x38f,1,63},
2960 {0x391,0x3a1,1,32},
2961 {0x3a3,0x3ab,1,32},
2962 {0x3c2,0x3c2,-1,1},
2963 {0x3cf,0x3cf,-1,8},
2964 {0x3d0,0x3d0,-1,-30},
2965 {0x3d1,0x3d1,-1,-25},
2966 {0x3d5,0x3d5,-1,-15},
2967 {0x3d6,0x3d6,-1,-22},
2968 {0x3d8,0x3ee,2,1},
2969 {0x3f0,0x3f0,-1,-54},
2970 {0x3f1,0x3f1,-1,-48},
2971 {0x3f4,0x3f4,-1,-60},
2972 {0x3f5,0x3f5,-1,-64},
2973 {0x3f7,0x3f7,-1,1},
2974 {0x3f9,0x3f9,-1,-7},
2975 {0x3fa,0x3fa,-1,1},
2976 {0x3fd,0x3ff,1,-130},
2977 {0x400,0x40f,1,80},
2978 {0x410,0x42f,1,32},
2979 {0x460,0x480,2,1},
2980 {0x48a,0x4be,2,1},
2981 {0x4c0,0x4c0,-1,15},
2982 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01002983 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002984 {0x531,0x556,1,48},
2985 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01002986 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02002987 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02002988 {0x1c80,0x1c80,-1,-6222},
2989 {0x1c81,0x1c81,-1,-6221},
2990 {0x1c82,0x1c82,-1,-6212},
2991 {0x1c83,0x1c84,1,-6210},
2992 {0x1c85,0x1c85,-1,-6211},
2993 {0x1c86,0x1c86,-1,-6204},
2994 {0x1c87,0x1c87,-1,-6180},
2995 {0x1c88,0x1c88,-1,35267},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02002996 {0x1c90,0x1cba,1,-3008},
2997 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002998 {0x1e00,0x1e94,2,1},
2999 {0x1e9b,0x1e9b,-1,-58},
3000 {0x1e9e,0x1e9e,-1,-7615},
3001 {0x1ea0,0x1efe,2,1},
3002 {0x1f08,0x1f0f,1,-8},
3003 {0x1f18,0x1f1d,1,-8},
3004 {0x1f28,0x1f2f,1,-8},
3005 {0x1f38,0x1f3f,1,-8},
3006 {0x1f48,0x1f4d,1,-8},
3007 {0x1f59,0x1f5f,2,-8},
3008 {0x1f68,0x1f6f,1,-8},
3009 {0x1f88,0x1f8f,1,-8},
3010 {0x1f98,0x1f9f,1,-8},
3011 {0x1fa8,0x1faf,1,-8},
3012 {0x1fb8,0x1fb9,1,-8},
3013 {0x1fba,0x1fbb,1,-74},
3014 {0x1fbc,0x1fbc,-1,-9},
3015 {0x1fbe,0x1fbe,-1,-7173},
3016 {0x1fc8,0x1fcb,1,-86},
3017 {0x1fcc,0x1fcc,-1,-9},
3018 {0x1fd8,0x1fd9,1,-8},
3019 {0x1fda,0x1fdb,1,-100},
3020 {0x1fe8,0x1fe9,1,-8},
3021 {0x1fea,0x1feb,1,-112},
3022 {0x1fec,0x1fec,-1,-7},
3023 {0x1ff8,0x1ff9,1,-128},
3024 {0x1ffa,0x1ffb,1,-126},
3025 {0x1ffc,0x1ffc,-1,-9},
3026 {0x2126,0x2126,-1,-7517},
3027 {0x212a,0x212a,-1,-8383},
3028 {0x212b,0x212b,-1,-8262},
3029 {0x2132,0x2132,-1,28},
3030 {0x2160,0x216f,1,16},
3031 {0x2183,0x2183,-1,1},
3032 {0x24b6,0x24cf,1,26},
3033 {0x2c00,0x2c2e,1,48},
3034 {0x2c60,0x2c60,-1,1},
3035 {0x2c62,0x2c62,-1,-10743},
3036 {0x2c63,0x2c63,-1,-3814},
3037 {0x2c64,0x2c64,-1,-10727},
3038 {0x2c67,0x2c6b,2,1},
3039 {0x2c6d,0x2c6d,-1,-10780},
3040 {0x2c6e,0x2c6e,-1,-10749},
3041 {0x2c6f,0x2c6f,-1,-10783},
3042 {0x2c70,0x2c70,-1,-10782},
3043 {0x2c72,0x2c75,3,1},
3044 {0x2c7e,0x2c7f,1,-10815},
3045 {0x2c80,0x2ce2,2,1},
3046 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003047 {0x2cf2,0xa640,31054,1},
3048 {0xa642,0xa66c,2,1},
3049 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003050 {0xa722,0xa72e,2,1},
3051 {0xa732,0xa76e,2,1},
3052 {0xa779,0xa77b,2,1},
3053 {0xa77d,0xa77d,-1,-35332},
3054 {0xa77e,0xa786,2,1},
3055 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003056 {0xa78d,0xa78d,-1,-42280},
3057 {0xa790,0xa792,2,1},
3058 {0xa796,0xa7a8,2,1},
3059 {0xa7aa,0xa7aa,-1,-42308},
3060 {0xa7ab,0xa7ab,-1,-42319},
3061 {0xa7ac,0xa7ac,-1,-42315},
3062 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003063 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003064 {0xa7b0,0xa7b0,-1,-42258},
3065 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003066 {0xa7b2,0xa7b2,-1,-42261},
3067 {0xa7b3,0xa7b3,-1,928},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003068 {0xa7b4,0xa7be,2,1},
3069 {0xa7c2,0xa7c2,-1,1},
3070 {0xa7c4,0xa7c4,-1,-48},
3071 {0xa7c5,0xa7c5,-1,-42307},
3072 {0xa7c6,0xa7c6,-1,-35384},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003073 {0xab70,0xabbf,1,-38864},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003074 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003075 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003076 {0x104b0,0x104d3,1,40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003077 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003078 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003079 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003080 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081};
3082
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083/*
3084 * Generic conversion function for case operations.
3085 * Return the converted equivalent of "a", which is a UCS-4 character. Use
3086 * the given conversion "table". Uses binary search on "table".
3087 */
3088 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003089utf_convert(
3090 int a,
3091 convertStruct table[],
3092 int tableSize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003094 int start, mid, end; // indices into table
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003095 int entries = tableSize / sizeof(convertStruct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096
3097 start = 0;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003098 end = entries;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 while (start < end)
3100 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003101 // need to search further
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003102 mid = (end + start) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 if (table[mid].rangeEnd < a)
3104 start = mid + 1;
3105 else
3106 end = mid;
3107 }
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003108 if (start < entries
3109 && table[start].rangeStart <= a
3110 && a <= table[start].rangeEnd
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 && (a - table[start].rangeStart) % table[start].step == 0)
3112 return (a + table[start].offset);
3113 else
3114 return a;
3115}
3116
3117/*
3118 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
3119 * simple case folding.
3120 */
3121 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003122utf_fold(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123{
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003124 if (a < 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003125 // be fast for ASCII
Bram Moolenaarc4a927c2016-07-10 18:24:27 +02003126 return a >= 0x41 && a <= 0x5a ? a + 32 : a;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003127 return utf_convert(a, foldCase, (int)sizeof(foldCase));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128}
3129
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003130static convertStruct toLower[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003132 {0x41,0x5a,1,32},
3133 {0xc0,0xd6,1,32},
3134 {0xd8,0xde,1,32},
3135 {0x100,0x12e,2,1},
3136 {0x130,0x130,-1,-199},
3137 {0x132,0x136,2,1},
3138 {0x139,0x147,2,1},
3139 {0x14a,0x176,2,1},
3140 {0x178,0x178,-1,-121},
3141 {0x179,0x17d,2,1},
3142 {0x181,0x181,-1,210},
3143 {0x182,0x184,2,1},
3144 {0x186,0x186,-1,206},
3145 {0x187,0x187,-1,1},
3146 {0x189,0x18a,1,205},
3147 {0x18b,0x18b,-1,1},
3148 {0x18e,0x18e,-1,79},
3149 {0x18f,0x18f,-1,202},
3150 {0x190,0x190,-1,203},
3151 {0x191,0x191,-1,1},
3152 {0x193,0x193,-1,205},
3153 {0x194,0x194,-1,207},
3154 {0x196,0x196,-1,211},
3155 {0x197,0x197,-1,209},
3156 {0x198,0x198,-1,1},
3157 {0x19c,0x19c,-1,211},
3158 {0x19d,0x19d,-1,213},
3159 {0x19f,0x19f,-1,214},
3160 {0x1a0,0x1a4,2,1},
3161 {0x1a6,0x1a6,-1,218},
3162 {0x1a7,0x1a7,-1,1},
3163 {0x1a9,0x1a9,-1,218},
3164 {0x1ac,0x1ac,-1,1},
3165 {0x1ae,0x1ae,-1,218},
3166 {0x1af,0x1af,-1,1},
3167 {0x1b1,0x1b2,1,217},
3168 {0x1b3,0x1b5,2,1},
3169 {0x1b7,0x1b7,-1,219},
3170 {0x1b8,0x1bc,4,1},
3171 {0x1c4,0x1c4,-1,2},
3172 {0x1c5,0x1c5,-1,1},
3173 {0x1c7,0x1c7,-1,2},
3174 {0x1c8,0x1c8,-1,1},
3175 {0x1ca,0x1ca,-1,2},
3176 {0x1cb,0x1db,2,1},
3177 {0x1de,0x1ee,2,1},
3178 {0x1f1,0x1f1,-1,2},
3179 {0x1f2,0x1f4,2,1},
3180 {0x1f6,0x1f6,-1,-97},
3181 {0x1f7,0x1f7,-1,-56},
3182 {0x1f8,0x21e,2,1},
3183 {0x220,0x220,-1,-130},
3184 {0x222,0x232,2,1},
3185 {0x23a,0x23a,-1,10795},
3186 {0x23b,0x23b,-1,1},
3187 {0x23d,0x23d,-1,-163},
3188 {0x23e,0x23e,-1,10792},
3189 {0x241,0x241,-1,1},
3190 {0x243,0x243,-1,-195},
3191 {0x244,0x244,-1,69},
3192 {0x245,0x245,-1,71},
3193 {0x246,0x24e,2,1},
3194 {0x370,0x372,2,1},
3195 {0x376,0x376,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003196 {0x37f,0x37f,-1,116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003197 {0x386,0x386,-1,38},
3198 {0x388,0x38a,1,37},
3199 {0x38c,0x38c,-1,64},
3200 {0x38e,0x38f,1,63},
3201 {0x391,0x3a1,1,32},
3202 {0x3a3,0x3ab,1,32},
3203 {0x3cf,0x3cf,-1,8},
3204 {0x3d8,0x3ee,2,1},
3205 {0x3f4,0x3f4,-1,-60},
3206 {0x3f7,0x3f7,-1,1},
3207 {0x3f9,0x3f9,-1,-7},
3208 {0x3fa,0x3fa,-1,1},
3209 {0x3fd,0x3ff,1,-130},
3210 {0x400,0x40f,1,80},
3211 {0x410,0x42f,1,32},
3212 {0x460,0x480,2,1},
3213 {0x48a,0x4be,2,1},
3214 {0x4c0,0x4c0,-1,15},
3215 {0x4c1,0x4cd,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003216 {0x4d0,0x52e,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003217 {0x531,0x556,1,48},
3218 {0x10a0,0x10c5,1,7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003219 {0x10c7,0x10cd,6,7264},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003220 {0x13a0,0x13ef,1,38864},
3221 {0x13f0,0x13f5,1,8},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003222 {0x1c90,0x1cba,1,-3008},
3223 {0x1cbd,0x1cbf,1,-3008},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003224 {0x1e00,0x1e94,2,1},
3225 {0x1e9e,0x1e9e,-1,-7615},
3226 {0x1ea0,0x1efe,2,1},
3227 {0x1f08,0x1f0f,1,-8},
3228 {0x1f18,0x1f1d,1,-8},
3229 {0x1f28,0x1f2f,1,-8},
3230 {0x1f38,0x1f3f,1,-8},
3231 {0x1f48,0x1f4d,1,-8},
3232 {0x1f59,0x1f5f,2,-8},
3233 {0x1f68,0x1f6f,1,-8},
3234 {0x1f88,0x1f8f,1,-8},
3235 {0x1f98,0x1f9f,1,-8},
3236 {0x1fa8,0x1faf,1,-8},
3237 {0x1fb8,0x1fb9,1,-8},
3238 {0x1fba,0x1fbb,1,-74},
3239 {0x1fbc,0x1fbc,-1,-9},
3240 {0x1fc8,0x1fcb,1,-86},
3241 {0x1fcc,0x1fcc,-1,-9},
3242 {0x1fd8,0x1fd9,1,-8},
3243 {0x1fda,0x1fdb,1,-100},
3244 {0x1fe8,0x1fe9,1,-8},
3245 {0x1fea,0x1feb,1,-112},
3246 {0x1fec,0x1fec,-1,-7},
3247 {0x1ff8,0x1ff9,1,-128},
3248 {0x1ffa,0x1ffb,1,-126},
3249 {0x1ffc,0x1ffc,-1,-9},
3250 {0x2126,0x2126,-1,-7517},
3251 {0x212a,0x212a,-1,-8383},
3252 {0x212b,0x212b,-1,-8262},
3253 {0x2132,0x2132,-1,28},
3254 {0x2160,0x216f,1,16},
3255 {0x2183,0x2183,-1,1},
3256 {0x24b6,0x24cf,1,26},
3257 {0x2c00,0x2c2e,1,48},
3258 {0x2c60,0x2c60,-1,1},
3259 {0x2c62,0x2c62,-1,-10743},
3260 {0x2c63,0x2c63,-1,-3814},
3261 {0x2c64,0x2c64,-1,-10727},
3262 {0x2c67,0x2c6b,2,1},
3263 {0x2c6d,0x2c6d,-1,-10780},
3264 {0x2c6e,0x2c6e,-1,-10749},
3265 {0x2c6f,0x2c6f,-1,-10783},
3266 {0x2c70,0x2c70,-1,-10782},
3267 {0x2c72,0x2c75,3,1},
3268 {0x2c7e,0x2c7f,1,-10815},
3269 {0x2c80,0x2ce2,2,1},
3270 {0x2ceb,0x2ced,2,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003271 {0x2cf2,0xa640,31054,1},
3272 {0xa642,0xa66c,2,1},
3273 {0xa680,0xa69a,2,1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003274 {0xa722,0xa72e,2,1},
3275 {0xa732,0xa76e,2,1},
3276 {0xa779,0xa77b,2,1},
3277 {0xa77d,0xa77d,-1,-35332},
3278 {0xa77e,0xa786,2,1},
3279 {0xa78b,0xa78b,-1,1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003280 {0xa78d,0xa78d,-1,-42280},
3281 {0xa790,0xa792,2,1},
3282 {0xa796,0xa7a8,2,1},
3283 {0xa7aa,0xa7aa,-1,-42308},
3284 {0xa7ab,0xa7ab,-1,-42319},
3285 {0xa7ac,0xa7ac,-1,-42315},
3286 {0xa7ad,0xa7ad,-1,-42305},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003287 {0xa7ae,0xa7ae,-1,-42308},
Bram Moolenaarea676722015-01-14 17:40:09 +01003288 {0xa7b0,0xa7b0,-1,-42258},
3289 {0xa7b1,0xa7b1,-1,-42282},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003290 {0xa7b2,0xa7b2,-1,-42261},
3291 {0xa7b3,0xa7b3,-1,928},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003292 {0xa7b4,0xa7be,2,1},
3293 {0xa7c2,0xa7c2,-1,1},
3294 {0xa7c4,0xa7c4,-1,-48},
3295 {0xa7c5,0xa7c5,-1,-42307},
3296 {0xa7c6,0xa7c6,-1,-35384},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003297 {0xff21,0xff3a,1,32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003298 {0x10400,0x10427,1,40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003299 {0x104b0,0x104d3,1,40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003300 {0x10c80,0x10cb2,1,64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003301 {0x118a0,0x118bf,1,32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003302 {0x16e40,0x16e5f,1,32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003303 {0x1e900,0x1e921,1,34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304};
3305
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003306static convertStruct toUpper[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003308 {0x61,0x7a,1,-32},
3309 {0xb5,0xb5,-1,743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003310 {0xe0,0xf6,1,-32},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003311 {0xf8,0xfe,1,-32},
3312 {0xff,0xff,-1,121},
3313 {0x101,0x12f,2,-1},
3314 {0x131,0x131,-1,-232},
3315 {0x133,0x137,2,-1},
3316 {0x13a,0x148,2,-1},
3317 {0x14b,0x177,2,-1},
3318 {0x17a,0x17e,2,-1},
3319 {0x17f,0x17f,-1,-300},
3320 {0x180,0x180,-1,195},
3321 {0x183,0x185,2,-1},
3322 {0x188,0x18c,4,-1},
3323 {0x192,0x192,-1,-1},
3324 {0x195,0x195,-1,97},
3325 {0x199,0x199,-1,-1},
3326 {0x19a,0x19a,-1,163},
3327 {0x19e,0x19e,-1,130},
3328 {0x1a1,0x1a5,2,-1},
3329 {0x1a8,0x1ad,5,-1},
3330 {0x1b0,0x1b4,4,-1},
3331 {0x1b6,0x1b9,3,-1},
3332 {0x1bd,0x1bd,-1,-1},
3333 {0x1bf,0x1bf,-1,56},
3334 {0x1c5,0x1c5,-1,-1},
3335 {0x1c6,0x1c6,-1,-2},
3336 {0x1c8,0x1c8,-1,-1},
3337 {0x1c9,0x1c9,-1,-2},
3338 {0x1cb,0x1cb,-1,-1},
3339 {0x1cc,0x1cc,-1,-2},
3340 {0x1ce,0x1dc,2,-1},
3341 {0x1dd,0x1dd,-1,-79},
3342 {0x1df,0x1ef,2,-1},
3343 {0x1f2,0x1f2,-1,-1},
3344 {0x1f3,0x1f3,-1,-2},
3345 {0x1f5,0x1f9,4,-1},
3346 {0x1fb,0x21f,2,-1},
3347 {0x223,0x233,2,-1},
3348 {0x23c,0x23c,-1,-1},
3349 {0x23f,0x240,1,10815},
3350 {0x242,0x247,5,-1},
3351 {0x249,0x24f,2,-1},
3352 {0x250,0x250,-1,10783},
3353 {0x251,0x251,-1,10780},
3354 {0x252,0x252,-1,10782},
3355 {0x253,0x253,-1,-210},
3356 {0x254,0x254,-1,-206},
3357 {0x256,0x257,1,-205},
3358 {0x259,0x259,-1,-202},
3359 {0x25b,0x25b,-1,-203},
Bram Moolenaarea676722015-01-14 17:40:09 +01003360 {0x25c,0x25c,-1,42319},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003361 {0x260,0x260,-1,-205},
Bram Moolenaarea676722015-01-14 17:40:09 +01003362 {0x261,0x261,-1,42315},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003363 {0x263,0x263,-1,-207},
Bram Moolenaarea676722015-01-14 17:40:09 +01003364 {0x265,0x265,-1,42280},
3365 {0x266,0x266,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003366 {0x268,0x268,-1,-209},
3367 {0x269,0x269,-1,-211},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003368 {0x26a,0x26a,-1,42308},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003369 {0x26b,0x26b,-1,10743},
Bram Moolenaarea676722015-01-14 17:40:09 +01003370 {0x26c,0x26c,-1,42305},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003371 {0x26f,0x26f,-1,-211},
3372 {0x271,0x271,-1,10749},
3373 {0x272,0x272,-1,-213},
3374 {0x275,0x275,-1,-214},
3375 {0x27d,0x27d,-1,10727},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003376 {0x280,0x280,-1,-218},
3377 {0x282,0x282,-1,42307},
3378 {0x283,0x283,-1,-218},
Bram Moolenaarea676722015-01-14 17:40:09 +01003379 {0x287,0x287,-1,42282},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003380 {0x288,0x288,-1,-218},
3381 {0x289,0x289,-1,-69},
3382 {0x28a,0x28b,1,-217},
3383 {0x28c,0x28c,-1,-71},
3384 {0x292,0x292,-1,-219},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003385 {0x29d,0x29d,-1,42261},
Bram Moolenaarea676722015-01-14 17:40:09 +01003386 {0x29e,0x29e,-1,42258},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003387 {0x345,0x345,-1,84},
3388 {0x371,0x373,2,-1},
3389 {0x377,0x377,-1,-1},
3390 {0x37b,0x37d,1,130},
3391 {0x3ac,0x3ac,-1,-38},
3392 {0x3ad,0x3af,1,-37},
3393 {0x3b1,0x3c1,1,-32},
3394 {0x3c2,0x3c2,-1,-31},
3395 {0x3c3,0x3cb,1,-32},
3396 {0x3cc,0x3cc,-1,-64},
3397 {0x3cd,0x3ce,1,-63},
3398 {0x3d0,0x3d0,-1,-62},
3399 {0x3d1,0x3d1,-1,-57},
3400 {0x3d5,0x3d5,-1,-47},
3401 {0x3d6,0x3d6,-1,-54},
3402 {0x3d7,0x3d7,-1,-8},
3403 {0x3d9,0x3ef,2,-1},
3404 {0x3f0,0x3f0,-1,-86},
3405 {0x3f1,0x3f1,-1,-80},
3406 {0x3f2,0x3f2,-1,7},
Bram Moolenaarea676722015-01-14 17:40:09 +01003407 {0x3f3,0x3f3,-1,-116},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003408 {0x3f5,0x3f5,-1,-96},
3409 {0x3f8,0x3fb,3,-1},
3410 {0x430,0x44f,1,-32},
3411 {0x450,0x45f,1,-80},
3412 {0x461,0x481,2,-1},
3413 {0x48b,0x4bf,2,-1},
3414 {0x4c2,0x4ce,2,-1},
3415 {0x4cf,0x4cf,-1,-15},
Bram Moolenaarea676722015-01-14 17:40:09 +01003416 {0x4d1,0x52f,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003417 {0x561,0x586,1,-48},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003418 {0x10d0,0x10fa,1,3008},
3419 {0x10fd,0x10ff,1,3008},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003420 {0x13f8,0x13fd,1,-8},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003421 {0x1c80,0x1c80,-1,-6254},
3422 {0x1c81,0x1c81,-1,-6253},
3423 {0x1c82,0x1c82,-1,-6244},
3424 {0x1c83,0x1c84,1,-6242},
3425 {0x1c85,0x1c85,-1,-6243},
3426 {0x1c86,0x1c86,-1,-6236},
3427 {0x1c87,0x1c87,-1,-6181},
3428 {0x1c88,0x1c88,-1,35266},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003429 {0x1d79,0x1d79,-1,35332},
3430 {0x1d7d,0x1d7d,-1,3814},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003431 {0x1d8e,0x1d8e,-1,35384},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003432 {0x1e01,0x1e95,2,-1},
3433 {0x1e9b,0x1e9b,-1,-59},
3434 {0x1ea1,0x1eff,2,-1},
3435 {0x1f00,0x1f07,1,8},
3436 {0x1f10,0x1f15,1,8},
3437 {0x1f20,0x1f27,1,8},
3438 {0x1f30,0x1f37,1,8},
3439 {0x1f40,0x1f45,1,8},
3440 {0x1f51,0x1f57,2,8},
3441 {0x1f60,0x1f67,1,8},
3442 {0x1f70,0x1f71,1,74},
3443 {0x1f72,0x1f75,1,86},
3444 {0x1f76,0x1f77,1,100},
3445 {0x1f78,0x1f79,1,128},
3446 {0x1f7a,0x1f7b,1,112},
3447 {0x1f7c,0x1f7d,1,126},
3448 {0x1f80,0x1f87,1,8},
3449 {0x1f90,0x1f97,1,8},
3450 {0x1fa0,0x1fa7,1,8},
3451 {0x1fb0,0x1fb1,1,8},
3452 {0x1fb3,0x1fb3,-1,9},
3453 {0x1fbe,0x1fbe,-1,-7205},
3454 {0x1fc3,0x1fc3,-1,9},
3455 {0x1fd0,0x1fd1,1,8},
3456 {0x1fe0,0x1fe1,1,8},
3457 {0x1fe5,0x1fe5,-1,7},
3458 {0x1ff3,0x1ff3,-1,9},
3459 {0x214e,0x214e,-1,-28},
3460 {0x2170,0x217f,1,-16},
3461 {0x2184,0x2184,-1,-1},
3462 {0x24d0,0x24e9,1,-26},
3463 {0x2c30,0x2c5e,1,-48},
3464 {0x2c61,0x2c61,-1,-1},
3465 {0x2c65,0x2c65,-1,-10795},
3466 {0x2c66,0x2c66,-1,-10792},
3467 {0x2c68,0x2c6c,2,-1},
3468 {0x2c73,0x2c76,3,-1},
3469 {0x2c81,0x2ce3,2,-1},
3470 {0x2cec,0x2cee,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003471 {0x2cf3,0x2cf3,-1,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003472 {0x2d00,0x2d25,1,-7264},
Bram Moolenaarea676722015-01-14 17:40:09 +01003473 {0x2d27,0x2d2d,6,-7264},
3474 {0xa641,0xa66d,2,-1},
3475 {0xa681,0xa69b,2,-1},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003476 {0xa723,0xa72f,2,-1},
3477 {0xa733,0xa76f,2,-1},
3478 {0xa77a,0xa77c,2,-1},
3479 {0xa77f,0xa787,2,-1},
Bram Moolenaarea676722015-01-14 17:40:09 +01003480 {0xa78c,0xa791,5,-1},
Bram Moolenaarf9b89b42019-04-12 20:08:55 +02003481 {0xa793,0xa793,-1,-1},
3482 {0xa794,0xa794,-1,48},
3483 {0xa797,0xa7a9,2,-1},
3484 {0xa7b5,0xa7bf,2,-1},
3485 {0xa7c3,0xa7c3,-1,-1},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003486 {0xab53,0xab53,-1,-928},
3487 {0xab70,0xabbf,1,-38864},
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01003488 {0xff41,0xff5a,1,-32},
Bram Moolenaarea676722015-01-14 17:40:09 +01003489 {0x10428,0x1044f,1,-40},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003490 {0x104d8,0x104fb,1,-40},
Bram Moolenaar66312ac2015-06-21 14:22:00 +02003491 {0x10cc0,0x10cf2,1,-64},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003492 {0x118c0,0x118df,1,-32},
Bram Moolenaar4fc85002018-07-14 19:30:36 +02003493 {0x16e60,0x16e7f,1,-32},
Bram Moolenaar04e2b4b2016-06-26 17:53:07 +02003494 {0x1e922,0x1e943,1,-34}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495};
Bram Moolenaard63aff02016-03-21 22:15:30 +01003496
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497/*
3498 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3499 * simple case folding.
3500 */
3501 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003502utf_toupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003504 // If 'casemap' contains "keepascii" use ASCII style toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3506 return TOUPPER_ASC(a);
3507
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003508#if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003509 // If towupper() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003510 if (!(cmp_flags & CMP_INTERNAL))
3511 return towupper(a);
3512#endif
3513
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003514 // For characters below 128 use locale sensitive toupper().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 if (a < 128)
3516 return TOUPPER_LOC(a);
3517
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003518 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003519 return utf_convert(a, toUpper, (int)sizeof(toUpper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520}
3521
3522 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003523utf_islower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003525 // German sharp s is lower case but has no upper case equivalent.
Bram Moolenaar88178de2012-06-01 17:46:59 +02003526 return (utf_toupper(a) != a) || a == 0xdf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527}
3528
3529/*
3530 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3531 * simple case folding.
3532 */
3533 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003534utf_tolower(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003536 // If 'casemap' contains "keepascii" use ASCII style tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3538 return TOLOWER_ASC(a);
3539
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003540#if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003541 // If towlower() is available and handles Unicode, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 if (!(cmp_flags & CMP_INTERNAL))
3543 return towlower(a);
3544#endif
3545
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003546 // For characters below 128 use locale sensitive tolower().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 if (a < 128)
3548 return TOLOWER_LOC(a);
3549
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003550 // For any other characters use the above mapping table.
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003551 return utf_convert(a, toLower, (int)sizeof(toLower));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552}
3553
3554 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003555utf_isupper(int a)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556{
3557 return (utf_tolower(a) != a);
3558}
3559
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003560 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003561utf_strnicmp(
3562 char_u *s1,
3563 char_u *s2,
3564 size_t n1,
3565 size_t n2)
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003566{
3567 int c1, c2, cdiff;
3568 char_u buffer[6];
3569
3570 for (;;)
3571 {
3572 c1 = utf_safe_read_char_adv(&s1, &n1);
3573 c2 = utf_safe_read_char_adv(&s2, &n2);
3574
3575 if (c1 <= 0 || c2 <= 0)
3576 break;
3577
3578 if (c1 == c2)
3579 continue;
3580
3581 cdiff = utf_fold(c1) - utf_fold(c2);
3582 if (cdiff != 0)
3583 return cdiff;
3584 }
3585
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003586 // some string ended or has an incomplete/illegal character sequence
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003587
3588 if (c1 == 0 || c2 == 0)
3589 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003590 // some string ended. shorter string is smaller
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003591 if (c1 == 0 && c2 == 0)
3592 return 0;
3593 return c1 == 0 ? -1 : 1;
3594 }
3595
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003596 // Continue with bytewise comparison to produce some result that
3597 // would make comparison operations involving this function transitive.
3598 //
3599 // If only one string had an error, comparison should be made with
3600 // folded version of the other string. In this case it is enough
3601 // to fold just one character to determine the result of comparison.
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003602
3603 if (c1 != -1 && c2 == -1)
3604 {
3605 n1 = utf_char2bytes(utf_fold(c1), buffer);
3606 s1 = buffer;
3607 }
3608 else if (c2 != -1 && c1 == -1)
3609 {
3610 n2 = utf_char2bytes(utf_fold(c2), buffer);
3611 s2 = buffer;
3612 }
3613
3614 while (n1 > 0 && n2 > 0 && *s1 != NUL && *s2 != NUL)
3615 {
3616 cdiff = (int)(*s1) - (int)(*s2);
3617 if (cdiff != 0)
3618 return cdiff;
3619
3620 s1++;
3621 s2++;
3622 n1--;
3623 n2--;
3624 }
3625
3626 if (n1 > 0 && *s1 == NUL)
3627 n1 = 0;
3628 if (n2 > 0 && *s2 == NUL)
3629 n2 = 0;
3630
3631 if (n1 == 0 && n2 == 0)
3632 return 0;
3633 return n1 == 0 ? -1 : 1;
3634}
3635
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636/*
3637 * Version of strnicmp() that handles multi-byte characters.
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01003638 * Needed for Big5, Shift-JIS and UTF-8 encoding. Other DBCS encodings can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 * probably use strnicmp(), because there are no ASCII characters in the
3640 * second byte.
3641 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3642 * two characters otherwise.
3643 */
3644 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003645mb_strnicmp(char_u *s1, char_u *s2, size_t nn)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646{
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003647 int i, l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 int cdiff;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003649 int n = (int)nn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003651 if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 {
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003653 return utf_strnicmp(s1, s2, nn, nn);
3654 }
3655 else
3656 {
3657 for (i = 0; i < n; i += l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003659 if (s1[i] == NUL && s2[i] == NUL) // both strings end
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003660 return 0;
3661
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003662 l = (*mb_ptr2len)(s1 + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 if (l <= 1)
3664 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003665 // Single byte: first check normally, then with ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 if (s1[i] != s2[i])
3667 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003668 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 if (cdiff != 0)
3670 return cdiff;
3671 }
3672 }
3673 else
3674 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003675 // For non-Unicode multi-byte don't ignore case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 if (l > n - i)
3677 l = n - i;
3678 cdiff = STRNCMP(s1 + i, s2 + i, l);
3679 if (cdiff != 0)
3680 return cdiff;
3681 }
3682 }
3683 }
3684 return 0;
3685}
3686
3687/*
3688 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3689 * 'encoding' has been set to.
3690 */
3691 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003692show_utf8(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693{
3694 int len;
Bram Moolenaar051b7822005-05-19 21:00:46 +00003695 int rlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 char_u *line;
3697 int clen;
3698 int i;
3699
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003700 // Get the byte length of the char under the cursor, including composing
3701 // characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 line = ml_get_cursor();
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003703 len = utfc_ptr2len(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 if (len == 0)
3705 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01003706 msg("NUL");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 return;
3708 }
3709
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 clen = 0;
3711 for (i = 0; i < len; ++i)
3712 {
3713 if (clen == 0)
3714 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003715 // start of (composing) character, get its length
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 if (i > 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +00003717 {
3718 STRCPY(IObuff + rlen, "+ ");
3719 rlen += 2;
3720 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003721 clen = utf_ptr2len(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 }
Bram Moolenaarb382ad12010-05-21 15:46:35 +02003723 sprintf((char *)IObuff + rlen, "%02x ",
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003724 (line[i] == NL) ? NUL : line[i]); // NUL is stored as NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 --clen;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003726 rlen += (int)STRLEN(IObuff + rlen);
Bram Moolenaar051b7822005-05-19 21:00:46 +00003727 if (rlen > IOSIZE - 20)
3728 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 }
3730
Bram Moolenaar32526b32019-01-19 17:43:09 +01003731 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732}
3733
3734/*
3735 * mb_head_off() function pointer.
3736 * Return offset from "p" to the first byte of the character it points into.
Bram Moolenaar24397332009-12-02 14:02:39 +00003737 * If "p" points to the NUL at the end of the string return 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 * Returns 0 when already at the first byte of a character.
3739 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003741latin_head_off(char_u *base UNUSED, char_u *p UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742{
3743 return 0;
3744}
3745
Bram Moolenaar840d16f2019-09-10 21:27:18 +02003746 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003747dbcs_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748{
3749 char_u *q;
3750
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003751 // It can't be a trailing byte when not using DBCS, at the start of the
3752 // string or the previous byte can't start a double-byte.
Bram Moolenaar24397332009-12-02 14:02:39 +00003753 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 return 0;
3755
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003756 // This is slow: need to start at the base and go forward until the
3757 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 q = base;
3759 while (q < p)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003760 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 return (q == p) ? 0 : 1;
3762}
3763
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764/*
3765 * Special version of dbcs_head_off() that works for ScreenLines[], where
3766 * single-width DBCS_JPNU characters are stored separately.
3767 */
3768 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003769dbcs_screen_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770{
3771 char_u *q;
3772
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003773 // It can't be a trailing byte when not using DBCS, at the start of the
3774 // string or the previous byte can't start a double-byte.
3775 // For euc-jp an 0x8e byte in the previous cell always means we have a
3776 // lead byte in the current cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 if (p <= base
3778 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
Bram Moolenaar24397332009-12-02 14:02:39 +00003779 || MB_BYTE2LEN(p[-1]) == 1
3780 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 return 0;
3782
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003783 // This is slow: need to start at the base and go forward until the
3784 // byte we are looking for. Return 1 when we went past it, 0 otherwise.
3785 // For DBCS_JPNU look out for 0x8e, which means the second byte is not
3786 // stored as the next byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 q = base;
3788 while (q < p)
3789 {
3790 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3791 ++q;
3792 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003793 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 }
3795 return (q == p) ? 0 : 1;
3796}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797
3798 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003799utf_head_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800{
3801 char_u *q;
3802 char_u *s;
3803 int c;
Bram Moolenaar24397332009-12-02 14:02:39 +00003804 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805#ifdef FEAT_ARABIC
3806 char_u *j;
3807#endif
3808
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003809 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 return 0;
3811
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003812 // Skip backwards over trailing bytes: 10xx.xxxx
3813 // Skip backwards again if on a composing char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 for (q = p; ; --q)
3815 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003816 // Move s to the last byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3818 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003819 // Move q to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 while (q > base && (*q & 0xc0) == 0x80)
3821 --q;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003822 // Check for illegal sequence. Do allow an illegal byte after where we
3823 // started.
Bram Moolenaar24397332009-12-02 14:02:39 +00003824 len = utf8len_tab[*q];
3825 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 return 0;
3827
3828 if (q <= base)
3829 break;
3830
3831 c = utf_ptr2char(q);
3832 if (utf_iscomposing(c))
3833 continue;
3834
3835#ifdef FEAT_ARABIC
3836 if (arabic_maycombine(c))
3837 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003838 // Advance to get a sneak-peak at the next char
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 j = q;
3840 --j;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003841 // Move j to the first byte of this char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 while (j > base && (*j & 0xc0) == 0x80)
3843 --j;
3844 if (arabic_combine(utf_ptr2char(j), c))
3845 continue;
3846 }
3847#endif
3848 break;
3849 }
3850
3851 return (int)(p - q);
3852}
3853
3854/*
Bram Moolenaare52702f2020-06-04 18:22:13 +02003855 * Whether space is NOT allowed before/after 'c'.
3856 */
3857 int
3858utf_eat_space(int cc)
3859{
3860 return ((cc >= 0x2000 && cc <= 0x206F) // General punctuations
3861 || (cc >= 0x2e00 && cc <= 0x2e7f) // Supplemental punctuations
3862 || (cc >= 0x3000 && cc <= 0x303f) // CJK symbols and punctuations
3863 || (cc >= 0xff01 && cc <= 0xff0f) // Full width ASCII punctuations
3864 || (cc >= 0xff1a && cc <= 0xff20) // ..
3865 || (cc >= 0xff3b && cc <= 0xff40) // ..
3866 || (cc >= 0xff5b && cc <= 0xff65)); // ..
3867}
3868
3869/*
3870 * Whether line break is allowed before "cc".
3871 */
3872 int
3873utf_allow_break_before(int cc)
3874{
3875 static const int BOL_prohibition_punct[] =
3876 {
3877 '!',
3878 '%',
3879 ')',
3880 ',',
3881 ':',
3882 ';',
3883 '>',
3884 '?',
3885 ']',
3886 '}',
3887 0x2019, // ’ right single quotation mark
3888 0x201d, // ” right double quotation mark
3889 0x2020, // † dagger
3890 0x2021, // ‡ double dagger
3891 0x2026, // … horizontal ellipsis
3892 0x2030, // ‰ per mille sign
3893 0x2031, // ‱ per then thousand sign
3894 0x203c, // ‼ double exclamation mark
3895 0x2047, // ⁇ double question mark
3896 0x2048, // ⁈ question exclamation mark
3897 0x2049, // ⁉ exclamation question mark
3898 0x2103, // ℃ degree celsius
3899 0x2109, // ℉ degree fahrenheit
3900 0x3001, // 、 ideographic comma
3901 0x3002, // 。 ideographic full stop
3902 0x3009, // 〉 right angle bracket
3903 0x300b, // 》 right double angle bracket
3904 0x300d, // 」 right corner bracket
3905 0x300f, // 』 right white corner bracket
3906 0x3011, // 】 right black lenticular bracket
3907 0x3015, // 〕 right tortoise shell bracket
3908 0x3017, // 〗 right white lenticular bracket
3909 0x3019, // 〙 right white tortoise shell bracket
3910 0x301b, // 〛 right white square bracket
3911 0xff01, // ! fullwidth exclamation mark
3912 0xff09, // ) fullwidth right parenthesis
3913 0xff0c, // , fullwidth comma
3914 0xff0e, // . fullwidth full stop
3915 0xff1a, // : fullwidth colon
3916 0xff1b, // ; fullwidth semicolon
3917 0xff1f, // ? fullwidth question mark
3918 0xff3d, // ] fullwidth right square bracket
3919 0xff5d, // } fullwidth right curly bracket
3920 };
3921
3922 int first = 0;
3923 int last = sizeof(BOL_prohibition_punct)/sizeof(int) - 1;
3924 int mid = 0;
3925
3926 while (first < last)
3927 {
3928 mid = (first + last)/2;
3929
3930 if (cc == BOL_prohibition_punct[mid])
3931 return FALSE;
3932 else if (cc > BOL_prohibition_punct[mid])
3933 first = mid + 1;
3934 else
3935 last = mid - 1;
3936 }
3937
3938 return cc != BOL_prohibition_punct[first];
3939}
3940
3941/*
3942 * Whether line break is allowed after "cc".
3943 */
3944 static int
3945utf_allow_break_after(int cc)
3946{
3947 static const int EOL_prohibition_punct[] =
3948 {
3949 '(',
3950 '<',
3951 '[',
3952 '`',
3953 '{',
3954 //0x2014, // — em dash
3955 0x2018, // ‘ left single quotation mark
3956 0x201c, // “ left double quotation mark
3957 //0x2053, // ~ swung dash
3958 0x3008, // 〈 left angle bracket
3959 0x300a, // 《 left double angle bracket
3960 0x300c, // 「 left corner bracket
3961 0x300e, // 『 left white corner bracket
3962 0x3010, // 【 left black lenticular bracket
3963 0x3014, // 〔 left tortoise shell bracket
3964 0x3016, // 〖 left white lenticular bracket
3965 0x3018, // 〘 left white tortoise shell bracket
3966 0x301a, // 〚 left white square bracket
3967 0xff08, // ( fullwidth left parenthesis
3968 0xff3b, // [ fullwidth left square bracket
3969 0xff5b, // { fullwidth left curly bracket
3970 };
3971
3972 int first = 0;
3973 int last = sizeof(EOL_prohibition_punct)/sizeof(int) - 1;
3974 int mid = 0;
3975
3976 while (first < last)
3977 {
3978 mid = (first + last)/2;
3979
3980 if (cc == EOL_prohibition_punct[mid])
3981 return FALSE;
3982 else if (cc > EOL_prohibition_punct[mid])
3983 first = mid + 1;
3984 else
3985 last = mid - 1;
3986 }
3987
3988 return cc != EOL_prohibition_punct[first];
3989}
3990
3991/*
3992 * Whether line break is allowed between "cc" and "ncc".
3993 */
3994 int
3995utf_allow_break(int cc, int ncc)
3996{
3997 // don't break between two-letter punctuations
3998 if (cc == ncc
3999 && (cc == 0x2014 // em dash
4000 || cc == 0x2026)) // horizontal ellipsis
4001 return FALSE;
4002
4003 return utf_allow_break_after(cc) && utf_allow_break_before(ncc);
4004}
4005
4006/*
Bram Moolenaard8b02732005-01-14 21:48:43 +00004007 * Copy a character from "*fp" to "*tp" and advance the pointers.
4008 */
4009 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004010mb_copy_char(char_u **fp, char_u **tp)
Bram Moolenaard8b02732005-01-14 21:48:43 +00004011{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004012 int l = (*mb_ptr2len)(*fp);
Bram Moolenaard8b02732005-01-14 21:48:43 +00004013
4014 mch_memmove(*tp, *fp, (size_t)l);
4015 *tp += l;
4016 *fp += l;
4017}
4018
4019/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 * Return the offset from "p" to the first byte of a character. When "p" is
4021 * at the start of a character 0 is returned, otherwise the offset to the next
4022 * character. Can start anywhere in a stream of bytes.
4023 */
4024 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004025mb_off_next(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026{
4027 int i;
4028 int j;
4029
4030 if (enc_utf8)
4031 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004032 if (*p < 0x80) // be quick for ASCII
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 return 0;
4034
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004035 // Find the next character that isn't 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
4037 ;
4038 if (i > 0)
4039 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004040 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 for (j = 0; p - j > base; ++j)
4042 if ((p[-j] & 0xc0) != 0x80)
4043 break;
4044 if (utf8len_tab[p[-j]] != i + j)
4045 return 0;
4046 }
4047 return i;
4048 }
4049
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004050 // Only need to check if we're on a trail byte, it doesn't matter if we
4051 // want the offset to the next or current character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 return (*mb_head_off)(base, p);
4053}
4054
4055/*
4056 * Return the offset from "p" to the last byte of the character it points
4057 * into. Can start anywhere in a stream of bytes.
4058 */
4059 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004060mb_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061{
4062 int i;
4063 int j;
4064
4065 if (*p == NUL)
4066 return 0;
4067
4068 if (enc_utf8)
4069 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004070 // Find the last character that is 10xx.xxxx
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
4072 ;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004073 // Check for illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 for (j = 0; p - j > base; ++j)
4075 if ((p[-j] & 0xc0) != 0x80)
4076 break;
4077 if (utf8len_tab[p[-j]] != i + j + 1)
4078 return 0;
4079 return i;
4080 }
4081
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004082 // It can't be the first byte if a double-byte when not using DBCS, at the
4083 // end of the string or the byte can't start a double-byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
4085 return 0;
4086
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004087 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 return 1 - dbcs_head_off(base, p);
4089}
4090
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004091/*
4092 * Find the next illegal byte sequence.
4093 */
4094 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004095utf_find_illegal(void)
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004096{
4097 pos_T pos = curwin->w_cursor;
4098 char_u *p;
4099 int len;
4100 vimconv_T vimconv;
4101 char_u *tofree = NULL;
4102
4103 vimconv.vc_type = CONV_NONE;
4104 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
4105 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004106 // 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
4107 // possibly a utf-8 file with illegal bytes. Setup for conversion
4108 // from utf-8 to 'fileencoding'.
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004109 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
4110 }
4111
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004112 curwin->w_cursor.coladd = 0;
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004113 for (;;)
4114 {
4115 p = ml_get_cursor();
4116 if (vimconv.vc_type != CONV_NONE)
4117 {
4118 vim_free(tofree);
4119 tofree = string_convert(&vimconv, p, NULL);
4120 if (tofree == NULL)
4121 break;
4122 p = tofree;
4123 }
4124
4125 while (*p != NUL)
4126 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004127 // Illegal means that there are not enough trail bytes (checked by
4128 // utf_ptr2len()) or too many of them (overlong sequence).
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004129 len = utf_ptr2len(p);
4130 if (*p >= 0x80 && (len == 1
4131 || utf_char2len(utf_ptr2char(p)) != len))
4132 {
4133 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004134 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004135 else
4136 {
4137 int l;
4138
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004139 len = (int)(p - tofree);
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004140 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
4141 {
4142 l = utf_ptr2len(p);
4143 curwin->w_cursor.col += l;
4144 }
4145 }
4146 goto theend;
4147 }
4148 p += len;
4149 }
4150 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
4151 break;
4152 ++curwin->w_cursor.lnum;
4153 curwin->w_cursor.col = 0;
4154 }
4155
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004156 // didn't find it: don't move and beep
Bram Moolenaar68f1a482006-03-17 23:12:21 +00004157 curwin->w_cursor = pos;
4158 beep_flush();
4159
4160theend:
4161 vim_free(tofree);
4162 convert_setup(&vimconv, NULL, NULL);
4163}
4164
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02004165#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004166/*
4167 * Return TRUE if string "s" is a valid utf-8 string.
4168 * When "end" is NULL stop at the first NUL.
4169 * When "end" is positive stop there.
4170 */
4171 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004172utf_valid_string(char_u *s, char_u *end)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004173{
4174 int l;
4175 char_u *p = s;
4176
4177 while (end == NULL ? *p != NUL : p < end)
4178 {
Bram Moolenaar24397332009-12-02 14:02:39 +00004179 l = utf8len_tab_zero[*p];
4180 if (l == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004181 return FALSE; // invalid lead byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004182 if (end != NULL && p + l > end)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004183 return FALSE; // incomplete byte sequence
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004184 ++p;
4185 while (--l > 0)
4186 if ((*p++ & 0xc0) != 0x80)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004187 return FALSE; // invalid trail byte
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004188 }
4189 return TRUE;
4190}
4191#endif
4192
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193#if defined(FEAT_GUI) || defined(PROTO)
4194/*
4195 * Special version of mb_tail_off() for use in ScreenLines[].
4196 */
4197 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004198dbcs_screen_tail_off(char_u *base, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004200 // It can't be the first byte if a double-byte when not using DBCS, at the
4201 // end of the string or the byte can't start a double-byte.
4202 // For euc-jp an 0x8e byte always means we have a lead byte in the current
4203 // cell.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 if (*p == NUL || p[1] == NUL
4205 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
4206 || MB_BYTE2LEN(*p) == 1)
4207 return 0;
4208
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004209 // Return 1 when on the lead byte, 0 when on the tail byte.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 return 1 - dbcs_screen_head_off(base, p);
4211}
4212#endif
4213
4214/*
4215 * If the cursor moves on an trail byte, set the cursor on the lead byte.
4216 * Thus it moves left if necessary.
4217 * Return TRUE when the cursor was adjusted.
4218 */
4219 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004220mb_adjust_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221{
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004222 mb_adjustpos(curbuf, &curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223}
4224
4225/*
4226 * Adjust position "*lp" to point to the first byte of a multi-byte character.
4227 * If it points to a tail byte it's moved backwards to the head byte.
4228 */
4229 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004230mb_adjustpos(buf_T *buf, pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231{
4232 char_u *p;
4233
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01004234 if (lp->col > 0 || lp->coladd > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004236 p = ml_get_buf(buf, lp->lnum, FALSE);
Bram Moolenaar95dbcbe2018-01-27 21:01:34 +01004237 if (*p == NUL || (int)STRLEN(p) < lp->col)
4238 lp->col = 0;
4239 else
4240 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004241 // Reset "coladd" when the cursor would be on the right half of a
4242 // double-wide character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 if (lp->coladd == 1
4244 && p[lp->col] != TAB
4245 && vim_isprintc((*mb_ptr2char)(p + lp->col))
4246 && ptr2cells(p + lp->col) > 1)
4247 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 }
4249}
4250
4251/*
4252 * Return a pointer to the character before "*p", if there is one.
4253 */
4254 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004255mb_prevptr(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004256 char_u *line, // start of the string
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004257 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258{
4259 if (p > line)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004260 MB_PTR_BACK(line, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 return p;
4262}
4263
4264/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004265 * Return the character length of "str". Each multi-byte character (with
4266 * following composing characters) counts as one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 */
4268 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004269mb_charlen(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004271 char_u *p = str;
4272 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004274 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 return 0;
4276
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004277 for (count = 0; *p != NUL; count++)
4278 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279
4280 return count;
4281}
4282
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00004283#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004284/*
4285 * Like mb_charlen() but for a string with specified length.
4286 */
4287 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004288mb_charlen_len(char_u *str, int len)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00004289{
4290 char_u *p = str;
4291 int count;
4292
4293 for (count = 0; *p != NUL && p < str + len; count++)
4294 p += (*mb_ptr2len)(p);
4295
4296 return count;
4297}
4298#endif
4299
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300/*
4301 * Try to un-escape a multi-byte character.
4302 * Used for the "to" and "from" part of a mapping.
4303 * Return the un-escaped string if it is a multi-byte character, and advance
4304 * "pp" to just after the bytes that formed it.
4305 * Return NULL if no multi-byte char was found.
4306 */
4307 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004308mb_unescape(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309{
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004310 static char_u buf[6];
4311 int n;
4312 int m = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 char_u *str = *pp;
4314
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004315 // Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
4316 // KS_EXTRA KE_CSI to CSI.
4317 // Maximum length of a utf-8 character is 4 bytes.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004318 for (n = 0; str[n] != NUL && m < 4; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 {
4320 if (str[n] == K_SPECIAL
4321 && str[n + 1] == KS_SPECIAL
4322 && str[n + 2] == KE_FILLER)
4323 {
4324 buf[m++] = K_SPECIAL;
4325 n += 2;
4326 }
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004327 else if ((str[n] == K_SPECIAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328# ifdef FEAT_GUI
Bram Moolenaar6203ff92008-01-06 16:18:56 +00004329 || str[n] == CSI
4330# endif
4331 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 && str[n + 1] == KS_EXTRA
4333 && str[n + 2] == (int)KE_CSI)
4334 {
4335 buf[m++] = CSI;
4336 n += 2;
4337 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 else if (str[n] == K_SPECIAL
4339# ifdef FEAT_GUI
4340 || str[n] == CSI
4341# endif
4342 )
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004343 break; // a special key can't be a multibyte char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 else
4345 buf[m++] = str[n];
4346 buf[m] = NUL;
4347
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004348 // Return a multi-byte character if it's found. An illegal sequence
4349 // will result in a 1 here.
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004350 if ((*mb_ptr2len)(buf) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 {
4352 *pp = str + n + 1;
4353 return buf;
4354 }
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004355
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004356 // Bail out quickly for ASCII.
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02004357 if (buf[0] < 128)
4358 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 }
4360 return NULL;
4361}
4362
4363/*
4364 * Return TRUE if the character at "row"/"col" on the screen is the left side
4365 * of a double-width character.
4366 * Caller must make sure "row" and "col" are not invalid!
4367 */
4368 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004369mb_lefthalve(int row, int col)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370{
Bram Moolenaar367329b2007-08-30 11:53:22 +00004371 return (*mb_off2cells)(LineOffset[row] + col,
4372 LineOffset[row] + screen_Columns) > 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373}
4374
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375/*
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004376 * Correct a position on the screen, if it's the right half of a double-wide
4377 * char move it to the left half. Returns the corrected column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 */
4379 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004380mb_fix_col(int col, int row)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381{
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004382 int off;
4383
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 col = check_col(col);
4385 row = check_row(row);
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004386 off = LineOffset[row] + col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 if (has_mbyte && ScreenLines != NULL && col > 0
4388 && ((enc_dbcs
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004389 && ScreenLines[off] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
Bram Moolenaar3dabd712019-07-08 23:30:22 +02004391 ScreenLines + off))
4392 || (enc_utf8 && ScreenLines[off] == 0
4393 && ScreenLinesUC[off] == 0)))
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004394 return col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 return col;
4396}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004398static int enc_alias_search(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399
4400/*
4401 * Skip the Vim specific head of a 'encoding' name.
4402 */
4403 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004404enc_skip(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405{
4406 if (STRNCMP(p, "2byte-", 6) == 0)
4407 return p + 6;
4408 if (STRNCMP(p, "8bit-", 5) == 0)
4409 return p + 5;
4410 return p;
4411}
4412
4413/*
4414 * Find the canonical name for encoding "enc".
4415 * When the name isn't recognized, returns "enc" itself, but with all lower
4416 * case characters and '_' replaced with '-'.
4417 * Returns an allocated string. NULL for out-of-memory.
4418 */
4419 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004420enc_canonize(char_u *enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421{
4422 char_u *r;
4423 char_u *p, *s;
4424 int i;
4425
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004426 if (STRCMP(enc, "default") == 0)
4427 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004428 // Use the default encoding as it's found by set_init_1().
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004429 r = get_encoding_default();
4430 if (r == NULL)
4431 r = (char_u *)"latin1";
4432 return vim_strsave(r);
4433 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004434
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004435 // copy "enc" to allocated memory, with room for two '-'
Bram Moolenaar964b3742019-05-24 18:54:09 +02004436 r = alloc(STRLEN(enc) + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (r != NULL)
4438 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004439 // Make it all lower case and replace '_' with '-'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 p = r;
4441 for (s = enc; *s != NUL; ++s)
4442 {
4443 if (*s == '_')
4444 *p++ = '-';
4445 else
4446 *p++ = TOLOWER_ASC(*s);
4447 }
4448 *p = NUL;
4449
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004450 // Skip "2byte-" and "8bit-".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 p = enc_skip(r);
4452
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004453 // Change "microsoft-cp" to "cp". Used in some spell files.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004454 if (STRNCMP(p, "microsoft-cp", 12) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004455 STRMOVE(p, p + 10);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004456
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004457 // "iso8859" -> "iso-8859"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 if (STRNCMP(p, "iso8859", 7) == 0)
4459 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004460 STRMOVE(p + 4, p + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 p[3] = '-';
4462 }
4463
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004464 // "iso-8859n" -> "iso-8859-n"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
4466 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004467 STRMOVE(p + 9, p + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 p[8] = '-';
4469 }
4470
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004471 // "latin-N" -> "latinN"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 if (STRNCMP(p, "latin-", 6) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004473 STRMOVE(p + 5, p + 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474
4475 if (enc_canon_search(p) >= 0)
4476 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004477 // canonical name can be used unmodified
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 if (p != r)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004479 STRMOVE(r, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 }
4481 else if ((i = enc_alias_search(p)) >= 0)
4482 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004483 // alias recognized, get canonical name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 vim_free(r);
4485 r = vim_strsave((char_u *)enc_canon_table[i].name);
4486 }
4487 }
4488 return r;
4489}
4490
4491/*
4492 * Search for an encoding alias of "name".
4493 * Returns -1 when not found.
4494 */
4495 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004496enc_alias_search(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497{
4498 int i;
4499
4500 for (i = 0; enc_alias_table[i].name != NULL; ++i)
4501 if (STRCMP(name, enc_alias_table[i].name) == 0)
4502 return enc_alias_table[i].canon;
4503 return -1;
4504}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004505
4506
4507#ifdef HAVE_LANGINFO_H
4508# include <langinfo.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509#endif
4510
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004511#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512/*
Bram Moolenaar2a027452017-09-26 19:10:37 +02004513 * Get the canonicalized encoding from the specified locale string "locale"
4514 * or from the environment variables LC_ALL, LC_CTYPE and LANG.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 * Returns an allocated string when successful, NULL when not.
4516 */
4517 char_u *
Bram Moolenaar2a027452017-09-26 19:10:37 +02004518enc_locale_env(char *locale)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519{
Bram Moolenaar2a027452017-09-26 19:10:37 +02004520 char *s = locale;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 char *p;
4522 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524
4525 if (s == NULL || *s == NUL)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004526 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
4527 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
4528 s = getenv("LANG");
4529
4530 if (s == NULL || *s == NUL)
4531 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004533 // The most generic locale format is:
4534 // language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
4535 // If there is a '.' remove the part before it.
4536 // if there is something after the codeset, remove it.
4537 // Make the name lowercase and replace '_' with '-'.
4538 // Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
4539 // "ko_KR.EUC" == "euc-kr"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
4541 {
4542 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
4543 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
4544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004545 // copy "XY.EUC" to "euc-XY" to buf[10]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 STRCPY(buf + 10, "euc-");
4547 buf[14] = p[-2];
4548 buf[15] = p[-1];
4549 buf[16] = 0;
4550 s = buf + 10;
4551 }
4552 else
4553 s = p + 1;
4554 }
Bram Moolenaar5498a412016-07-11 23:19:05 +02004555 for (i = 0; i < (int)sizeof(buf) - 1 && s[i] != NUL; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 {
4557 if (s[i] == '_' || s[i] == '-')
4558 buf[i] = '-';
4559 else if (isalnum((int)s[i]))
4560 buf[i] = TOLOWER_ASC(s[i]);
4561 else
4562 break;
4563 }
4564 buf[i] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565
4566 return enc_canonize((char_u *)buf);
4567}
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569
Bram Moolenaar2a027452017-09-26 19:10:37 +02004570/*
4571 * Get the canonicalized encoding of the current locale.
4572 * Returns an allocated string when successful, NULL when not.
4573 */
4574 char_u *
4575enc_locale(void)
4576{
Bram Moolenaar4f974752019-02-17 17:44:42 +01004577#ifdef MSWIN
Bram Moolenaar2a027452017-09-26 19:10:37 +02004578 char buf[50];
4579 long acp = GetACP();
4580
4581 if (acp == 1200)
4582 STRCPY(buf, "ucs-2le");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004583 else if (acp == 1252) // cp1252 is used as latin1
Bram Moolenaar2a027452017-09-26 19:10:37 +02004584 STRCPY(buf, "latin1");
Bram Moolenaarfa90d702019-09-07 16:07:47 +02004585 else if (acp == 65001)
4586 STRCPY(buf, "utf-8");
Bram Moolenaar2a027452017-09-26 19:10:37 +02004587 else
4588 sprintf(buf, "cp%ld", acp);
4589
4590 return enc_canonize((char_u *)buf);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004591#else
Bram Moolenaar2a027452017-09-26 19:10:37 +02004592 char *s;
4593
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004594# ifdef HAVE_NL_LANGINFO_CODESET
Bram Moolenaar2a027452017-09-26 19:10:37 +02004595 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004596# endif
4597# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar2a027452017-09-26 19:10:37 +02004598 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004599# endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004600 s = NULL;
4601
4602 return enc_locale_env(s);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004603#endif
Bram Moolenaar2a027452017-09-26 19:10:37 +02004604}
4605
Bram Moolenaar4f974752019-02-17 17:44:42 +01004606# if defined(MSWIN) || defined(PROTO) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607/*
4608 * Convert an encoding name to an MS-Windows codepage.
4609 * Returns zero if no codepage can be figured out.
4610 */
4611 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004612encname2codepage(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613{
4614 int cp;
4615 char_u *p = name;
4616 int idx;
4617
4618 if (STRNCMP(p, "8bit-", 5) == 0)
4619 p += 5;
4620 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
4621 p += 6;
4622
4623 if (p[0] == 'c' && p[1] == 'p')
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +02004624 cp = atoi((char *)p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 else if ((idx = enc_canon_search(p)) >= 0)
4626 cp = enc_canon_table[idx].codepage;
4627 else
4628 return 0;
4629 if (IsValidCodePage(cp))
4630 return cp;
4631 return 0;
4632}
Bram Moolenaar2a027452017-09-26 19:10:37 +02004633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634
4635# if defined(USE_ICONV) || defined(PROTO)
4636
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637/*
4638 * Call iconv_open() with a check if iconv() works properly (there are broken
4639 * versions).
4640 * Returns (void *)-1 if failed.
4641 * (should return iconv_t, but that causes problems with prototypes).
4642 */
4643 void *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004644my_iconv_open(char_u *to, char_u *from)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645{
4646 iconv_t fd;
4647#define ICONV_TESTLEN 400
4648 char_u tobuf[ICONV_TESTLEN];
4649 char *p;
4650 size_t tolen;
4651 static int iconv_ok = -1;
4652
4653 if (iconv_ok == FALSE)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004654 return (void *)-1; // detected a broken iconv() previously
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
4656#ifdef DYNAMIC_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004657 // Check if the iconv.dll can be found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 if (!iconv_enabled(TRUE))
4659 return (void *)-1;
4660#endif
4661
4662 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
4663
4664 if (fd != (iconv_t)-1 && iconv_ok == -1)
4665 {
4666 /*
4667 * Do a dummy iconv() call to check if it actually works. There is a
4668 * version of iconv() on Linux that is broken. We can't ignore it,
4669 * because it's wide-spread. The symptoms are that after outputting
4670 * the initial shift state the "to" pointer is NULL and conversion
4671 * stops for no apparent reason after about 8160 characters.
4672 */
4673 p = (char *)tobuf;
4674 tolen = ICONV_TESTLEN;
4675 (void)iconv(fd, NULL, NULL, &p, &tolen);
4676 if (p == NULL)
4677 {
4678 iconv_ok = FALSE;
4679 iconv_close(fd);
4680 fd = (iconv_t)-1;
4681 }
4682 else
4683 iconv_ok = TRUE;
4684 }
4685
4686 return (void *)fd;
4687}
4688
4689/*
4690 * Convert the string "str[slen]" with iconv().
4691 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4692 * sequence and set "*unconvlenp" to the length of it.
4693 * Returns the converted string in allocated memory. NULL for an error.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004694 * If resultlenp is not NULL, sets it to the result length in bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 */
4696 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004697iconv_string(
4698 vimconv_T *vcp,
4699 char_u *str,
4700 int slen,
4701 int *unconvlenp,
4702 int *resultlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703{
4704 const char *from;
4705 size_t fromlen;
4706 char *to;
4707 size_t tolen;
4708 size_t len = 0;
4709 size_t done = 0;
4710 char_u *result = NULL;
4711 char_u *p;
4712 int l;
4713
4714 from = (char *)str;
4715 fromlen = slen;
4716 for (;;)
4717 {
4718 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4719 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004720 // Allocate enough room for most conversions. When re-allocating
4721 // increase the buffer size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 len = len + fromlen * 2 + 40;
Bram Moolenaar964b3742019-05-24 18:54:09 +02004723 p = alloc(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 if (p != NULL && done > 0)
4725 mch_memmove(p, result, done);
4726 vim_free(result);
4727 result = p;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004728 if (result == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 break;
4730 }
4731
4732 to = (char *)result + done;
4733 tolen = len - done - 2;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004734 // Avoid a warning for systems with a wrong iconv() prototype by
4735 // casting the second argument to void *.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4737 != (size_t)-1)
4738 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004739 // Finished, append a NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 *to = NUL;
4741 break;
4742 }
4743
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004744 // Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4745 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 if (!vcp->vc_fail && unconvlenp != NULL
4747 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4748 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004749 // Handle an incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 *to = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004751 *unconvlenp = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 break;
4753 }
4754
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004755 // Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4756 // iconv library may use one of them.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 else if (!vcp->vc_fail
4758 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4759 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4760 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004761 // Can't convert: insert a '?' and skip a character. This assumes
4762 // conversion from 'encoding' to something else. In other
4763 // situations we don't know what to skip anyway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 *to++ = '?';
4765 if ((*mb_ptr2cells)((char_u *)from) > 1)
4766 *to++ = '?';
Bram Moolenaar217ad922005-03-20 22:37:15 +00004767 if (enc_utf8)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004768 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
Bram Moolenaar217ad922005-03-20 22:37:15 +00004769 else
4770 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004771 l = (*mb_ptr2len)((char_u *)from);
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004772 if (l > (int)fromlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004773 l = (int)fromlen;
Bram Moolenaar217ad922005-03-20 22:37:15 +00004774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 from += l;
4776 fromlen -= l;
4777 }
4778 else if (ICONV_ERRNO != ICONV_E2BIG)
4779 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004780 // conversion failed
Bram Moolenaard23a8232018-02-10 18:45:26 +01004781 VIM_CLEAR(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 break;
4783 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004784 // Not enough room or skipping illegal sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 done = to - (char *)result;
4786 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004787
Bram Moolenaar0d35e912011-04-11 14:29:17 +02004788 if (resultlenp != NULL && result != NULL)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004789 *resultlenp = (int)(to - (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 return result;
4791}
4792
4793# if defined(DYNAMIC_ICONV) || defined(PROTO)
4794/*
4795 * Dynamically load the "iconv.dll" on Win32.
4796 */
4797
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004798# ifndef DYNAMIC_ICONV // must be generating prototypes
Bram Moolenaar938ee832016-01-24 15:36:03 +01004799# define HINSTANCE int
4800# endif
Bram Moolenaard6f676d2005-06-01 21:51:55 +00004801static HINSTANCE hIconvDLL = 0;
4802static HINSTANCE hMsvcrtDLL = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
Bram Moolenaar938ee832016-01-24 15:36:03 +01004804# ifndef DYNAMIC_ICONV_DLL
4805# define DYNAMIC_ICONV_DLL "iconv.dll"
4806# define DYNAMIC_ICONV_DLL_ALT1 "libiconv.dll"
4807# define DYNAMIC_ICONV_DLL_ALT2 "libiconv2.dll"
4808# define DYNAMIC_ICONV_DLL_ALT3 "libiconv-2.dll"
4809# endif
4810# ifndef DYNAMIC_MSVCRT_DLL
4811# define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4812# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813
4814/*
4815 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4816 */
4817 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004818iconv_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819{
4820 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4821 return TRUE;
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004822
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004823 // The iconv DLL file goes under different names, try them all.
4824 // Do the "2" version first, it's newer.
Bram Moolenaar938ee832016-01-24 15:36:03 +01004825#ifdef DYNAMIC_ICONV_DLL_ALT2
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004826 if (hIconvDLL == 0)
4827 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT2);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004828#endif
4829#ifdef DYNAMIC_ICONV_DLL_ALT3
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004830 if (hIconvDLL == 0)
4831 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT3);
Bram Moolenaar938ee832016-01-24 15:36:03 +01004832#endif
4833 if (hIconvDLL == 0)
4834 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL);
4835#ifdef DYNAMIC_ICONV_DLL_ALT1
4836 if (hIconvDLL == 0)
4837 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT1);
4838#endif
Bram Moolenaar9d6ca1c2015-10-13 13:49:09 +02004839
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 if (hIconvDLL != 0)
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004841 hMsvcrtDLL = vimLoadLib(DYNAMIC_MSVCRT_DLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
4843 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004844 // Only give the message when 'verbose' is set, otherwise it might be
4845 // done whenever a conversion is attempted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004847 {
4848 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004849 semsg(_(e_loadlib),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004851 verbose_leave();
4852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 iconv_end();
4854 return FALSE;
4855 }
4856
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004857 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
4858 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
4859 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
4860 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004861 iconv_errno = get_dll_import_func(hIconvDLL, "_errno");
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004862 if (iconv_errno == NULL)
4863 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
4865 || iconvctl == NULL || iconv_errno == NULL)
4866 {
4867 iconv_end();
4868 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004869 {
4870 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004871 semsg(_(e_loadfunc), "for libiconv");
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004872 verbose_leave();
4873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 return FALSE;
4875 }
4876 return TRUE;
4877}
4878
4879 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004880iconv_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004882 // Don't use iconv() when inputting or outputting characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 if (input_conv.vc_type == CONV_ICONV)
4884 convert_setup(&input_conv, NULL, NULL);
4885 if (output_conv.vc_type == CONV_ICONV)
4886 convert_setup(&output_conv, NULL, NULL);
4887
4888 if (hIconvDLL != 0)
4889 FreeLibrary(hIconvDLL);
4890 if (hMsvcrtDLL != 0)
4891 FreeLibrary(hMsvcrtDLL);
4892 hIconvDLL = 0;
4893 hMsvcrtDLL = 0;
4894}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004895# endif // DYNAMIC_ICONV
4896# endif // USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897
Bram Moolenaara3a12462019-09-07 15:08:38 +02004898#if defined(FEAT_EVAL) || defined(PROTO)
4899/*
4900 * "getimstatus()" function
4901 */
4902 void
4903f_getimstatus(typval_T *argvars UNUSED, typval_T *rettv)
4904{
4905# if defined(HAVE_INPUT_METHOD)
4906 rettv->vval.v_number = im_get_status();
4907# endif
4908}
4909#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910
4911/*
4912 * Setup "vcp" for conversion from "from" to "to".
4913 * The names must have been made canonical with enc_canonize().
4914 * vcp->vc_type must have been initialized to CONV_NONE.
4915 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
4916 * instead).
4917 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
4918 * Return FAIL when conversion is not supported, OK otherwise.
4919 */
4920 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004921convert_setup(vimconv_T *vcp, char_u *from, char_u *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922{
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004923 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
4924}
4925
4926/*
4927 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
4928 * "from" unicode charsets be considered utf-8. Same for "to".
4929 */
4930 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004931convert_setup_ext(
4932 vimconv_T *vcp,
4933 char_u *from,
4934 int from_unicode_is_utf8,
4935 char_u *to,
4936 int to_unicode_is_utf8)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004937{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 int from_prop;
4939 int to_prop;
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004940 int from_is_utf8;
4941 int to_is_utf8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004943 // Reset to no conversion.
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004944#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
4946 iconv_close(vcp->vc_fd);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 vcp->vc_type = CONV_NONE;
4949 vcp->vc_factor = 1;
4950 vcp->vc_fail = FALSE;
4951
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004952 // No conversion when one of the names is empty or they are equal.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 if (from == NULL || *from == NUL || to == NULL || *to == NUL
4954 || STRCMP(from, to) == 0)
4955 return OK;
4956
4957 from_prop = enc_canon_props(from);
4958 to_prop = enc_canon_props(to);
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004959 if (from_unicode_is_utf8)
4960 from_is_utf8 = from_prop & ENC_UNICODE;
4961 else
4962 from_is_utf8 = from_prop == ENC_UNICODE;
4963 if (to_unicode_is_utf8)
4964 to_is_utf8 = to_prop & ENC_UNICODE;
4965 else
4966 to_is_utf8 = to_prop == ENC_UNICODE;
4967
4968 if ((from_prop & ENC_LATIN1) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004970 // Internal latin1 -> utf-8 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 vcp->vc_type = CONV_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004972 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004974 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004975 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004976 // Internal latin9 -> utf-8 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004977 vcp->vc_type = CONV_9_TO_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004978 vcp->vc_factor = 3; // up to three as long (euro sign)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004979 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004980 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004982 // Internal utf-8 -> latin1 conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 vcp->vc_type = CONV_TO_LATIN1;
4984 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004985 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004986 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004987 // Internal utf-8 -> latin9 conversion.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004988 vcp->vc_type = CONV_TO_LATIN9;
4989 }
Bram Moolenaar4f974752019-02-17 17:44:42 +01004990#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004991 // Win32-specific codepage <-> codepage conversion without iconv.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004992 else if ((from_is_utf8 || encname2codepage(from) > 0)
4993 && (to_is_utf8 || encname2codepage(to) > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 {
4995 vcp->vc_type = CONV_CODEPAGE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004996 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004997 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
4998 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 }
5000#endif
Bram Moolenaard0573012017-10-28 21:11:06 +02005001#ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
5003 {
5004 vcp->vc_type = CONV_MAC_LATIN1;
5005 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005006 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 {
5008 vcp->vc_type = CONV_MAC_UTF8;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005009 vcp->vc_factor = 2; // up to twice as long
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 }
5011 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
5012 {
5013 vcp->vc_type = CONV_LATIN1_MAC;
5014 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005015 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 {
5017 vcp->vc_type = CONV_UTF8_MAC;
5018 }
5019#endif
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005020#ifdef USE_ICONV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 else
5022 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005023 // Use iconv() for conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 vcp->vc_fd = (iconv_t)my_iconv_open(
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005025 to_is_utf8 ? (char_u *)"utf-8" : to,
5026 from_is_utf8 ? (char_u *)"utf-8" : from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 if (vcp->vc_fd != (iconv_t)-1)
5028 {
5029 vcp->vc_type = CONV_ICONV;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005030 vcp->vc_factor = 4; // could be longer too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 }
5032 }
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01005033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 if (vcp->vc_type == CONV_NONE)
5035 return FAIL;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005036
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 return OK;
5038}
5039
Bram Moolenaar4f974752019-02-17 17:44:42 +01005040#if defined(FEAT_GUI) || defined(AMIGA) || defined(MSWIN) \
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005041 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042/*
5043 * Do conversion on typed input characters in-place.
5044 * The input and output are not NUL terminated!
5045 * Returns the length after conversion.
5046 */
5047 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005048convert_input(char_u *ptr, int len, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049{
5050 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
5051}
5052#endif
5053
5054/*
5055 * Like convert_input(), but when there is an incomplete byte sequence at the
5056 * end return that as an allocated string in "restp" and set "*restlenp" to
5057 * the length. If "restp" is NULL it is not used.
5058 */
5059 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005060convert_input_safe(
5061 char_u *ptr,
5062 int len,
5063 int maxlen,
5064 char_u **restp,
5065 int *restlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066{
5067 char_u *d;
5068 int dlen = len;
5069 int unconvertlen = 0;
5070
5071 d = string_convert_ext(&input_conv, ptr, &dlen,
5072 restp == NULL ? NULL : &unconvertlen);
5073 if (d != NULL)
5074 {
5075 if (dlen <= maxlen)
5076 {
5077 if (unconvertlen > 0)
5078 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005079 // Move the unconverted characters to allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 *restp = alloc(unconvertlen);
5081 if (*restp != NULL)
5082 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
5083 *restlenp = unconvertlen;
5084 }
5085 mch_memmove(ptr, d, dlen);
5086 }
5087 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005088 // result is too long, keep the unconverted text (the caller must
5089 // have done something wrong!)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 dlen = len;
5091 vim_free(d);
5092 }
5093 return dlen;
5094}
5095
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096/*
5097 * Convert text "ptr[*lenp]" according to "vcp".
5098 * Returns the result in allocated memory and sets "*lenp".
5099 * When "lenp" is NULL, use NUL terminated strings.
5100 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
5101 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
5102 */
5103 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005104string_convert(
5105 vimconv_T *vcp,
5106 char_u *ptr,
5107 int *lenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108{
5109 return string_convert_ext(vcp, ptr, lenp, NULL);
5110}
5111
5112/*
5113 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
5114 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
5115 * set to the number of remaining bytes.
5116 */
5117 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005118string_convert_ext(
5119 vimconv_T *vcp,
5120 char_u *ptr,
5121 int *lenp,
5122 int *unconvlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123{
5124 char_u *retval = NULL;
5125 char_u *d;
5126 int len;
5127 int i;
5128 int l;
5129 int c;
5130
5131 if (lenp == NULL)
5132 len = (int)STRLEN(ptr);
5133 else
5134 len = *lenp;
5135 if (len == 0)
5136 return vim_strsave((char_u *)"");
5137
5138 switch (vcp->vc_type)
5139 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005140 case CONV_TO_UTF8: // latin1 to utf-8 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 retval = alloc(len * 2 + 1);
5142 if (retval == NULL)
5143 break;
5144 d = retval;
5145 for (i = 0; i < len; ++i)
5146 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005147 c = ptr[i];
5148 if (c < 0x80)
5149 *d++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 else
5151 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005152 *d++ = 0xc0 + ((unsigned)c >> 6);
5153 *d++ = 0x80 + (c & 0x3f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 }
5155 }
5156 *d = NUL;
5157 if (lenp != NULL)
5158 *lenp = (int)(d - retval);
5159 break;
5160
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005161 case CONV_9_TO_UTF8: // latin9 to utf-8 conversion
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005162 retval = alloc(len * 3 + 1);
5163 if (retval == NULL)
5164 break;
5165 d = retval;
5166 for (i = 0; i < len; ++i)
5167 {
5168 c = ptr[i];
5169 switch (c)
5170 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005171 case 0xa4: c = 0x20ac; break; // euro
5172 case 0xa6: c = 0x0160; break; // S hat
5173 case 0xa8: c = 0x0161; break; // S -hat
5174 case 0xb4: c = 0x017d; break; // Z hat
5175 case 0xb8: c = 0x017e; break; // Z -hat
5176 case 0xbc: c = 0x0152; break; // OE
5177 case 0xbd: c = 0x0153; break; // oe
5178 case 0xbe: c = 0x0178; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005179 }
5180 d += utf_char2bytes(c, d);
5181 }
5182 *d = NUL;
5183 if (lenp != NULL)
5184 *lenp = (int)(d - retval);
5185 break;
5186
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005187 case CONV_TO_LATIN1: // utf-8 to latin1 conversion
5188 case CONV_TO_LATIN9: // utf-8 to latin9 conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 retval = alloc(len + 1);
5190 if (retval == NULL)
5191 break;
5192 d = retval;
5193 for (i = 0; i < len; ++i)
5194 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005195 l = utf_ptr2len_len(ptr + i, len - i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 if (l == 0)
5197 *d++ = NUL;
5198 else if (l == 1)
5199 {
Bram Moolenaar24397332009-12-02 14:02:39 +00005200 int l_w = utf8len_tab_zero[ptr[i]];
5201
5202 if (l_w == 0)
5203 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005204 // Illegal utf-8 byte cannot be converted
Bram Moolenaar24397332009-12-02 14:02:39 +00005205 vim_free(retval);
5206 return NULL;
5207 }
5208 if (unconvlenp != NULL && l_w > len - i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005210 // Incomplete sequence at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 *unconvlenp = len - i;
5212 break;
5213 }
5214 *d++ = ptr[i];
5215 }
5216 else
5217 {
5218 c = utf_ptr2char(ptr + i);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005219 if (vcp->vc_type == CONV_TO_LATIN9)
5220 switch (c)
5221 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005222 case 0x20ac: c = 0xa4; break; // euro
5223 case 0x0160: c = 0xa6; break; // S hat
5224 case 0x0161: c = 0xa8; break; // S -hat
5225 case 0x017d: c = 0xb4; break; // Z hat
5226 case 0x017e: c = 0xb8; break; // Z -hat
5227 case 0x0152: c = 0xbc; break; // OE
5228 case 0x0153: c = 0xbd; break; // oe
5229 case 0x0178: c = 0xbe; break; // Y
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005230 case 0xa4:
5231 case 0xa6:
5232 case 0xa8:
5233 case 0xb4:
5234 case 0xb8:
5235 case 0xbc:
5236 case 0xbd:
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005237 case 0xbe: c = 0x100; break; // not in latin9
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005238 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005239 if (!utf_iscomposing(c)) // skip composing chars
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 {
5241 if (c < 0x100)
5242 *d++ = c;
5243 else if (vcp->vc_fail)
5244 {
5245 vim_free(retval);
5246 return NULL;
5247 }
5248 else
5249 {
5250 *d++ = 0xbf;
5251 if (utf_char2cells(c) > 1)
5252 *d++ = '?';
5253 }
5254 }
5255 i += l - 1;
5256 }
5257 }
5258 *d = NUL;
5259 if (lenp != NULL)
5260 *lenp = (int)(d - retval);
5261 break;
5262
Bram Moolenaar56718732006-03-15 22:53:57 +00005263# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 case CONV_MAC_LATIN1:
5265 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005266 'm', 'l', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267 break;
5268
5269 case CONV_LATIN1_MAC:
5270 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005271 'l', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 break;
5273
5274 case CONV_MAC_UTF8:
5275 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005276 'm', 'u', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 break;
5278
5279 case CONV_UTF8_MAC:
5280 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005281 'u', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 break;
5283# endif
5284
5285# ifdef USE_ICONV
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005286 case CONV_ICONV: // conversion with output_conv.vc_fd
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005287 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288 break;
5289# endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005290# ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005291 case CONV_CODEPAGE: // codepage -> codepage
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 {
5293 int retlen;
5294 int tmp_len;
5295 short_u *tmp;
5296
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005297 // 1. codepage/UTF-8 -> ucs-2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005299 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 else
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005301 {
5302 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom,
5303 unconvlenp ? MB_ERR_INVALID_CHARS : 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005304 (char *)ptr, len, 0, 0);
Bram Moolenaarffeedec2013-02-13 16:49:58 +01005305 if (tmp_len == 0
5306 && GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
5307 {
5308 if (lenp != NULL)
5309 *lenp = 0;
5310 if (unconvlenp != NULL)
5311 *unconvlenp = len;
5312 retval = alloc(1);
5313 if (retval)
5314 retval[0] = NUL;
5315 return retval;
5316 }
5317 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005318 tmp = ALLOC_MULT(short_u, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319 if (tmp == NULL)
5320 break;
5321 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005322 utf8_to_utf16(ptr, len, tmp, unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005324 MultiByteToWideChar(vcp->vc_cpfrom, 0,
5325 (char *)ptr, len, tmp, tmp_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005327 // 2. ucs-2 -> codepage/UTF-8.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005329 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330 else
5331 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
5332 tmp, tmp_len, 0, 0, 0, 0);
5333 retval = alloc(retlen + 1);
5334 if (retval != NULL)
5335 {
5336 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00005337 utf16_to_utf8(tmp, tmp_len, retval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 else
5339 WideCharToMultiByte(vcp->vc_cpto, 0,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005340 tmp, tmp_len,
5341 (char *)retval, retlen, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 retval[retlen] = NUL;
5343 if (lenp != NULL)
5344 *lenp = retlen;
5345 }
5346 vim_free(tmp);
5347 break;
5348 }
5349# endif
5350 }
5351
5352 return retval;
5353}
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02005354
5355/*
5356 * Table set by setcellwidths().
5357 */
5358typedef struct
5359{
5360 long first;
5361 long last;
5362 char width;
5363} cw_interval_T;
5364
5365static cw_interval_T *cw_table = NULL;
5366static size_t cw_table_size = 0;
5367
5368/*
5369 * Return 1 or 2 when "c" is in the cellwidth table.
5370 * Return 0 if not.
5371 */
5372 static int
5373cw_value(int c)
5374{
5375 int mid, bot, top;
5376
5377 if (cw_table == NULL)
5378 return 0;
5379
5380 // first quick check for Latin1 etc. characters
5381 if (c < cw_table[0].first)
5382 return 0;
5383
5384 // binary search in table
5385 bot = 0;
5386 top = (int)cw_table_size - 1;
5387 while (top >= bot)
5388 {
5389 mid = (bot + top) / 2;
5390 if (cw_table[mid].last < c)
5391 bot = mid + 1;
5392 else if (cw_table[mid].first > c)
5393 top = mid - 1;
5394 else
5395 return cw_table[mid].width;
5396 }
5397 return 0;
5398}
5399
5400 static int
5401tv_nr_compare(const void *a1, const void *a2)
5402{
5403 listitem_T *li1 = (listitem_T *)a1;
5404 listitem_T *li2 = (listitem_T *)a2;
5405
5406 return li1->li_tv.vval.v_number - li2->li_tv.vval.v_number;
5407}
5408
5409 void
5410f_setcellwidths(typval_T *argvars, typval_T *rettv UNUSED)
5411{
5412 list_T *l;
5413 listitem_T *li;
5414 int item;
5415 int i;
5416 listitem_T **ptrs;
5417 cw_interval_T *table;
5418
5419 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
5420 {
5421 emsg(_(e_listreq));
5422 return;
5423 }
5424 l = argvars[0].vval.v_list;
5425 if (l->lv_len == 0)
5426 {
5427 // Clearing the table.
5428 vim_free(cw_table);
5429 cw_table = NULL;
5430 cw_table_size = 0;
5431 return;
5432 }
5433
5434 ptrs = ALLOC_MULT(listitem_T *, l->lv_len);
5435 if (ptrs == NULL)
5436 return;
5437
5438 // Check that all entries are a list with three numbers, the range is
5439 // valid and the cell width is valid.
5440 item = 0;
5441 for (li = l->lv_first; li != NULL; li = li->li_next)
5442 {
5443 listitem_T *lili;
5444 varnumber_T n1;
5445
5446 if (li->li_tv.v_type != VAR_LIST || li->li_tv.vval.v_list == NULL)
5447 {
5448 semsg(_(e_list_item_nr_is_not_list), item);
5449 vim_free(ptrs);
5450 return;
5451 }
5452 for (lili = li->li_tv.vval.v_list->lv_first, i = 0; lili != NULL;
5453 lili = lili->li_next, ++i)
5454 {
5455 if (lili->li_tv.v_type != VAR_NUMBER)
5456 break;
5457 if (i == 0)
5458 {
5459 n1 = lili->li_tv.vval.v_number;
5460 if (n1 < 0x100)
5461 {
5462 emsg(_(e_only_values_of_0x100_and_higher_supported));
5463 vim_free(ptrs);
5464 return;
5465 }
5466 }
5467 else if (i == 1 && lili->li_tv.vval.v_number < n1)
5468 {
5469 semsg(_(e_list_item_nr_range_invalid), item);
5470 vim_free(ptrs);
5471 return;
5472 }
5473 else if (i == 2 && (lili->li_tv.vval.v_number < 1
5474 || lili->li_tv.vval.v_number > 2))
5475 {
5476 semsg(_(e_list_item_nr_cell_width_invalid), item);
5477 vim_free(ptrs);
5478 return;
5479 }
5480 }
5481 if (i != 3)
5482 {
5483 semsg(_(e_list_item_nr_does_not_contain_3_numbers), item);
5484 vim_free(ptrs);
5485 return;
5486 }
5487 ptrs[item++] = lili;
5488 }
5489
5490 // Sort the list on the first number.
5491 qsort((void *)ptrs, (size_t)l->lv_len, sizeof(listitem_T *), tv_nr_compare);
5492
5493 table = ALLOC_MULT(cw_interval_T, l->lv_len);
5494 if (table == NULL)
5495 {
5496 vim_free(ptrs);
5497 return;
5498 }
5499
5500 // Store the items in the new table.
5501 item = 0;
5502 for (li = l->lv_first; li != NULL; li = li->li_next)
5503 {
5504 listitem_T *lili = li->li_tv.vval.v_list->lv_first;
5505 varnumber_T n1;
5506
5507 n1 = lili->li_tv.vval.v_number;
5508 if (item > 0 && n1 <= table[item - 1].last)
5509 {
5510 semsg(_(e_overlapping_ranges_for_nr), (long)n1);
5511 vim_free(ptrs);
5512 vim_free(table);
5513 return;
5514 }
5515 table[item].first = n1;
5516 lili = lili->li_next;
5517 table[item].last = lili->li_tv.vval.v_number;
5518 lili = lili->li_next;
5519 table[item].width = lili->li_tv.vval.v_number;
5520 ++item;
5521 }
5522
5523 vim_free(ptrs);
5524 vim_free(cw_table);
5525 cw_table = table;
5526 cw_table_size = l->lv_len;
5527}