blob: 6340992de414a171bc9a7669001b91ba8eba3fff [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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
86# include <windows.h>
87# ifdef WIN32
88# undef WIN32 /* Some windows.h define WIN32, we don't want that here. */
89# endif
90#endif
91
92#if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
93# include <winnls.h>
94#endif
95
96#ifdef FEAT_GUI_X11
97# include <X11/Intrinsic.h>
98#endif
99#ifdef X_LOCALE
100#include <X11/Xlocale.h>
101#endif
102
Bram Moolenaar182c5be2010-06-25 05:37:59 +0200103#if defined(FEAT_GUI_GTK) && defined(FEAT_XIM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104# include <gdk/gdkkeysyms.h>
105# ifdef WIN3264
106# include <gdk/gdkwin32.h>
107# else
108# include <gdk/gdkx.h>
109# endif
110#endif
111
112#ifdef HAVE_WCHAR_H
113# include <wchar.h>
114#endif
115
116#if 0
117/* This has been disabled, because several people reported problems with the
118 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
119# ifdef __STDC_ISO_10646__
120# define USE_WCHAR_FUNCTIONS
121# endif
122#endif
123
124#if defined(FEAT_MBYTE) || defined(PROTO)
125
126static int enc_canon_search __ARGS((char_u *name));
127static int dbcs_char2len __ARGS((int c));
128static int dbcs_char2bytes __ARGS((int c, char_u *buf));
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000129static int dbcs_ptr2len __ARGS((char_u *p));
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000130static int dbcs_ptr2len_len __ARGS((char_u *p, int size));
131static int utf_ptr2cells_len __ARGS((char_u *p, int size));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132static int dbcs_char2cells __ARGS((int c));
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000133static int dbcs_ptr2cells_len __ARGS((char_u *p, int size));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134static int dbcs_ptr2char __ARGS((char_u *p));
Bram Moolenaar35ee4522011-07-15 21:16:59 +0200135static int utf_safe_read_char_adv __ARGS((char_u **s, size_t *n));
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
170/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
172 * in the "xim.log" file.
173 */
174/* #define XIM_DEBUG */
175#ifdef XIM_DEBUG
176 static void
177xim_log(char *s, ...)
178{
179 va_list arglist;
180 static FILE *fd = NULL;
181
182 if (fd == (FILE *)-1)
183 return;
184 if (fd == NULL)
185 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000186 fd = mch_fopen("xim.log", "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 if (fd == NULL)
188 {
189 EMSG("Cannot open xim.log");
190 fd = (FILE *)-1;
191 return;
192 }
193 }
194
195 va_start(arglist, s);
196 vfprintf(fd, s, arglist);
197 va_end(arglist);
198}
199#endif
200
201#endif
202
203#if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
204/*
205 * Canonical encoding names and their properties.
206 * "iso-8859-n" is handled by enc_canonize() directly.
207 */
208static struct
209{ char *name; int prop; int codepage;}
210enc_canon_table[] =
211{
212#define IDX_LATIN_1 0
213 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
214#define IDX_ISO_2 1
215 {"iso-8859-2", ENC_8BIT, 0},
216#define IDX_ISO_3 2
217 {"iso-8859-3", ENC_8BIT, 0},
218#define IDX_ISO_4 3
219 {"iso-8859-4", ENC_8BIT, 0},
220#define IDX_ISO_5 4
221 {"iso-8859-5", ENC_8BIT, 0},
222#define IDX_ISO_6 5
223 {"iso-8859-6", ENC_8BIT, 0},
224#define IDX_ISO_7 6
225 {"iso-8859-7", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000226#define IDX_ISO_8 7
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 {"iso-8859-8", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000228#define IDX_ISO_9 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 {"iso-8859-9", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000230#define IDX_ISO_10 9
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 {"iso-8859-10", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000232#define IDX_ISO_11 10
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 {"iso-8859-11", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000234#define IDX_ISO_13 11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235 {"iso-8859-13", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000236#define IDX_ISO_14 12
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 {"iso-8859-14", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000238#define IDX_ISO_15 13
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000239 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000240#define IDX_KOI8_R 14
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 {"koi8-r", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000242#define IDX_KOI8_U 15
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 {"koi8-u", ENC_8BIT, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000244#define IDX_UTF8 16
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 {"utf-8", ENC_UNICODE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000246#define IDX_UCS2 17
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000248#define IDX_UCS2LE 18
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000250#define IDX_UTF16 19
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000252#define IDX_UTF16LE 20
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000254#define IDX_UCS4 21
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000256#define IDX_UCS4LE 22
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000258
259 /* For debugging DBCS encoding on Unix. */
260#define IDX_DEBUG 23
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 {"debug", ENC_DBCS, DBCS_DEBUG},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000262#define IDX_EUC_JP 24
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 {"euc-jp", ENC_DBCS, DBCS_JPNU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000264#define IDX_SJIS 25
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 {"sjis", ENC_DBCS, DBCS_JPN},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000266#define IDX_EUC_KR 26
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 {"euc-kr", ENC_DBCS, DBCS_KORU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000268#define IDX_EUC_CN 27
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 {"euc-cn", ENC_DBCS, DBCS_CHSU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000270#define IDX_EUC_TW 28
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 {"euc-tw", ENC_DBCS, DBCS_CHTU},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000272#define IDX_BIG5 29
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 {"big5", ENC_DBCS, DBCS_CHT},
Bram Moolenaar35fdbb52005-07-09 21:08:57 +0000274
275 /* MS-DOS and MS-Windows codepages are included here, so that they can be
276 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
277 * not exactly the same. */
278#define IDX_CP437 30
279 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
280#define IDX_CP737 31
281 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
282#define IDX_CP775 32
283 {"cp775", ENC_8BIT, 775}, /* Baltic */
284#define IDX_CP850 33
285 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
286#define IDX_CP852 34
287 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
288#define IDX_CP855 35
289 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
290#define IDX_CP857 36
291 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
292#define IDX_CP860 37
293 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
294#define IDX_CP861 38
295 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
296#define IDX_CP862 39
297 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
298#define IDX_CP863 40
299 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
300#define IDX_CP865 41
301 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
302#define IDX_CP866 42
303 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
304#define IDX_CP869 43
305 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
306#define IDX_CP874 44
307 {"cp874", ENC_8BIT, 874}, /* Thai */
308#define IDX_CP932 45
309 {"cp932", ENC_DBCS, DBCS_JPN},
310#define IDX_CP936 46
311 {"cp936", ENC_DBCS, DBCS_CHS},
312#define IDX_CP949 47
313 {"cp949", ENC_DBCS, DBCS_KOR},
314#define IDX_CP950 48
315 {"cp950", ENC_DBCS, DBCS_CHT},
316#define IDX_CP1250 49
317 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
318#define IDX_CP1251 50
319 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
320 /* cp1252 is considered to be equal to latin1 */
321#define IDX_CP1253 51
322 {"cp1253", ENC_8BIT, 1253}, /* Greek */
323#define IDX_CP1254 52
324 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
325#define IDX_CP1255 53
326 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
327#define IDX_CP1256 54
328 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
329#define IDX_CP1257 55
330 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
331#define IDX_CP1258 56
332 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
333
334#define IDX_MACROMAN 57
335 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000336#define IDX_DECMCS 58
337 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
338#define IDX_HPROMAN8 59
339 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
340#define IDX_COUNT 60
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341};
342
343/*
344 * Aliases for encoding names.
345 */
346static struct
347{ char *name; int canon;}
348enc_alias_table[] =
349{
350 {"ansi", IDX_LATIN_1},
351 {"iso-8859-1", IDX_LATIN_1},
352 {"latin2", IDX_ISO_2},
353 {"latin3", IDX_ISO_3},
354 {"latin4", IDX_ISO_4},
355 {"cyrillic", IDX_ISO_5},
356 {"arabic", IDX_ISO_6},
357 {"greek", IDX_ISO_7},
358#ifdef WIN3264
359 {"hebrew", IDX_CP1255},
360#else
361 {"hebrew", IDX_ISO_8},
362#endif
363 {"latin5", IDX_ISO_9},
364 {"turkish", IDX_ISO_9}, /* ? */
365 {"latin6", IDX_ISO_10},
366 {"nordic", IDX_ISO_10}, /* ? */
367 {"thai", IDX_ISO_11}, /* ? */
368 {"latin7", IDX_ISO_13},
369 {"latin8", IDX_ISO_14},
370 {"latin9", IDX_ISO_15},
371 {"utf8", IDX_UTF8},
372 {"unicode", IDX_UCS2},
373 {"ucs2", IDX_UCS2},
374 {"ucs2be", IDX_UCS2},
375 {"ucs-2be", IDX_UCS2},
376 {"ucs2le", IDX_UCS2LE},
377 {"utf16", IDX_UTF16},
378 {"utf16be", IDX_UTF16},
379 {"utf-16be", IDX_UTF16},
380 {"utf16le", IDX_UTF16LE},
381 {"ucs4", IDX_UCS4},
382 {"ucs4be", IDX_UCS4},
383 {"ucs-4be", IDX_UCS4},
384 {"ucs4le", IDX_UCS4LE},
Bram Moolenaar5360af92008-02-20 10:29:39 +0000385 {"utf32", IDX_UCS4},
386 {"utf-32", IDX_UCS4},
387 {"utf32be", IDX_UCS4},
388 {"utf-32be", IDX_UCS4},
389 {"utf32le", IDX_UCS4LE},
390 {"utf-32le", IDX_UCS4LE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 {"932", IDX_CP932},
392 {"949", IDX_CP949},
393 {"936", IDX_CP936},
Bram Moolenaar0928caa2006-08-16 16:03:34 +0000394 {"gbk", IDX_CP936},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 {"950", IDX_CP950},
396 {"eucjp", IDX_EUC_JP},
397 {"unix-jis", IDX_EUC_JP},
398 {"ujis", IDX_EUC_JP},
399 {"shift-jis", IDX_SJIS},
400 {"euckr", IDX_EUC_KR},
401 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
402 {"euccn", IDX_EUC_CN},
403 {"gb2312", IDX_EUC_CN},
404 {"euctw", IDX_EUC_TW},
405#if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
406 {"japan", IDX_CP932},
407 {"korea", IDX_CP949},
408 {"prc", IDX_CP936},
409 {"chinese", IDX_CP936},
410 {"taiwan", IDX_CP950},
411 {"big5", IDX_CP950},
412#else
413 {"japan", IDX_EUC_JP},
414 {"korea", IDX_EUC_KR},
415 {"prc", IDX_EUC_CN},
416 {"chinese", IDX_EUC_CN},
417 {"taiwan", IDX_EUC_TW},
418 {"cp950", IDX_BIG5},
419 {"950", IDX_BIG5},
420#endif
421 {"mac", IDX_MACROMAN},
Bram Moolenaarae177eb2006-05-13 15:06:23 +0000422 {"mac-roman", IDX_MACROMAN},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 {NULL, 0}
424};
425
426#ifndef CP_UTF8
427# define CP_UTF8 65001 /* magic number from winnls.h */
428#endif
429
430/*
431 * Find encoding "name" in the list of canonical encoding names.
432 * Returns -1 if not found.
433 */
434 static int
435enc_canon_search(name)
436 char_u *name;
437{
438 int i;
439
440 for (i = 0; i < IDX_COUNT; ++i)
441 if (STRCMP(name, enc_canon_table[i].name) == 0)
442 return i;
443 return -1;
444}
445
446#endif
447
448#if defined(FEAT_MBYTE) || defined(PROTO)
449
450/*
451 * Find canonical encoding "name" in the list and return its properties.
452 * Returns 0 if not found.
453 */
454 int
455enc_canon_props(name)
456 char_u *name;
457{
458 int i;
459
460 i = enc_canon_search(name);
461 if (i >= 0)
462 return enc_canon_table[i].prop;
463#ifdef WIN3264
464 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
465 {
466 CPINFO cpinfo;
467
468 /* Get info on this codepage to find out what it is. */
469 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
470 {
471 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
472 return ENC_8BIT;
473 if (cpinfo.MaxCharSize == 2
474 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
475 /* must be a DBCS encoding */
476 return ENC_DBCS;
477 }
478 return 0;
479 }
480#endif
481 if (STRNCMP(name, "2byte-", 6) == 0)
482 return ENC_DBCS;
483 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
484 return ENC_8BIT;
485 return 0;
486}
487
488/*
489 * Set up for using multi-byte characters.
490 * Called in three cases:
491 * - by main() to initialize (p_enc == NULL)
492 * - by set_init_1() after 'encoding' was set to its default.
493 * - by do_set() when 'encoding' has been set.
494 * p_enc must have been passed through enc_canonize() already.
495 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
496 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
497 * When there is something wrong: Returns an error message and doesn't change
498 * anything.
499 */
500 char_u *
501mb_init()
502{
503 int i;
504 int idx;
505 int n;
506 int enc_dbcs_new = 0;
507#if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
508 && !defined(MACOS)
509# define LEN_FROM_CONV
510 vimconv_T vimconv;
511 char_u *p;
512#endif
513
514 if (p_enc == NULL)
515 {
516 /* Just starting up: set the whole table to one's. */
517 for (i = 0; i < 256; ++i)
518 mb_bytelen_tab[i] = 1;
519 input_conv.vc_type = CONV_NONE;
520 input_conv.vc_factor = 1;
521 output_conv.vc_type = CONV_NONE;
522 return NULL;
523 }
524
525#ifdef WIN3264
526 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
527 {
528 CPINFO cpinfo;
529
530 /* Get info on this codepage to find out what it is. */
531 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
532 {
533 if (cpinfo.MaxCharSize == 1)
534 {
535 /* some single-byte encoding */
536 enc_unicode = 0;
537 enc_utf8 = FALSE;
538 }
539 else if (cpinfo.MaxCharSize == 2
540 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
541 {
542 /* must be a DBCS encoding, check below */
543 enc_dbcs_new = atoi(p_enc + 2);
544 }
545 else
546 goto codepage_invalid;
547 }
548 else if (GetLastError() == ERROR_INVALID_PARAMETER)
549 {
550codepage_invalid:
551 return (char_u *)N_("E543: Not a valid codepage");
552 }
553 }
554#endif
555 else if (STRNCMP(p_enc, "8bit-", 5) == 0
556 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
557 {
558 /* Accept any "8bit-" or "iso-8859-" name. */
559 enc_unicode = 0;
560 enc_utf8 = FALSE;
561 }
562 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
563 {
564#ifdef WIN3264
565 /* Windows: accept only valid codepage numbers, check below. */
566 if (p_enc[6] != 'c' || p_enc[7] != 'p'
567 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
568 return e_invarg;
569#else
570 /* Unix: accept any "2byte-" name, assume current locale. */
571 enc_dbcs_new = DBCS_2BYTE;
572#endif
573 }
574 else if ((idx = enc_canon_search(p_enc)) >= 0)
575 {
576 i = enc_canon_table[idx].prop;
577 if (i & ENC_UNICODE)
578 {
579 /* Unicode */
580 enc_utf8 = TRUE;
581 if (i & (ENC_2BYTE | ENC_2WORD))
582 enc_unicode = 2;
583 else if (i & ENC_4BYTE)
584 enc_unicode = 4;
585 else
586 enc_unicode = 0;
587 }
588 else if (i & ENC_DBCS)
589 {
590 /* 2byte, handle below */
591 enc_dbcs_new = enc_canon_table[idx].codepage;
592 }
593 else
594 {
595 /* Must be 8-bit. */
596 enc_unicode = 0;
597 enc_utf8 = FALSE;
598 }
599 }
600 else /* Don't know what encoding this is, reject it. */
601 return e_invarg;
602
603 if (enc_dbcs_new != 0)
604 {
605#ifdef WIN3264
606 /* Check if the DBCS code page is OK. */
607 if (!IsValidCodePage(enc_dbcs_new))
608 goto codepage_invalid;
609#endif
610 enc_unicode = 0;
611 enc_utf8 = FALSE;
612 }
613 enc_dbcs = enc_dbcs_new;
614 has_mbyte = (enc_dbcs != 0 || enc_utf8);
615
Bram Moolenaar693e40c2013-02-26 14:56:42 +0100616#if defined(WIN3264) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 enc_codepage = encname2codepage(p_enc);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000618 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619#endif
620
Bram Moolenaar78622822005-08-23 21:00:13 +0000621 /* Detect an encoding that uses latin1 characters. */
622 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
623 || STRCMP(p_enc, "iso-8859-15") == 0);
624
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 /*
626 * Set the function pointers.
627 */
628 if (enc_utf8)
629 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000630 mb_ptr2len = utfc_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000631 mb_ptr2len_len = utfc_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 mb_char2len = utf_char2len;
633 mb_char2bytes = utf_char2bytes;
634 mb_ptr2cells = utf_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000635 mb_ptr2cells_len = utf_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 mb_char2cells = utf_char2cells;
637 mb_off2cells = utf_off2cells;
638 mb_ptr2char = utf_ptr2char;
639 mb_head_off = utf_head_off;
640 }
641 else if (enc_dbcs != 0)
642 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000643 mb_ptr2len = dbcs_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000644 mb_ptr2len_len = dbcs_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 mb_char2len = dbcs_char2len;
646 mb_char2bytes = dbcs_char2bytes;
647 mb_ptr2cells = dbcs_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000648 mb_ptr2cells_len = dbcs_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 mb_char2cells = dbcs_char2cells;
650 mb_off2cells = dbcs_off2cells;
651 mb_ptr2char = dbcs_ptr2char;
652 mb_head_off = dbcs_head_off;
653 }
654 else
655 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000656 mb_ptr2len = latin_ptr2len;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000657 mb_ptr2len_len = latin_ptr2len_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 mb_char2len = latin_char2len;
659 mb_char2bytes = latin_char2bytes;
660 mb_ptr2cells = latin_ptr2cells;
Bram Moolenaarfeba08b2009-06-16 13:12:07 +0000661 mb_ptr2cells_len = latin_ptr2cells_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 mb_char2cells = latin_char2cells;
663 mb_off2cells = latin_off2cells;
664 mb_ptr2char = latin_ptr2char;
665 mb_head_off = latin_head_off;
666 }
667
668 /*
669 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
670 */
671#ifdef LEN_FROM_CONV
672 /* When 'encoding' is different from the current locale mblen() won't
673 * work. Use conversion to "utf-8" instead. */
674 vimconv.vc_type = CONV_NONE;
675 if (enc_dbcs)
676 {
677 p = enc_locale();
678 if (p == NULL || STRCMP(p, p_enc) != 0)
679 {
680 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
681 vimconv.vc_fail = TRUE;
682 }
683 vim_free(p);
684 }
685#endif
686
687 for (i = 0; i < 256; ++i)
688 {
689 /* Our own function to reliably check the length of UTF-8 characters,
690 * independent of mblen(). */
691 if (enc_utf8)
692 n = utf8len_tab[i];
693 else if (enc_dbcs == 0)
694 n = 1;
695 else
696 {
697#if defined(WIN3264) || defined(WIN32UNIX)
698 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
699 * CodePage identifier, which we can pass directly in to Windows
700 * API */
701 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
702#else
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000703# if defined(MACOS) || defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 /*
705 * if mblen() is not available, character which MSB is turned on
706 * are treated as leading byte character. (note : This assumption
707 * is not always true.)
708 */
709 n = (i & 0x80) ? 2 : 1;
710# else
Bram Moolenaar9a920d82012-06-01 15:21:02 +0200711 char buf[MB_MAXBYTES + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712# ifdef X_LOCALE
713# ifndef mblen
714# define mblen _Xmblen
715# endif
716# endif
717 if (i == NUL) /* just in case mblen() can't handle "" */
718 n = 1;
719 else
720 {
721 buf[0] = i;
722 buf[1] = 0;
723#ifdef LEN_FROM_CONV
724 if (vimconv.vc_type != CONV_NONE)
725 {
726 /*
727 * string_convert() should fail when converting the first
728 * byte of a double-byte character.
729 */
730 p = string_convert(&vimconv, (char_u *)buf, NULL);
731 if (p != NULL)
732 {
733 vim_free(p);
734 n = 1;
735 }
736 else
737 n = 2;
738 }
739 else
740#endif
741 {
742 /*
743 * mblen() should return -1 for invalid (means the leading
744 * multibyte) character. However there are some platforms
745 * where mblen() returns 0 for invalid character.
746 * Therefore, following condition includes 0.
747 */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000748 ignored = mblen(NULL, 0); /* First reset the state. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 if (mblen(buf, (size_t)1) <= 0)
750 n = 2;
751 else
752 n = 1;
753 }
754 }
755# endif
756#endif
757 }
758
759 mb_bytelen_tab[i] = n;
760 }
761
762#ifdef LEN_FROM_CONV
763 convert_setup(&vimconv, NULL, NULL);
764#endif
765
766 /* The cell width depends on the type of multi-byte characters. */
767 (void)init_chartab();
768
769 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
770 screenalloc(FALSE);
771
772 /* When using Unicode, set default for 'fileencodings'. */
773 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
774 set_string_option_direct((char_u *)"fencs", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000775 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
776
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777#if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
778 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
779 * translated messages independently from the current locale. */
780 (void)bind_textdomain_codeset(VIMPACKAGE,
781 enc_utf8 ? "utf-8" : (char *)p_enc);
782#endif
783
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000784#ifdef WIN32
785 /* When changing 'encoding' while starting up, then convert the command
786 * line arguments from the active codepage to 'encoding'. */
787 if (starting != 0)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000788 fix_arg_enc();
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000789#endif
790
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791#ifdef FEAT_AUTOCMD
792 /* Fire an autocommand to let people do custom font setup. This must be
793 * after Vim has been setup for the new encoding. */
794 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
795#endif
796
Bram Moolenaar2b48ad52006-03-12 21:56:11 +0000797#ifdef FEAT_SPELL
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000798 /* Need to reload spell dictionaries */
799 spell_reload();
800#endif
801
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 return NULL;
803}
804
805/*
806 * Return the size of the BOM for the current buffer:
807 * 0 - no BOM
808 * 2 - UCS-2 or UTF-16 BOM
809 * 4 - UCS-4 BOM
810 * 3 - UTF-8 BOM
811 */
812 int
813bomb_size()
814{
815 int n = 0;
816
817 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
818 {
819 if (*curbuf->b_p_fenc == NUL)
820 {
821 if (enc_utf8)
822 {
823 if (enc_unicode != 0)
824 n = enc_unicode;
825 else
826 n = 3;
827 }
828 }
829 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
830 n = 3;
831 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
832 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
833 n = 2;
834 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
835 n = 4;
836 }
837 return n;
838}
839
840/*
Bram Moolenaar836082d2011-08-10 13:21:46 +0200841 * Remove all BOM from "s" by moving remaining text.
842 */
843 void
844remove_bom(s)
845 char_u *s;
846{
847 if (enc_utf8)
848 {
849 char_u *p = s;
850
851 while ((p = vim_strbyte(p, 0xef)) != NULL)
852 {
853 if (p[1] == 0xbb && p[2] == 0xbf)
854 STRMOVE(p, p + 3);
855 else
856 ++p;
857 }
858 }
859}
860
861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 * Get class of pointer:
863 * 0 for blank or NUL
864 * 1 for punctuation
865 * 2 for an (ASCII) word character
866 * >2 for other word characters
867 */
868 int
869mb_get_class(p)
870 char_u *p;
871{
Bram Moolenaarf813a182013-01-30 13:59:37 +0100872 return mb_get_class_buf(p, curbuf);
873}
874
875 int
876mb_get_class_buf(p, buf)
877 char_u *p;
878 buf_T *buf;
879{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 if (MB_BYTE2LEN(p[0]) == 1)
881 {
882 if (p[0] == NUL || vim_iswhite(p[0]))
883 return 0;
Bram Moolenaarf813a182013-01-30 13:59:37 +0100884 if (vim_iswordc_buf(p[0], buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 return 2;
886 return 1;
887 }
888 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
889 return dbcs_class(p[0], p[1]);
890 if (enc_utf8)
891 return utf_class(utf_ptr2char(p));
892 return 0;
893}
894
895/*
896 * Get class of a double-byte character. This always returns 3 or bigger.
897 * TODO: Should return 1 for punctuation.
898 */
899 int
900dbcs_class(lead, trail)
901 unsigned lead;
902 unsigned trail;
903{
904 switch (enc_dbcs)
905 {
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200906 /* please add classify routine for your language in here */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907
908 case DBCS_JPNU: /* ? */
909 case DBCS_JPN:
910 {
911 /* JIS code classification */
912 unsigned char lb = lead;
913 unsigned char tb = trail;
914
915 /* convert process code to JIS */
916# if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
917 /* process code is SJIS */
918 if (lb <= 0x9f)
919 lb = (lb - 0x81) * 2 + 0x21;
920 else
921 lb = (lb - 0xc1) * 2 + 0x21;
922 if (tb <= 0x7e)
923 tb -= 0x1f;
924 else if (tb <= 0x9e)
925 tb -= 0x20;
926 else
927 {
928 tb -= 0x7e;
929 lb += 1;
930 }
931# else
932 /*
933 * XXX: Code page identification can not use with all
934 * system! So, some other encoding information
935 * will be needed.
936 * In japanese: SJIS,EUC,UNICODE,(JIS)
937 * Note that JIS-code system don't use as
938 * process code in most system because it uses
939 * escape sequences(JIS is context depend encoding).
940 */
941 /* assume process code is JAPANESE-EUC */
942 lb &= 0x7f;
943 tb &= 0x7f;
944# endif
945 /* exceptions */
946 switch (lb << 8 | tb)
947 {
948 case 0x2121: /* ZENKAKU space */
949 return 0;
Bram Moolenaarcc63c642013-11-12 04:44:01 +0100950 case 0x2122: /* TOU-TEN (Japanese comma) */
951 case 0x2123: /* KU-TEN (Japanese period) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 case 0x2124: /* ZENKAKU comma */
953 case 0x2125: /* ZENKAKU period */
954 return 1;
955 case 0x213c: /* prolongedsound handled as KATAKANA */
956 return 13;
957 }
958 /* sieved by KU code */
959 switch (lb)
960 {
961 case 0x21:
962 case 0x22:
963 /* special symbols */
964 return 10;
965 case 0x23:
966 /* alpha-numeric */
967 return 11;
968 case 0x24:
969 /* hiragana */
970 return 12;
971 case 0x25:
972 /* katakana */
973 return 13;
974 case 0x26:
975 /* greek */
976 return 14;
977 case 0x27:
978 /* russian */
979 return 15;
980 case 0x28:
981 /* lines */
982 return 16;
983 default:
984 /* kanji */
985 return 17;
986 }
987 }
988
989 case DBCS_KORU: /* ? */
990 case DBCS_KOR:
991 {
992 /* KS code classification */
993 unsigned char c1 = lead;
994 unsigned char c2 = trail;
995
996 /*
997 * 20 : Hangul
998 * 21 : Hanja
999 * 22 : Symbols
1000 * 23 : Alpha-numeric/Roman Letter (Full width)
1001 * 24 : Hangul Letter(Alphabet)
1002 * 25 : Roman Numeral/Greek Letter
1003 * 26 : Box Drawings
1004 * 27 : Unit Symbols
1005 * 28 : Circled/Parenthesized Letter
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001006 * 29 : Hiragana/Katakana
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 * 30 : Cyrillic Letter
1008 */
1009
1010 if (c1 >= 0xB0 && c1 <= 0xC8)
1011 /* Hangul */
1012 return 20;
1013#if defined(WIN3264) || defined(WIN32UNIX)
1014 else if (c1 <= 0xA0 || c2 <= 0xA0)
1015 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
1016 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
1017 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
1018 */
1019 return 20;
1020#endif
1021
1022 else if (c1 >= 0xCA && c1 <= 0xFD)
1023 /* Hanja */
1024 return 21;
1025 else switch (c1)
1026 {
1027 case 0xA1:
1028 case 0xA2:
1029 /* Symbols */
1030 return 22;
1031 case 0xA3:
1032 /* Alpha-numeric */
1033 return 23;
1034 case 0xA4:
1035 /* Hangul Letter(Alphabet) */
1036 return 24;
1037 case 0xA5:
1038 /* Roman Numeral/Greek Letter */
1039 return 25;
1040 case 0xA6:
1041 /* Box Drawings */
1042 return 26;
1043 case 0xA7:
1044 /* Unit Symbols */
1045 return 27;
1046 case 0xA8:
1047 case 0xA9:
1048 if (c2 <= 0xAF)
1049 return 25; /* Roman Letter */
1050 else if (c2 >= 0xF6)
1051 return 22; /* Symbols */
1052 else
1053 /* Circled/Parenthesized Letter */
1054 return 28;
1055 case 0xAA:
1056 case 0xAB:
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001057 /* Hiragana/Katakana */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 return 29;
1059 case 0xAC:
1060 /* Cyrillic Letter */
1061 return 30;
1062 }
1063 }
1064 default:
1065 break;
1066 }
1067 return 3;
1068}
1069
1070/*
1071 * mb_char2len() function pointer.
1072 * Return length in bytes of character "c".
1073 * Returns 1 for a single-byte character.
1074 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 int
1076latin_char2len(c)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001077 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078{
1079 return 1;
1080}
1081
1082 static int
1083dbcs_char2len(c)
1084 int c;
1085{
1086 if (c >= 0x100)
1087 return 2;
1088 return 1;
1089}
1090
1091/*
1092 * mb_char2bytes() function pointer.
1093 * Convert a character to its bytes.
1094 * Returns the length in bytes.
1095 */
1096 int
1097latin_char2bytes(c, buf)
1098 int c;
1099 char_u *buf;
1100{
1101 buf[0] = c;
1102 return 1;
1103}
1104
1105 static int
1106dbcs_char2bytes(c, buf)
1107 int c;
1108 char_u *buf;
1109{
1110 if (c >= 0x100)
1111 {
1112 buf[0] = (unsigned)c >> 8;
1113 buf[1] = c;
Bram Moolenaar217ad922005-03-20 22:37:15 +00001114 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1115 * character anyway. */
1116 if (buf[1] == NUL)
1117 buf[1] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 return 2;
1119 }
1120 buf[0] = c;
1121 return 1;
1122}
1123
1124/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001125 * mb_ptr2len() function pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 * Get byte length of character at "*p" but stop at a NUL.
1127 * For UTF-8 this includes following composing characters.
1128 * Returns 0 when *p is NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 */
1130 int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001131latin_ptr2len(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 char_u *p;
1133{
1134 return MB_BYTE2LEN(*p);
1135}
1136
1137 static int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001138dbcs_ptr2len(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 char_u *p;
1140{
1141 int len;
1142
1143 /* Check if second byte is not missing. */
1144 len = MB_BYTE2LEN(*p);
1145 if (len == 2 && p[1] == NUL)
1146 len = 1;
1147 return len;
1148}
1149
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001150/*
1151 * mb_ptr2len_len() function pointer.
1152 * Like mb_ptr2len(), but limit to read "size" bytes.
1153 * Returns 0 for an empty string.
1154 * Returns 1 for an illegal char or an incomplete byte sequence.
1155 */
1156 int
1157latin_ptr2len_len(p, size)
1158 char_u *p;
1159 int size;
1160{
1161 if (size < 1 || *p == NUL)
1162 return 0;
1163 return 1;
1164}
1165
1166 static int
1167dbcs_ptr2len_len(p, size)
1168 char_u *p;
1169 int size;
1170{
1171 int len;
1172
1173 if (size < 1 || *p == NUL)
1174 return 0;
1175 if (size == 1)
1176 return 1;
1177 /* Check that second byte is not missing. */
1178 len = MB_BYTE2LEN(*p);
1179 if (len == 2 && p[1] == NUL)
1180 len = 1;
1181 return len;
1182}
1183
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184struct interval
1185{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01001186 long first;
1187 long last;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188};
1189static int intable __ARGS((struct interval *table, size_t size, int c));
1190
1191/*
1192 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1193 */
1194 static int
1195intable(table, size, c)
1196 struct interval *table;
1197 size_t size;
1198 int c;
1199{
1200 int mid, bot, top;
1201
1202 /* first quick check for Latin1 etc. characters */
1203 if (c < table[0].first)
1204 return FALSE;
1205
1206 /* binary search in table */
1207 bot = 0;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001208 top = (int)(size / sizeof(struct interval) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 while (top >= bot)
1210 {
1211 mid = (bot + top) / 2;
1212 if (table[mid].last < c)
1213 bot = mid + 1;
1214 else if (table[mid].first > c)
1215 top = mid - 1;
1216 else
1217 return TRUE;
1218 }
1219 return FALSE;
1220}
1221
1222/*
1223 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1224 * Returns 4 or 6 for an unprintable character.
1225 * Is only correct for characters >= 0x80.
1226 * When p_ambw is "double", return 2 for a character with East Asian Width
1227 * class 'A'(mbiguous).
1228 */
1229 int
1230utf_char2cells(c)
1231 int c;
1232{
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001233 /* Sorted list of non-overlapping intervals of East Asian double width
1234 * characters, generated with ../runtime/tools/unicode.vim. */
1235 static struct interval doublewidth[] =
1236 {
1237 {0x1100, 0x115f},
1238 {0x11a3, 0x11a7},
1239 {0x11fa, 0x11ff},
1240 {0x2329, 0x232a},
1241 {0x2e80, 0x2e99},
1242 {0x2e9b, 0x2ef3},
1243 {0x2f00, 0x2fd5},
1244 {0x2ff0, 0x2ffb},
1245 {0x3000, 0x3029},
1246 {0x3030, 0x303e},
1247 {0x3041, 0x3096},
1248 {0x309b, 0x30ff},
1249 {0x3105, 0x312d},
1250 {0x3131, 0x318e},
1251 {0x3190, 0x31b7},
1252 {0x31c0, 0x31e3},
1253 {0x31f0, 0x321e},
1254 {0x3220, 0x3247},
1255 {0x3250, 0x32fe},
1256 {0x3300, 0x4dbf},
1257 {0x4e00, 0xa48c},
1258 {0xa490, 0xa4c6},
1259 {0xa960, 0xa97c},
1260 {0xac00, 0xd7a3},
1261 {0xd7b0, 0xd7c6},
1262 {0xd7cb, 0xd7fb},
1263 {0xf900, 0xfaff},
1264 {0xfe10, 0xfe19},
1265 {0xfe30, 0xfe52},
1266 {0xfe54, 0xfe66},
1267 {0xfe68, 0xfe6b},
1268 {0xff01, 0xff60},
1269 {0xffe0, 0xffe6},
1270 {0x1f200, 0x1f200},
1271 {0x1f210, 0x1f231},
1272 {0x1f240, 0x1f248},
1273 {0x20000, 0x2fffd},
1274 {0x30000, 0x3fffd}
1275 };
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01001276 /* Sorted list of non-overlapping intervals of East Asian Ambiguous
1277 * characters, generated with ../runtime/tools/unicode.vim. */
1278 static struct interval ambiguous[] =
1279 {
1280 {0x00a1, 0x00a1},
1281 {0x00a4, 0x00a4},
1282 {0x00a7, 0x00a8},
1283 {0x00aa, 0x00aa},
1284 {0x00ad, 0x00ae},
1285 {0x00b0, 0x00b4},
1286 {0x00b6, 0x00ba},
1287 {0x00bc, 0x00bf},
1288 {0x00c6, 0x00c6},
1289 {0x00d0, 0x00d0},
1290 {0x00d7, 0x00d8},
1291 {0x00de, 0x00e1},
1292 {0x00e6, 0x00e6},
1293 {0x00e8, 0x00ea},
1294 {0x00ec, 0x00ed},
1295 {0x00f0, 0x00f0},
1296 {0x00f2, 0x00f3},
1297 {0x00f7, 0x00fa},
1298 {0x00fc, 0x00fc},
1299 {0x00fe, 0x00fe},
1300 {0x0101, 0x0101},
1301 {0x0111, 0x0111},
1302 {0x0113, 0x0113},
1303 {0x011b, 0x011b},
1304 {0x0126, 0x0127},
1305 {0x012b, 0x012b},
1306 {0x0131, 0x0133},
1307 {0x0138, 0x0138},
1308 {0x013f, 0x0142},
1309 {0x0144, 0x0144},
1310 {0x0148, 0x014b},
1311 {0x014d, 0x014d},
1312 {0x0152, 0x0153},
1313 {0x0166, 0x0167},
1314 {0x016b, 0x016b},
1315 {0x01ce, 0x01ce},
1316 {0x01d0, 0x01d0},
1317 {0x01d2, 0x01d2},
1318 {0x01d4, 0x01d4},
1319 {0x01d6, 0x01d6},
1320 {0x01d8, 0x01d8},
1321 {0x01da, 0x01da},
1322 {0x01dc, 0x01dc},
1323 {0x0251, 0x0251},
1324 {0x0261, 0x0261},
1325 {0x02c4, 0x02c4},
1326 {0x02c7, 0x02c7},
1327 {0x02c9, 0x02cb},
1328 {0x02cd, 0x02cd},
1329 {0x02d0, 0x02d0},
1330 {0x02d8, 0x02db},
1331 {0x02dd, 0x02dd},
1332 {0x02df, 0x02df},
1333 {0x0391, 0x03a1},
1334 {0x03a3, 0x03a9},
1335 {0x03b1, 0x03c1},
1336 {0x03c3, 0x03c9},
1337 {0x0401, 0x0401},
1338 {0x0410, 0x044f},
1339 {0x0451, 0x0451},
1340 {0x2010, 0x2010},
1341 {0x2013, 0x2016},
1342 {0x2018, 0x2019},
1343 {0x201c, 0x201d},
1344 {0x2020, 0x2022},
1345 {0x2024, 0x2027},
1346 {0x2030, 0x2030},
1347 {0x2032, 0x2033},
1348 {0x2035, 0x2035},
1349 {0x203b, 0x203b},
1350 {0x203e, 0x203e},
1351 {0x2074, 0x2074},
1352 {0x207f, 0x207f},
1353 {0x2081, 0x2084},
1354 {0x20ac, 0x20ac},
1355 {0x2103, 0x2103},
1356 {0x2105, 0x2105},
1357 {0x2109, 0x2109},
1358 {0x2113, 0x2113},
1359 {0x2116, 0x2116},
1360 {0x2121, 0x2122},
1361 {0x2126, 0x2126},
1362 {0x212b, 0x212b},
1363 {0x2153, 0x2154},
1364 {0x215b, 0x215e},
1365 {0x2160, 0x216b},
1366 {0x2170, 0x2179},
1367 {0x2189, 0x2189},
1368 {0x2190, 0x2199},
1369 {0x21b8, 0x21b9},
1370 {0x21d2, 0x21d2},
1371 {0x21d4, 0x21d4},
1372 {0x21e7, 0x21e7},
1373 {0x2200, 0x2200},
1374 {0x2202, 0x2203},
1375 {0x2207, 0x2208},
1376 {0x220b, 0x220b},
1377 {0x220f, 0x220f},
1378 {0x2211, 0x2211},
1379 {0x2215, 0x2215},
1380 {0x221a, 0x221a},
1381 {0x221d, 0x2220},
1382 {0x2223, 0x2223},
1383 {0x2225, 0x2225},
1384 {0x2227, 0x222c},
1385 {0x222e, 0x222e},
1386 {0x2234, 0x2237},
1387 {0x223c, 0x223d},
1388 {0x2248, 0x2248},
1389 {0x224c, 0x224c},
1390 {0x2252, 0x2252},
1391 {0x2260, 0x2261},
1392 {0x2264, 0x2267},
1393 {0x226a, 0x226b},
1394 {0x226e, 0x226f},
1395 {0x2282, 0x2283},
1396 {0x2286, 0x2287},
1397 {0x2295, 0x2295},
1398 {0x2299, 0x2299},
1399 {0x22a5, 0x22a5},
1400 {0x22bf, 0x22bf},
1401 {0x2312, 0x2312},
1402 {0x2460, 0x24e9},
1403 {0x24eb, 0x254b},
1404 {0x2550, 0x2573},
1405 {0x2580, 0x258f},
1406 {0x2592, 0x2595},
1407 {0x25a0, 0x25a1},
1408 {0x25a3, 0x25a9},
1409 {0x25b2, 0x25b3},
1410 {0x25b6, 0x25b7},
1411 {0x25bc, 0x25bd},
1412 {0x25c0, 0x25c1},
1413 {0x25c6, 0x25c8},
1414 {0x25cb, 0x25cb},
1415 {0x25ce, 0x25d1},
1416 {0x25e2, 0x25e5},
1417 {0x25ef, 0x25ef},
1418 {0x2605, 0x2606},
1419 {0x2609, 0x2609},
1420 {0x260e, 0x260f},
1421 {0x2614, 0x2615},
1422 {0x261c, 0x261c},
1423 {0x261e, 0x261e},
1424 {0x2640, 0x2640},
1425 {0x2642, 0x2642},
1426 {0x2660, 0x2661},
1427 {0x2663, 0x2665},
1428 {0x2667, 0x266a},
1429 {0x266c, 0x266d},
1430 {0x266f, 0x266f},
1431 {0x269e, 0x269f},
1432 {0x26be, 0x26bf},
1433 {0x26c4, 0x26cd},
1434 {0x26cf, 0x26e1},
1435 {0x26e3, 0x26e3},
1436 {0x26e8, 0x26ff},
1437 {0x273d, 0x273d},
1438 {0x2757, 0x2757},
1439 {0x2776, 0x277f},
1440 {0x2b55, 0x2b59},
1441 {0x3248, 0x324f},
1442 {0xe000, 0xf8ff},
1443 {0xfffd, 0xfffd},
1444 {0x1f100, 0x1f10a},
1445 {0x1f110, 0x1f12d},
1446 {0x1f131, 0x1f131},
1447 {0x1f13d, 0x1f13d},
1448 {0x1f13f, 0x1f13f},
1449 {0x1f142, 0x1f142},
1450 {0x1f146, 0x1f146},
1451 {0x1f14a, 0x1f14e},
1452 {0x1f157, 0x1f157},
1453 {0x1f15f, 0x1f15f},
1454 {0x1f179, 0x1f179},
1455 {0x1f17b, 0x1f17c},
1456 {0x1f17f, 0x1f17f},
1457 {0x1f18a, 0x1f18d},
1458 {0x1f190, 0x1f190},
1459 {0xf0000, 0xffffd},
1460 {0x100000, 0x10fffd}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 };
1462
1463 if (c >= 0x100)
1464 {
1465#ifdef USE_WCHAR_FUNCTIONS
1466 /*
1467 * Assume the library function wcwidth() works better than our own
1468 * stuff. It should return 1 for ambiguous width chars!
1469 */
1470 int n = wcwidth(c);
1471
1472 if (n < 0)
1473 return 6; /* unprintable, displays <xxxx> */
1474 if (n > 1)
1475 return n;
1476#else
1477 if (!utf_printable(c))
1478 return 6; /* unprintable, displays <xxxx> */
Bram Moolenaarda4d7a92010-01-27 18:29:26 +01001479 if (intable(doublewidth, sizeof(doublewidth), c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 return 2;
1481#endif
1482 }
1483
1484 /* Characters below 0x100 are influenced by 'isprint' option */
1485 else if (c >= 0x80 && !vim_isprintc(c))
1486 return 4; /* unprintable, displays <xx> */
1487
1488 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1489 return 2;
1490
1491 return 1;
1492}
1493
1494/*
1495 * mb_ptr2cells() function pointer.
1496 * Return the number of display cells character at "*p" occupies.
1497 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1498 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 int
1500latin_ptr2cells(p)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001501 char_u *p UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502{
1503 return 1;
1504}
1505
1506 int
1507utf_ptr2cells(p)
1508 char_u *p;
1509{
1510 int c;
1511
1512 /* Need to convert to a wide character. */
1513 if (*p >= 0x80)
1514 {
1515 c = utf_ptr2char(p);
1516 /* An illegal byte is displayed as <xx>. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001517 if (utf_ptr2len(p) == 1 || c == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 return 4;
1519 /* If the char is ASCII it must be an overlong sequence. */
1520 if (c < 0x80)
1521 return char2cells(c);
1522 return utf_char2cells(c);
1523 }
1524 return 1;
1525}
1526
1527 int
1528dbcs_ptr2cells(p)
1529 char_u *p;
1530{
1531 /* Number of cells is equal to number of bytes, except for euc-jp when
1532 * the first byte is 0x8e. */
1533 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1534 return 1;
1535 return MB_BYTE2LEN(*p);
1536}
1537
1538/*
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001539 * mb_ptr2cells_len() function pointer.
1540 * Like mb_ptr2cells(), but limit string length to "size".
1541 * For an empty string or truncated character returns 1.
1542 */
1543 int
1544latin_ptr2cells_len(p, size)
1545 char_u *p UNUSED;
1546 int size UNUSED;
1547{
1548 return 1;
1549}
1550
1551 static int
1552utf_ptr2cells_len(p, size)
1553 char_u *p;
1554 int size;
1555{
1556 int c;
1557
1558 /* Need to convert to a wide character. */
1559 if (size > 0 && *p >= 0x80)
1560 {
1561 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
Bram Moolenaar24397332009-12-02 14:02:39 +00001562 return 1; /* truncated */
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00001563 c = utf_ptr2char(p);
1564 /* An illegal byte is displayed as <xx>. */
1565 if (utf_ptr2len(p) == 1 || c == NUL)
1566 return 4;
1567 /* If the char is ASCII it must be an overlong sequence. */
1568 if (c < 0x80)
1569 return char2cells(c);
1570 return utf_char2cells(c);
1571 }
1572 return 1;
1573}
1574
1575 static int
1576dbcs_ptr2cells_len(p, size)
1577 char_u *p;
1578 int size;
1579{
1580 /* Number of cells is equal to number of bytes, except for euc-jp when
1581 * the first byte is 0x8e. */
1582 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1583 return 1;
1584 return MB_BYTE2LEN(*p);
1585}
1586
1587/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 * mb_char2cells() function pointer.
1589 * Return the number of display cells character "c" occupies.
1590 * Only takes care of multi-byte chars, not "^C" and such.
1591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 int
1593latin_char2cells(c)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001594 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595{
1596 return 1;
1597}
1598
1599 static int
1600dbcs_char2cells(c)
1601 int c;
1602{
1603 /* Number of cells is equal to number of bytes, except for euc-jp when
1604 * the first byte is 0x8e. */
1605 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1606 return 1;
1607 /* use the first byte */
1608 return MB_BYTE2LEN((unsigned)c >> 8);
1609}
1610
1611/*
Bram Moolenaar72597a52010-07-18 15:31:08 +02001612 * Return the number of cells occupied by string "p".
1613 * Stop at a NUL character. When "len" >= 0 stop at character "p[len]".
1614 */
1615 int
1616mb_string2cells(p, len)
1617 char_u *p;
1618 int len;
1619{
1620 int i;
1621 int clen = 0;
1622
1623 for (i = 0; (len < 0 || i < len) && p[i] != NUL; i += (*mb_ptr2len)(p + i))
1624 clen += (*mb_ptr2cells)(p + i);
1625 return clen;
1626}
1627
1628/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 * mb_off2cells() function pointer.
1630 * Return number of display cells for char at ScreenLines[off].
Bram Moolenaar367329b2007-08-30 11:53:22 +00001631 * We make sure that the offset used is less than "max_off".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 int
Bram Moolenaar367329b2007-08-30 11:53:22 +00001634latin_off2cells(off, max_off)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00001635 unsigned off UNUSED;
1636 unsigned max_off UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637{
1638 return 1;
1639}
1640
1641 int
Bram Moolenaar367329b2007-08-30 11:53:22 +00001642dbcs_off2cells(off, max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 unsigned off;
Bram Moolenaar367329b2007-08-30 11:53:22 +00001644 unsigned max_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645{
Bram Moolenaar367329b2007-08-30 11:53:22 +00001646 /* never check beyond end of the line */
1647 if (off >= max_off)
1648 return 1;
1649
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 /* Number of cells is equal to number of bytes, except for euc-jp when
1651 * the first byte is 0x8e. */
1652 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1653 return 1;
1654 return MB_BYTE2LEN(ScreenLines[off]);
1655}
1656
1657 int
Bram Moolenaar367329b2007-08-30 11:53:22 +00001658utf_off2cells(off, max_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 unsigned off;
Bram Moolenaar367329b2007-08-30 11:53:22 +00001660 unsigned max_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661{
Bram Moolenaar367329b2007-08-30 11:53:22 +00001662 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663}
1664
1665/*
1666 * mb_ptr2char() function pointer.
1667 * Convert a byte sequence into a character.
1668 */
1669 int
1670latin_ptr2char(p)
1671 char_u *p;
1672{
1673 return *p;
1674}
1675
1676 static int
1677dbcs_ptr2char(p)
1678 char_u *p;
1679{
1680 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1681 return (p[0] << 8) + p[1];
1682 return *p;
1683}
1684
1685/*
1686 * Convert a UTF-8 byte sequence to a wide character.
1687 * If the sequence is illegal or truncated by a NUL the first byte is
1688 * returned.
1689 * Does not include composing characters, of course.
1690 */
1691 int
1692utf_ptr2char(p)
1693 char_u *p;
1694{
1695 int len;
1696
1697 if (p[0] < 0x80) /* be quick for ASCII */
1698 return p[0];
1699
Bram Moolenaar24397332009-12-02 14:02:39 +00001700 len = utf8len_tab_zero[p[0]];
Bram Moolenaar89bf0922008-06-29 14:16:06 +00001701 if (len > 1 && (p[1] & 0xc0) == 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702 {
1703 if (len == 2)
1704 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1705 if ((p[2] & 0xc0) == 0x80)
1706 {
1707 if (len == 3)
1708 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1709 + (p[2] & 0x3f);
1710 if ((p[3] & 0xc0) == 0x80)
1711 {
1712 if (len == 4)
1713 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1714 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1715 if ((p[4] & 0xc0) == 0x80)
1716 {
1717 if (len == 5)
1718 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1719 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1720 + (p[4] & 0x3f);
1721 if ((p[5] & 0xc0) == 0x80 && len == 6)
1722 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1723 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1724 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1725 }
1726 }
1727 }
1728 }
1729 /* Illegal value, just return the first byte */
1730 return p[0];
1731}
1732
1733/*
Bram Moolenaar35ee4522011-07-15 21:16:59 +02001734 * Convert a UTF-8 byte sequence to a wide character.
1735 * String is assumed to be terminated by NUL or after "n" bytes, whichever
1736 * comes first.
1737 * The function is safe in the sense that it never accesses memory beyond the
1738 * first "n" bytes of "s".
1739 *
1740 * On success, returns decoded codepoint, advances "s" to the beginning of
1741 * next character and decreases "n" accordingly.
1742 *
1743 * If end of string was reached, returns 0 and, if "n" > 0, advances "s" past
1744 * NUL byte.
1745 *
1746 * If byte sequence is illegal or incomplete, returns -1 and does not advance
1747 * "s".
1748 */
1749 static int
1750utf_safe_read_char_adv(s, n)
1751 char_u **s;
1752 size_t *n;
1753{
1754 int c, k;
1755
1756 if (*n == 0) /* end of buffer */
1757 return 0;
1758
1759 k = utf8len_tab_zero[**s];
1760
1761 if (k == 1)
1762 {
1763 /* ASCII character or NUL */
1764 (*n)--;
1765 return *(*s)++;
1766 }
1767
1768 if ((size_t)k <= *n)
1769 {
1770 /* We have a multibyte sequence and it isn't truncated by buffer
1771 * limits so utf_ptr2char() is safe to use. Or the first byte is
1772 * illegal (k=0), and it's also safe to use utf_ptr2char(). */
1773 c = utf_ptr2char(*s);
1774
1775 /* On failure, utf_ptr2char() returns the first byte, so here we
1776 * check equality with the first byte. The only non-ASCII character
1777 * which equals the first byte of its own UTF-8 representation is
1778 * U+00C3 (UTF-8: 0xC3 0x83), so need to check that special case too.
1779 * It's safe even if n=1, else we would have k=2 > n. */
1780 if (c != (int)(**s) || (c == 0xC3 && (*s)[1] == 0x83))
1781 {
1782 /* byte sequence was successfully decoded */
1783 *s += k;
1784 *n -= k;
1785 return c;
1786 }
1787 }
1788
1789 /* byte sequence is incomplete or illegal */
1790 return -1;
1791}
1792
1793/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 * Get character at **pp and advance *pp to the next character.
1795 * Note: composing characters are skipped!
1796 */
1797 int
1798mb_ptr2char_adv(pp)
1799 char_u **pp;
1800{
1801 int c;
1802
1803 c = (*mb_ptr2char)(*pp);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001804 *pp += (*mb_ptr2len)(*pp);
1805 return c;
1806}
1807
1808/*
1809 * Get character at **pp and advance *pp to the next character.
1810 * Note: composing characters are returned as separate characters.
1811 */
1812 int
1813mb_cptr2char_adv(pp)
1814 char_u **pp;
1815{
1816 int c;
1817
1818 c = (*mb_ptr2char)(*pp);
1819 if (enc_utf8)
1820 *pp += utf_ptr2len(*pp);
1821 else
1822 *pp += (*mb_ptr2len)(*pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 return c;
1824}
1825
1826#if defined(FEAT_ARABIC) || defined(PROTO)
1827/*
1828 * Check whether we are dealing with Arabic combining characters.
1829 * Note: these are NOT really composing characters!
1830 */
1831 int
1832arabic_combine(one, two)
1833 int one; /* first character */
1834 int two; /* character just after "one" */
1835{
1836 if (one == a_LAM)
1837 return arabic_maycombine(two);
1838 return FALSE;
1839}
1840
1841/*
1842 * Check whether we are dealing with a character that could be regarded as an
1843 * Arabic combining character, need to check the character before this.
1844 */
1845 int
1846arabic_maycombine(two)
1847 int two;
1848{
1849 if (p_arshape && !p_tbidi)
1850 return (two == a_ALEF_MADDA
1851 || two == a_ALEF_HAMZA_ABOVE
1852 || two == a_ALEF_HAMZA_BELOW
1853 || two == a_ALEF);
1854 return FALSE;
1855}
1856
1857/*
1858 * Check if the character pointed to by "p2" is a composing character when it
1859 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1860 * behaves like a composing character.
1861 */
1862 int
1863utf_composinglike(p1, p2)
1864 char_u *p1;
1865 char_u *p2;
1866{
1867 int c2;
1868
1869 c2 = utf_ptr2char(p2);
1870 if (utf_iscomposing(c2))
1871 return TRUE;
1872 if (!arabic_maycombine(c2))
1873 return FALSE;
1874 return arabic_combine(utf_ptr2char(p1), c2);
1875}
1876#endif
1877
1878/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001879 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 * composing characters.
1881 */
1882 int
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001883utfc_ptr2char(p, pcc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 char_u *p;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001885 int *pcc; /* return: composing chars, last one is 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886{
1887 int len;
1888 int c;
1889 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001890 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
1892 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001893 len = utf_ptr2len(p);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001894
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 /* Only accept a composing char when the first char isn't illegal. */
1896 if ((len > 1 || *p < 0x80)
1897 && p[len] >= 0x80
1898 && UTF_COMPOSINGLIKE(p, p + len))
1899 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001900 cc = utf_ptr2char(p + len);
1901 for (;;)
1902 {
1903 pcc[i++] = cc;
1904 if (i == MAX_MCO)
1905 break;
1906 len += utf_ptr2len(p + len);
1907 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1908 break;
1909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001911
1912 if (i < MAX_MCO) /* last composing char must be 0 */
1913 pcc[i] = 0;
1914
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 return c;
1916}
1917
1918/*
Bram Moolenaar29466f22007-05-10 17:45:37 +00001919 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 * composing characters. Use no more than p[maxlen].
1921 */
1922 int
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001923utfc_ptr2char_len(p, pcc, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 char_u *p;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001925 int *pcc; /* return: composing chars, last one is 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 int maxlen;
1927{
1928 int len;
1929 int c;
1930 int cc;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001931 int i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932
1933 c = utf_ptr2char(p);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001934 len = utf_ptr2len_len(p, maxlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 /* Only accept a composing char when the first char isn't illegal. */
1936 if ((len > 1 || *p < 0x80)
1937 && len < maxlen
1938 && p[len] >= 0x80
1939 && UTF_COMPOSINGLIKE(p, p + len))
1940 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001941 cc = utf_ptr2char(p + len);
1942 for (;;)
1943 {
1944 pcc[i++] = cc;
1945 if (i == MAX_MCO)
1946 break;
1947 len += utf_ptr2len_len(p + len, maxlen - len);
1948 if (len >= maxlen
1949 || p[len] < 0x80
1950 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1951 break;
1952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001954
1955 if (i < MAX_MCO) /* last composing char must be 0 */
1956 pcc[i] = 0;
1957
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 return c;
1959}
1960
1961/*
1962 * Convert the character at screen position "off" to a sequence of bytes.
1963 * Includes the composing characters.
Bram Moolenaar9a920d82012-06-01 15:21:02 +02001964 * "buf" must at least have the length MB_MAXBYTES + 1.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02001965 * Only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 * Returns the produced number of bytes.
1967 */
1968 int
1969utfc_char2bytes(off, buf)
1970 int off;
1971 char_u *buf;
1972{
1973 int len;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001974 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976 len = utf_char2bytes(ScreenLinesUC[off], buf);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001977 for (i = 0; i < Screen_mco; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001979 if (ScreenLinesC[i][off] == 0)
1980 break;
1981 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983 return len;
1984}
1985
1986/*
1987 * Get the length of a UTF-8 byte sequence, not including any following
1988 * composing characters.
1989 * Returns 0 for "".
1990 * Returns 1 for an illegal byte sequence.
1991 */
1992 int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001993utf_ptr2len(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 char_u *p;
1995{
1996 int len;
1997 int i;
1998
1999 if (*p == NUL)
2000 return 0;
2001 len = utf8len_tab[*p];
2002 for (i = 1; i < len; ++i)
2003 if ((p[i] & 0xc0) != 0x80)
2004 return 1;
2005 return len;
2006}
2007
2008/*
2009 * Return length of UTF-8 character, obtained from the first byte.
2010 * "b" must be between 0 and 255!
Bram Moolenaar24397332009-12-02 14:02:39 +00002011 * Returns 1 for an invalid first byte value.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 */
2013 int
2014utf_byte2len(b)
2015 int b;
2016{
2017 return utf8len_tab[b];
2018}
2019
2020/*
2021 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
2022 * following composing characters.
2023 * Returns 1 for "".
Bram Moolenaarc048f672008-01-04 16:47:25 +00002024 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 * Returns number > "size" for an incomplete byte sequence.
Bram Moolenaar24397332009-12-02 14:02:39 +00002026 * Never returns zero.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 */
2028 int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002029utf_ptr2len_len(p, size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 char_u *p;
2031 int size;
2032{
2033 int len;
2034 int i;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002035 int m;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036
Bram Moolenaar24397332009-12-02 14:02:39 +00002037 len = utf8len_tab[*p];
2038 if (len == 1)
2039 return 1; /* NUL, ascii or illegal lead byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 if (len > size)
Bram Moolenaarc048f672008-01-04 16:47:25 +00002041 m = size; /* incomplete byte sequence. */
Bram Moolenaar24397332009-12-02 14:02:39 +00002042 else
2043 m = len;
Bram Moolenaarc048f672008-01-04 16:47:25 +00002044 for (i = 1; i < m; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 if ((p[i] & 0xc0) != 0x80)
2046 return 1;
2047 return len;
2048}
2049
2050/*
2051 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
2052 * This includes following composing characters.
2053 */
2054 int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002055utfc_ptr2len(p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 char_u *p;
2057{
2058 int len;
Bram Moolenaarc669e662005-06-08 22:00:03 +00002059 int b0 = *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060#ifdef FEAT_ARABIC
2061 int prevlen;
2062#endif
2063
Bram Moolenaarc669e662005-06-08 22:00:03 +00002064 if (b0 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 return 0;
Bram Moolenaarc669e662005-06-08 22:00:03 +00002066 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 return 1;
2068
2069 /* Skip over first UTF-8 char, stopping at a NUL byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002070 len = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
2072 /* Check for illegal byte. */
Bram Moolenaarc669e662005-06-08 22:00:03 +00002073 if (len == 1 && b0 >= 0x80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 return 1;
2075
2076 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002077 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 * skip all of them (otherwise the cursor would get stuck).
2079 */
2080#ifdef FEAT_ARABIC
2081 prevlen = 0;
2082#endif
2083 for (;;)
2084 {
2085 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
2086 return len;
2087
2088 /* Skip over composing char */
2089#ifdef FEAT_ARABIC
2090 prevlen = len;
2091#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002092 len += utf_ptr2len(p + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 }
2094}
2095
2096/*
2097 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
2098 * takes. This includes following composing characters.
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002099 * Returns 0 for an empty string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 * Returns 1 for an illegal char or an incomplete byte sequence.
2101 */
2102 int
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002103utfc_ptr2len_len(p, size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 char_u *p;
2105 int size;
2106{
2107 int len;
2108#ifdef FEAT_ARABIC
2109 int prevlen;
2110#endif
2111
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00002112 if (size < 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 return 0;
2114 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
2115 return 1;
2116
2117 /* Skip over first UTF-8 char, stopping at a NUL byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002118 len = utf_ptr2len_len(p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119
2120 /* Check for illegal byte and incomplete byte sequence. */
2121 if ((len == 1 && p[0] >= 0x80) || len > size)
2122 return 1;
2123
2124 /*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002125 * Check for composing characters. We can handle only the first six, but
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 * skip all of them (otherwise the cursor would get stuck).
2127 */
2128#ifdef FEAT_ARABIC
2129 prevlen = 0;
2130#endif
2131 while (len < size)
2132 {
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002133 int len_next_char;
2134
2135 if (p[len] < 0x80)
2136 break;
2137
2138 /*
2139 * Next character length should not go beyond size to ensure that
2140 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2141 */
2142 len_next_char = utf_ptr2len_len(p + len, size - len);
2143 if (len_next_char > size - len)
2144 break;
2145
2146 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 break;
2148
2149 /* Skip over composing char */
2150#ifdef FEAT_ARABIC
2151 prevlen = len;
2152#endif
Bram Moolenaar89bf0922008-06-29 14:16:06 +00002153 len += len_next_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 }
2155 return len;
2156}
2157
2158/*
2159 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2160 * This does not include composing characters.
2161 */
2162 int
2163utf_char2len(c)
2164 int c;
2165{
2166 if (c < 0x80)
2167 return 1;
2168 if (c < 0x800)
2169 return 2;
2170 if (c < 0x10000)
2171 return 3;
2172 if (c < 0x200000)
2173 return 4;
2174 if (c < 0x4000000)
2175 return 5;
2176 return 6;
2177}
2178
2179/*
2180 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2181 * Returns the number of bytes.
2182 * This does not include composing characters.
2183 */
2184 int
2185utf_char2bytes(c, buf)
2186 int c;
2187 char_u *buf;
2188{
2189 if (c < 0x80) /* 7 bits */
2190 {
2191 buf[0] = c;
2192 return 1;
2193 }
2194 if (c < 0x800) /* 11 bits */
2195 {
2196 buf[0] = 0xc0 + ((unsigned)c >> 6);
2197 buf[1] = 0x80 + (c & 0x3f);
2198 return 2;
2199 }
2200 if (c < 0x10000) /* 16 bits */
2201 {
2202 buf[0] = 0xe0 + ((unsigned)c >> 12);
2203 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2204 buf[2] = 0x80 + (c & 0x3f);
2205 return 3;
2206 }
2207 if (c < 0x200000) /* 21 bits */
2208 {
2209 buf[0] = 0xf0 + ((unsigned)c >> 18);
2210 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2211 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2212 buf[3] = 0x80 + (c & 0x3f);
2213 return 4;
2214 }
2215 if (c < 0x4000000) /* 26 bits */
2216 {
2217 buf[0] = 0xf8 + ((unsigned)c >> 24);
2218 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2219 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2220 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2221 buf[4] = 0x80 + (c & 0x3f);
2222 return 5;
2223 }
2224 /* 31 bits */
2225 buf[0] = 0xfc + ((unsigned)c >> 30);
2226 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2227 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2228 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2229 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2230 buf[5] = 0x80 + (c & 0x3f);
2231 return 6;
2232}
2233
2234/*
2235 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2236 * drawn on top of the preceding character.
2237 * Based on code from Markus Kuhn.
2238 */
2239 int
2240utf_iscomposing(c)
2241 int c;
2242{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002243 /* Sorted list of non-overlapping intervals.
2244 * Generated by ../runtime/tools/unicode.vim. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 static struct interval combining[] =
2246 {
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002247 {0x0300, 0x036f},
2248 {0x0483, 0x0489},
2249 {0x0591, 0x05bd},
2250 {0x05bf, 0x05bf},
2251 {0x05c1, 0x05c2},
2252 {0x05c4, 0x05c5},
2253 {0x05c7, 0x05c7},
2254 {0x0610, 0x061a},
2255 {0x064b, 0x065e},
2256 {0x0670, 0x0670},
2257 {0x06d6, 0x06dc},
2258 {0x06de, 0x06e4},
2259 {0x06e7, 0x06e8},
2260 {0x06ea, 0x06ed},
2261 {0x0711, 0x0711},
2262 {0x0730, 0x074a},
2263 {0x07a6, 0x07b0},
2264 {0x07eb, 0x07f3},
2265 {0x0816, 0x0819},
2266 {0x081b, 0x0823},
2267 {0x0825, 0x0827},
2268 {0x0829, 0x082d},
2269 {0x0900, 0x0903},
2270 {0x093c, 0x093c},
2271 {0x093e, 0x094e},
2272 {0x0951, 0x0955},
2273 {0x0962, 0x0963},
2274 {0x0981, 0x0983},
2275 {0x09bc, 0x09bc},
2276 {0x09be, 0x09c4},
2277 {0x09c7, 0x09c8},
2278 {0x09cb, 0x09cd},
2279 {0x09d7, 0x09d7},
2280 {0x09e2, 0x09e3},
2281 {0x0a01, 0x0a03},
2282 {0x0a3c, 0x0a3c},
2283 {0x0a3e, 0x0a42},
2284 {0x0a47, 0x0a48},
2285 {0x0a4b, 0x0a4d},
2286 {0x0a51, 0x0a51},
2287 {0x0a70, 0x0a71},
2288 {0x0a75, 0x0a75},
2289 {0x0a81, 0x0a83},
2290 {0x0abc, 0x0abc},
2291 {0x0abe, 0x0ac5},
2292 {0x0ac7, 0x0ac9},
2293 {0x0acb, 0x0acd},
2294 {0x0ae2, 0x0ae3},
2295 {0x0b01, 0x0b03},
2296 {0x0b3c, 0x0b3c},
2297 {0x0b3e, 0x0b44},
2298 {0x0b47, 0x0b48},
2299 {0x0b4b, 0x0b4d},
2300 {0x0b56, 0x0b57},
2301 {0x0b62, 0x0b63},
2302 {0x0b82, 0x0b82},
2303 {0x0bbe, 0x0bc2},
2304 {0x0bc6, 0x0bc8},
2305 {0x0bca, 0x0bcd},
2306 {0x0bd7, 0x0bd7},
2307 {0x0c01, 0x0c03},
2308 {0x0c3e, 0x0c44},
2309 {0x0c46, 0x0c48},
2310 {0x0c4a, 0x0c4d},
2311 {0x0c55, 0x0c56},
2312 {0x0c62, 0x0c63},
2313 {0x0c82, 0x0c83},
2314 {0x0cbc, 0x0cbc},
2315 {0x0cbe, 0x0cc4},
2316 {0x0cc6, 0x0cc8},
2317 {0x0cca, 0x0ccd},
2318 {0x0cd5, 0x0cd6},
2319 {0x0ce2, 0x0ce3},
2320 {0x0d02, 0x0d03},
2321 {0x0d3e, 0x0d44},
2322 {0x0d46, 0x0d48},
2323 {0x0d4a, 0x0d4d},
2324 {0x0d57, 0x0d57},
2325 {0x0d62, 0x0d63},
2326 {0x0d82, 0x0d83},
2327 {0x0dca, 0x0dca},
2328 {0x0dcf, 0x0dd4},
2329 {0x0dd6, 0x0dd6},
2330 {0x0dd8, 0x0ddf},
2331 {0x0df2, 0x0df3},
2332 {0x0e31, 0x0e31},
2333 {0x0e34, 0x0e3a},
2334 {0x0e47, 0x0e4e},
2335 {0x0eb1, 0x0eb1},
2336 {0x0eb4, 0x0eb9},
2337 {0x0ebb, 0x0ebc},
2338 {0x0ec8, 0x0ecd},
2339 {0x0f18, 0x0f19},
2340 {0x0f35, 0x0f35},
2341 {0x0f37, 0x0f37},
2342 {0x0f39, 0x0f39},
2343 {0x0f3e, 0x0f3f},
2344 {0x0f71, 0x0f84},
2345 {0x0f86, 0x0f87},
2346 {0x0f90, 0x0f97},
2347 {0x0f99, 0x0fbc},
2348 {0x0fc6, 0x0fc6},
2349 {0x102b, 0x103e},
2350 {0x1056, 0x1059},
2351 {0x105e, 0x1060},
2352 {0x1062, 0x1064},
2353 {0x1067, 0x106d},
2354 {0x1071, 0x1074},
2355 {0x1082, 0x108d},
2356 {0x108f, 0x108f},
2357 {0x109a, 0x109d},
2358 {0x135f, 0x135f},
2359 {0x1712, 0x1714},
2360 {0x1732, 0x1734},
2361 {0x1752, 0x1753},
2362 {0x1772, 0x1773},
2363 {0x17b6, 0x17d3},
2364 {0x17dd, 0x17dd},
2365 {0x180b, 0x180d},
2366 {0x18a9, 0x18a9},
2367 {0x1920, 0x192b},
2368 {0x1930, 0x193b},
2369 {0x19b0, 0x19c0},
2370 {0x19c8, 0x19c9},
2371 {0x1a17, 0x1a1b},
2372 {0x1a55, 0x1a5e},
2373 {0x1a60, 0x1a7c},
2374 {0x1a7f, 0x1a7f},
2375 {0x1b00, 0x1b04},
2376 {0x1b34, 0x1b44},
2377 {0x1b6b, 0x1b73},
2378 {0x1b80, 0x1b82},
2379 {0x1ba1, 0x1baa},
2380 {0x1c24, 0x1c37},
2381 {0x1cd0, 0x1cd2},
2382 {0x1cd4, 0x1ce8},
2383 {0x1ced, 0x1ced},
2384 {0x1cf2, 0x1cf2},
2385 {0x1dc0, 0x1de6},
2386 {0x1dfd, 0x1dff},
2387 {0x20d0, 0x20f0},
2388 {0x2cef, 0x2cf1},
2389 {0x2de0, 0x2dff},
2390 {0x302a, 0x302f},
2391 {0x3099, 0x309a},
2392 {0xa66f, 0xa672},
2393 {0xa67c, 0xa67d},
2394 {0xa6f0, 0xa6f1},
2395 {0xa802, 0xa802},
2396 {0xa806, 0xa806},
2397 {0xa80b, 0xa80b},
2398 {0xa823, 0xa827},
2399 {0xa880, 0xa881},
2400 {0xa8b4, 0xa8c4},
2401 {0xa8e0, 0xa8f1},
2402 {0xa926, 0xa92d},
2403 {0xa947, 0xa953},
2404 {0xa980, 0xa983},
2405 {0xa9b3, 0xa9c0},
2406 {0xaa29, 0xaa36},
2407 {0xaa43, 0xaa43},
2408 {0xaa4c, 0xaa4d},
2409 {0xaa7b, 0xaa7b},
2410 {0xaab0, 0xaab0},
2411 {0xaab2, 0xaab4},
2412 {0xaab7, 0xaab8},
2413 {0xaabe, 0xaabf},
2414 {0xaac1, 0xaac1},
2415 {0xabe3, 0xabea},
2416 {0xabec, 0xabed},
2417 {0xfb1e, 0xfb1e},
2418 {0xfe00, 0xfe0f},
2419 {0xfe20, 0xfe26},
2420 {0x101fd, 0x101fd},
2421 {0x10a01, 0x10a03},
2422 {0x10a05, 0x10a06},
2423 {0x10a0c, 0x10a0f},
2424 {0x10a38, 0x10a3a},
2425 {0x10a3f, 0x10a3f},
2426 {0x11080, 0x11082},
2427 {0x110b0, 0x110ba},
2428 {0x1d165, 0x1d169},
2429 {0x1d16d, 0x1d172},
2430 {0x1d17b, 0x1d182},
2431 {0x1d185, 0x1d18b},
2432 {0x1d1aa, 0x1d1ad},
2433 {0x1d242, 0x1d244},
2434 {0xe0100, 0xe01ef}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435 };
2436
2437 return intable(combining, sizeof(combining), c);
2438}
2439
2440/*
2441 * Return TRUE for characters that can be displayed in a normal way.
2442 * Only for characters of 0x100 and above!
2443 */
2444 int
2445utf_printable(c)
2446 int c;
2447{
2448#ifdef USE_WCHAR_FUNCTIONS
2449 /*
2450 * Assume the iswprint() library function works better than our own stuff.
2451 */
2452 return iswprint(c);
2453#else
2454 /* Sorted list of non-overlapping intervals.
2455 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2456 static struct interval nonprint[] =
2457 {
2458 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2459 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2460 {0xfffe, 0xffff}
2461 };
2462
2463 return !intable(nonprint, sizeof(nonprint), c);
2464#endif
2465}
2466
2467/*
2468 * Get class of a Unicode character.
2469 * 0: white space
2470 * 1: punctuation
2471 * 2 or bigger: some class of word character.
2472 */
2473 int
2474utf_class(c)
2475 int c;
2476{
2477 /* sorted list of non-overlapping intervals */
2478 static struct clinterval
2479 {
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002480 unsigned int first;
2481 unsigned int last;
2482 unsigned int class;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 } classes[] =
2484 {
2485 {0x037e, 0x037e, 1}, /* Greek question mark */
2486 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2487 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2488 {0x0589, 0x0589, 1}, /* Armenian full stop */
2489 {0x05be, 0x05be, 1},
2490 {0x05c0, 0x05c0, 1},
2491 {0x05c3, 0x05c3, 1},
2492 {0x05f3, 0x05f4, 1},
2493 {0x060c, 0x060c, 1},
2494 {0x061b, 0x061b, 1},
2495 {0x061f, 0x061f, 1},
2496 {0x066a, 0x066d, 1},
2497 {0x06d4, 0x06d4, 1},
2498 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2499 {0x0964, 0x0965, 1},
2500 {0x0970, 0x0970, 1},
2501 {0x0df4, 0x0df4, 1},
2502 {0x0e4f, 0x0e4f, 1},
2503 {0x0e5a, 0x0e5b, 1},
2504 {0x0f04, 0x0f12, 1},
2505 {0x0f3a, 0x0f3d, 1},
2506 {0x0f85, 0x0f85, 1},
2507 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2508 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2509 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2510 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2511 {0x1680, 0x1680, 0},
2512 {0x169b, 0x169c, 1},
2513 {0x16eb, 0x16ed, 1},
2514 {0x1735, 0x1736, 1},
2515 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2516 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2517 {0x2000, 0x200b, 0}, /* spaces */
2518 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2519 {0x2028, 0x2029, 0},
2520 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2521 {0x202f, 0x202f, 0},
2522 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2523 {0x205f, 0x205f, 0},
2524 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2525 {0x2070, 0x207f, 0x2070}, /* superscript */
Bram Moolenaarbbb79722008-06-04 09:00:32 +00002526 {0x2080, 0x2094, 0x2080}, /* subscript */
2527 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2528 {0x2800, 0x28ff, 0x2800}, /* braille */
2529 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 {0x29d8, 0x29db, 1},
2531 {0x29fc, 0x29fd, 1},
2532 {0x3000, 0x3000, 0}, /* ideographic space */
2533 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2534 {0x3030, 0x3030, 1},
2535 {0x303d, 0x303d, 1},
2536 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2537 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2538 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2539 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2540 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2541 {0xfd3e, 0xfd3f, 1},
2542 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2543 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2544 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2545 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2546 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002547 {0x20000, 0x2a6df, 0x4e00}, /* CJK Ideographs */
2548 {0x2a700, 0x2b73f, 0x4e00}, /* CJK Ideographs */
2549 {0x2b740, 0x2b81f, 0x4e00}, /* CJK Ideographs */
2550 {0x2f800, 0x2fa1f, 0x4e00}, /* CJK Ideographs */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 };
2552 int bot = 0;
2553 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2554 int mid;
2555
2556 /* First quick check for Latin1 characters, use 'iskeyword'. */
2557 if (c < 0x100)
2558 {
Bram Moolenaarf7bbbc52005-06-17 21:55:00 +00002559 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 return 0; /* blank */
2561 if (vim_iswordc(c))
2562 return 2; /* word character */
2563 return 1; /* punctuation */
2564 }
2565
2566 /* binary search in table */
2567 while (top >= bot)
2568 {
2569 mid = (bot + top) / 2;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002570 if (classes[mid].last < (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 bot = mid + 1;
Bram Moolenaarcc63c642013-11-12 04:44:01 +01002572 else if (classes[mid].first > (unsigned int)c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 top = mid - 1;
2574 else
2575 return (int)classes[mid].class;
2576 }
2577
2578 /* most other characters are "word" characters */
2579 return 2;
2580}
2581
2582/*
2583 * Code for Unicode case-dependent operations. Based on notes in
2584 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2585 * This code uses simple case folding, not full case folding.
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002586 * Last updated for Unicode 5.2.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 */
2588
2589/*
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002590 * The following tables are built by ../runtime/tools/unicode.vim.
2591 * They must be in numeric order, because we use binary search.
2592 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2593 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2594 * folded/upper/lower by adding 32.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596typedef struct
2597{
2598 int rangeStart;
2599 int rangeEnd;
2600 int step;
2601 int offset;
2602} convertStruct;
2603
Bram Moolenaard6f676d2005-06-01 21:51:55 +00002604static convertStruct foldCase[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002606 {0x41,0x5a,1,32},
2607 {0xb5,0xb5,-1,775},
2608 {0xc0,0xd6,1,32},
2609 {0xd8,0xde,1,32},
2610 {0x100,0x12e,2,1},
2611 {0x132,0x136,2,1},
2612 {0x139,0x147,2,1},
2613 {0x14a,0x176,2,1},
2614 {0x178,0x178,-1,-121},
2615 {0x179,0x17d,2,1},
2616 {0x17f,0x17f,-1,-268},
2617 {0x181,0x181,-1,210},
2618 {0x182,0x184,2,1},
2619 {0x186,0x186,-1,206},
2620 {0x187,0x187,-1,1},
2621 {0x189,0x18a,1,205},
2622 {0x18b,0x18b,-1,1},
2623 {0x18e,0x18e,-1,79},
2624 {0x18f,0x18f,-1,202},
2625 {0x190,0x190,-1,203},
2626 {0x191,0x191,-1,1},
2627 {0x193,0x193,-1,205},
2628 {0x194,0x194,-1,207},
2629 {0x196,0x196,-1,211},
2630 {0x197,0x197,-1,209},
2631 {0x198,0x198,-1,1},
2632 {0x19c,0x19c,-1,211},
2633 {0x19d,0x19d,-1,213},
2634 {0x19f,0x19f,-1,214},
2635 {0x1a0,0x1a4,2,1},
2636 {0x1a6,0x1a6,-1,218},
2637 {0x1a7,0x1a7,-1,1},
2638 {0x1a9,0x1a9,-1,218},
2639 {0x1ac,0x1ac,-1,1},
2640 {0x1ae,0x1ae,-1,218},
2641 {0x1af,0x1af,-1,1},
2642 {0x1b1,0x1b2,1,217},
2643 {0x1b3,0x1b5,2,1},
2644 {0x1b7,0x1b7,-1,219},
2645 {0x1b8,0x1bc,4,1},
2646 {0x1c4,0x1c4,-1,2},
2647 {0x1c5,0x1c5,-1,1},
2648 {0x1c7,0x1c7,-1,2},
2649 {0x1c8,0x1c8,-1,1},
2650 {0x1ca,0x1ca,-1,2},
2651 {0x1cb,0x1db,2,1},
2652 {0x1de,0x1ee,2,1},
2653 {0x1f1,0x1f1,-1,2},
2654 {0x1f2,0x1f4,2,1},
2655 {0x1f6,0x1f6,-1,-97},
2656 {0x1f7,0x1f7,-1,-56},
2657 {0x1f8,0x21e,2,1},
2658 {0x220,0x220,-1,-130},
2659 {0x222,0x232,2,1},
2660 {0x23a,0x23a,-1,10795},
2661 {0x23b,0x23b,-1,1},
2662 {0x23d,0x23d,-1,-163},
2663 {0x23e,0x23e,-1,10792},
2664 {0x241,0x241,-1,1},
2665 {0x243,0x243,-1,-195},
2666 {0x244,0x244,-1,69},
2667 {0x245,0x245,-1,71},
2668 {0x246,0x24e,2,1},
2669 {0x345,0x345,-1,116},
2670 {0x370,0x372,2,1},
2671 {0x376,0x376,-1,1},
2672 {0x386,0x386,-1,38},
2673 {0x388,0x38a,1,37},
2674 {0x38c,0x38c,-1,64},
2675 {0x38e,0x38f,1,63},
2676 {0x391,0x3a1,1,32},
2677 {0x3a3,0x3ab,1,32},
2678 {0x3c2,0x3c2,-1,1},
2679 {0x3cf,0x3cf,-1,8},
2680 {0x3d0,0x3d0,-1,-30},
2681 {0x3d1,0x3d1,-1,-25},
2682 {0x3d5,0x3d5,-1,-15},
2683 {0x3d6,0x3d6,-1,-22},
2684 {0x3d8,0x3ee,2,1},
2685 {0x3f0,0x3f0,-1,-54},
2686 {0x3f1,0x3f1,-1,-48},
2687 {0x3f4,0x3f4,-1,-60},
2688 {0x3f5,0x3f5,-1,-64},
2689 {0x3f7,0x3f7,-1,1},
2690 {0x3f9,0x3f9,-1,-7},
2691 {0x3fa,0x3fa,-1,1},
2692 {0x3fd,0x3ff,1,-130},
2693 {0x400,0x40f,1,80},
2694 {0x410,0x42f,1,32},
2695 {0x460,0x480,2,1},
2696 {0x48a,0x4be,2,1},
2697 {0x4c0,0x4c0,-1,15},
2698 {0x4c1,0x4cd,2,1},
2699 {0x4d0,0x524,2,1},
2700 {0x531,0x556,1,48},
2701 {0x10a0,0x10c5,1,7264},
2702 {0x1e00,0x1e94,2,1},
2703 {0x1e9b,0x1e9b,-1,-58},
2704 {0x1e9e,0x1e9e,-1,-7615},
2705 {0x1ea0,0x1efe,2,1},
2706 {0x1f08,0x1f0f,1,-8},
2707 {0x1f18,0x1f1d,1,-8},
2708 {0x1f28,0x1f2f,1,-8},
2709 {0x1f38,0x1f3f,1,-8},
2710 {0x1f48,0x1f4d,1,-8},
2711 {0x1f59,0x1f5f,2,-8},
2712 {0x1f68,0x1f6f,1,-8},
2713 {0x1f88,0x1f8f,1,-8},
2714 {0x1f98,0x1f9f,1,-8},
2715 {0x1fa8,0x1faf,1,-8},
2716 {0x1fb8,0x1fb9,1,-8},
2717 {0x1fba,0x1fbb,1,-74},
2718 {0x1fbc,0x1fbc,-1,-9},
2719 {0x1fbe,0x1fbe,-1,-7173},
2720 {0x1fc8,0x1fcb,1,-86},
2721 {0x1fcc,0x1fcc,-1,-9},
2722 {0x1fd8,0x1fd9,1,-8},
2723 {0x1fda,0x1fdb,1,-100},
2724 {0x1fe8,0x1fe9,1,-8},
2725 {0x1fea,0x1feb,1,-112},
2726 {0x1fec,0x1fec,-1,-7},
2727 {0x1ff8,0x1ff9,1,-128},
2728 {0x1ffa,0x1ffb,1,-126},
2729 {0x1ffc,0x1ffc,-1,-9},
2730 {0x2126,0x2126,-1,-7517},
2731 {0x212a,0x212a,-1,-8383},
2732 {0x212b,0x212b,-1,-8262},
2733 {0x2132,0x2132,-1,28},
2734 {0x2160,0x216f,1,16},
2735 {0x2183,0x2183,-1,1},
2736 {0x24b6,0x24cf,1,26},
2737 {0x2c00,0x2c2e,1,48},
2738 {0x2c60,0x2c60,-1,1},
2739 {0x2c62,0x2c62,-1,-10743},
2740 {0x2c63,0x2c63,-1,-3814},
2741 {0x2c64,0x2c64,-1,-10727},
2742 {0x2c67,0x2c6b,2,1},
2743 {0x2c6d,0x2c6d,-1,-10780},
2744 {0x2c6e,0x2c6e,-1,-10749},
2745 {0x2c6f,0x2c6f,-1,-10783},
2746 {0x2c70,0x2c70,-1,-10782},
2747 {0x2c72,0x2c75,3,1},
2748 {0x2c7e,0x2c7f,1,-10815},
2749 {0x2c80,0x2ce2,2,1},
2750 {0x2ceb,0x2ced,2,1},
2751 {0xa640,0xa65e,2,1},
2752 {0xa662,0xa66c,2,1},
2753 {0xa680,0xa696,2,1},
2754 {0xa722,0xa72e,2,1},
2755 {0xa732,0xa76e,2,1},
2756 {0xa779,0xa77b,2,1},
2757 {0xa77d,0xa77d,-1,-35332},
2758 {0xa77e,0xa786,2,1},
2759 {0xa78b,0xa78b,-1,1},
2760 {0xff21,0xff3a,1,32},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 {0x10400,0x10427,1,40}
2762};
2763
Bram Moolenaar35ee4522011-07-15 21:16:59 +02002764static int utf_convert __ARGS((int a, convertStruct table[], int tableSize));
2765static int utf_strnicmp __ARGS((char_u *s1, char_u *s2, size_t n1, size_t n2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766
2767/*
2768 * Generic conversion function for case operations.
2769 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2770 * the given conversion "table". Uses binary search on "table".
2771 */
2772 static int
2773utf_convert(a, table, tableSize)
2774 int a;
2775 convertStruct table[];
2776 int tableSize;
2777{
2778 int start, mid, end; /* indices into table */
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01002779 int entries = tableSize / sizeof(convertStruct);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780
2781 start = 0;
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01002782 end = entries;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783 while (start < end)
2784 {
2785 /* need to search further */
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01002786 mid = (end + start) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 if (table[mid].rangeEnd < a)
2788 start = mid + 1;
2789 else
2790 end = mid;
2791 }
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01002792 if (start < entries
2793 && table[start].rangeStart <= a
2794 && a <= table[start].rangeEnd
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 && (a - table[start].rangeStart) % table[start].step == 0)
2796 return (a + table[start].offset);
2797 else
2798 return a;
2799}
2800
2801/*
2802 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2803 * simple case folding.
2804 */
2805 int
2806utf_fold(a)
2807 int a;
2808{
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01002809 return utf_convert(a, foldCase, (int)sizeof(foldCase));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810}
2811
Bram Moolenaard6f676d2005-06-01 21:51:55 +00002812static convertStruct toLower[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002814 {0x41,0x5a,1,32},
2815 {0xc0,0xd6,1,32},
2816 {0xd8,0xde,1,32},
2817 {0x100,0x12e,2,1},
2818 {0x130,0x130,-1,-199},
2819 {0x132,0x136,2,1},
2820 {0x139,0x147,2,1},
2821 {0x14a,0x176,2,1},
2822 {0x178,0x178,-1,-121},
2823 {0x179,0x17d,2,1},
2824 {0x181,0x181,-1,210},
2825 {0x182,0x184,2,1},
2826 {0x186,0x186,-1,206},
2827 {0x187,0x187,-1,1},
2828 {0x189,0x18a,1,205},
2829 {0x18b,0x18b,-1,1},
2830 {0x18e,0x18e,-1,79},
2831 {0x18f,0x18f,-1,202},
2832 {0x190,0x190,-1,203},
2833 {0x191,0x191,-1,1},
2834 {0x193,0x193,-1,205},
2835 {0x194,0x194,-1,207},
2836 {0x196,0x196,-1,211},
2837 {0x197,0x197,-1,209},
2838 {0x198,0x198,-1,1},
2839 {0x19c,0x19c,-1,211},
2840 {0x19d,0x19d,-1,213},
2841 {0x19f,0x19f,-1,214},
2842 {0x1a0,0x1a4,2,1},
2843 {0x1a6,0x1a6,-1,218},
2844 {0x1a7,0x1a7,-1,1},
2845 {0x1a9,0x1a9,-1,218},
2846 {0x1ac,0x1ac,-1,1},
2847 {0x1ae,0x1ae,-1,218},
2848 {0x1af,0x1af,-1,1},
2849 {0x1b1,0x1b2,1,217},
2850 {0x1b3,0x1b5,2,1},
2851 {0x1b7,0x1b7,-1,219},
2852 {0x1b8,0x1bc,4,1},
2853 {0x1c4,0x1c4,-1,2},
2854 {0x1c5,0x1c5,-1,1},
2855 {0x1c7,0x1c7,-1,2},
2856 {0x1c8,0x1c8,-1,1},
2857 {0x1ca,0x1ca,-1,2},
2858 {0x1cb,0x1db,2,1},
2859 {0x1de,0x1ee,2,1},
2860 {0x1f1,0x1f1,-1,2},
2861 {0x1f2,0x1f4,2,1},
2862 {0x1f6,0x1f6,-1,-97},
2863 {0x1f7,0x1f7,-1,-56},
2864 {0x1f8,0x21e,2,1},
2865 {0x220,0x220,-1,-130},
2866 {0x222,0x232,2,1},
2867 {0x23a,0x23a,-1,10795},
2868 {0x23b,0x23b,-1,1},
2869 {0x23d,0x23d,-1,-163},
2870 {0x23e,0x23e,-1,10792},
2871 {0x241,0x241,-1,1},
2872 {0x243,0x243,-1,-195},
2873 {0x244,0x244,-1,69},
2874 {0x245,0x245,-1,71},
2875 {0x246,0x24e,2,1},
2876 {0x370,0x372,2,1},
2877 {0x376,0x376,-1,1},
2878 {0x386,0x386,-1,38},
2879 {0x388,0x38a,1,37},
2880 {0x38c,0x38c,-1,64},
2881 {0x38e,0x38f,1,63},
2882 {0x391,0x3a1,1,32},
2883 {0x3a3,0x3ab,1,32},
2884 {0x3cf,0x3cf,-1,8},
2885 {0x3d8,0x3ee,2,1},
2886 {0x3f4,0x3f4,-1,-60},
2887 {0x3f7,0x3f7,-1,1},
2888 {0x3f9,0x3f9,-1,-7},
2889 {0x3fa,0x3fa,-1,1},
2890 {0x3fd,0x3ff,1,-130},
2891 {0x400,0x40f,1,80},
2892 {0x410,0x42f,1,32},
2893 {0x460,0x480,2,1},
2894 {0x48a,0x4be,2,1},
2895 {0x4c0,0x4c0,-1,15},
2896 {0x4c1,0x4cd,2,1},
2897 {0x4d0,0x524,2,1},
2898 {0x531,0x556,1,48},
2899 {0x10a0,0x10c5,1,7264},
2900 {0x1e00,0x1e94,2,1},
2901 {0x1e9e,0x1e9e,-1,-7615},
2902 {0x1ea0,0x1efe,2,1},
2903 {0x1f08,0x1f0f,1,-8},
2904 {0x1f18,0x1f1d,1,-8},
2905 {0x1f28,0x1f2f,1,-8},
2906 {0x1f38,0x1f3f,1,-8},
2907 {0x1f48,0x1f4d,1,-8},
2908 {0x1f59,0x1f5f,2,-8},
2909 {0x1f68,0x1f6f,1,-8},
2910 {0x1f88,0x1f8f,1,-8},
2911 {0x1f98,0x1f9f,1,-8},
2912 {0x1fa8,0x1faf,1,-8},
2913 {0x1fb8,0x1fb9,1,-8},
2914 {0x1fba,0x1fbb,1,-74},
2915 {0x1fbc,0x1fbc,-1,-9},
2916 {0x1fc8,0x1fcb,1,-86},
2917 {0x1fcc,0x1fcc,-1,-9},
2918 {0x1fd8,0x1fd9,1,-8},
2919 {0x1fda,0x1fdb,1,-100},
2920 {0x1fe8,0x1fe9,1,-8},
2921 {0x1fea,0x1feb,1,-112},
2922 {0x1fec,0x1fec,-1,-7},
2923 {0x1ff8,0x1ff9,1,-128},
2924 {0x1ffa,0x1ffb,1,-126},
2925 {0x1ffc,0x1ffc,-1,-9},
2926 {0x2126,0x2126,-1,-7517},
2927 {0x212a,0x212a,-1,-8383},
2928 {0x212b,0x212b,-1,-8262},
2929 {0x2132,0x2132,-1,28},
2930 {0x2160,0x216f,1,16},
2931 {0x2183,0x2183,-1,1},
2932 {0x24b6,0x24cf,1,26},
2933 {0x2c00,0x2c2e,1,48},
2934 {0x2c60,0x2c60,-1,1},
2935 {0x2c62,0x2c62,-1,-10743},
2936 {0x2c63,0x2c63,-1,-3814},
2937 {0x2c64,0x2c64,-1,-10727},
2938 {0x2c67,0x2c6b,2,1},
2939 {0x2c6d,0x2c6d,-1,-10780},
2940 {0x2c6e,0x2c6e,-1,-10749},
2941 {0x2c6f,0x2c6f,-1,-10783},
2942 {0x2c70,0x2c70,-1,-10782},
2943 {0x2c72,0x2c75,3,1},
2944 {0x2c7e,0x2c7f,1,-10815},
2945 {0x2c80,0x2ce2,2,1},
2946 {0x2ceb,0x2ced,2,1},
2947 {0xa640,0xa65e,2,1},
2948 {0xa662,0xa66c,2,1},
2949 {0xa680,0xa696,2,1},
2950 {0xa722,0xa72e,2,1},
2951 {0xa732,0xa76e,2,1},
2952 {0xa779,0xa77b,2,1},
2953 {0xa77d,0xa77d,-1,-35332},
2954 {0xa77e,0xa786,2,1},
2955 {0xa78b,0xa78b,-1,1},
2956 {0xff21,0xff3a,1,32},
2957 {0x10400,0x10427,1,40}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958};
2959
Bram Moolenaard6f676d2005-06-01 21:51:55 +00002960static convertStruct toUpper[] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961{
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002962 {0x61,0x7a,1,-32},
2963 {0xb5,0xb5,-1,743},
Bram Moolenaar88178de2012-06-01 17:46:59 +02002964 {0xe0,0xf6,1,-32}, /* 0xdf (German sharp s) is not upper-cased */
Bram Moolenaar3e8cb582010-01-12 19:52:03 +01002965 {0xf8,0xfe,1,-32},
2966 {0xff,0xff,-1,121},
2967 {0x101,0x12f,2,-1},
2968 {0x131,0x131,-1,-232},
2969 {0x133,0x137,2,-1},
2970 {0x13a,0x148,2,-1},
2971 {0x14b,0x177,2,-1},
2972 {0x17a,0x17e,2,-1},
2973 {0x17f,0x17f,-1,-300},
2974 {0x180,0x180,-1,195},
2975 {0x183,0x185,2,-1},
2976 {0x188,0x18c,4,-1},
2977 {0x192,0x192,-1,-1},
2978 {0x195,0x195,-1,97},
2979 {0x199,0x199,-1,-1},
2980 {0x19a,0x19a,-1,163},
2981 {0x19e,0x19e,-1,130},
2982 {0x1a1,0x1a5,2,-1},
2983 {0x1a8,0x1ad,5,-1},
2984 {0x1b0,0x1b4,4,-1},
2985 {0x1b6,0x1b9,3,-1},
2986 {0x1bd,0x1bd,-1,-1},
2987 {0x1bf,0x1bf,-1,56},
2988 {0x1c5,0x1c5,-1,-1},
2989 {0x1c6,0x1c6,-1,-2},
2990 {0x1c8,0x1c8,-1,-1},
2991 {0x1c9,0x1c9,-1,-2},
2992 {0x1cb,0x1cb,-1,-1},
2993 {0x1cc,0x1cc,-1,-2},
2994 {0x1ce,0x1dc,2,-1},
2995 {0x1dd,0x1dd,-1,-79},
2996 {0x1df,0x1ef,2,-1},
2997 {0x1f2,0x1f2,-1,-1},
2998 {0x1f3,0x1f3,-1,-2},
2999 {0x1f5,0x1f9,4,-1},
3000 {0x1fb,0x21f,2,-1},
3001 {0x223,0x233,2,-1},
3002 {0x23c,0x23c,-1,-1},
3003 {0x23f,0x240,1,10815},
3004 {0x242,0x247,5,-1},
3005 {0x249,0x24f,2,-1},
3006 {0x250,0x250,-1,10783},
3007 {0x251,0x251,-1,10780},
3008 {0x252,0x252,-1,10782},
3009 {0x253,0x253,-1,-210},
3010 {0x254,0x254,-1,-206},
3011 {0x256,0x257,1,-205},
3012 {0x259,0x259,-1,-202},
3013 {0x25b,0x25b,-1,-203},
3014 {0x260,0x260,-1,-205},
3015 {0x263,0x263,-1,-207},
3016 {0x268,0x268,-1,-209},
3017 {0x269,0x269,-1,-211},
3018 {0x26b,0x26b,-1,10743},
3019 {0x26f,0x26f,-1,-211},
3020 {0x271,0x271,-1,10749},
3021 {0x272,0x272,-1,-213},
3022 {0x275,0x275,-1,-214},
3023 {0x27d,0x27d,-1,10727},
3024 {0x280,0x283,3,-218},
3025 {0x288,0x288,-1,-218},
3026 {0x289,0x289,-1,-69},
3027 {0x28a,0x28b,1,-217},
3028 {0x28c,0x28c,-1,-71},
3029 {0x292,0x292,-1,-219},
3030 {0x345,0x345,-1,84},
3031 {0x371,0x373,2,-1},
3032 {0x377,0x377,-1,-1},
3033 {0x37b,0x37d,1,130},
3034 {0x3ac,0x3ac,-1,-38},
3035 {0x3ad,0x3af,1,-37},
3036 {0x3b1,0x3c1,1,-32},
3037 {0x3c2,0x3c2,-1,-31},
3038 {0x3c3,0x3cb,1,-32},
3039 {0x3cc,0x3cc,-1,-64},
3040 {0x3cd,0x3ce,1,-63},
3041 {0x3d0,0x3d0,-1,-62},
3042 {0x3d1,0x3d1,-1,-57},
3043 {0x3d5,0x3d5,-1,-47},
3044 {0x3d6,0x3d6,-1,-54},
3045 {0x3d7,0x3d7,-1,-8},
3046 {0x3d9,0x3ef,2,-1},
3047 {0x3f0,0x3f0,-1,-86},
3048 {0x3f1,0x3f1,-1,-80},
3049 {0x3f2,0x3f2,-1,7},
3050 {0x3f5,0x3f5,-1,-96},
3051 {0x3f8,0x3fb,3,-1},
3052 {0x430,0x44f,1,-32},
3053 {0x450,0x45f,1,-80},
3054 {0x461,0x481,2,-1},
3055 {0x48b,0x4bf,2,-1},
3056 {0x4c2,0x4ce,2,-1},
3057 {0x4cf,0x4cf,-1,-15},
3058 {0x4d1,0x525,2,-1},
3059 {0x561,0x586,1,-48},
3060 {0x1d79,0x1d79,-1,35332},
3061 {0x1d7d,0x1d7d,-1,3814},
3062 {0x1e01,0x1e95,2,-1},
3063 {0x1e9b,0x1e9b,-1,-59},
3064 {0x1ea1,0x1eff,2,-1},
3065 {0x1f00,0x1f07,1,8},
3066 {0x1f10,0x1f15,1,8},
3067 {0x1f20,0x1f27,1,8},
3068 {0x1f30,0x1f37,1,8},
3069 {0x1f40,0x1f45,1,8},
3070 {0x1f51,0x1f57,2,8},
3071 {0x1f60,0x1f67,1,8},
3072 {0x1f70,0x1f71,1,74},
3073 {0x1f72,0x1f75,1,86},
3074 {0x1f76,0x1f77,1,100},
3075 {0x1f78,0x1f79,1,128},
3076 {0x1f7a,0x1f7b,1,112},
3077 {0x1f7c,0x1f7d,1,126},
3078 {0x1f80,0x1f87,1,8},
3079 {0x1f90,0x1f97,1,8},
3080 {0x1fa0,0x1fa7,1,8},
3081 {0x1fb0,0x1fb1,1,8},
3082 {0x1fb3,0x1fb3,-1,9},
3083 {0x1fbe,0x1fbe,-1,-7205},
3084 {0x1fc3,0x1fc3,-1,9},
3085 {0x1fd0,0x1fd1,1,8},
3086 {0x1fe0,0x1fe1,1,8},
3087 {0x1fe5,0x1fe5,-1,7},
3088 {0x1ff3,0x1ff3,-1,9},
3089 {0x214e,0x214e,-1,-28},
3090 {0x2170,0x217f,1,-16},
3091 {0x2184,0x2184,-1,-1},
3092 {0x24d0,0x24e9,1,-26},
3093 {0x2c30,0x2c5e,1,-48},
3094 {0x2c61,0x2c61,-1,-1},
3095 {0x2c65,0x2c65,-1,-10795},
3096 {0x2c66,0x2c66,-1,-10792},
3097 {0x2c68,0x2c6c,2,-1},
3098 {0x2c73,0x2c76,3,-1},
3099 {0x2c81,0x2ce3,2,-1},
3100 {0x2cec,0x2cee,2,-1},
3101 {0x2d00,0x2d25,1,-7264},
3102 {0xa641,0xa65f,2,-1},
3103 {0xa663,0xa66d,2,-1},
3104 {0xa681,0xa697,2,-1},
3105 {0xa723,0xa72f,2,-1},
3106 {0xa733,0xa76f,2,-1},
3107 {0xa77a,0xa77c,2,-1},
3108 {0xa77f,0xa787,2,-1},
3109 {0xa78c,0xa78c,-1,-1},
3110 {0xff41,0xff5a,1,-32},
3111 {0x10428,0x1044f,1,-40}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112};
3113
3114/*
3115 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3116 * simple case folding.
3117 */
3118 int
3119utf_toupper(a)
3120 int a;
3121{
3122 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
3123 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3124 return TOUPPER_ASC(a);
3125
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003126#if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
3127 /* If towupper() is available and handles Unicode, use it. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 if (!(cmp_flags & CMP_INTERNAL))
3129 return towupper(a);
3130#endif
3131
3132 /* For characters below 128 use locale sensitive toupper(). */
3133 if (a < 128)
3134 return TOUPPER_LOC(a);
3135
3136 /* For any other characters use the above mapping table. */
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003137 return utf_convert(a, toUpper, (int)sizeof(toUpper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138}
3139
3140 int
3141utf_islower(a)
3142 int a;
3143{
Bram Moolenaar88178de2012-06-01 17:46:59 +02003144 /* German sharp s is lower case but has no upper case equivalent. */
3145 return (utf_toupper(a) != a) || a == 0xdf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146}
3147
3148/*
3149 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3150 * simple case folding.
3151 */
3152 int
3153utf_tolower(a)
3154 int a;
3155{
3156 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
3157 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3158 return TOLOWER_ASC(a);
3159
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003160#if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
Bram Moolenaar8fcc0f72005-04-23 20:45:11 +00003161 /* If towlower() is available and handles Unicode, use it. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 if (!(cmp_flags & CMP_INTERNAL))
3163 return towlower(a);
3164#endif
3165
3166 /* For characters below 128 use locale sensitive tolower(). */
3167 if (a < 128)
3168 return TOLOWER_LOC(a);
3169
3170 /* For any other characters use the above mapping table. */
Bram Moolenaarf0b6b0c2011-12-08 15:09:52 +01003171 return utf_convert(a, toLower, (int)sizeof(toLower));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172}
3173
3174 int
3175utf_isupper(a)
3176 int a;
3177{
3178 return (utf_tolower(a) != a);
3179}
3180
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003181 static int
3182utf_strnicmp(s1, s2, n1, n2)
3183 char_u *s1, *s2;
3184 size_t n1, n2;
3185{
3186 int c1, c2, cdiff;
3187 char_u buffer[6];
3188
3189 for (;;)
3190 {
3191 c1 = utf_safe_read_char_adv(&s1, &n1);
3192 c2 = utf_safe_read_char_adv(&s2, &n2);
3193
3194 if (c1 <= 0 || c2 <= 0)
3195 break;
3196
3197 if (c1 == c2)
3198 continue;
3199
3200 cdiff = utf_fold(c1) - utf_fold(c2);
3201 if (cdiff != 0)
3202 return cdiff;
3203 }
3204
3205 /* some string ended or has an incomplete/illegal character sequence */
3206
3207 if (c1 == 0 || c2 == 0)
3208 {
3209 /* some string ended. shorter string is smaller */
3210 if (c1 == 0 && c2 == 0)
3211 return 0;
3212 return c1 == 0 ? -1 : 1;
3213 }
3214
3215 /* Continue with bytewise comparison to produce some result that
3216 * would make comparison operations involving this function transitive.
3217 *
3218 * If only one string had an error, comparison should be made with
3219 * folded version of the other string. In this case it is enough
3220 * to fold just one character to determine the result of comparison. */
3221
3222 if (c1 != -1 && c2 == -1)
3223 {
3224 n1 = utf_char2bytes(utf_fold(c1), buffer);
3225 s1 = buffer;
3226 }
3227 else if (c2 != -1 && c1 == -1)
3228 {
3229 n2 = utf_char2bytes(utf_fold(c2), buffer);
3230 s2 = buffer;
3231 }
3232
3233 while (n1 > 0 && n2 > 0 && *s1 != NUL && *s2 != NUL)
3234 {
3235 cdiff = (int)(*s1) - (int)(*s2);
3236 if (cdiff != 0)
3237 return cdiff;
3238
3239 s1++;
3240 s2++;
3241 n1--;
3242 n2--;
3243 }
3244
3245 if (n1 > 0 && *s1 == NUL)
3246 n1 = 0;
3247 if (n2 > 0 && *s2 == NUL)
3248 n2 = 0;
3249
3250 if (n1 == 0 && n2 == 0)
3251 return 0;
3252 return n1 == 0 ? -1 : 1;
3253}
3254
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255/*
3256 * Version of strnicmp() that handles multi-byte characters.
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01003257 * Needed for Big5, Shift-JIS and UTF-8 encoding. Other DBCS encodings can
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 * probably use strnicmp(), because there are no ASCII characters in the
3259 * second byte.
3260 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3261 * two characters otherwise.
3262 */
3263 int
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00003264mb_strnicmp(s1, s2, nn)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 char_u *s1, *s2;
Bram Moolenaarbc045ea2005-06-05 22:01:26 +00003266 size_t nn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267{
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003268 int i, l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 int cdiff;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003270 int n = (int)nn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003272 if (enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 {
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003274 return utf_strnicmp(s1, s2, nn, nn);
3275 }
3276 else
3277 {
3278 for (i = 0; i < n; i += l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279 {
Bram Moolenaar35ee4522011-07-15 21:16:59 +02003280 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
3281 return 0;
3282
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003283 l = (*mb_ptr2len)(s1 + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 if (l <= 1)
3285 {
3286 /* Single byte: first check normally, then with ignore case. */
3287 if (s1[i] != s2[i])
3288 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003289 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 if (cdiff != 0)
3291 return cdiff;
3292 }
3293 }
3294 else
3295 {
3296 /* For non-Unicode multi-byte don't ignore case. */
3297 if (l > n - i)
3298 l = n - i;
3299 cdiff = STRNCMP(s1 + i, s2 + i, l);
3300 if (cdiff != 0)
3301 return cdiff;
3302 }
3303 }
3304 }
3305 return 0;
3306}
3307
3308/*
3309 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3310 * 'encoding' has been set to.
3311 */
3312 void
3313show_utf8()
3314{
3315 int len;
Bram Moolenaar051b7822005-05-19 21:00:46 +00003316 int rlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 char_u *line;
3318 int clen;
3319 int i;
3320
3321 /* Get the byte length of the char under the cursor, including composing
3322 * characters. */
3323 line = ml_get_cursor();
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003324 len = utfc_ptr2len(line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (len == 0)
3326 {
3327 MSG("NUL");
3328 return;
3329 }
3330
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 clen = 0;
3332 for (i = 0; i < len; ++i)
3333 {
3334 if (clen == 0)
3335 {
3336 /* start of (composing) character, get its length */
3337 if (i > 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +00003338 {
3339 STRCPY(IObuff + rlen, "+ ");
3340 rlen += 2;
3341 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003342 clen = utf_ptr2len(line + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 }
Bram Moolenaarb382ad12010-05-21 15:46:35 +02003344 sprintf((char *)IObuff + rlen, "%02x ",
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003345 (line[i] == NL) ? NUL : line[i]); /* NUL is stored as NL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 --clen;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003347 rlen += (int)STRLEN(IObuff + rlen);
Bram Moolenaar051b7822005-05-19 21:00:46 +00003348 if (rlen > IOSIZE - 20)
3349 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 }
3351
3352 msg(IObuff);
3353}
3354
3355/*
3356 * mb_head_off() function pointer.
3357 * Return offset from "p" to the first byte of the character it points into.
Bram Moolenaar24397332009-12-02 14:02:39 +00003358 * If "p" points to the NUL at the end of the string return 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 * Returns 0 when already at the first byte of a character.
3360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 int
3362latin_head_off(base, p)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00003363 char_u *base UNUSED;
3364 char_u *p UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 return 0;
3367}
3368
3369 int
3370dbcs_head_off(base, p)
3371 char_u *base;
3372 char_u *p;
3373{
3374 char_u *q;
3375
3376 /* It can't be a trailing byte when not using DBCS, at the start of the
3377 * string or the previous byte can't start a double-byte. */
Bram Moolenaar24397332009-12-02 14:02:39 +00003378 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 return 0;
3380
3381 /* This is slow: need to start at the base and go forward until the
3382 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
3383 q = base;
3384 while (q < p)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003385 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 return (q == p) ? 0 : 1;
3387}
3388
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389/*
3390 * Special version of dbcs_head_off() that works for ScreenLines[], where
3391 * single-width DBCS_JPNU characters are stored separately.
3392 */
3393 int
3394dbcs_screen_head_off(base, p)
3395 char_u *base;
3396 char_u *p;
3397{
3398 char_u *q;
3399
3400 /* It can't be a trailing byte when not using DBCS, at the start of the
3401 * string or the previous byte can't start a double-byte.
3402 * For euc-jp an 0x8e byte in the previous cell always means we have a
3403 * lead byte in the current cell. */
3404 if (p <= base
3405 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
Bram Moolenaar24397332009-12-02 14:02:39 +00003406 || MB_BYTE2LEN(p[-1]) == 1
3407 || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 return 0;
3409
3410 /* This is slow: need to start at the base and go forward until the
3411 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
3412 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
3413 * stored as the next byte. */
3414 q = base;
3415 while (q < p)
3416 {
3417 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3418 ++q;
3419 else
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003420 q += dbcs_ptr2len(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 }
3422 return (q == p) ? 0 : 1;
3423}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424
3425 int
3426utf_head_off(base, p)
3427 char_u *base;
3428 char_u *p;
3429{
3430 char_u *q;
3431 char_u *s;
3432 int c;
Bram Moolenaar24397332009-12-02 14:02:39 +00003433 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434#ifdef FEAT_ARABIC
3435 char_u *j;
3436#endif
3437
3438 if (*p < 0x80) /* be quick for ASCII */
3439 return 0;
3440
3441 /* Skip backwards over trailing bytes: 10xx.xxxx
3442 * Skip backwards again if on a composing char. */
3443 for (q = p; ; --q)
3444 {
3445 /* Move s to the last byte of this char. */
3446 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3447 ;
3448 /* Move q to the first byte of this char. */
3449 while (q > base && (*q & 0xc0) == 0x80)
3450 --q;
3451 /* Check for illegal sequence. Do allow an illegal byte after where we
3452 * started. */
Bram Moolenaar24397332009-12-02 14:02:39 +00003453 len = utf8len_tab[*q];
3454 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 return 0;
3456
3457 if (q <= base)
3458 break;
3459
3460 c = utf_ptr2char(q);
3461 if (utf_iscomposing(c))
3462 continue;
3463
3464#ifdef FEAT_ARABIC
3465 if (arabic_maycombine(c))
3466 {
3467 /* Advance to get a sneak-peak at the next char */
3468 j = q;
3469 --j;
3470 /* Move j to the first byte of this char. */
3471 while (j > base && (*j & 0xc0) == 0x80)
3472 --j;
3473 if (arabic_combine(utf_ptr2char(j), c))
3474 continue;
3475 }
3476#endif
3477 break;
3478 }
3479
3480 return (int)(p - q);
3481}
3482
3483/*
Bram Moolenaard8b02732005-01-14 21:48:43 +00003484 * Copy a character from "*fp" to "*tp" and advance the pointers.
3485 */
3486 void
3487mb_copy_char(fp, tp)
3488 char_u **fp;
3489 char_u **tp;
3490{
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003491 int l = (*mb_ptr2len)(*fp);
Bram Moolenaard8b02732005-01-14 21:48:43 +00003492
3493 mch_memmove(*tp, *fp, (size_t)l);
3494 *tp += l;
3495 *fp += l;
3496}
3497
3498/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 * Return the offset from "p" to the first byte of a character. When "p" is
3500 * at the start of a character 0 is returned, otherwise the offset to the next
3501 * character. Can start anywhere in a stream of bytes.
3502 */
3503 int
3504mb_off_next(base, p)
3505 char_u *base;
3506 char_u *p;
3507{
3508 int i;
3509 int j;
3510
3511 if (enc_utf8)
3512 {
3513 if (*p < 0x80) /* be quick for ASCII */
3514 return 0;
3515
3516 /* Find the next character that isn't 10xx.xxxx */
3517 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
3518 ;
3519 if (i > 0)
3520 {
3521 /* Check for illegal sequence. */
3522 for (j = 0; p - j > base; ++j)
3523 if ((p[-j] & 0xc0) != 0x80)
3524 break;
3525 if (utf8len_tab[p[-j]] != i + j)
3526 return 0;
3527 }
3528 return i;
3529 }
3530
3531 /* Only need to check if we're on a trail byte, it doesn't matter if we
3532 * want the offset to the next or current character. */
3533 return (*mb_head_off)(base, p);
3534}
3535
3536/*
3537 * Return the offset from "p" to the last byte of the character it points
3538 * into. Can start anywhere in a stream of bytes.
3539 */
3540 int
3541mb_tail_off(base, p)
3542 char_u *base;
3543 char_u *p;
3544{
3545 int i;
3546 int j;
3547
3548 if (*p == NUL)
3549 return 0;
3550
3551 if (enc_utf8)
3552 {
3553 /* Find the last character that is 10xx.xxxx */
3554 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
3555 ;
3556 /* Check for illegal sequence. */
3557 for (j = 0; p - j > base; ++j)
3558 if ((p[-j] & 0xc0) != 0x80)
3559 break;
3560 if (utf8len_tab[p[-j]] != i + j + 1)
3561 return 0;
3562 return i;
3563 }
3564
3565 /* It can't be the first byte if a double-byte when not using DBCS, at the
3566 * end of the string or the byte can't start a double-byte. */
3567 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
3568 return 0;
3569
3570 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3571 return 1 - dbcs_head_off(base, p);
3572}
3573
Bram Moolenaar68f1a482006-03-17 23:12:21 +00003574/*
3575 * Find the next illegal byte sequence.
3576 */
3577 void
3578utf_find_illegal()
3579{
3580 pos_T pos = curwin->w_cursor;
3581 char_u *p;
3582 int len;
3583 vimconv_T vimconv;
3584 char_u *tofree = NULL;
3585
3586 vimconv.vc_type = CONV_NONE;
3587 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
3588 {
3589 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
3590 * possibly a utf-8 file with illegal bytes. Setup for conversion
3591 * from utf-8 to 'fileencoding'. */
3592 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
3593 }
3594
3595#ifdef FEAT_VIRTUALEDIT
3596 curwin->w_cursor.coladd = 0;
3597#endif
3598 for (;;)
3599 {
3600 p = ml_get_cursor();
3601 if (vimconv.vc_type != CONV_NONE)
3602 {
3603 vim_free(tofree);
3604 tofree = string_convert(&vimconv, p, NULL);
3605 if (tofree == NULL)
3606 break;
3607 p = tofree;
3608 }
3609
3610 while (*p != NUL)
3611 {
3612 /* Illegal means that there are not enough trail bytes (checked by
3613 * utf_ptr2len()) or too many of them (overlong sequence). */
3614 len = utf_ptr2len(p);
3615 if (*p >= 0x80 && (len == 1
3616 || utf_char2len(utf_ptr2char(p)) != len))
3617 {
3618 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003619 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
Bram Moolenaar68f1a482006-03-17 23:12:21 +00003620 else
3621 {
3622 int l;
3623
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003624 len = (int)(p - tofree);
Bram Moolenaar68f1a482006-03-17 23:12:21 +00003625 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
3626 {
3627 l = utf_ptr2len(p);
3628 curwin->w_cursor.col += l;
3629 }
3630 }
3631 goto theend;
3632 }
3633 p += len;
3634 }
3635 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
3636 break;
3637 ++curwin->w_cursor.lnum;
3638 curwin->w_cursor.col = 0;
3639 }
3640
3641 /* didn't find it: don't move and beep */
3642 curwin->w_cursor = pos;
3643 beep_flush();
3644
3645theend:
3646 vim_free(tofree);
3647 convert_setup(&vimconv, NULL, NULL);
3648}
3649
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003650#if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003651/*
3652 * Return TRUE if string "s" is a valid utf-8 string.
3653 * When "end" is NULL stop at the first NUL.
3654 * When "end" is positive stop there.
3655 */
3656 int
3657utf_valid_string(s, end)
3658 char_u *s;
3659 char_u *end;
3660{
3661 int l;
3662 char_u *p = s;
3663
3664 while (end == NULL ? *p != NUL : p < end)
3665 {
Bram Moolenaar24397332009-12-02 14:02:39 +00003666 l = utf8len_tab_zero[*p];
3667 if (l == 0)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003668 return FALSE; /* invalid lead byte */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003669 if (end != NULL && p + l > end)
3670 return FALSE; /* incomplete byte sequence */
3671 ++p;
3672 while (--l > 0)
3673 if ((*p++ & 0xc0) != 0x80)
3674 return FALSE; /* invalid trail byte */
3675 }
3676 return TRUE;
3677}
3678#endif
3679
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680#if defined(FEAT_GUI) || defined(PROTO)
3681/*
3682 * Special version of mb_tail_off() for use in ScreenLines[].
3683 */
3684 int
3685dbcs_screen_tail_off(base, p)
3686 char_u *base;
3687 char_u *p;
3688{
3689 /* It can't be the first byte if a double-byte when not using DBCS, at the
3690 * end of the string or the byte can't start a double-byte.
3691 * For euc-jp an 0x8e byte always means we have a lead byte in the current
3692 * cell. */
3693 if (*p == NUL || p[1] == NUL
3694 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
3695 || MB_BYTE2LEN(*p) == 1)
3696 return 0;
3697
3698 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3699 return 1 - dbcs_screen_head_off(base, p);
3700}
3701#endif
3702
3703/*
3704 * If the cursor moves on an trail byte, set the cursor on the lead byte.
3705 * Thus it moves left if necessary.
3706 * Return TRUE when the cursor was adjusted.
3707 */
3708 void
3709mb_adjust_cursor()
3710{
Bram Moolenaar03a807a2011-07-07 15:08:58 +02003711 mb_adjustpos(curbuf, &curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712}
3713
3714/*
3715 * Adjust position "*lp" to point to the first byte of a multi-byte character.
3716 * If it points to a tail byte it's moved backwards to the head byte.
3717 */
3718 void
Bram Moolenaar03a807a2011-07-07 15:08:58 +02003719mb_adjustpos(buf, lp)
3720 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 pos_T *lp;
3722{
3723 char_u *p;
3724
3725 if (lp->col > 0
3726#ifdef FEAT_VIRTUALEDIT
3727 || lp->coladd > 1
3728#endif
3729 )
3730 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +02003731 p = ml_get_buf(buf, lp->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 lp->col -= (*mb_head_off)(p, p + lp->col);
3733#ifdef FEAT_VIRTUALEDIT
3734 /* Reset "coladd" when the cursor would be on the right half of a
3735 * double-wide character. */
3736 if (lp->coladd == 1
3737 && p[lp->col] != TAB
3738 && vim_isprintc((*mb_ptr2char)(p + lp->col))
3739 && ptr2cells(p + lp->col) > 1)
3740 lp->coladd = 0;
3741#endif
3742 }
3743}
3744
3745/*
3746 * Return a pointer to the character before "*p", if there is one.
3747 */
3748 char_u *
3749mb_prevptr(line, p)
3750 char_u *line; /* start of the string */
3751 char_u *p;
3752{
3753 if (p > line)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003754 mb_ptr_back(line, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 return p;
3756}
3757
3758/*
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003759 * Return the character length of "str". Each multi-byte character (with
3760 * following composing characters) counts as one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761 */
3762 int
3763mb_charlen(str)
3764 char_u *str;
3765{
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003766 char_u *p = str;
3767 int count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003769 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 return 0;
3771
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003772 for (count = 0; *p != NUL; count++)
3773 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774
3775 return count;
3776}
3777
Bram Moolenaar2b48ad52006-03-12 21:56:11 +00003778#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003779/*
3780 * Like mb_charlen() but for a string with specified length.
3781 */
3782 int
3783mb_charlen_len(str, len)
3784 char_u *str;
3785 int len;
3786{
3787 char_u *p = str;
3788 int count;
3789
3790 for (count = 0; *p != NUL && p < str + len; count++)
3791 p += (*mb_ptr2len)(p);
3792
3793 return count;
3794}
3795#endif
3796
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797/*
3798 * Try to un-escape a multi-byte character.
3799 * Used for the "to" and "from" part of a mapping.
3800 * Return the un-escaped string if it is a multi-byte character, and advance
3801 * "pp" to just after the bytes that formed it.
3802 * Return NULL if no multi-byte char was found.
3803 */
3804 char_u *
3805mb_unescape(pp)
3806 char_u **pp;
3807{
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02003808 static char_u buf[6];
3809 int n;
3810 int m = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 char_u *str = *pp;
3812
3813 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02003814 * KS_EXTRA KE_CSI to CSI.
3815 * Maximum length of a utf-8 character is 4 bytes. */
3816 for (n = 0; str[n] != NUL && m < 4; ++n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 {
3818 if (str[n] == K_SPECIAL
3819 && str[n + 1] == KS_SPECIAL
3820 && str[n + 2] == KE_FILLER)
3821 {
3822 buf[m++] = K_SPECIAL;
3823 n += 2;
3824 }
Bram Moolenaar6203ff92008-01-06 16:18:56 +00003825 else if ((str[n] == K_SPECIAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826# ifdef FEAT_GUI
Bram Moolenaar6203ff92008-01-06 16:18:56 +00003827 || str[n] == CSI
3828# endif
3829 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 && str[n + 1] == KS_EXTRA
3831 && str[n + 2] == (int)KE_CSI)
3832 {
3833 buf[m++] = CSI;
3834 n += 2;
3835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 else if (str[n] == K_SPECIAL
3837# ifdef FEAT_GUI
3838 || str[n] == CSI
3839# endif
3840 )
3841 break; /* a special key can't be a multibyte char */
3842 else
3843 buf[m++] = str[n];
3844 buf[m] = NUL;
3845
3846 /* Return a multi-byte character if it's found. An illegal sequence
3847 * will result in a 1 here. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003848 if ((*mb_ptr2len)(buf) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 {
3850 *pp = str + n + 1;
3851 return buf;
3852 }
Bram Moolenaar4fabd7d2012-09-18 18:03:37 +02003853
3854 /* Bail out quickly for ASCII. */
3855 if (buf[0] < 128)
3856 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 }
3858 return NULL;
3859}
3860
3861/*
3862 * Return TRUE if the character at "row"/"col" on the screen is the left side
3863 * of a double-width character.
3864 * Caller must make sure "row" and "col" are not invalid!
3865 */
3866 int
3867mb_lefthalve(row, col)
3868 int row;
3869 int col;
3870{
3871#ifdef FEAT_HANGULIN
3872 if (composing_hangul)
3873 return TRUE;
3874#endif
Bram Moolenaar367329b2007-08-30 11:53:22 +00003875 return (*mb_off2cells)(LineOffset[row] + col,
3876 LineOffset[row] + screen_Columns) > 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877}
3878
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879/*
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003880 * Correct a position on the screen, if it's the right half of a double-wide
3881 * char move it to the left half. Returns the corrected column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 */
3883 int
3884mb_fix_col(col, row)
3885 int col;
3886 int row;
3887{
3888 col = check_col(col);
3889 row = check_row(row);
3890 if (has_mbyte && ScreenLines != NULL && col > 0
3891 && ((enc_dbcs
3892 && ScreenLines[LineOffset[row] + col] != NUL
3893 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
3894 ScreenLines + LineOffset[row] + col))
3895 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003896 return col - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 return col;
3898}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899#endif
3900
3901#if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3902static int enc_alias_search __ARGS((char_u *name));
3903
3904/*
3905 * Skip the Vim specific head of a 'encoding' name.
3906 */
3907 char_u *
3908enc_skip(p)
3909 char_u *p;
3910{
3911 if (STRNCMP(p, "2byte-", 6) == 0)
3912 return p + 6;
3913 if (STRNCMP(p, "8bit-", 5) == 0)
3914 return p + 5;
3915 return p;
3916}
3917
3918/*
3919 * Find the canonical name for encoding "enc".
3920 * When the name isn't recognized, returns "enc" itself, but with all lower
3921 * case characters and '_' replaced with '-'.
3922 * Returns an allocated string. NULL for out-of-memory.
3923 */
3924 char_u *
3925enc_canonize(enc)
3926 char_u *enc;
3927{
3928 char_u *r;
3929 char_u *p, *s;
3930 int i;
3931
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003932# ifdef FEAT_MBYTE
3933 if (STRCMP(enc, "default") == 0)
3934 {
3935 /* Use the default encoding as it's found by set_init_1(). */
3936 r = get_encoding_default();
3937 if (r == NULL)
3938 r = (char_u *)"latin1";
3939 return vim_strsave(r);
3940 }
3941# endif
3942
Bram Moolenaar29466f22007-05-10 17:45:37 +00003943 /* copy "enc" to allocated memory, with room for two '-' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 r = alloc((unsigned)(STRLEN(enc) + 3));
3945 if (r != NULL)
3946 {
3947 /* Make it all lower case and replace '_' with '-'. */
3948 p = r;
3949 for (s = enc; *s != NUL; ++s)
3950 {
3951 if (*s == '_')
3952 *p++ = '-';
3953 else
3954 *p++ = TOLOWER_ASC(*s);
3955 }
3956 *p = NUL;
3957
3958 /* Skip "2byte-" and "8bit-". */
3959 p = enc_skip(r);
3960
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003961 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3962 if (STRNCMP(p, "microsoft-cp", 12) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003963 STRMOVE(p, p + 10);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003964
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 /* "iso8859" -> "iso-8859" */
3966 if (STRNCMP(p, "iso8859", 7) == 0)
3967 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003968 STRMOVE(p + 4, p + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 p[3] = '-';
3970 }
3971
3972 /* "iso-8859n" -> "iso-8859-n" */
3973 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
3974 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003975 STRMOVE(p + 9, p + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 p[8] = '-';
3977 }
3978
3979 /* "latin-N" -> "latinN" */
3980 if (STRNCMP(p, "latin-", 6) == 0)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003981 STRMOVE(p + 5, p + 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982
3983 if (enc_canon_search(p) >= 0)
3984 {
3985 /* canonical name can be used unmodified */
3986 if (p != r)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003987 STRMOVE(r, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 }
3989 else if ((i = enc_alias_search(p)) >= 0)
3990 {
3991 /* alias recognized, get canonical name */
3992 vim_free(r);
3993 r = vim_strsave((char_u *)enc_canon_table[i].name);
3994 }
3995 }
3996 return r;
3997}
3998
3999/*
4000 * Search for an encoding alias of "name".
4001 * Returns -1 when not found.
4002 */
4003 static int
4004enc_alias_search(name)
4005 char_u *name;
4006{
4007 int i;
4008
4009 for (i = 0; enc_alias_table[i].name != NULL; ++i)
4010 if (STRCMP(name, enc_alias_table[i].name) == 0)
4011 return enc_alias_table[i].canon;
4012 return -1;
4013}
4014#endif
4015
4016#if defined(FEAT_MBYTE) || defined(PROTO)
4017
4018#ifdef HAVE_LANGINFO_H
4019# include <langinfo.h>
4020#endif
4021
4022/*
4023 * Get the canonicalized encoding of the current locale.
4024 * Returns an allocated string when successful, NULL when not.
4025 */
4026 char_u *
4027enc_locale()
4028{
4029#ifndef WIN3264
4030 char *s;
4031 char *p;
4032 int i;
4033#endif
4034 char buf[50];
4035#ifdef WIN3264
4036 long acp = GetACP();
4037
4038 if (acp == 1200)
4039 STRCPY(buf, "ucs-2le");
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004040 else if (acp == 1252) /* cp1252 is used as latin1 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 STRCPY(buf, "latin1");
4042 else
4043 sprintf(buf, "cp%ld", acp);
4044#else
4045# ifdef HAVE_NL_LANGINFO_CODESET
4046 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
4047# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004048# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004050# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
4052 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
4053 s = getenv("LANG");
4054
4055 if (s == NULL || *s == NUL)
4056 return FAIL;
4057
4058 /* The most generic locale format is:
4059 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
4060 * If there is a '.' remove the part before it.
4061 * if there is something after the codeset, remove it.
4062 * Make the name lowercase and replace '_' with '-'.
4063 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
4064 * "ko_KR.EUC" == "euc-kr"
4065 */
4066 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
4067 {
4068 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
4069 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
4070 {
4071 /* copy "XY.EUC" to "euc-XY" to buf[10] */
4072 STRCPY(buf + 10, "euc-");
4073 buf[14] = p[-2];
4074 buf[15] = p[-1];
4075 buf[16] = 0;
4076 s = buf + 10;
4077 }
4078 else
4079 s = p + 1;
4080 }
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004081 for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 {
4083 if (s[i] == '_' || s[i] == '-')
4084 buf[i] = '-';
4085 else if (isalnum((int)s[i]))
4086 buf[i] = TOLOWER_ASC(s[i]);
4087 else
4088 break;
4089 }
4090 buf[i] = NUL;
4091#endif
4092
4093 return enc_canonize((char_u *)buf);
4094}
4095
Bram Moolenaar693e40c2013-02-26 14:56:42 +01004096#if defined(WIN3264) || defined(PROTO) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097/*
4098 * Convert an encoding name to an MS-Windows codepage.
4099 * Returns zero if no codepage can be figured out.
4100 */
4101 int
4102encname2codepage(name)
4103 char_u *name;
4104{
4105 int cp;
4106 char_u *p = name;
4107 int idx;
4108
4109 if (STRNCMP(p, "8bit-", 5) == 0)
4110 p += 5;
4111 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
4112 p += 6;
4113
4114 if (p[0] == 'c' && p[1] == 'p')
Bram Moolenaar2c6f3dc2013-07-05 20:09:16 +02004115 cp = atoi((char *)p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 else if ((idx = enc_canon_search(p)) >= 0)
4117 cp = enc_canon_table[idx].codepage;
4118 else
4119 return 0;
4120 if (IsValidCodePage(cp))
4121 return cp;
4122 return 0;
4123}
4124#endif
4125
4126# if defined(USE_ICONV) || defined(PROTO)
4127
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004128static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129
4130/*
4131 * Call iconv_open() with a check if iconv() works properly (there are broken
4132 * versions).
4133 * Returns (void *)-1 if failed.
4134 * (should return iconv_t, but that causes problems with prototypes).
4135 */
4136 void *
4137my_iconv_open(to, from)
4138 char_u *to;
4139 char_u *from;
4140{
4141 iconv_t fd;
4142#define ICONV_TESTLEN 400
4143 char_u tobuf[ICONV_TESTLEN];
4144 char *p;
4145 size_t tolen;
4146 static int iconv_ok = -1;
4147
4148 if (iconv_ok == FALSE)
4149 return (void *)-1; /* detected a broken iconv() previously */
4150
4151#ifdef DYNAMIC_ICONV
4152 /* Check if the iconv.dll can be found. */
4153 if (!iconv_enabled(TRUE))
4154 return (void *)-1;
4155#endif
4156
4157 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
4158
4159 if (fd != (iconv_t)-1 && iconv_ok == -1)
4160 {
4161 /*
4162 * Do a dummy iconv() call to check if it actually works. There is a
4163 * version of iconv() on Linux that is broken. We can't ignore it,
4164 * because it's wide-spread. The symptoms are that after outputting
4165 * the initial shift state the "to" pointer is NULL and conversion
4166 * stops for no apparent reason after about 8160 characters.
4167 */
4168 p = (char *)tobuf;
4169 tolen = ICONV_TESTLEN;
4170 (void)iconv(fd, NULL, NULL, &p, &tolen);
4171 if (p == NULL)
4172 {
4173 iconv_ok = FALSE;
4174 iconv_close(fd);
4175 fd = (iconv_t)-1;
4176 }
4177 else
4178 iconv_ok = TRUE;
4179 }
4180
4181 return (void *)fd;
4182}
4183
4184/*
4185 * Convert the string "str[slen]" with iconv().
4186 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4187 * sequence and set "*unconvlenp" to the length of it.
4188 * Returns the converted string in allocated memory. NULL for an error.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004189 * If resultlenp is not NULL, sets it to the result length in bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 */
4191 static char_u *
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004192iconv_string(vcp, str, slen, unconvlenp, resultlenp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 vimconv_T *vcp;
4194 char_u *str;
4195 int slen;
4196 int *unconvlenp;
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004197 int *resultlenp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198{
4199 const char *from;
4200 size_t fromlen;
4201 char *to;
4202 size_t tolen;
4203 size_t len = 0;
4204 size_t done = 0;
4205 char_u *result = NULL;
4206 char_u *p;
4207 int l;
4208
4209 from = (char *)str;
4210 fromlen = slen;
4211 for (;;)
4212 {
4213 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4214 {
4215 /* Allocate enough room for most conversions. When re-allocating
4216 * increase the buffer size. */
4217 len = len + fromlen * 2 + 40;
4218 p = alloc((unsigned)len);
4219 if (p != NULL && done > 0)
4220 mch_memmove(p, result, done);
4221 vim_free(result);
4222 result = p;
4223 if (result == NULL) /* out of memory */
4224 break;
4225 }
4226
4227 to = (char *)result + done;
4228 tolen = len - done - 2;
4229 /* Avoid a warning for systems with a wrong iconv() prototype by
4230 * casting the second argument to void *. */
4231 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4232 != (size_t)-1)
4233 {
4234 /* Finished, append a NUL. */
4235 *to = NUL;
4236 break;
4237 }
4238
4239 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4240 * iconv library may use one of them. */
4241 if (!vcp->vc_fail && unconvlenp != NULL
4242 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4243 {
4244 /* Handle an incomplete sequence at the end. */
4245 *to = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004246 *unconvlenp = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 break;
4248 }
4249
4250 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4251 * iconv library may use one of them. */
4252 else if (!vcp->vc_fail
4253 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4254 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4255 {
4256 /* Can't convert: insert a '?' and skip a character. This assumes
4257 * conversion from 'encoding' to something else. In other
4258 * situations we don't know what to skip anyway. */
4259 *to++ = '?';
4260 if ((*mb_ptr2cells)((char_u *)from) > 1)
4261 *to++ = '?';
Bram Moolenaar217ad922005-03-20 22:37:15 +00004262 if (enc_utf8)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004263 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
Bram Moolenaar217ad922005-03-20 22:37:15 +00004264 else
4265 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004266 l = (*mb_ptr2len)((char_u *)from);
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004267 if (l > (int)fromlen)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004268 l = (int)fromlen;
Bram Moolenaar217ad922005-03-20 22:37:15 +00004269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270 from += l;
4271 fromlen -= l;
4272 }
4273 else if (ICONV_ERRNO != ICONV_E2BIG)
4274 {
4275 /* conversion failed */
4276 vim_free(result);
4277 result = NULL;
4278 break;
4279 }
4280 /* Not enough room or skipping illegal sequence. */
4281 done = to - (char *)result;
4282 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004283
Bram Moolenaar0d35e912011-04-11 14:29:17 +02004284 if (resultlenp != NULL && result != NULL)
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00004285 *resultlenp = (int)(to - (char *)result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 return result;
4287}
4288
4289# if defined(DYNAMIC_ICONV) || defined(PROTO)
4290/*
4291 * Dynamically load the "iconv.dll" on Win32.
4292 */
4293
4294#ifndef DYNAMIC_ICONV /* just generating prototypes */
4295# define HINSTANCE int
4296#endif
Bram Moolenaard6f676d2005-06-01 21:51:55 +00004297static HINSTANCE hIconvDLL = 0;
4298static HINSTANCE hMsvcrtDLL = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299
4300# ifndef DYNAMIC_ICONV_DLL
4301# define DYNAMIC_ICONV_DLL "iconv.dll"
4302# define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
4303# endif
4304# ifndef DYNAMIC_MSVCRT_DLL
4305# define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4306# endif
4307
4308/*
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004309 * Get the address of 'funcname' which is imported by 'hInst' DLL.
4310 */
4311 static void *
4312get_iconv_import_func(HINSTANCE hInst, const char *funcname)
4313{
4314 PBYTE pImage = (PBYTE)hInst;
4315 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
4316 PIMAGE_NT_HEADERS pPE;
4317 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
4318 PIMAGE_THUNK_DATA pIAT; /* Import Address Table */
4319 PIMAGE_THUNK_DATA pINT; /* Import Name Table */
4320 PIMAGE_IMPORT_BY_NAME pImpName;
4321
4322 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
4323 return NULL;
4324 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
4325 if (pPE->Signature != IMAGE_NT_SIGNATURE)
4326 return NULL;
4327 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
4328 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
4329 .VirtualAddress);
4330 for (; pImpDesc->FirstThunk; ++pImpDesc)
4331 {
Bram Moolenaarb5f7bf62013-01-19 14:02:02 +01004332 if (!pImpDesc->OriginalFirstThunk)
4333 continue;
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004334 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
4335 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
4336 for (; pIAT->u1.Function; ++pIAT, ++pINT)
4337 {
4338 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
4339 continue;
Bram Moolenaar94a8adf2013-01-23 16:19:23 +01004340 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
4341 + (UINT_PTR)(pINT->u1.AddressOfData));
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004342 if (strcmp(pImpName->Name, funcname) == 0)
4343 return (void *)pIAT->u1.Function;
4344 }
4345 }
4346 return NULL;
4347}
4348
4349/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4351 */
4352 int
4353iconv_enabled(verbose)
4354 int verbose;
4355{
4356 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4357 return TRUE;
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004358 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004360 hIconvDLL = vimLoadLib(DYNAMIC_ICONV_DLL_ALT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 if (hIconvDLL != 0)
Bram Moolenaarebbcb822010-10-23 14:02:54 +02004362 hMsvcrtDLL = vimLoadLib(DYNAMIC_MSVCRT_DLL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
4364 {
4365 /* Only give the message when 'verbose' is set, otherwise it might be
4366 * done whenever a conversion is attempted. */
4367 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004368 {
4369 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 EMSG2(_(e_loadlib),
4371 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004372 verbose_leave();
4373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 iconv_end();
4375 return FALSE;
4376 }
4377
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004378 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
4379 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
4380 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
4381 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
Bram Moolenaar8fae8e62013-01-17 14:39:47 +01004382 iconv_errno = get_iconv_import_func(hIconvDLL, "_errno");
4383 if (iconv_errno == NULL)
4384 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
4386 || iconvctl == NULL || iconv_errno == NULL)
4387 {
4388 iconv_end();
4389 if (verbose && p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004390 {
4391 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 EMSG2(_(e_loadfunc), "for libiconv");
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004393 verbose_leave();
4394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 return FALSE;
4396 }
4397 return TRUE;
4398}
4399
4400 void
4401iconv_end()
4402{
4403 /* Don't use iconv() when inputting or outputting characters. */
4404 if (input_conv.vc_type == CONV_ICONV)
4405 convert_setup(&input_conv, NULL, NULL);
4406 if (output_conv.vc_type == CONV_ICONV)
4407 convert_setup(&output_conv, NULL, NULL);
4408
4409 if (hIconvDLL != 0)
4410 FreeLibrary(hIconvDLL);
4411 if (hMsvcrtDLL != 0)
4412 FreeLibrary(hMsvcrtDLL);
4413 hIconvDLL = 0;
4414 hMsvcrtDLL = 0;
4415}
4416# endif /* DYNAMIC_ICONV */
4417# endif /* USE_ICONV */
4418
4419#endif /* FEAT_MBYTE */
4420
4421#if defined(FEAT_XIM) || defined(PROTO)
4422
Bram Moolenaar64404472010-06-26 06:24:45 +02004423# if defined(FEAT_GUI_GTK) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424static int xim_has_preediting INIT(= FALSE); /* IM current status */
4425
4426/*
4427 * Set preedit_start_col to the current cursor position.
4428 */
4429 static void
4430init_preedit_start_col(void)
4431{
4432 if (State & CMDLINE)
4433 preedit_start_col = cmdline_getvcol_cursor();
4434 else if (curwin != NULL)
4435 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
4436 /* Prevent that preediting marks the buffer as changed. */
4437 xim_changed_while_preediting = curbuf->b_changed;
4438}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439
4440static int im_is_active = FALSE; /* IM is enabled for current mode */
Bram Moolenaarc236c162008-07-13 17:41:49 +00004441static int preedit_is_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442static int im_preedit_cursor = 0; /* cursor offset in characters */
4443static int im_preedit_trailing = 0; /* number of characters after cursor */
4444
4445static unsigned long im_commit_handler_id = 0;
4446static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
4447static unsigned int im_activatekey_state = 0;
4448
4449 void
4450im_set_active(int active)
4451{
4452 int was_active;
4453
Bram Moolenaarabab85a2013-06-26 19:18:05 +02004454 was_active = !!im_get_status();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 im_is_active = (active && !p_imdisable);
4456
4457 if (im_is_active != was_active)
4458 xim_reset();
4459}
4460
4461 void
4462xim_set_focus(int focus)
4463{
4464 if (xic != NULL)
4465 {
4466 if (focus)
4467 gtk_im_context_focus_in(xic);
4468 else
4469 gtk_im_context_focus_out(xic);
4470 }
4471}
4472
4473 void
4474im_set_position(int row, int col)
4475{
4476 if (xic != NULL)
4477 {
4478 GdkRectangle area;
4479
4480 area.x = FILL_X(col);
4481 area.y = FILL_Y(row);
4482 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
4483 area.height = gui.char_height;
4484
4485 gtk_im_context_set_cursor_location(xic, &area);
4486 }
4487}
4488
4489# if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
4490 void
4491xim_set_preedit(void)
4492{
4493 im_set_position(gui.row, gui.col);
4494}
4495# endif
4496
4497 static void
4498im_add_to_input(char_u *str, int len)
4499{
4500 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
4501 if (input_conv.vc_type != CONV_NONE)
4502 {
4503 str = string_convert(&input_conv, str, &len);
4504 g_return_if_fail(str != NULL);
4505 }
4506
4507 add_to_input_buf_csi(str, len);
4508
4509 if (input_conv.vc_type != CONV_NONE)
4510 vim_free(str);
4511
4512 if (p_mh) /* blank out the pointer if necessary */
4513 gui_mch_mousehide(TRUE);
4514}
4515
4516 static void
4517im_delete_preedit(void)
4518{
4519 char_u bskey[] = {CSI, 'k', 'b'};
4520 char_u delkey[] = {CSI, 'k', 'D'};
4521
4522 if (State & NORMAL)
4523 {
4524 im_preedit_cursor = 0;
4525 return;
4526 }
4527 for (; im_preedit_cursor > 0; --im_preedit_cursor)
4528 add_to_input_buf(bskey, (int)sizeof(bskey));
4529
4530 for (; im_preedit_trailing > 0; --im_preedit_trailing)
4531 add_to_input_buf(delkey, (int)sizeof(delkey));
4532}
4533
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004534/*
4535 * Move the cursor left by "num_move_back" characters.
4536 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
4537 * these K_LEFT keys.
4538 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 static void
4540im_correct_cursor(int num_move_back)
4541{
4542 char_u backkey[] = {CSI, 'k', 'l'};
4543
4544 if (State & NORMAL)
4545 return;
4546# ifdef FEAT_RIGHTLEFT
4547 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
4548 backkey[2] = 'r';
4549# endif
4550 for (; num_move_back > 0; --num_move_back)
4551 add_to_input_buf(backkey, (int)sizeof(backkey));
4552}
4553
4554static int xim_expected_char = NUL;
4555static int xim_ignored_char = FALSE;
4556
4557/*
4558 * Update the mode and cursor while in an IM callback.
4559 */
4560 static void
4561im_show_info(void)
4562{
4563 int old_vgetc_busy;
Bram Moolenaar5555acc2006-04-07 21:33:12 +00004564
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 old_vgetc_busy = vgetc_busy;
4566 vgetc_busy = TRUE;
4567 showmode();
4568 vgetc_busy = old_vgetc_busy;
Bram Moolenaar917ba892012-03-07 19:38:55 +01004569 if ((State & NORMAL) || (State & INSERT))
4570 setcursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 out_flush();
4572}
4573
4574/*
4575 * Callback invoked when the user finished preediting.
4576 * Put the final string into the input buffer.
4577 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 static void
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004579im_commit_cb(GtkIMContext *context UNUSED,
4580 const gchar *str,
4581 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582{
Bram Moolenaar72597a52010-07-18 15:31:08 +02004583 int slen = (int)STRLEN(str);
4584 int add_to_input = TRUE;
4585 int clen;
4586 int len = slen;
4587 int commit_with_preedit = TRUE;
4588 char_u *im_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589
4590#ifdef XIM_DEBUG
4591 xim_log("im_commit_cb(): %s\n", str);
4592#endif
4593
4594 /* The imhangul module doesn't reset the preedit string before
4595 * committing. Call im_delete_preedit() to work around that. */
4596 im_delete_preedit();
4597
4598 /* Indicate that preediting has finished. */
4599 if (preedit_start_col == MAXCOL)
4600 {
4601 init_preedit_start_col();
4602 commit_with_preedit = FALSE;
4603 }
4604
4605 /* The thing which setting "preedit_start_col" to MAXCOL means that
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02004606 * "preedit_start_col" will be set forcedly when calling
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 * preedit_changed_cb() next time.
4608 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
4609 * is simulating the preediting by using add_to_input_str(). when
4610 * preedit begin immediately before committed, the typebuf is not
4611 * flushed to screen, then it can't get correct "preedit_start_col".
4612 * Thus, it should calculate the cells by adding cells of the committed
4613 * string. */
4614 if (input_conv.vc_type != CONV_NONE)
4615 {
4616 im_str = string_convert(&input_conv, (char_u *)str, &len);
4617 g_return_if_fail(im_str != NULL);
4618 }
4619 else
4620 im_str = (char_u *)str;
Bram Moolenaar72597a52010-07-18 15:31:08 +02004621
4622 clen = mb_string2cells(im_str, len);
4623
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 if (input_conv.vc_type != CONV_NONE)
4625 vim_free(im_str);
4626 preedit_start_col += clen;
4627
4628 /* Is this a single character that matches a keypad key that's just
4629 * been pressed? If so, we don't want it to be entered as such - let
4630 * us carry on processing the raw keycode so that it may be used in
4631 * mappings as <kSomething>. */
4632 if (xim_expected_char != NUL)
4633 {
4634 /* We're currently processing a keypad or other special key */
4635 if (slen == 1 && str[0] == xim_expected_char)
4636 {
4637 /* It's a match - don't do it here */
4638 xim_ignored_char = TRUE;
4639 add_to_input = FALSE;
4640 }
4641 else
4642 {
4643 /* Not a match */
4644 xim_ignored_char = FALSE;
4645 }
4646 }
4647
4648 if (add_to_input)
4649 im_add_to_input((char_u *)str, slen);
4650
4651 /* Inserting chars while "im_is_active" is set does not cause a change of
4652 * buffer. When the chars are committed the buffer must be marked as
4653 * changed. */
4654 if (!commit_with_preedit)
4655 preedit_start_col = MAXCOL;
4656
4657 /* This flag is used in changed() at next call. */
4658 xim_changed_while_preediting = TRUE;
4659
4660 if (gtk_main_level() > 0)
4661 gtk_main_quit();
4662}
4663
4664/*
4665 * Callback invoked after start to the preedit.
4666 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 static void
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004668im_preedit_start_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669{
4670#ifdef XIM_DEBUG
4671 xim_log("im_preedit_start_cb()\n");
4672#endif
4673
4674 im_is_active = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00004675 preedit_is_active = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarc236c162008-07-13 17:41:49 +00004677 im_show_info();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678}
4679
4680/*
4681 * Callback invoked after end to the preedit.
4682 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 static void
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004684im_preedit_end_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685{
4686#ifdef XIM_DEBUG
4687 xim_log("im_preedit_end_cb()\n");
4688#endif
4689 im_delete_preedit();
4690
4691 /* Indicate that preediting has finished */
4692 preedit_start_col = MAXCOL;
4693 xim_has_preediting = FALSE;
4694
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004695#if 0
4696 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
Bram Moolenaarc236c162008-07-13 17:41:49 +00004697 * switched off unintentionally. We now use preedit_is_active (added by
4698 * SungHyun Nam). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 im_is_active = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004700#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00004701 preedit_is_active = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 gui_update_cursor(TRUE, FALSE);
4703 im_show_info();
4704}
4705
4706/*
4707 * Callback invoked after changes to the preedit string. If the preedit
4708 * string was empty before, remember the preedit start column so we know
4709 * where to apply feedback attributes. Delete the previous preedit string
4710 * if there was one, save the new preedit cursor offset, and put the new
4711 * string into the input buffer.
4712 *
4713 * TODO: The pragmatic "put into input buffer" approach used here has
4714 * several fundamental problems:
4715 *
4716 * - The characters in the preedit string are subject to remapping.
4717 * That's broken, only the finally committed string should be remapped.
4718 *
4719 * - There is a race condition involved: The retrieved value for the
4720 * current cursor position will be wrong if any unprocessed characters
4721 * are still queued in the input buffer.
4722 *
4723 * - Due to the lack of synchronization between the file buffer in memory
4724 * and any typed characters, it's practically impossible to implement the
4725 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
4726 * modules for languages such as Thai are likely to rely on this feature
4727 * for proper operation.
4728 *
4729 * Conclusions: I think support for preediting needs to be moved to the
4730 * core parts of Vim. Ideally, until it has been committed, the preediting
4731 * string should only be displayed and not affect the buffer content at all.
4732 * The question how to deal with the synchronization issue still remains.
4733 * Circumventing the input buffer is probably not desirable. Anyway, I think
4734 * implementing "retrieve_surrounding" is the only hard problem.
4735 *
4736 * One way to solve all of this in a clean manner would be to queue all key
4737 * press/release events "as is" in the input buffer, and apply the IM filtering
4738 * at the receiving end of the queue. This, however, would have a rather large
4739 * impact on the code base. If there is an easy way to force processing of all
4740 * remaining input from within the "retrieve_surrounding" signal handler, this
4741 * might not be necessary. Gotta ask on vim-dev for opinions.
4742 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 static void
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00004744im_preedit_changed_cb(GtkIMContext *context, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745{
4746 char *preedit_string = NULL;
4747 int cursor_index = 0;
4748 int num_move_back = 0;
4749 char_u *str;
4750 char_u *p;
4751 int i;
4752
4753 gtk_im_context_get_preedit_string(context,
4754 &preedit_string, NULL,
4755 &cursor_index);
4756
4757#ifdef XIM_DEBUG
4758 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
4759#endif
4760
4761 g_return_if_fail(preedit_string != NULL); /* just in case */
4762
4763 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
4764 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
4765 {
4766 xim_has_preediting = TRUE;
4767
4768 /* Urgh, this breaks if the input buffer isn't empty now */
4769 init_preedit_start_col();
4770 }
4771 else if (cursor_index == 0 && preedit_string[0] == '\0')
4772 {
Bram Moolenaar39fecab2006-08-29 14:07:36 +00004773 xim_has_preediting = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774
4775 /* If at the start position (after typing backspace)
4776 * preedit_start_col must be reset. */
4777 preedit_start_col = MAXCOL;
4778 }
4779
4780 im_delete_preedit();
4781
4782 /*
4783 * Compute the end of the preediting area: "preedit_end_col".
4784 * According to the documentation of gtk_im_context_get_preedit_string(),
4785 * the cursor_pos output argument returns the offset in bytes. This is
4786 * unfortunately not true -- real life shows the offset is in characters,
4787 * and the GTK+ source code agrees with me. Will file a bug later.
4788 */
4789 if (preedit_start_col != MAXCOL)
4790 preedit_end_col = preedit_start_col;
4791 str = (char_u *)preedit_string;
4792 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
4793 {
4794 int is_composing;
4795
4796 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
4797 /*
4798 * These offsets are used as counters when generating <BS> and <Del>
4799 * to delete the preedit string. So don't count composing characters
4800 * unless 'delcombine' is enabled.
4801 */
4802 if (!is_composing || p_deco)
4803 {
4804 if (i < cursor_index)
4805 ++im_preedit_cursor;
4806 else
4807 ++im_preedit_trailing;
4808 }
4809 if (!is_composing && i >= cursor_index)
4810 {
4811 /* This is essentially the same as im_preedit_trailing, except
4812 * composing characters are not counted even if p_deco is set. */
4813 ++num_move_back;
4814 }
4815 if (preedit_start_col != MAXCOL)
4816 preedit_end_col += utf_ptr2cells(p);
4817 }
4818
4819 if (p > str)
4820 {
4821 im_add_to_input(str, (int)(p - str));
4822 im_correct_cursor(num_move_back);
4823 }
4824
4825 g_free(preedit_string);
4826
4827 if (gtk_main_level() > 0)
4828 gtk_main_quit();
4829}
4830
4831/*
4832 * Translate the Pango attributes at iter to Vim highlighting attributes.
4833 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4834 * too much impact -- right now we handle even more attributes than necessary
4835 * for the IM modules I tested with.
4836 */
4837 static int
4838translate_pango_attributes(PangoAttrIterator *iter)
4839{
4840 PangoAttribute *attr;
4841 int char_attr = HL_NORMAL;
4842
4843 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
4844 if (attr != NULL && ((PangoAttrInt *)attr)->value
4845 != (int)PANGO_UNDERLINE_NONE)
4846 char_attr |= HL_UNDERLINE;
4847
4848 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
4849 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
4850 char_attr |= HL_BOLD;
4851
4852 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
4853 if (attr != NULL && ((PangoAttrInt *)attr)->value
4854 != (int)PANGO_STYLE_NORMAL)
4855 char_attr |= HL_ITALIC;
4856
4857 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
4858 if (attr != NULL)
4859 {
4860 const PangoColor *color = &((PangoAttrColor *)attr)->color;
4861
4862 /* Assume inverse if black background is requested */
4863 if ((color->red | color->green | color->blue) == 0)
4864 char_attr |= HL_INVERSE;
4865 }
4866
4867 return char_attr;
4868}
4869
4870/*
4871 * Retrieve the highlighting attributes at column col in the preedit string.
4872 * Return -1 if not in preediting mode or if col is out of range.
4873 */
4874 int
4875im_get_feedback_attr(int col)
4876{
4877 char *preedit_string = NULL;
4878 PangoAttrList *attr_list = NULL;
4879 int char_attr = -1;
4880
4881 if (xic == NULL)
4882 return char_attr;
4883
4884 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
4885
4886 if (preedit_string != NULL && attr_list != NULL)
4887 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004888 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889
4890 /* Get the byte index as used by PangoAttrIterator */
Bram Moolenaar89d40322006-08-29 15:30:07 +00004891 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
4892 idx += utfc_ptr2len((char_u *)preedit_string + idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893
Bram Moolenaar89d40322006-08-29 15:30:07 +00004894 if (preedit_string[idx] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 {
4896 PangoAttrIterator *iter;
4897 int start, end;
4898
4899 char_attr = HL_NORMAL;
4900 iter = pango_attr_list_get_iterator(attr_list);
4901
4902 /* Extract all relevant attributes from the list. */
4903 do
4904 {
4905 pango_attr_iterator_range(iter, &start, &end);
4906
Bram Moolenaar89d40322006-08-29 15:30:07 +00004907 if (idx >= start && idx < end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 char_attr |= translate_pango_attributes(iter);
4909 }
4910 while (pango_attr_iterator_next(iter));
4911
4912 pango_attr_iterator_destroy(iter);
4913 }
4914 }
4915
4916 if (attr_list != NULL)
4917 pango_attr_list_unref(attr_list);
4918 g_free(preedit_string);
4919
4920 return char_attr;
4921}
4922
4923 void
4924xim_init(void)
4925{
4926#ifdef XIM_DEBUG
4927 xim_log("xim_init()\n");
4928#endif
4929
4930 g_return_if_fail(gui.drawarea != NULL);
4931 g_return_if_fail(gui.drawarea->window != NULL);
4932
4933 xic = gtk_im_multicontext_new();
4934 g_object_ref(xic);
4935
4936 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
4937 G_CALLBACK(&im_commit_cb), NULL);
4938 g_signal_connect(G_OBJECT(xic), "preedit_changed",
4939 G_CALLBACK(&im_preedit_changed_cb), NULL);
4940 g_signal_connect(G_OBJECT(xic), "preedit_start",
4941 G_CALLBACK(&im_preedit_start_cb), NULL);
4942 g_signal_connect(G_OBJECT(xic), "preedit_end",
4943 G_CALLBACK(&im_preedit_end_cb), NULL);
4944
4945 gtk_im_context_set_client_window(xic, gui.drawarea->window);
4946}
4947
4948 void
4949im_shutdown(void)
4950{
4951#ifdef XIM_DEBUG
4952 xim_log("im_shutdown()\n");
4953#endif
4954
4955 if (xic != NULL)
4956 {
4957 gtk_im_context_focus_out(xic);
4958 g_object_unref(xic);
4959 xic = NULL;
4960 }
4961 im_is_active = FALSE;
4962 im_commit_handler_id = 0;
4963 preedit_start_col = MAXCOL;
4964 xim_has_preediting = FALSE;
4965}
4966
4967/*
4968 * Convert the string argument to keyval and state for GdkEventKey.
4969 * If str is valid return TRUE, otherwise FALSE.
4970 *
4971 * See 'imactivatekey' for documentation of the format.
4972 */
4973 static int
4974im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
4975{
4976 const char *mods_end;
4977 unsigned tmp_keyval;
4978 unsigned tmp_state = 0;
4979
4980 mods_end = strrchr(str, '-');
4981 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
4982
4983 /* Parse modifier keys */
4984 while (str < mods_end)
4985 switch (*str++)
4986 {
4987 case '-': break;
4988 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
4989 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
4990 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
4991 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
4992 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
4993 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
4994 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
4995 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
4996 default:
4997 return FALSE;
4998 }
4999
5000 tmp_keyval = gdk_keyval_from_name(str);
5001
5002 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
5003 return FALSE;
5004
5005 if (keyval != NULL)
5006 *keyval = tmp_keyval;
5007 if (state != NULL)
5008 *state = tmp_state;
5009
5010 return TRUE;
5011}
5012
5013/*
5014 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
5015 * empty string is also regarded as valid.
5016 *
5017 * Note: The numerical key value of p_imak is cached if it was valid; thus
5018 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
5019 * 'imak' changes. This is currently the case but not obvious -- should
5020 * probably rename the function for clarity.
5021 */
5022 int
5023im_xim_isvalid_imactivate(void)
5024{
5025 if (p_imak[0] == NUL)
5026 {
5027 im_activatekey_keyval = GDK_VoidSymbol;
5028 im_activatekey_state = 0;
5029 return TRUE;
5030 }
5031
5032 return im_string_to_keyval((const char *)p_imak,
5033 &im_activatekey_keyval,
5034 &im_activatekey_state);
5035}
5036
5037 static void
5038im_synthesize_keypress(unsigned int keyval, unsigned int state)
5039{
5040 GdkEventKey *event;
5041
5042# ifdef HAVE_GTK_MULTIHEAD
5043 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
5044 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
5045# else
5046 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
5047 event->type = GDK_KEY_PRESS;
5048# endif
5049 event->window = gui.drawarea->window;
5050 event->send_event = TRUE;
5051 event->time = GDK_CURRENT_TIME;
5052 event->state = state;
5053 event->keyval = keyval;
5054 event->hardware_keycode = /* needed for XIM */
5055 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
5056 event->length = 0;
5057 event->string = NULL;
5058
5059 gtk_im_context_filter_keypress(xic, event);
5060
5061 /* For consistency, also send the corresponding release event. */
5062 event->type = GDK_KEY_RELEASE;
5063 event->send_event = FALSE;
5064 gtk_im_context_filter_keypress(xic, event);
5065
5066# ifdef HAVE_GTK_MULTIHEAD
5067 gdk_event_free((GdkEvent *)event);
5068# else
5069 g_free(event);
5070# endif
5071}
5072
5073 void
5074xim_reset(void)
5075{
5076 if (xic != NULL)
5077 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 gtk_im_context_reset(xic);
5079
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (p_imdisable)
5081 im_shutdown();
5082 else
5083 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 xim_set_focus(gui.in_focus);
5085
Bram Moolenaarf0327f62013-06-28 20:16:55 +02005086# ifdef FEAT_EVAL
Bram Moolenaarabab85a2013-06-26 19:18:05 +02005087 if (p_imaf[0] != NUL)
5088 {
5089 char_u *argv[1];
5090
5091 if (im_is_active)
5092 argv[0] = (char_u *)"1";
5093 else
5094 argv[0] = (char_u *)"0";
5095 (void)call_func_retnr(p_imaf, 1, argv, FALSE);
5096 }
Bram Moolenaarf0327f62013-06-28 20:16:55 +02005097 else
5098# endif
5099 if (im_activatekey_keyval != GDK_VoidSymbol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 {
5101 if (im_is_active)
5102 {
5103 g_signal_handler_block(xic, im_commit_handler_id);
5104 im_synthesize_keypress(im_activatekey_keyval,
5105 im_activatekey_state);
5106 g_signal_handler_unblock(xic, im_commit_handler_id);
5107 }
5108 }
5109 else
5110 {
5111 im_shutdown();
5112 xim_init();
5113 xim_set_focus(gui.in_focus);
5114 }
5115 }
5116 }
5117
5118 preedit_start_col = MAXCOL;
5119 xim_has_preediting = FALSE;
5120}
5121
5122 int
5123xim_queue_key_press_event(GdkEventKey *event, int down)
5124{
5125 if (down)
5126 {
5127 /*
5128 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
5129 * chars., even when not part of an IM sequence (ref. feature of
5130 * gdk/gdkkeyuni.c).
5131 * Flag any keypad keys that might represent a single char.
5132 * If this (on its own - i.e., not part of an IM sequence) is
5133 * committed while we're processing one of these keys, we can ignore
5134 * that commit and go ahead & process it ourselves. That way we can
5135 * still distinguish keypad keys for use in mappings.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005136 * Also add GDK_space to make <S-Space> work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137 */
5138 switch (event->keyval)
5139 {
5140 case GDK_KP_Add: xim_expected_char = '+'; break;
5141 case GDK_KP_Subtract: xim_expected_char = '-'; break;
5142 case GDK_KP_Divide: xim_expected_char = '/'; break;
5143 case GDK_KP_Multiply: xim_expected_char = '*'; break;
5144 case GDK_KP_Decimal: xim_expected_char = '.'; break;
5145 case GDK_KP_Equal: xim_expected_char = '='; break;
5146 case GDK_KP_0: xim_expected_char = '0'; break;
5147 case GDK_KP_1: xim_expected_char = '1'; break;
5148 case GDK_KP_2: xim_expected_char = '2'; break;
5149 case GDK_KP_3: xim_expected_char = '3'; break;
5150 case GDK_KP_4: xim_expected_char = '4'; break;
5151 case GDK_KP_5: xim_expected_char = '5'; break;
5152 case GDK_KP_6: xim_expected_char = '6'; break;
5153 case GDK_KP_7: xim_expected_char = '7'; break;
5154 case GDK_KP_8: xim_expected_char = '8'; break;
5155 case GDK_KP_9: xim_expected_char = '9'; break;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005156 case GDK_space: xim_expected_char = ' '; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 default: xim_expected_char = NUL;
5158 }
5159 xim_ignored_char = FALSE;
5160 }
5161
5162 /*
5163 * When typing fFtT, XIM may be activated. Thus it must pass
5164 * gtk_im_context_filter_keypress() in Normal mode.
5165 * And while doing :sh too.
5166 */
5167 if (xic != NULL && !p_imdisable
5168 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
5169 {
5170 /*
5171 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
5172 * always aware of the current status of IM, and can even emulate
5173 * the activation key for modules that don't support one.
5174 */
5175 if (event->keyval == im_activatekey_keyval
5176 && (event->state & im_activatekey_state) == im_activatekey_state)
5177 {
5178 unsigned int state_mask;
5179
5180 /* Require the state of the 3 most used modifiers to match exactly.
5181 * Otherwise e.g. <S-C-space> would be unusable for other purposes
5182 * if the IM activate key is <S-space>. */
5183 state_mask = im_activatekey_state;
5184 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
5185 | (int)GDK_MOD1_MASK);
5186
5187 if ((event->state & state_mask) != im_activatekey_state)
5188 return FALSE;
5189
5190 /* Don't send it a second time on GDK_KEY_RELEASE. */
5191 if (event->type != GDK_KEY_PRESS)
5192 return TRUE;
5193
Bram Moolenaar658b74a2006-03-18 21:33:02 +00005194 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 {
5196 im_set_active(FALSE);
5197
5198 /* ":lmap" mappings exists, toggle use of mappings. */
5199 State ^= LANGMAP;
5200 if (State & LANGMAP)
5201 {
5202 curbuf->b_p_iminsert = B_IMODE_NONE;
5203 State &= ~LANGMAP;
5204 }
5205 else
5206 {
5207 curbuf->b_p_iminsert = B_IMODE_LMAP;
5208 State |= LANGMAP;
5209 }
5210 return TRUE;
5211 }
5212
5213 return gtk_im_context_filter_keypress(xic, event);
5214 }
5215
5216 /* Don't filter events through the IM context if IM isn't active
5217 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
5218 * not doing anything before the activation key was sent. */
5219 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
5220 {
5221 int imresult = gtk_im_context_filter_keypress(xic, event);
5222
5223 /* Some XIM send following sequence:
5224 * 1. preedited string.
5225 * 2. committed string.
5226 * 3. line changed key.
5227 * 4. preedited string.
5228 * 5. remove preedited string.
5229 * if 3, Vim can't move back the above line for 5.
5230 * thus, this part should not parse the key. */
5231 if (!imresult && preedit_start_col != MAXCOL
5232 && event->keyval == GDK_Return)
5233 {
5234 im_synthesize_keypress(GDK_Return, 0U);
5235 return FALSE;
5236 }
5237
5238 /* If XIM tried to commit a keypad key as a single char.,
5239 * ignore it so we can use the keypad key 'raw', for mappings. */
5240 if (xim_expected_char != NUL && xim_ignored_char)
5241 /* We had a keypad key, and XIM tried to thieve it */
5242 return FALSE;
5243
Bram Moolenaar673214b2011-07-27 18:25:44 +02005244 /* This is supposed to fix a problem with iBus, that space
5245 * characters don't work in input mode. */
5246 xim_expected_char = NUL;
5247
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248 /* Normal processing */
5249 return imresult;
5250 }
5251 }
5252
5253 return FALSE;
5254}
5255
5256 int
5257im_get_status(void)
5258{
Bram Moolenaarf0327f62013-06-28 20:16:55 +02005259# ifdef FEAT_EVAL
Bram Moolenaarabab85a2013-06-26 19:18:05 +02005260 if (p_imsf[0] != NUL)
5261 {
5262 int is_active;
5263
5264 /* FIXME: Don't execute user function in unsafe situation. */
Bram Moolenaarf0327f62013-06-28 20:16:55 +02005265 if (exiting
5266# ifdef FEAT_AUTOCMD
5267 || is_autocmd_blocked()
5268# endif
5269 )
Bram Moolenaarabab85a2013-06-26 19:18:05 +02005270 return FALSE;
5271 /* FIXME: :py print 'xxx' is shown duplicate result.
5272 * Use silent to avoid it. */
5273 ++msg_silent;
5274 is_active = call_func_retnr(p_imsf, 0, NULL, FALSE);
5275 --msg_silent;
5276 return (is_active > 0);
5277 }
Bram Moolenaarf0327f62013-06-28 20:16:55 +02005278# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 return im_is_active;
5280}
5281
Bram Moolenaar64404472010-06-26 06:24:45 +02005282 int
5283preedit_get_status(void)
5284{
5285 return preedit_is_active;
5286}
5287
5288 int
5289im_is_preediting()
5290{
5291 return xim_has_preediting;
5292}
5293
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005294# else /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295
5296static int xim_is_active = FALSE; /* XIM should be active in the current
5297 mode */
5298static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
5299#ifdef FEAT_GUI_X11
5300static XIMStyle input_style;
5301static int status_area_enabled = TRUE;
5302#endif
5303
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304/*
5305 * Switch using XIM on/off. This is used by the code that changes "State".
5306 */
5307 void
5308im_set_active(active)
5309 int active;
5310{
5311 if (xic == NULL)
5312 return;
5313
5314 /* If 'imdisable' is set, XIM is never active. */
5315 if (p_imdisable)
5316 active = FALSE;
Bram Moolenaar860cae12010-06-05 23:22:07 +02005317#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 else if (input_style & XIMPreeditPosition)
5319 /* There is a problem in switching XIM off when preediting is used,
5320 * and it is not clear how this can be solved. For now, keep XIM on
5321 * all the time, like it was done in Vim 5.8. */
5322 active = TRUE;
5323#endif
5324
5325 /* Remember the active state, it is needed when Vim gets keyboard focus. */
5326 xim_is_active = active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 xim_set_preedit();
5328}
5329
5330/*
5331 * Adjust using XIM for gaining or losing keyboard focus. Also called when
5332 * "xim_is_active" changes.
5333 */
5334 void
5335xim_set_focus(focus)
5336 int focus;
5337{
5338 if (xic == NULL)
5339 return;
5340
5341 /*
5342 * XIM only gets focus when the Vim window has keyboard focus and XIM has
5343 * been set active for the current mode.
5344 */
5345 if (focus && xim_is_active)
5346 {
5347 if (!xim_has_focus)
5348 {
5349 xim_has_focus = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 XSetICFocus(xic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 }
5352 }
5353 else
5354 {
5355 if (xim_has_focus)
5356 {
5357 xim_has_focus = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 XUnsetICFocus(xic);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 }
5360 }
5361}
5362
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 void
5364im_set_position(row, col)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005365 int row UNUSED;
5366 int col UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367{
5368 xim_set_preedit();
5369}
5370
5371/*
5372 * Set the XIM to the current cursor position.
5373 */
5374 void
5375xim_set_preedit()
5376{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005377 XVaNestedList attr_list;
5378 XRectangle spot_area;
5379 XPoint over_spot;
5380 int line_space;
5381
Bram Moolenaar60bb4e12010-09-18 13:36:49 +02005382 if (xic == NULL)
5383 return;
5384
5385 xim_set_focus(TRUE);
5386
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005387 if (!xim_has_focus)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005389 /* hide XIM cursor */
5390 over_spot.x = 0;
5391 over_spot.y = -100; /* arbitrary invisible position */
5392 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5393 XNSpotLocation,
5394 &over_spot,
5395 NULL);
5396 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
5397 XFree(attr_list);
5398 return;
5399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005401 if (input_style & XIMPreeditPosition)
5402 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 if (xim_fg_color == INVALCOLOR)
5404 {
5405 xim_fg_color = gui.def_norm_pixel;
5406 xim_bg_color = gui.def_back_pixel;
5407 }
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005408 over_spot.x = TEXT_X(gui.col);
5409 over_spot.y = TEXT_Y(gui.row);
5410 spot_area.x = 0;
5411 spot_area.y = 0;
5412 spot_area.height = gui.char_height * Rows;
5413 spot_area.width = gui.char_width * Columns;
5414 line_space = gui.char_height;
5415 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5416 XNSpotLocation, &over_spot,
5417 XNForeground, (Pixel) xim_fg_color,
5418 XNBackground, (Pixel) xim_bg_color,
5419 XNArea, &spot_area,
5420 XNLineSpace, line_space,
5421 NULL);
5422 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
5423 EMSG(_("E284: Cannot set IC values"));
5424 XFree(attr_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426}
5427
Bram Moolenaar182c5be2010-06-25 05:37:59 +02005428#if defined(FEAT_GUI_X11)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429static char e_xim[] = N_("E285: Failed to create input context");
5430#endif
5431
5432#if defined(FEAT_GUI_X11) || defined(PROTO)
5433# if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5434# define USE_X11R6_XIM
5435# endif
5436
5437static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
5438
5439
5440#ifdef USE_X11R6_XIM
5441static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
5442static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
5443
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 static void
5445xim_instantiate_cb(display, client_data, call_data)
5446 Display *display;
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005447 XPointer client_data UNUSED;
5448 XPointer call_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449{
5450 Window x11_window;
5451 Display *x11_display;
5452
5453#ifdef XIM_DEBUG
5454 xim_log("xim_instantiate_cb()\n");
5455#endif
5456
5457 gui_get_x11_windis(&x11_window, &x11_display);
5458 if (display != x11_display)
5459 return;
5460
5461 xim_real_init(x11_window, x11_display);
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00005462 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 if (xic != NULL)
5464 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5465 xim_instantiate_cb, NULL);
5466}
5467
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 static void
5469xim_destroy_cb(im, client_data, call_data)
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00005470 XIM im UNUSED;
5471 XPointer client_data UNUSED;
5472 XPointer call_data UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473{
5474 Window x11_window;
5475 Display *x11_display;
5476
5477#ifdef XIM_DEBUG
5478 xim_log("xim_destroy_cb()\n");
5479#endif
5480 gui_get_x11_windis(&x11_window, &x11_display);
5481
5482 xic = NULL;
5483 status_area_enabled = FALSE;
5484
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00005485 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486
5487 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5488 xim_instantiate_cb, NULL);
5489}
5490#endif
5491
5492 void
5493xim_init()
5494{
5495 Window x11_window;
5496 Display *x11_display;
5497
5498#ifdef XIM_DEBUG
5499 xim_log("xim_init()\n");
5500#endif
5501
5502 gui_get_x11_windis(&x11_window, &x11_display);
5503
5504 xic = NULL;
5505
5506 if (xim_real_init(x11_window, x11_display))
5507 return;
5508
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00005509 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511#ifdef USE_X11R6_XIM
5512 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5513 xim_instantiate_cb, NULL);
5514#endif
5515}
5516
5517 static int
5518xim_real_init(x11_window, x11_display)
5519 Window x11_window;
5520 Display *x11_display;
5521{
5522 int i;
5523 char *p,
5524 *s,
5525 *ns,
5526 *end,
5527 tmp[1024];
5528#define IMLEN_MAX 40
5529 char buf[IMLEN_MAX + 7];
5530 XIM xim = NULL;
5531 XIMStyles *xim_styles;
5532 XIMStyle this_input_style = 0;
5533 Boolean found;
5534 XPoint over_spot;
5535 XVaNestedList preedit_list, status_list;
5536
5537 input_style = 0;
5538 status_area_enabled = FALSE;
5539
5540 if (xic != NULL)
5541 return FALSE;
5542
5543 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
5544 {
5545 strcpy(tmp, gui.rsrc_input_method);
5546 for (ns = s = tmp; ns != NULL && *s != NUL;)
5547 {
5548 s = (char *)skipwhite((char_u *)s);
5549 if (*s == NUL)
5550 break;
5551 if ((ns = end = strchr(s, ',')) == NULL)
5552 end = s + strlen(s);
5553 while (isspace(((char_u *)end)[-1]))
5554 end--;
5555 *end = NUL;
5556
5557 if (strlen(s) <= IMLEN_MAX)
5558 {
5559 strcpy(buf, "@im=");
5560 strcat(buf, s);
5561 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
5562 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
5563 != NULL)
5564 break;
5565 }
5566
5567 s = ns + 1;
5568 }
5569 }
5570
5571 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
5572 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5573
5574 /* This is supposed to be useful to obtain characters through
5575 * XmbLookupString() without really using a XIM. */
5576 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
5577 && *p != NUL)
5578 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5579
5580 if (xim == NULL)
5581 {
5582 /* Only give this message when verbose is set, because too many people
5583 * got this message when they didn't want to use a XIM. */
5584 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005585 {
5586 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 EMSG(_("E286: Failed to open input method"));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005588 verbose_leave();
5589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 return FALSE;
5591 }
5592
5593#ifdef USE_X11R6_XIM
5594 {
5595 XIMCallback destroy_cb;
5596
5597 destroy_cb.callback = xim_destroy_cb;
5598 destroy_cb.client_data = NULL;
5599 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
5600 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5601 }
5602#endif
5603
5604 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
5605 {
5606 EMSG(_("E288: input method doesn't support any style"));
5607 XCloseIM(xim);
5608 return FALSE;
5609 }
5610
5611 found = False;
5612 strcpy(tmp, gui.rsrc_preedit_type_name);
5613 for (s = tmp; s && !found; )
5614 {
5615 while (*s && isspace((unsigned char)*s))
5616 s++;
5617 if (!*s)
5618 break;
5619 if ((ns = end = strchr(s, ',')) != 0)
5620 ns++;
5621 else
5622 end = s + strlen(s);
5623 while (isspace((unsigned char)*end))
5624 end--;
5625 *end = '\0';
5626
5627 if (!strcmp(s, "OverTheSpot"))
5628 this_input_style = (XIMPreeditPosition | XIMStatusArea);
5629 else if (!strcmp(s, "OffTheSpot"))
5630 this_input_style = (XIMPreeditArea | XIMStatusArea);
5631 else if (!strcmp(s, "Root"))
5632 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
5633
5634 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5635 {
5636 if (this_input_style == xim_styles->supported_styles[i])
5637 {
5638 found = True;
5639 break;
5640 }
5641 }
5642 if (!found)
5643 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5644 {
5645 if ((xim_styles->supported_styles[i] & this_input_style)
5646 == (this_input_style & ~XIMStatusArea))
5647 {
5648 this_input_style &= ~XIMStatusArea;
5649 found = True;
5650 break;
5651 }
5652 }
5653
5654 s = ns;
5655 }
5656 XFree(xim_styles);
5657
5658 if (!found)
5659 {
5660 /* Only give this message when verbose is set, because too many people
5661 * got this message when they didn't want to use a XIM. */
5662 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005663 {
5664 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 EMSG(_("E289: input method doesn't support my preedit type"));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005666 verbose_leave();
5667 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 XCloseIM(xim);
5669 return FALSE;
5670 }
5671
5672 over_spot.x = TEXT_X(gui.col);
5673 over_spot.y = TEXT_Y(gui.row);
5674 input_style = this_input_style;
5675
5676 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
5677 * thus that has been removed. Hopefully the default works... */
5678#ifdef FEAT_XFONTSET
5679 if (gui.fontset != NOFONTSET)
5680 {
5681 preedit_list = XVaCreateNestedList(0,
5682 XNSpotLocation, &over_spot,
5683 XNForeground, (Pixel)gui.def_norm_pixel,
5684 XNBackground, (Pixel)gui.def_back_pixel,
5685 XNFontSet, (XFontSet)gui.fontset,
5686 NULL);
5687 status_list = XVaCreateNestedList(0,
5688 XNForeground, (Pixel)gui.def_norm_pixel,
5689 XNBackground, (Pixel)gui.def_back_pixel,
5690 XNFontSet, (XFontSet)gui.fontset,
5691 NULL);
5692 }
5693 else
5694#endif
5695 {
5696 preedit_list = XVaCreateNestedList(0,
5697 XNSpotLocation, &over_spot,
5698 XNForeground, (Pixel)gui.def_norm_pixel,
5699 XNBackground, (Pixel)gui.def_back_pixel,
5700 NULL);
5701 status_list = XVaCreateNestedList(0,
5702 XNForeground, (Pixel)gui.def_norm_pixel,
5703 XNBackground, (Pixel)gui.def_back_pixel,
5704 NULL);
5705 }
5706
5707 xic = XCreateIC(xim,
5708 XNInputStyle, input_style,
5709 XNClientWindow, x11_window,
5710 XNFocusWindow, gui.wid,
5711 XNPreeditAttributes, preedit_list,
5712 XNStatusAttributes, status_list,
5713 NULL);
5714 XFree(status_list);
5715 XFree(preedit_list);
5716 if (xic != NULL)
5717 {
5718 if (input_style & XIMStatusArea)
5719 {
5720 xim_set_status_area();
5721 status_area_enabled = TRUE;
5722 }
5723 else
Bram Moolenaar2e2a2812006-03-27 20:55:21 +00005724 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 }
5726 else
5727 {
5728 EMSG(_(e_xim));
5729 XCloseIM(xim);
5730 return FALSE;
5731 }
5732
5733 return TRUE;
5734}
5735
5736#endif /* FEAT_GUI_X11 */
5737
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738/*
5739 * Get IM status. When IM is on, return TRUE. Else return FALSE.
5740 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
5741 * active, when not having focus XIM may still be active (e.g., when using a
5742 * tear-off menu item).
5743 */
5744 int
5745im_get_status()
5746{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 return xim_has_focus;
5748}
5749
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02005750# endif /* !FEAT_GUI_GTK */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751
Bram Moolenaar64404472010-06-26 06:24:45 +02005752# if !defined(FEAT_GUI_GTK) || defined(PROTO)
5753/*
5754 * Set up the status area.
5755 *
5756 * This should use a separate Widget, but that seems not possible, because
5757 * preedit_area and status_area should be set to the same window as for the
5758 * text input. Unfortunately this means the status area pollutes the text
5759 * window...
5760 */
5761 void
5762xim_set_status_area()
Bram Moolenaarc236c162008-07-13 17:41:49 +00005763{
Bram Moolenaar64404472010-06-26 06:24:45 +02005764 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
5765 XRectangle pre_area, status_area;
5766
Bram Moolenaar60bb4e12010-09-18 13:36:49 +02005767 if (xic == NULL)
5768 return;
5769
Bram Moolenaar64404472010-06-26 06:24:45 +02005770 if (input_style & XIMStatusArea)
5771 {
5772 if (input_style & XIMPreeditArea)
5773 {
5774 XRectangle *needed_rect;
5775
5776 /* to get status_area width */
5777 status_list = XVaCreateNestedList(0, XNAreaNeeded,
5778 &needed_rect, NULL);
5779 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
5780 XFree(status_list);
5781
5782 status_area.width = needed_rect->width;
5783 }
5784 else
5785 status_area.width = gui.char_width * Columns;
5786
5787 status_area.x = 0;
5788 status_area.y = gui.char_height * Rows + gui.border_offset;
5789 if (gui.which_scrollbars[SBAR_BOTTOM])
5790 status_area.y += gui.scrollbar_height;
5791#ifdef FEAT_MENU
5792 if (gui.menu_is_active)
5793 status_area.y += gui.menu_height;
5794#endif
5795 status_area.height = gui.char_height;
5796 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
5797 }
5798 else
5799 {
5800 status_area.x = 0;
5801 status_area.y = gui.char_height * Rows + gui.border_offset;
5802 if (gui.which_scrollbars[SBAR_BOTTOM])
5803 status_area.y += gui.scrollbar_height;
5804#ifdef FEAT_MENU
5805 if (gui.menu_is_active)
5806 status_area.y += gui.menu_height;
5807#endif
5808 status_area.width = 0;
5809 status_area.height = gui.char_height;
5810 }
5811
5812 if (input_style & XIMPreeditArea) /* off-the-spot */
5813 {
5814 pre_area.x = status_area.x + status_area.width;
5815 pre_area.y = gui.char_height * Rows + gui.border_offset;
5816 pre_area.width = gui.char_width * Columns - pre_area.x;
5817 if (gui.which_scrollbars[SBAR_BOTTOM])
5818 pre_area.y += gui.scrollbar_height;
5819#ifdef FEAT_MENU
5820 if (gui.menu_is_active)
5821 pre_area.y += gui.menu_height;
5822#endif
5823 pre_area.height = gui.char_height;
5824 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5825 }
5826 else if (input_style & XIMPreeditPosition) /* over-the-spot */
5827 {
5828 pre_area.x = 0;
5829 pre_area.y = 0;
5830 pre_area.height = gui.char_height * Rows;
5831 pre_area.width = gui.char_width * Columns;
5832 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5833 }
5834
5835 if (preedit_list && status_list)
5836 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5837 XNStatusAttributes, status_list, NULL);
5838 else if (preedit_list)
5839 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5840 NULL);
5841 else if (status_list)
5842 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
5843 NULL);
5844 else
5845 list = NULL;
5846
5847 if (list)
5848 {
5849 XSetICValues(xic, XNVaNestedList, list, NULL);
5850 XFree(list);
5851 }
5852 if (status_list)
5853 XFree(status_list);
5854 if (preedit_list)
5855 XFree(preedit_list);
5856}
5857
5858 int
5859xim_get_status_area_height()
5860{
5861 if (status_area_enabled)
5862 return gui.char_height;
5863 return 0;
Bram Moolenaarc236c162008-07-13 17:41:49 +00005864}
5865# endif
5866
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867#endif /* FEAT_XIM */
5868
5869#if defined(FEAT_MBYTE) || defined(PROTO)
5870
5871/*
5872 * Setup "vcp" for conversion from "from" to "to".
5873 * The names must have been made canonical with enc_canonize().
5874 * vcp->vc_type must have been initialized to CONV_NONE.
5875 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5876 * instead).
5877 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5878 * Return FAIL when conversion is not supported, OK otherwise.
5879 */
5880 int
5881convert_setup(vcp, from, to)
5882 vimconv_T *vcp;
5883 char_u *from;
5884 char_u *to;
5885{
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005886 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
5887}
5888
5889/*
5890 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
5891 * "from" unicode charsets be considered utf-8. Same for "to".
5892 */
5893 int
5894convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8)
5895 vimconv_T *vcp;
5896 char_u *from;
5897 int from_unicode_is_utf8;
5898 char_u *to;
5899 int to_unicode_is_utf8;
5900{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 int from_prop;
5902 int to_prop;
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005903 int from_is_utf8;
5904 int to_is_utf8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905
5906 /* Reset to no conversion. */
5907# ifdef USE_ICONV
5908 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5909 iconv_close(vcp->vc_fd);
5910# endif
5911 vcp->vc_type = CONV_NONE;
5912 vcp->vc_factor = 1;
5913 vcp->vc_fail = FALSE;
5914
5915 /* No conversion when one of the names is empty or they are equal. */
5916 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5917 || STRCMP(from, to) == 0)
5918 return OK;
5919
5920 from_prop = enc_canon_props(from);
5921 to_prop = enc_canon_props(to);
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005922 if (from_unicode_is_utf8)
5923 from_is_utf8 = from_prop & ENC_UNICODE;
5924 else
5925 from_is_utf8 = from_prop == ENC_UNICODE;
5926 if (to_unicode_is_utf8)
5927 to_is_utf8 = to_prop & ENC_UNICODE;
5928 else
5929 to_is_utf8 = to_prop == ENC_UNICODE;
5930
5931 if ((from_prop & ENC_LATIN1) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 {
5933 /* Internal latin1 -> utf-8 conversion. */
5934 vcp->vc_type = CONV_TO_UTF8;
5935 vcp->vc_factor = 2; /* up to twice as long */
5936 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005937 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005938 {
5939 /* Internal latin9 -> utf-8 conversion. */
5940 vcp->vc_type = CONV_9_TO_UTF8;
5941 vcp->vc_factor = 3; /* up to three as long (euro sign) */
5942 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005943 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 {
5945 /* Internal utf-8 -> latin1 conversion. */
5946 vcp->vc_type = CONV_TO_LATIN1;
5947 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005948 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005949 {
5950 /* Internal utf-8 -> latin9 conversion. */
5951 vcp->vc_type = CONV_TO_LATIN9;
5952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953#ifdef WIN3264
5954 /* Win32-specific codepage <-> codepage conversion without iconv. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005955 else if ((from_is_utf8 || encname2codepage(from) > 0)
5956 && (to_is_utf8 || encname2codepage(to) > 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 {
5958 vcp->vc_type = CONV_CODEPAGE;
5959 vcp->vc_factor = 2; /* up to twice as long */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005960 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
5961 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 }
5963#endif
5964#ifdef MACOS_X
5965 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
5966 {
5967 vcp->vc_type = CONV_MAC_LATIN1;
5968 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005969 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970 {
5971 vcp->vc_type = CONV_MAC_UTF8;
5972 vcp->vc_factor = 2; /* up to twice as long */
5973 }
5974 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
5975 {
5976 vcp->vc_type = CONV_LATIN1_MAC;
5977 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005978 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 {
5980 vcp->vc_type = CONV_UTF8_MAC;
5981 }
5982#endif
5983# ifdef USE_ICONV
5984 else
5985 {
5986 /* Use iconv() for conversion. */
5987 vcp->vc_fd = (iconv_t)my_iconv_open(
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00005988 to_is_utf8 ? (char_u *)"utf-8" : to,
5989 from_is_utf8 ? (char_u *)"utf-8" : from);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 if (vcp->vc_fd != (iconv_t)-1)
5991 {
5992 vcp->vc_type = CONV_ICONV;
5993 vcp->vc_factor = 4; /* could be longer too... */
5994 }
5995 }
5996# endif
5997 if (vcp->vc_type == CONV_NONE)
5998 return FAIL;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005999
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 return OK;
6001}
6002
6003#if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6004 || defined(MSDOS) || defined(PROTO)
6005/*
6006 * Do conversion on typed input characters in-place.
6007 * The input and output are not NUL terminated!
6008 * Returns the length after conversion.
6009 */
6010 int
6011convert_input(ptr, len, maxlen)
6012 char_u *ptr;
6013 int len;
6014 int maxlen;
6015{
6016 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
6017}
6018#endif
6019
6020/*
6021 * Like convert_input(), but when there is an incomplete byte sequence at the
6022 * end return that as an allocated string in "restp" and set "*restlenp" to
6023 * the length. If "restp" is NULL it is not used.
6024 */
6025 int
6026convert_input_safe(ptr, len, maxlen, restp, restlenp)
6027 char_u *ptr;
6028 int len;
6029 int maxlen;
6030 char_u **restp;
6031 int *restlenp;
6032{
6033 char_u *d;
6034 int dlen = len;
6035 int unconvertlen = 0;
6036
6037 d = string_convert_ext(&input_conv, ptr, &dlen,
6038 restp == NULL ? NULL : &unconvertlen);
6039 if (d != NULL)
6040 {
6041 if (dlen <= maxlen)
6042 {
6043 if (unconvertlen > 0)
6044 {
6045 /* Move the unconverted characters to allocated memory. */
6046 *restp = alloc(unconvertlen);
6047 if (*restp != NULL)
6048 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
6049 *restlenp = unconvertlen;
6050 }
6051 mch_memmove(ptr, d, dlen);
6052 }
6053 else
6054 /* result is too long, keep the unconverted text (the caller must
6055 * have done something wrong!) */
6056 dlen = len;
6057 vim_free(d);
6058 }
6059 return dlen;
6060}
6061
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062/*
6063 * Convert text "ptr[*lenp]" according to "vcp".
6064 * Returns the result in allocated memory and sets "*lenp".
6065 * When "lenp" is NULL, use NUL terminated strings.
6066 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6067 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6068 */
6069 char_u *
6070string_convert(vcp, ptr, lenp)
6071 vimconv_T *vcp;
6072 char_u *ptr;
6073 int *lenp;
6074{
6075 return string_convert_ext(vcp, ptr, lenp, NULL);
6076}
6077
6078/*
6079 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6080 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6081 * set to the number of remaining bytes.
6082 */
6083 char_u *
6084string_convert_ext(vcp, ptr, lenp, unconvlenp)
6085 vimconv_T *vcp;
6086 char_u *ptr;
6087 int *lenp;
6088 int *unconvlenp;
6089{
6090 char_u *retval = NULL;
6091 char_u *d;
6092 int len;
6093 int i;
6094 int l;
6095 int c;
6096
6097 if (lenp == NULL)
6098 len = (int)STRLEN(ptr);
6099 else
6100 len = *lenp;
6101 if (len == 0)
6102 return vim_strsave((char_u *)"");
6103
6104 switch (vcp->vc_type)
6105 {
6106 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
6107 retval = alloc(len * 2 + 1);
6108 if (retval == NULL)
6109 break;
6110 d = retval;
6111 for (i = 0; i < len; ++i)
6112 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006113 c = ptr[i];
6114 if (c < 0x80)
6115 *d++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 else
6117 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006118 *d++ = 0xc0 + ((unsigned)c >> 6);
6119 *d++ = 0x80 + (c & 0x3f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120 }
6121 }
6122 *d = NUL;
6123 if (lenp != NULL)
6124 *lenp = (int)(d - retval);
6125 break;
6126
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006127 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
6128 retval = alloc(len * 3 + 1);
6129 if (retval == NULL)
6130 break;
6131 d = retval;
6132 for (i = 0; i < len; ++i)
6133 {
6134 c = ptr[i];
6135 switch (c)
6136 {
6137 case 0xa4: c = 0x20ac; break; /* euro */
6138 case 0xa6: c = 0x0160; break; /* S hat */
6139 case 0xa8: c = 0x0161; break; /* S -hat */
6140 case 0xb4: c = 0x017d; break; /* Z hat */
6141 case 0xb8: c = 0x017e; break; /* Z -hat */
6142 case 0xbc: c = 0x0152; break; /* OE */
6143 case 0xbd: c = 0x0153; break; /* oe */
6144 case 0xbe: c = 0x0178; break; /* Y */
6145 }
6146 d += utf_char2bytes(c, d);
6147 }
6148 *d = NUL;
6149 if (lenp != NULL)
6150 *lenp = (int)(d - retval);
6151 break;
6152
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006154 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 retval = alloc(len + 1);
6156 if (retval == NULL)
6157 break;
6158 d = retval;
6159 for (i = 0; i < len; ++i)
6160 {
Bram Moolenaar24397332009-12-02 14:02:39 +00006161 l = utf_ptr2len_len(ptr + i, len - i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 if (l == 0)
6163 *d++ = NUL;
6164 else if (l == 1)
6165 {
Bram Moolenaar24397332009-12-02 14:02:39 +00006166 int l_w = utf8len_tab_zero[ptr[i]];
6167
6168 if (l_w == 0)
6169 {
6170 /* Illegal utf-8 byte cannot be converted */
6171 vim_free(retval);
6172 return NULL;
6173 }
6174 if (unconvlenp != NULL && l_w > len - i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
6176 /* Incomplete sequence at the end. */
6177 *unconvlenp = len - i;
6178 break;
6179 }
6180 *d++ = ptr[i];
6181 }
6182 else
6183 {
6184 c = utf_ptr2char(ptr + i);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006185 if (vcp->vc_type == CONV_TO_LATIN9)
6186 switch (c)
6187 {
6188 case 0x20ac: c = 0xa4; break; /* euro */
6189 case 0x0160: c = 0xa6; break; /* S hat */
6190 case 0x0161: c = 0xa8; break; /* S -hat */
6191 case 0x017d: c = 0xb4; break; /* Z hat */
6192 case 0x017e: c = 0xb8; break; /* Z -hat */
6193 case 0x0152: c = 0xbc; break; /* OE */
6194 case 0x0153: c = 0xbd; break; /* oe */
6195 case 0x0178: c = 0xbe; break; /* Y */
6196 case 0xa4:
6197 case 0xa6:
6198 case 0xa8:
6199 case 0xb4:
6200 case 0xb8:
6201 case 0xbc:
6202 case 0xbd:
6203 case 0xbe: c = 0x100; break; /* not in latin9 */
6204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 if (!utf_iscomposing(c)) /* skip composing chars */
6206 {
6207 if (c < 0x100)
6208 *d++ = c;
6209 else if (vcp->vc_fail)
6210 {
6211 vim_free(retval);
6212 return NULL;
6213 }
6214 else
6215 {
6216 *d++ = 0xbf;
6217 if (utf_char2cells(c) > 1)
6218 *d++ = '?';
6219 }
6220 }
6221 i += l - 1;
6222 }
6223 }
6224 *d = NUL;
6225 if (lenp != NULL)
6226 *lenp = (int)(d - retval);
6227 break;
6228
Bram Moolenaar56718732006-03-15 22:53:57 +00006229# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 case CONV_MAC_LATIN1:
6231 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00006232 'm', 'l', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 break;
6234
6235 case CONV_LATIN1_MAC:
6236 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00006237 'l', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 break;
6239
6240 case CONV_MAC_UTF8:
6241 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00006242 'm', 'u', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 break;
6244
6245 case CONV_UTF8_MAC:
6246 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00006247 'u', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 break;
6249# endif
6250
6251# ifdef USE_ICONV
6252 case CONV_ICONV: /* conversion with output_conv.vc_fd */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006253 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 break;
6255# endif
6256# ifdef WIN3264
6257 case CONV_CODEPAGE: /* codepage -> codepage */
6258 {
6259 int retlen;
6260 int tmp_len;
6261 short_u *tmp;
6262
6263 /* 1. codepage/UTF-8 -> ucs-2. */
6264 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006265 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266 else
Bram Moolenaarffeedec2013-02-13 16:49:58 +01006267 {
6268 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom,
6269 unconvlenp ? MB_ERR_INVALID_CHARS : 0,
6270 ptr, len, 0, 0);
6271 if (tmp_len == 0
6272 && GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
6273 {
6274 if (lenp != NULL)
6275 *lenp = 0;
6276 if (unconvlenp != NULL)
6277 *unconvlenp = len;
6278 retval = alloc(1);
6279 if (retval)
6280 retval[0] = NUL;
6281 return retval;
6282 }
6283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
6285 if (tmp == NULL)
6286 break;
6287 if (vcp->vc_cpfrom == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006288 utf8_to_utf16(ptr, len, tmp, unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289 else
6290 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
6291
6292 /* 2. ucs-2 -> codepage/UTF-8. */
6293 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006294 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 else
6296 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
6297 tmp, tmp_len, 0, 0, 0, 0);
6298 retval = alloc(retlen + 1);
6299 if (retval != NULL)
6300 {
6301 if (vcp->vc_cpto == 0)
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006302 utf16_to_utf8(tmp, tmp_len, retval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 else
6304 WideCharToMultiByte(vcp->vc_cpto, 0,
6305 tmp, tmp_len, retval, retlen, 0, 0);
6306 retval[retlen] = NUL;
6307 if (lenp != NULL)
6308 *lenp = retlen;
6309 }
6310 vim_free(tmp);
6311 break;
6312 }
6313# endif
6314 }
6315
6316 return retval;
6317}
6318#endif