Merge branch 'vim'
[MacVim.git] / src / mbyte.c
blobd156bfad662c9a26c3aedb68c6d60e770b0b577c
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Multibyte extensions partly by Sung-Hoon Baek
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 */
11 * mbyte.c: Code specifically for handling multi-byte characters.
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:
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.
29 * To make things complicated, up to six composing characters
30 * 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.
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
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:
48 * clipboard
49 * ^
50 * | (2)
51 * V
52 * +---------------+
53 * (1) | | (3)
54 * keyboard ----->| core |-----> display
55 * | |
56 * +---------------+
57 * ^
58 * | (4)
59 * V
60 * file
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'.
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"
80 #include "vim.h"
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
92 #if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
93 # include <winnls.h>
94 #endif
96 #ifdef FEAT_GUI_X11
97 # include <X11/Intrinsic.h>
98 #endif
99 #ifdef X_LOCALE
100 #include <X11/Xlocale.h>
101 #endif
103 #if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && defined(HAVE_GTK2)
104 # include <gdk/gdkkeysyms.h>
105 # ifdef WIN3264
106 # include <gdk/gdkwin32.h>
107 # else
108 # include <gdk/gdkx.h>
109 # endif
110 #endif
112 #ifdef HAVE_WCHAR_H
113 # include <wchar.h>
114 #endif
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
124 #if defined(FEAT_MBYTE) || defined(PROTO)
126 static int enc_canon_search __ARGS((char_u *name));
127 static int dbcs_char2len __ARGS((int c));
128 static int dbcs_char2bytes __ARGS((int c, char_u *buf));
129 static int dbcs_ptr2len __ARGS((char_u *p));
130 static int dbcs_ptr2len_len __ARGS((char_u *p, int size));
131 static int utf_ptr2cells_len __ARGS((char_u *p, int size));
132 static int dbcs_char2cells __ARGS((int c));
133 static int dbcs_ptr2cells_len __ARGS((char_u *p, int size));
134 static int dbcs_ptr2char __ARGS((char_u *p));
137 * Lookup table to quickly get the length in bytes of a UTF-8 character from
138 * the first byte of a UTF-8 string.
139 * Bytes which are illegal when used as the first byte have a 1.
140 * The NUL byte has length 1.
142 static char utf8len_tab[256] =
144 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
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,
149 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
150 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,
151 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1,
155 * Like utf8len_tab above, but using a zero for illegal lead bytes.
157 static char utf8len_tab_zero[256] =
159 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
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 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,
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 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,
166 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,0,0,
170 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
171 * in the "xim.log" file.
173 /* #define XIM_DEBUG */
174 #ifdef XIM_DEBUG
175 static void
176 xim_log(char *s, ...)
178 va_list arglist;
179 static FILE *fd = NULL;
181 if (fd == (FILE *)-1)
182 return;
183 if (fd == NULL)
185 fd = mch_fopen("xim.log", "w");
186 if (fd == NULL)
188 EMSG("Cannot open xim.log");
189 fd = (FILE *)-1;
190 return;
194 va_start(arglist, s);
195 vfprintf(fd, s, arglist);
196 va_end(arglist);
198 #endif
200 #endif
202 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
204 * Canonical encoding names and their properties.
205 * "iso-8859-n" is handled by enc_canonize() directly.
207 static struct
208 { char *name; int prop; int codepage;}
209 enc_canon_table[] =
211 #define IDX_LATIN_1 0
212 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
213 #define IDX_ISO_2 1
214 {"iso-8859-2", ENC_8BIT, 0},
215 #define IDX_ISO_3 2
216 {"iso-8859-3", ENC_8BIT, 0},
217 #define IDX_ISO_4 3
218 {"iso-8859-4", ENC_8BIT, 0},
219 #define IDX_ISO_5 4
220 {"iso-8859-5", ENC_8BIT, 0},
221 #define IDX_ISO_6 5
222 {"iso-8859-6", ENC_8BIT, 0},
223 #define IDX_ISO_7 6
224 {"iso-8859-7", ENC_8BIT, 0},
225 #define IDX_ISO_8 7
226 {"iso-8859-8", ENC_8BIT, 0},
227 #define IDX_ISO_9 8
228 {"iso-8859-9", ENC_8BIT, 0},
229 #define IDX_ISO_10 9
230 {"iso-8859-10", ENC_8BIT, 0},
231 #define IDX_ISO_11 10
232 {"iso-8859-11", ENC_8BIT, 0},
233 #define IDX_ISO_13 11
234 {"iso-8859-13", ENC_8BIT, 0},
235 #define IDX_ISO_14 12
236 {"iso-8859-14", ENC_8BIT, 0},
237 #define IDX_ISO_15 13
238 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
239 #define IDX_KOI8_R 14
240 {"koi8-r", ENC_8BIT, 0},
241 #define IDX_KOI8_U 15
242 {"koi8-u", ENC_8BIT, 0},
243 #define IDX_UTF8 16
244 {"utf-8", ENC_UNICODE, 0},
245 #define IDX_UCS2 17
246 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
247 #define IDX_UCS2LE 18
248 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
249 #define IDX_UTF16 19
250 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
251 #define IDX_UTF16LE 20
252 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
253 #define IDX_UCS4 21
254 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
255 #define IDX_UCS4LE 22
256 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
258 /* For debugging DBCS encoding on Unix. */
259 #define IDX_DEBUG 23
260 {"debug", ENC_DBCS, DBCS_DEBUG},
261 #define IDX_EUC_JP 24
262 {"euc-jp", ENC_DBCS, DBCS_JPNU},
263 #define IDX_SJIS 25
264 {"sjis", ENC_DBCS, DBCS_JPN},
265 #define IDX_EUC_KR 26
266 {"euc-kr", ENC_DBCS, DBCS_KORU},
267 #define IDX_EUC_CN 27
268 {"euc-cn", ENC_DBCS, DBCS_CHSU},
269 #define IDX_EUC_TW 28
270 {"euc-tw", ENC_DBCS, DBCS_CHTU},
271 #define IDX_BIG5 29
272 {"big5", ENC_DBCS, DBCS_CHT},
274 /* MS-DOS and MS-Windows codepages are included here, so that they can be
275 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
276 * not exactly the same. */
277 #define IDX_CP437 30
278 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
279 #define IDX_CP737 31
280 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
281 #define IDX_CP775 32
282 {"cp775", ENC_8BIT, 775}, /* Baltic */
283 #define IDX_CP850 33
284 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
285 #define IDX_CP852 34
286 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
287 #define IDX_CP855 35
288 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
289 #define IDX_CP857 36
290 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
291 #define IDX_CP860 37
292 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
293 #define IDX_CP861 38
294 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
295 #define IDX_CP862 39
296 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
297 #define IDX_CP863 40
298 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
299 #define IDX_CP865 41
300 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
301 #define IDX_CP866 42
302 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
303 #define IDX_CP869 43
304 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
305 #define IDX_CP874 44
306 {"cp874", ENC_8BIT, 874}, /* Thai */
307 #define IDX_CP932 45
308 {"cp932", ENC_DBCS, DBCS_JPN},
309 #define IDX_CP936 46
310 {"cp936", ENC_DBCS, DBCS_CHS},
311 #define IDX_CP949 47
312 {"cp949", ENC_DBCS, DBCS_KOR},
313 #define IDX_CP950 48
314 {"cp950", ENC_DBCS, DBCS_CHT},
315 #define IDX_CP1250 49
316 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
317 #define IDX_CP1251 50
318 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
319 /* cp1252 is considered to be equal to latin1 */
320 #define IDX_CP1253 51
321 {"cp1253", ENC_8BIT, 1253}, /* Greek */
322 #define IDX_CP1254 52
323 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
324 #define IDX_CP1255 53
325 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
326 #define IDX_CP1256 54
327 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
328 #define IDX_CP1257 55
329 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
330 #define IDX_CP1258 56
331 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
333 #define IDX_MACROMAN 57
334 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
335 #define IDX_DECMCS 58
336 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
337 #define IDX_HPROMAN8 59
338 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
339 #define IDX_COUNT 60
343 * Aliases for encoding names.
345 static struct
346 { char *name; int canon;}
347 enc_alias_table[] =
349 {"ansi", IDX_LATIN_1},
350 {"iso-8859-1", IDX_LATIN_1},
351 {"latin2", IDX_ISO_2},
352 {"latin3", IDX_ISO_3},
353 {"latin4", IDX_ISO_4},
354 {"cyrillic", IDX_ISO_5},
355 {"arabic", IDX_ISO_6},
356 {"greek", IDX_ISO_7},
357 #ifdef WIN3264
358 {"hebrew", IDX_CP1255},
359 #else
360 {"hebrew", IDX_ISO_8},
361 #endif
362 {"latin5", IDX_ISO_9},
363 {"turkish", IDX_ISO_9}, /* ? */
364 {"latin6", IDX_ISO_10},
365 {"nordic", IDX_ISO_10}, /* ? */
366 {"thai", IDX_ISO_11}, /* ? */
367 {"latin7", IDX_ISO_13},
368 {"latin8", IDX_ISO_14},
369 {"latin9", IDX_ISO_15},
370 {"utf8", IDX_UTF8},
371 {"unicode", IDX_UCS2},
372 {"ucs2", IDX_UCS2},
373 {"ucs2be", IDX_UCS2},
374 {"ucs-2be", IDX_UCS2},
375 {"ucs2le", IDX_UCS2LE},
376 {"utf16", IDX_UTF16},
377 {"utf16be", IDX_UTF16},
378 {"utf-16be", IDX_UTF16},
379 {"utf16le", IDX_UTF16LE},
380 {"ucs4", IDX_UCS4},
381 {"ucs4be", IDX_UCS4},
382 {"ucs-4be", IDX_UCS4},
383 {"ucs4le", IDX_UCS4LE},
384 {"utf32", IDX_UCS4},
385 {"utf-32", IDX_UCS4},
386 {"utf32be", IDX_UCS4},
387 {"utf-32be", IDX_UCS4},
388 {"utf32le", IDX_UCS4LE},
389 {"utf-32le", IDX_UCS4LE},
390 {"932", IDX_CP932},
391 {"949", IDX_CP949},
392 {"936", IDX_CP936},
393 {"gbk", IDX_CP936},
394 {"950", IDX_CP950},
395 {"eucjp", IDX_EUC_JP},
396 {"unix-jis", IDX_EUC_JP},
397 {"ujis", IDX_EUC_JP},
398 {"shift-jis", IDX_SJIS},
399 {"euckr", IDX_EUC_KR},
400 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
401 {"euccn", IDX_EUC_CN},
402 {"gb2312", IDX_EUC_CN},
403 {"euctw", IDX_EUC_TW},
404 #if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
405 {"japan", IDX_CP932},
406 {"korea", IDX_CP949},
407 {"prc", IDX_CP936},
408 {"chinese", IDX_CP936},
409 {"taiwan", IDX_CP950},
410 {"big5", IDX_CP950},
411 #else
412 {"japan", IDX_EUC_JP},
413 {"korea", IDX_EUC_KR},
414 {"prc", IDX_EUC_CN},
415 {"chinese", IDX_EUC_CN},
416 {"taiwan", IDX_EUC_TW},
417 {"cp950", IDX_BIG5},
418 {"950", IDX_BIG5},
419 #endif
420 {"mac", IDX_MACROMAN},
421 {"mac-roman", IDX_MACROMAN},
422 {NULL, 0}
425 #ifndef CP_UTF8
426 # define CP_UTF8 65001 /* magic number from winnls.h */
427 #endif
430 * Find encoding "name" in the list of canonical encoding names.
431 * Returns -1 if not found.
433 static int
434 enc_canon_search(name)
435 char_u *name;
437 int i;
439 for (i = 0; i < IDX_COUNT; ++i)
440 if (STRCMP(name, enc_canon_table[i].name) == 0)
441 return i;
442 return -1;
445 #endif
447 #if defined(FEAT_MBYTE) || defined(PROTO)
450 * Find canonical encoding "name" in the list and return its properties.
451 * Returns 0 if not found.
454 enc_canon_props(name)
455 char_u *name;
457 int i;
459 i = enc_canon_search(name);
460 if (i >= 0)
461 return enc_canon_table[i].prop;
462 #ifdef WIN3264
463 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
465 CPINFO cpinfo;
467 /* Get info on this codepage to find out what it is. */
468 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
470 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
471 return ENC_8BIT;
472 if (cpinfo.MaxCharSize == 2
473 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
474 /* must be a DBCS encoding */
475 return ENC_DBCS;
477 return 0;
479 #endif
480 if (STRNCMP(name, "2byte-", 6) == 0)
481 return ENC_DBCS;
482 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
483 return ENC_8BIT;
484 return 0;
488 * Set up for using multi-byte characters.
489 * Called in three cases:
490 * - by main() to initialize (p_enc == NULL)
491 * - by set_init_1() after 'encoding' was set to its default.
492 * - by do_set() when 'encoding' has been set.
493 * p_enc must have been passed through enc_canonize() already.
494 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
495 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
496 * When there is something wrong: Returns an error message and doesn't change
497 * anything.
499 char_u *
500 mb_init()
502 int i;
503 int idx;
504 int n;
505 int enc_dbcs_new = 0;
506 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
507 && !defined(MACOS)
508 # define LEN_FROM_CONV
509 vimconv_T vimconv;
510 char_u *p;
511 #endif
513 if (p_enc == NULL)
515 /* Just starting up: set the whole table to one's. */
516 for (i = 0; i < 256; ++i)
517 mb_bytelen_tab[i] = 1;
518 input_conv.vc_type = CONV_NONE;
519 input_conv.vc_factor = 1;
520 output_conv.vc_type = CONV_NONE;
521 return NULL;
524 #ifdef WIN3264
525 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
527 CPINFO cpinfo;
529 /* Get info on this codepage to find out what it is. */
530 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
532 if (cpinfo.MaxCharSize == 1)
534 /* some single-byte encoding */
535 enc_unicode = 0;
536 enc_utf8 = FALSE;
538 else if (cpinfo.MaxCharSize == 2
539 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
541 /* must be a DBCS encoding, check below */
542 enc_dbcs_new = atoi(p_enc + 2);
544 else
545 goto codepage_invalid;
547 else if (GetLastError() == ERROR_INVALID_PARAMETER)
549 codepage_invalid:
550 return (char_u *)N_("E543: Not a valid codepage");
553 #endif
554 else if (STRNCMP(p_enc, "8bit-", 5) == 0
555 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
557 /* Accept any "8bit-" or "iso-8859-" name. */
558 enc_unicode = 0;
559 enc_utf8 = FALSE;
561 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
563 #ifdef WIN3264
564 /* Windows: accept only valid codepage numbers, check below. */
565 if (p_enc[6] != 'c' || p_enc[7] != 'p'
566 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
567 return e_invarg;
568 #else
569 /* Unix: accept any "2byte-" name, assume current locale. */
570 enc_dbcs_new = DBCS_2BYTE;
571 #endif
573 else if ((idx = enc_canon_search(p_enc)) >= 0)
575 i = enc_canon_table[idx].prop;
576 if (i & ENC_UNICODE)
578 /* Unicode */
579 enc_utf8 = TRUE;
580 if (i & (ENC_2BYTE | ENC_2WORD))
581 enc_unicode = 2;
582 else if (i & ENC_4BYTE)
583 enc_unicode = 4;
584 else
585 enc_unicode = 0;
587 else if (i & ENC_DBCS)
589 /* 2byte, handle below */
590 enc_dbcs_new = enc_canon_table[idx].codepage;
592 else
594 /* Must be 8-bit. */
595 enc_unicode = 0;
596 enc_utf8 = FALSE;
599 else /* Don't know what encoding this is, reject it. */
600 return e_invarg;
602 if (enc_dbcs_new != 0)
604 #ifdef WIN3264
605 /* Check if the DBCS code page is OK. */
606 if (!IsValidCodePage(enc_dbcs_new))
607 goto codepage_invalid;
608 #endif
609 enc_unicode = 0;
610 enc_utf8 = FALSE;
612 enc_dbcs = enc_dbcs_new;
613 has_mbyte = (enc_dbcs != 0 || enc_utf8);
615 #ifdef WIN3264
616 enc_codepage = encname2codepage(p_enc);
617 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
618 #endif
620 /* Detect an encoding that uses latin1 characters. */
621 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
622 || STRCMP(p_enc, "iso-8859-15") == 0);
625 * Set the function pointers.
627 if (enc_utf8)
629 mb_ptr2len = utfc_ptr2len;
630 mb_ptr2len_len = utfc_ptr2len_len;
631 mb_char2len = utf_char2len;
632 mb_char2bytes = utf_char2bytes;
633 mb_ptr2cells = utf_ptr2cells;
634 mb_ptr2cells_len = utf_ptr2cells_len;
635 mb_char2cells = utf_char2cells;
636 mb_off2cells = utf_off2cells;
637 mb_ptr2char = utf_ptr2char;
638 mb_head_off = utf_head_off;
640 else if (enc_dbcs != 0)
642 mb_ptr2len = dbcs_ptr2len;
643 mb_ptr2len_len = dbcs_ptr2len_len;
644 mb_char2len = dbcs_char2len;
645 mb_char2bytes = dbcs_char2bytes;
646 mb_ptr2cells = dbcs_ptr2cells;
647 mb_ptr2cells_len = dbcs_ptr2cells_len;
648 mb_char2cells = dbcs_char2cells;
649 mb_off2cells = dbcs_off2cells;
650 mb_ptr2char = dbcs_ptr2char;
651 mb_head_off = dbcs_head_off;
653 else
655 mb_ptr2len = latin_ptr2len;
656 mb_ptr2len_len = latin_ptr2len_len;
657 mb_char2len = latin_char2len;
658 mb_char2bytes = latin_char2bytes;
659 mb_ptr2cells = latin_ptr2cells;
660 mb_ptr2cells_len = latin_ptr2cells_len;
661 mb_char2cells = latin_char2cells;
662 mb_off2cells = latin_off2cells;
663 mb_ptr2char = latin_ptr2char;
664 mb_head_off = latin_head_off;
668 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
670 #ifdef LEN_FROM_CONV
671 /* When 'encoding' is different from the current locale mblen() won't
672 * work. Use conversion to "utf-8" instead. */
673 vimconv.vc_type = CONV_NONE;
674 if (enc_dbcs)
676 p = enc_locale();
677 if (p == NULL || STRCMP(p, p_enc) != 0)
679 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
680 vimconv.vc_fail = TRUE;
682 vim_free(p);
684 #endif
686 for (i = 0; i < 256; ++i)
688 /* Our own function to reliably check the length of UTF-8 characters,
689 * independent of mblen(). */
690 if (enc_utf8)
691 n = utf8len_tab[i];
692 else if (enc_dbcs == 0)
693 n = 1;
694 else
696 #if defined(WIN3264) || defined(WIN32UNIX)
697 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
698 * CodePage identifier, which we can pass directly in to Windows
699 * API */
700 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
701 #else
702 # if defined(MACOS) || defined(__amigaos4__)
704 * if mblen() is not available, character which MSB is turned on
705 * are treated as leading byte character. (note : This assumption
706 * is not always true.)
708 n = (i & 0x80) ? 2 : 1;
709 # else
710 char buf[MB_MAXBYTES];
711 # ifdef X_LOCALE
712 # ifndef mblen
713 # define mblen _Xmblen
714 # endif
715 # endif
716 if (i == NUL) /* just in case mblen() can't handle "" */
717 n = 1;
718 else
720 buf[0] = i;
721 buf[1] = 0;
722 #ifdef LEN_FROM_CONV
723 if (vimconv.vc_type != CONV_NONE)
726 * string_convert() should fail when converting the first
727 * byte of a double-byte character.
729 p = string_convert(&vimconv, (char_u *)buf, NULL);
730 if (p != NULL)
732 vim_free(p);
733 n = 1;
735 else
736 n = 2;
738 else
739 #endif
742 * mblen() should return -1 for invalid (means the leading
743 * multibyte) character. However there are some platforms
744 * where mblen() returns 0 for invalid character.
745 * Therefore, following condition includes 0.
747 ignored = mblen(NULL, 0); /* First reset the state. */
748 if (mblen(buf, (size_t)1) <= 0)
749 n = 2;
750 else
751 n = 1;
754 # endif
755 #endif
758 mb_bytelen_tab[i] = n;
761 #ifdef LEN_FROM_CONV
762 convert_setup(&vimconv, NULL, NULL);
763 #endif
765 /* The cell width depends on the type of multi-byte characters. */
766 (void)init_chartab();
768 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
769 screenalloc(FALSE);
771 /* When using Unicode, set default for 'fileencodings'. */
772 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
773 set_string_option_direct((char_u *)"fencs", -1,
774 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
776 #if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
777 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
778 * translated messages independently from the current locale. */
779 (void)bind_textdomain_codeset(VIMPACKAGE,
780 enc_utf8 ? "utf-8" : (char *)p_enc);
781 #endif
783 #ifdef WIN32
784 /* When changing 'encoding' while starting up, then convert the command
785 * line arguments from the active codepage to 'encoding'. */
786 if (starting != 0)
787 fix_arg_enc();
788 #endif
790 #ifdef FEAT_AUTOCMD
791 /* Fire an autocommand to let people do custom font setup. This must be
792 * after Vim has been setup for the new encoding. */
793 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
794 #endif
796 #ifdef FEAT_SPELL
797 /* Need to reload spell dictionaries */
798 spell_reload();
799 #endif
801 return NULL;
805 * Return the size of the BOM for the current buffer:
806 * 0 - no BOM
807 * 2 - UCS-2 or UTF-16 BOM
808 * 4 - UCS-4 BOM
809 * 3 - UTF-8 BOM
812 bomb_size()
814 int n = 0;
816 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
818 if (*curbuf->b_p_fenc == NUL)
820 if (enc_utf8)
822 if (enc_unicode != 0)
823 n = enc_unicode;
824 else
825 n = 3;
828 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
829 n = 3;
830 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
831 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
832 n = 2;
833 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
834 n = 4;
836 return n;
840 * Get class of pointer:
841 * 0 for blank or NUL
842 * 1 for punctuation
843 * 2 for an (ASCII) word character
844 * >2 for other word characters
847 mb_get_class(p)
848 char_u *p;
850 if (MB_BYTE2LEN(p[0]) == 1)
852 if (p[0] == NUL || vim_iswhite(p[0]))
853 return 0;
854 if (vim_iswordc(p[0]))
855 return 2;
856 return 1;
858 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
859 return dbcs_class(p[0], p[1]);
860 if (enc_utf8)
861 return utf_class(utf_ptr2char(p));
862 return 0;
866 * Get class of a double-byte character. This always returns 3 or bigger.
867 * TODO: Should return 1 for punctuation.
870 dbcs_class(lead, trail)
871 unsigned lead;
872 unsigned trail;
874 switch (enc_dbcs)
876 /* please add classfy routine for your language in here */
878 case DBCS_JPNU: /* ? */
879 case DBCS_JPN:
881 /* JIS code classification */
882 unsigned char lb = lead;
883 unsigned char tb = trail;
885 /* convert process code to JIS */
886 # if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
887 /* process code is SJIS */
888 if (lb <= 0x9f)
889 lb = (lb - 0x81) * 2 + 0x21;
890 else
891 lb = (lb - 0xc1) * 2 + 0x21;
892 if (tb <= 0x7e)
893 tb -= 0x1f;
894 else if (tb <= 0x9e)
895 tb -= 0x20;
896 else
898 tb -= 0x7e;
899 lb += 1;
901 # else
903 * XXX: Code page identification can not use with all
904 * system! So, some other encoding information
905 * will be needed.
906 * In japanese: SJIS,EUC,UNICODE,(JIS)
907 * Note that JIS-code system don't use as
908 * process code in most system because it uses
909 * escape sequences(JIS is context depend encoding).
911 /* assume process code is JAPANESE-EUC */
912 lb &= 0x7f;
913 tb &= 0x7f;
914 # endif
915 /* exceptions */
916 switch (lb << 8 | tb)
918 case 0x2121: /* ZENKAKU space */
919 return 0;
920 case 0x2122: /* KU-TEN (Japanese comma) */
921 case 0x2123: /* TOU-TEN (Japanese period) */
922 case 0x2124: /* ZENKAKU comma */
923 case 0x2125: /* ZENKAKU period */
924 return 1;
925 case 0x213c: /* prolongedsound handled as KATAKANA */
926 return 13;
928 /* sieved by KU code */
929 switch (lb)
931 case 0x21:
932 case 0x22:
933 /* special symbols */
934 return 10;
935 case 0x23:
936 /* alpha-numeric */
937 return 11;
938 case 0x24:
939 /* hiragana */
940 return 12;
941 case 0x25:
942 /* katakana */
943 return 13;
944 case 0x26:
945 /* greek */
946 return 14;
947 case 0x27:
948 /* russian */
949 return 15;
950 case 0x28:
951 /* lines */
952 return 16;
953 default:
954 /* kanji */
955 return 17;
959 case DBCS_KORU: /* ? */
960 case DBCS_KOR:
962 /* KS code classification */
963 unsigned char c1 = lead;
964 unsigned char c2 = trail;
967 * 20 : Hangul
968 * 21 : Hanja
969 * 22 : Symbols
970 * 23 : Alpha-numeric/Roman Letter (Full width)
971 * 24 : Hangul Letter(Alphabet)
972 * 25 : Roman Numeral/Greek Letter
973 * 26 : Box Drawings
974 * 27 : Unit Symbols
975 * 28 : Circled/Parenthesized Letter
976 * 29 : Hirigana/Katakana
977 * 30 : Cyrillic Letter
980 if (c1 >= 0xB0 && c1 <= 0xC8)
981 /* Hangul */
982 return 20;
983 #if defined(WIN3264) || defined(WIN32UNIX)
984 else if (c1 <= 0xA0 || c2 <= 0xA0)
985 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
986 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
987 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
989 return 20;
990 #endif
992 else if (c1 >= 0xCA && c1 <= 0xFD)
993 /* Hanja */
994 return 21;
995 else switch (c1)
997 case 0xA1:
998 case 0xA2:
999 /* Symbols */
1000 return 22;
1001 case 0xA3:
1002 /* Alpha-numeric */
1003 return 23;
1004 case 0xA4:
1005 /* Hangul Letter(Alphabet) */
1006 return 24;
1007 case 0xA5:
1008 /* Roman Numeral/Greek Letter */
1009 return 25;
1010 case 0xA6:
1011 /* Box Drawings */
1012 return 26;
1013 case 0xA7:
1014 /* Unit Symbols */
1015 return 27;
1016 case 0xA8:
1017 case 0xA9:
1018 if (c2 <= 0xAF)
1019 return 25; /* Roman Letter */
1020 else if (c2 >= 0xF6)
1021 return 22; /* Symbols */
1022 else
1023 /* Circled/Parenthesized Letter */
1024 return 28;
1025 case 0xAA:
1026 case 0xAB:
1027 /* Hirigana/Katakana */
1028 return 29;
1029 case 0xAC:
1030 /* Cyrillic Letter */
1031 return 30;
1034 default:
1035 break;
1037 return 3;
1041 * mb_char2len() function pointer.
1042 * Return length in bytes of character "c".
1043 * Returns 1 for a single-byte character.
1046 latin_char2len(c)
1047 int c UNUSED;
1049 return 1;
1052 static int
1053 dbcs_char2len(c)
1054 int c;
1056 if (c >= 0x100)
1057 return 2;
1058 return 1;
1062 * mb_char2bytes() function pointer.
1063 * Convert a character to its bytes.
1064 * Returns the length in bytes.
1067 latin_char2bytes(c, buf)
1068 int c;
1069 char_u *buf;
1071 buf[0] = c;
1072 return 1;
1075 static int
1076 dbcs_char2bytes(c, buf)
1077 int c;
1078 char_u *buf;
1080 if (c >= 0x100)
1082 buf[0] = (unsigned)c >> 8;
1083 buf[1] = c;
1084 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1085 * character anyway. */
1086 if (buf[1] == NUL)
1087 buf[1] = '\n';
1088 return 2;
1090 buf[0] = c;
1091 return 1;
1095 * mb_ptr2len() function pointer.
1096 * Get byte length of character at "*p" but stop at a NUL.
1097 * For UTF-8 this includes following composing characters.
1098 * Returns 0 when *p is NUL.
1101 latin_ptr2len(p)
1102 char_u *p;
1104 return MB_BYTE2LEN(*p);
1107 static int
1108 dbcs_ptr2len(p)
1109 char_u *p;
1111 int len;
1113 /* Check if second byte is not missing. */
1114 len = MB_BYTE2LEN(*p);
1115 if (len == 2 && p[1] == NUL)
1116 len = 1;
1117 return len;
1121 * mb_ptr2len_len() function pointer.
1122 * Like mb_ptr2len(), but limit to read "size" bytes.
1123 * Returns 0 for an empty string.
1124 * Returns 1 for an illegal char or an incomplete byte sequence.
1127 latin_ptr2len_len(p, size)
1128 char_u *p;
1129 int size;
1131 if (size < 1 || *p == NUL)
1132 return 0;
1133 return 1;
1136 static int
1137 dbcs_ptr2len_len(p, size)
1138 char_u *p;
1139 int size;
1141 int len;
1143 if (size < 1 || *p == NUL)
1144 return 0;
1145 if (size == 1)
1146 return 1;
1147 /* Check that second byte is not missing. */
1148 len = MB_BYTE2LEN(*p);
1149 if (len == 2 && p[1] == NUL)
1150 len = 1;
1151 return len;
1154 struct interval
1156 long first;
1157 long last;
1159 static int intable __ARGS((struct interval *table, size_t size, int c));
1162 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1164 static int
1165 intable(table, size, c)
1166 struct interval *table;
1167 size_t size;
1168 int c;
1170 int mid, bot, top;
1172 /* first quick check for Latin1 etc. characters */
1173 if (c < table[0].first)
1174 return FALSE;
1176 /* binary search in table */
1177 bot = 0;
1178 top = (int)(size / sizeof(struct interval) - 1);
1179 while (top >= bot)
1181 mid = (bot + top) / 2;
1182 if (table[mid].last < c)
1183 bot = mid + 1;
1184 else if (table[mid].first > c)
1185 top = mid - 1;
1186 else
1187 return TRUE;
1189 return FALSE;
1193 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1194 * Returns 4 or 6 for an unprintable character.
1195 * Is only correct for characters >= 0x80.
1196 * When p_ambw is "double", return 2 for a character with East Asian Width
1197 * class 'A'(mbiguous).
1200 utf_char2cells(c)
1201 int c;
1203 /* Sorted list of non-overlapping intervals of East Asian double width
1204 * characters, generated with ../runtime/tools/unicode.vim. */
1205 static struct interval doublewidth[] =
1207 {0x1100, 0x115f},
1208 {0x11a3, 0x11a7},
1209 {0x11fa, 0x11ff},
1210 {0x2329, 0x232a},
1211 {0x2e80, 0x2e99},
1212 {0x2e9b, 0x2ef3},
1213 {0x2f00, 0x2fd5},
1214 {0x2ff0, 0x2ffb},
1215 {0x3000, 0x3029},
1216 {0x3030, 0x303e},
1217 {0x3041, 0x3096},
1218 {0x309b, 0x30ff},
1219 {0x3105, 0x312d},
1220 {0x3131, 0x318e},
1221 {0x3190, 0x31b7},
1222 {0x31c0, 0x31e3},
1223 {0x31f0, 0x321e},
1224 {0x3220, 0x3247},
1225 {0x3250, 0x32fe},
1226 {0x3300, 0x4dbf},
1227 {0x4e00, 0xa48c},
1228 {0xa490, 0xa4c6},
1229 {0xa960, 0xa97c},
1230 {0xac00, 0xd7a3},
1231 {0xd7b0, 0xd7c6},
1232 {0xd7cb, 0xd7fb},
1233 {0xf900, 0xfaff},
1234 {0xfe10, 0xfe19},
1235 {0xfe30, 0xfe52},
1236 {0xfe54, 0xfe66},
1237 {0xfe68, 0xfe6b},
1238 {0xff01, 0xff60},
1239 {0xffe0, 0xffe6},
1240 {0x1f200, 0x1f200},
1241 {0x1f210, 0x1f231},
1242 {0x1f240, 0x1f248},
1243 {0x20000, 0x2fffd},
1244 {0x30000, 0x3fffd}
1246 /* Sorted list of non-overlapping intervals of East Asian Ambiguous
1247 * characters, generated with ../runtime/tools/unicode.vim. */
1248 static struct interval ambiguous[] =
1250 {0x00a1, 0x00a1},
1251 {0x00a4, 0x00a4},
1252 {0x00a7, 0x00a8},
1253 {0x00aa, 0x00aa},
1254 {0x00ad, 0x00ae},
1255 {0x00b0, 0x00b4},
1256 {0x00b6, 0x00ba},
1257 {0x00bc, 0x00bf},
1258 {0x00c6, 0x00c6},
1259 {0x00d0, 0x00d0},
1260 {0x00d7, 0x00d8},
1261 {0x00de, 0x00e1},
1262 {0x00e6, 0x00e6},
1263 {0x00e8, 0x00ea},
1264 {0x00ec, 0x00ed},
1265 {0x00f0, 0x00f0},
1266 {0x00f2, 0x00f3},
1267 {0x00f7, 0x00fa},
1268 {0x00fc, 0x00fc},
1269 {0x00fe, 0x00fe},
1270 {0x0101, 0x0101},
1271 {0x0111, 0x0111},
1272 {0x0113, 0x0113},
1273 {0x011b, 0x011b},
1274 {0x0126, 0x0127},
1275 {0x012b, 0x012b},
1276 {0x0131, 0x0133},
1277 {0x0138, 0x0138},
1278 {0x013f, 0x0142},
1279 {0x0144, 0x0144},
1280 {0x0148, 0x014b},
1281 {0x014d, 0x014d},
1282 {0x0152, 0x0153},
1283 {0x0166, 0x0167},
1284 {0x016b, 0x016b},
1285 {0x01ce, 0x01ce},
1286 {0x01d0, 0x01d0},
1287 {0x01d2, 0x01d2},
1288 {0x01d4, 0x01d4},
1289 {0x01d6, 0x01d6},
1290 {0x01d8, 0x01d8},
1291 {0x01da, 0x01da},
1292 {0x01dc, 0x01dc},
1293 {0x0251, 0x0251},
1294 {0x0261, 0x0261},
1295 {0x02c4, 0x02c4},
1296 {0x02c7, 0x02c7},
1297 {0x02c9, 0x02cb},
1298 {0x02cd, 0x02cd},
1299 {0x02d0, 0x02d0},
1300 {0x02d8, 0x02db},
1301 {0x02dd, 0x02dd},
1302 {0x02df, 0x02df},
1303 {0x0391, 0x03a1},
1304 {0x03a3, 0x03a9},
1305 {0x03b1, 0x03c1},
1306 {0x03c3, 0x03c9},
1307 {0x0401, 0x0401},
1308 {0x0410, 0x044f},
1309 {0x0451, 0x0451},
1310 {0x2010, 0x2010},
1311 {0x2013, 0x2016},
1312 {0x2018, 0x2019},
1313 {0x201c, 0x201d},
1314 {0x2020, 0x2022},
1315 {0x2024, 0x2027},
1316 {0x2030, 0x2030},
1317 {0x2032, 0x2033},
1318 {0x2035, 0x2035},
1319 {0x203b, 0x203b},
1320 {0x203e, 0x203e},
1321 {0x2074, 0x2074},
1322 {0x207f, 0x207f},
1323 {0x2081, 0x2084},
1324 {0x20ac, 0x20ac},
1325 {0x2103, 0x2103},
1326 {0x2105, 0x2105},
1327 {0x2109, 0x2109},
1328 {0x2113, 0x2113},
1329 {0x2116, 0x2116},
1330 {0x2121, 0x2122},
1331 {0x2126, 0x2126},
1332 {0x212b, 0x212b},
1333 {0x2153, 0x2154},
1334 {0x215b, 0x215e},
1335 {0x2160, 0x216b},
1336 {0x2170, 0x2179},
1337 {0x2189, 0x2189},
1338 {0x2190, 0x2199},
1339 {0x21b8, 0x21b9},
1340 {0x21d2, 0x21d2},
1341 {0x21d4, 0x21d4},
1342 {0x21e7, 0x21e7},
1343 {0x2200, 0x2200},
1344 {0x2202, 0x2203},
1345 {0x2207, 0x2208},
1346 {0x220b, 0x220b},
1347 {0x220f, 0x220f},
1348 {0x2211, 0x2211},
1349 {0x2215, 0x2215},
1350 {0x221a, 0x221a},
1351 {0x221d, 0x2220},
1352 {0x2223, 0x2223},
1353 {0x2225, 0x2225},
1354 {0x2227, 0x222c},
1355 {0x222e, 0x222e},
1356 {0x2234, 0x2237},
1357 {0x223c, 0x223d},
1358 {0x2248, 0x2248},
1359 {0x224c, 0x224c},
1360 {0x2252, 0x2252},
1361 {0x2260, 0x2261},
1362 {0x2264, 0x2267},
1363 {0x226a, 0x226b},
1364 {0x226e, 0x226f},
1365 {0x2282, 0x2283},
1366 {0x2286, 0x2287},
1367 {0x2295, 0x2295},
1368 {0x2299, 0x2299},
1369 {0x22a5, 0x22a5},
1370 {0x22bf, 0x22bf},
1371 {0x2312, 0x2312},
1372 {0x2460, 0x24e9},
1373 {0x24eb, 0x254b},
1374 {0x2550, 0x2573},
1375 {0x2580, 0x258f},
1376 {0x2592, 0x2595},
1377 {0x25a0, 0x25a1},
1378 {0x25a3, 0x25a9},
1379 {0x25b2, 0x25b3},
1380 {0x25b6, 0x25b7},
1381 {0x25bc, 0x25bd},
1382 {0x25c0, 0x25c1},
1383 {0x25c6, 0x25c8},
1384 {0x25cb, 0x25cb},
1385 {0x25ce, 0x25d1},
1386 {0x25e2, 0x25e5},
1387 {0x25ef, 0x25ef},
1388 {0x2605, 0x2606},
1389 {0x2609, 0x2609},
1390 {0x260e, 0x260f},
1391 {0x2614, 0x2615},
1392 {0x261c, 0x261c},
1393 {0x261e, 0x261e},
1394 {0x2640, 0x2640},
1395 {0x2642, 0x2642},
1396 {0x2660, 0x2661},
1397 {0x2663, 0x2665},
1398 {0x2667, 0x266a},
1399 {0x266c, 0x266d},
1400 {0x266f, 0x266f},
1401 {0x269e, 0x269f},
1402 {0x26be, 0x26bf},
1403 {0x26c4, 0x26cd},
1404 {0x26cf, 0x26e1},
1405 {0x26e3, 0x26e3},
1406 {0x26e8, 0x26ff},
1407 {0x273d, 0x273d},
1408 {0x2757, 0x2757},
1409 {0x2776, 0x277f},
1410 {0x2b55, 0x2b59},
1411 {0x3248, 0x324f},
1412 {0xe000, 0xf8ff},
1413 {0xfffd, 0xfffd},
1414 {0x1f100, 0x1f10a},
1415 {0x1f110, 0x1f12d},
1416 {0x1f131, 0x1f131},
1417 {0x1f13d, 0x1f13d},
1418 {0x1f13f, 0x1f13f},
1419 {0x1f142, 0x1f142},
1420 {0x1f146, 0x1f146},
1421 {0x1f14a, 0x1f14e},
1422 {0x1f157, 0x1f157},
1423 {0x1f15f, 0x1f15f},
1424 {0x1f179, 0x1f179},
1425 {0x1f17b, 0x1f17c},
1426 {0x1f17f, 0x1f17f},
1427 {0x1f18a, 0x1f18d},
1428 {0x1f190, 0x1f190},
1429 {0xf0000, 0xffffd},
1430 {0x100000, 0x10fffd}
1433 if (c >= 0x100)
1435 #ifdef USE_WCHAR_FUNCTIONS
1437 * Assume the library function wcwidth() works better than our own
1438 * stuff. It should return 1 for ambiguous width chars!
1440 int n = wcwidth(c);
1442 if (n < 0)
1443 return 6; /* unprintable, displays <xxxx> */
1444 if (n > 1)
1445 return n;
1446 #else
1447 if (!utf_printable(c))
1448 return 6; /* unprintable, displays <xxxx> */
1449 if (intable(doublewidth, sizeof(doublewidth), c))
1450 return 2;
1451 #endif
1454 /* Characters below 0x100 are influenced by 'isprint' option */
1455 else if (c >= 0x80 && !vim_isprintc(c))
1456 return 4; /* unprintable, displays <xx> */
1458 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1459 return 2;
1461 return 1;
1465 * mb_ptr2cells() function pointer.
1466 * Return the number of display cells character at "*p" occupies.
1467 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1470 latin_ptr2cells(p)
1471 char_u *p UNUSED;
1473 return 1;
1477 utf_ptr2cells(p)
1478 char_u *p;
1480 int c;
1482 /* Need to convert to a wide character. */
1483 if (*p >= 0x80)
1485 c = utf_ptr2char(p);
1486 /* An illegal byte is displayed as <xx>. */
1487 if (utf_ptr2len(p) == 1 || c == NUL)
1488 return 4;
1489 /* If the char is ASCII it must be an overlong sequence. */
1490 if (c < 0x80)
1491 return char2cells(c);
1492 return utf_char2cells(c);
1494 return 1;
1498 dbcs_ptr2cells(p)
1499 char_u *p;
1501 /* Number of cells is equal to number of bytes, except for euc-jp when
1502 * the first byte is 0x8e. */
1503 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1504 return 1;
1505 return MB_BYTE2LEN(*p);
1509 * mb_ptr2cells_len() function pointer.
1510 * Like mb_ptr2cells(), but limit string length to "size".
1511 * For an empty string or truncated character returns 1.
1514 latin_ptr2cells_len(p, size)
1515 char_u *p UNUSED;
1516 int size UNUSED;
1518 return 1;
1521 static int
1522 utf_ptr2cells_len(p, size)
1523 char_u *p;
1524 int size;
1526 int c;
1528 /* Need to convert to a wide character. */
1529 if (size > 0 && *p >= 0x80)
1531 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
1532 return 1; /* truncated */
1533 c = utf_ptr2char(p);
1534 /* An illegal byte is displayed as <xx>. */
1535 if (utf_ptr2len(p) == 1 || c == NUL)
1536 return 4;
1537 /* If the char is ASCII it must be an overlong sequence. */
1538 if (c < 0x80)
1539 return char2cells(c);
1540 return utf_char2cells(c);
1542 return 1;
1545 static int
1546 dbcs_ptr2cells_len(p, size)
1547 char_u *p;
1548 int size;
1550 /* Number of cells is equal to number of bytes, except for euc-jp when
1551 * the first byte is 0x8e. */
1552 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1553 return 1;
1554 return MB_BYTE2LEN(*p);
1558 * mb_char2cells() function pointer.
1559 * Return the number of display cells character "c" occupies.
1560 * Only takes care of multi-byte chars, not "^C" and such.
1563 latin_char2cells(c)
1564 int c UNUSED;
1566 return 1;
1569 static int
1570 dbcs_char2cells(c)
1571 int c;
1573 /* Number of cells is equal to number of bytes, except for euc-jp when
1574 * the first byte is 0x8e. */
1575 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1576 return 1;
1577 /* use the first byte */
1578 return MB_BYTE2LEN((unsigned)c >> 8);
1582 * mb_off2cells() function pointer.
1583 * Return number of display cells for char at ScreenLines[off].
1584 * We make sure that the offset used is less than "max_off".
1587 latin_off2cells(off, max_off)
1588 unsigned off UNUSED;
1589 unsigned max_off UNUSED;
1591 return 1;
1595 dbcs_off2cells(off, max_off)
1596 unsigned off;
1597 unsigned max_off;
1599 /* never check beyond end of the line */
1600 if (off >= max_off)
1601 return 1;
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 && ScreenLines[off] == 0x8e)
1606 return 1;
1607 return MB_BYTE2LEN(ScreenLines[off]);
1611 utf_off2cells(off, max_off)
1612 unsigned off;
1613 unsigned max_off;
1615 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
1619 * mb_ptr2char() function pointer.
1620 * Convert a byte sequence into a character.
1623 latin_ptr2char(p)
1624 char_u *p;
1626 return *p;
1629 static int
1630 dbcs_ptr2char(p)
1631 char_u *p;
1633 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1634 return (p[0] << 8) + p[1];
1635 return *p;
1639 * Convert a UTF-8 byte sequence to a wide character.
1640 * If the sequence is illegal or truncated by a NUL the first byte is
1641 * returned.
1642 * Does not include composing characters, of course.
1645 utf_ptr2char(p)
1646 char_u *p;
1648 int len;
1650 if (p[0] < 0x80) /* be quick for ASCII */
1651 return p[0];
1653 len = utf8len_tab_zero[p[0]];
1654 if (len > 1 && (p[1] & 0xc0) == 0x80)
1656 if (len == 2)
1657 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1658 if ((p[2] & 0xc0) == 0x80)
1660 if (len == 3)
1661 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1662 + (p[2] & 0x3f);
1663 if ((p[3] & 0xc0) == 0x80)
1665 if (len == 4)
1666 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1667 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1668 if ((p[4] & 0xc0) == 0x80)
1670 if (len == 5)
1671 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1672 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1673 + (p[4] & 0x3f);
1674 if ((p[5] & 0xc0) == 0x80 && len == 6)
1675 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1676 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1677 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1682 /* Illegal value, just return the first byte */
1683 return p[0];
1687 * Get character at **pp and advance *pp to the next character.
1688 * Note: composing characters are skipped!
1691 mb_ptr2char_adv(pp)
1692 char_u **pp;
1694 int c;
1696 c = (*mb_ptr2char)(*pp);
1697 *pp += (*mb_ptr2len)(*pp);
1698 return c;
1702 * Get character at **pp and advance *pp to the next character.
1703 * Note: composing characters are returned as separate characters.
1706 mb_cptr2char_adv(pp)
1707 char_u **pp;
1709 int c;
1711 c = (*mb_ptr2char)(*pp);
1712 if (enc_utf8)
1713 *pp += utf_ptr2len(*pp);
1714 else
1715 *pp += (*mb_ptr2len)(*pp);
1716 return c;
1719 #if defined(FEAT_ARABIC) || defined(PROTO)
1721 * Check whether we are dealing with Arabic combining characters.
1722 * Note: these are NOT really composing characters!
1725 arabic_combine(one, two)
1726 int one; /* first character */
1727 int two; /* character just after "one" */
1729 if (one == a_LAM)
1730 return arabic_maycombine(two);
1731 return FALSE;
1735 * Check whether we are dealing with a character that could be regarded as an
1736 * Arabic combining character, need to check the character before this.
1739 arabic_maycombine(two)
1740 int two;
1742 if (p_arshape && !p_tbidi)
1743 return (two == a_ALEF_MADDA
1744 || two == a_ALEF_HAMZA_ABOVE
1745 || two == a_ALEF_HAMZA_BELOW
1746 || two == a_ALEF);
1747 return FALSE;
1751 * Check if the character pointed to by "p2" is a composing character when it
1752 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1753 * behaves like a composing character.
1756 utf_composinglike(p1, p2)
1757 char_u *p1;
1758 char_u *p2;
1760 int c2;
1762 c2 = utf_ptr2char(p2);
1763 if (utf_iscomposing(c2))
1764 return TRUE;
1765 if (!arabic_maycombine(c2))
1766 return FALSE;
1767 return arabic_combine(utf_ptr2char(p1), c2);
1769 #endif
1772 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1773 * composing characters.
1776 utfc_ptr2char(p, pcc)
1777 char_u *p;
1778 int *pcc; /* return: composing chars, last one is 0 */
1780 int len;
1781 int c;
1782 int cc;
1783 int i = 0;
1785 c = utf_ptr2char(p);
1786 len = utf_ptr2len(p);
1788 /* Only accept a composing char when the first char isn't illegal. */
1789 if ((len > 1 || *p < 0x80)
1790 && p[len] >= 0x80
1791 && UTF_COMPOSINGLIKE(p, p + len))
1793 cc = utf_ptr2char(p + len);
1794 for (;;)
1796 pcc[i++] = cc;
1797 if (i == MAX_MCO)
1798 break;
1799 len += utf_ptr2len(p + len);
1800 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1801 break;
1805 if (i < MAX_MCO) /* last composing char must be 0 */
1806 pcc[i] = 0;
1808 return c;
1812 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1813 * composing characters. Use no more than p[maxlen].
1816 utfc_ptr2char_len(p, pcc, maxlen)
1817 char_u *p;
1818 int *pcc; /* return: composing chars, last one is 0 */
1819 int maxlen;
1821 int len;
1822 int c;
1823 int cc;
1824 int i = 0;
1826 c = utf_ptr2char(p);
1827 len = utf_ptr2len_len(p, maxlen);
1828 /* Only accept a composing char when the first char isn't illegal. */
1829 if ((len > 1 || *p < 0x80)
1830 && len < maxlen
1831 && p[len] >= 0x80
1832 && UTF_COMPOSINGLIKE(p, p + len))
1834 cc = utf_ptr2char(p + len);
1835 for (;;)
1837 pcc[i++] = cc;
1838 if (i == MAX_MCO)
1839 break;
1840 len += utf_ptr2len_len(p + len, maxlen - len);
1841 if (len >= maxlen
1842 || p[len] < 0x80
1843 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1844 break;
1848 if (i < MAX_MCO) /* last composing char must be 0 */
1849 pcc[i] = 0;
1851 return c;
1855 * Convert the character at screen position "off" to a sequence of bytes.
1856 * Includes the composing characters.
1857 * "buf" must at least have the length MB_MAXBYTES.
1858 * Returns the produced number of bytes.
1861 utfc_char2bytes(off, buf)
1862 int off;
1863 char_u *buf;
1865 int len;
1866 int i;
1868 len = utf_char2bytes(ScreenLinesUC[off], buf);
1869 for (i = 0; i < Screen_mco; ++i)
1871 if (ScreenLinesC[i][off] == 0)
1872 break;
1873 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
1875 return len;
1879 * Get the length of a UTF-8 byte sequence, not including any following
1880 * composing characters.
1881 * Returns 0 for "".
1882 * Returns 1 for an illegal byte sequence.
1885 utf_ptr2len(p)
1886 char_u *p;
1888 int len;
1889 int i;
1891 if (*p == NUL)
1892 return 0;
1893 len = utf8len_tab[*p];
1894 for (i = 1; i < len; ++i)
1895 if ((p[i] & 0xc0) != 0x80)
1896 return 1;
1897 return len;
1901 * Return length of UTF-8 character, obtained from the first byte.
1902 * "b" must be between 0 and 255!
1903 * Returns 1 for an invalid first byte value.
1906 utf_byte2len(b)
1907 int b;
1909 return utf8len_tab[b];
1913 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1914 * following composing characters.
1915 * Returns 1 for "".
1916 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
1917 * Returns number > "size" for an incomplete byte sequence.
1918 * Never returns zero.
1921 utf_ptr2len_len(p, size)
1922 char_u *p;
1923 int size;
1925 int len;
1926 int i;
1927 int m;
1929 len = utf8len_tab[*p];
1930 if (len == 1)
1931 return 1; /* NUL, ascii or illegal lead byte */
1932 if (len > size)
1933 m = size; /* incomplete byte sequence. */
1934 else
1935 m = len;
1936 for (i = 1; i < m; ++i)
1937 if ((p[i] & 0xc0) != 0x80)
1938 return 1;
1939 return len;
1943 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1944 * This includes following composing characters.
1947 utfc_ptr2len(p)
1948 char_u *p;
1950 int len;
1951 int b0 = *p;
1952 #ifdef FEAT_ARABIC
1953 int prevlen;
1954 #endif
1956 if (b0 == NUL)
1957 return 0;
1958 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
1959 return 1;
1961 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1962 len = utf_ptr2len(p);
1964 /* Check for illegal byte. */
1965 if (len == 1 && b0 >= 0x80)
1966 return 1;
1969 * Check for composing characters. We can handle only the first six, but
1970 * skip all of them (otherwise the cursor would get stuck).
1972 #ifdef FEAT_ARABIC
1973 prevlen = 0;
1974 #endif
1975 for (;;)
1977 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1978 return len;
1980 /* Skip over composing char */
1981 #ifdef FEAT_ARABIC
1982 prevlen = len;
1983 #endif
1984 len += utf_ptr2len(p + len);
1989 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1990 * takes. This includes following composing characters.
1991 * Returns 0 for an empty string.
1992 * Returns 1 for an illegal char or an incomplete byte sequence.
1995 utfc_ptr2len_len(p, size)
1996 char_u *p;
1997 int size;
1999 int len;
2000 #ifdef FEAT_ARABIC
2001 int prevlen;
2002 #endif
2004 if (size < 1 || *p == NUL)
2005 return 0;
2006 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
2007 return 1;
2009 /* Skip over first UTF-8 char, stopping at a NUL byte. */
2010 len = utf_ptr2len_len(p, size);
2012 /* Check for illegal byte and incomplete byte sequence. */
2013 if ((len == 1 && p[0] >= 0x80) || len > size)
2014 return 1;
2017 * Check for composing characters. We can handle only the first six, but
2018 * skip all of them (otherwise the cursor would get stuck).
2020 #ifdef FEAT_ARABIC
2021 prevlen = 0;
2022 #endif
2023 while (len < size)
2025 int len_next_char;
2027 if (p[len] < 0x80)
2028 break;
2031 * Next character length should not go beyond size to ensure that
2032 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2034 len_next_char = utf_ptr2len_len(p + len, size - len);
2035 if (len_next_char > size - len)
2036 break;
2038 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
2039 break;
2041 /* Skip over composing char */
2042 #ifdef FEAT_ARABIC
2043 prevlen = len;
2044 #endif
2045 len += len_next_char;
2047 return len;
2051 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2052 * This does not include composing characters.
2055 utf_char2len(c)
2056 int c;
2058 if (c < 0x80)
2059 return 1;
2060 if (c < 0x800)
2061 return 2;
2062 if (c < 0x10000)
2063 return 3;
2064 if (c < 0x200000)
2065 return 4;
2066 if (c < 0x4000000)
2067 return 5;
2068 return 6;
2072 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2073 * Returns the number of bytes.
2074 * This does not include composing characters.
2077 utf_char2bytes(c, buf)
2078 int c;
2079 char_u *buf;
2081 if (c < 0x80) /* 7 bits */
2083 buf[0] = c;
2084 return 1;
2086 if (c < 0x800) /* 11 bits */
2088 buf[0] = 0xc0 + ((unsigned)c >> 6);
2089 buf[1] = 0x80 + (c & 0x3f);
2090 return 2;
2092 if (c < 0x10000) /* 16 bits */
2094 buf[0] = 0xe0 + ((unsigned)c >> 12);
2095 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2096 buf[2] = 0x80 + (c & 0x3f);
2097 return 3;
2099 if (c < 0x200000) /* 21 bits */
2101 buf[0] = 0xf0 + ((unsigned)c >> 18);
2102 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2103 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2104 buf[3] = 0x80 + (c & 0x3f);
2105 return 4;
2107 if (c < 0x4000000) /* 26 bits */
2109 buf[0] = 0xf8 + ((unsigned)c >> 24);
2110 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2111 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2112 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2113 buf[4] = 0x80 + (c & 0x3f);
2114 return 5;
2116 /* 31 bits */
2117 buf[0] = 0xfc + ((unsigned)c >> 30);
2118 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2119 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2120 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2121 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2122 buf[5] = 0x80 + (c & 0x3f);
2123 return 6;
2127 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2128 * drawn on top of the preceding character.
2129 * Based on code from Markus Kuhn.
2132 utf_iscomposing(c)
2133 int c;
2135 /* Sorted list of non-overlapping intervals.
2136 * Generated by ../runtime/tools/unicode.vim. */
2137 static struct interval combining[] =
2139 {0x0300, 0x036f},
2140 {0x0483, 0x0489},
2141 {0x0591, 0x05bd},
2142 {0x05bf, 0x05bf},
2143 {0x05c1, 0x05c2},
2144 {0x05c4, 0x05c5},
2145 {0x05c7, 0x05c7},
2146 {0x0610, 0x061a},
2147 {0x064b, 0x065e},
2148 {0x0670, 0x0670},
2149 {0x06d6, 0x06dc},
2150 {0x06de, 0x06e4},
2151 {0x06e7, 0x06e8},
2152 {0x06ea, 0x06ed},
2153 {0x0711, 0x0711},
2154 {0x0730, 0x074a},
2155 {0x07a6, 0x07b0},
2156 {0x07eb, 0x07f3},
2157 {0x0816, 0x0819},
2158 {0x081b, 0x0823},
2159 {0x0825, 0x0827},
2160 {0x0829, 0x082d},
2161 {0x0900, 0x0903},
2162 {0x093c, 0x093c},
2163 {0x093e, 0x094e},
2164 {0x0951, 0x0955},
2165 {0x0962, 0x0963},
2166 {0x0981, 0x0983},
2167 {0x09bc, 0x09bc},
2168 {0x09be, 0x09c4},
2169 {0x09c7, 0x09c8},
2170 {0x09cb, 0x09cd},
2171 {0x09d7, 0x09d7},
2172 {0x09e2, 0x09e3},
2173 {0x0a01, 0x0a03},
2174 {0x0a3c, 0x0a3c},
2175 {0x0a3e, 0x0a42},
2176 {0x0a47, 0x0a48},
2177 {0x0a4b, 0x0a4d},
2178 {0x0a51, 0x0a51},
2179 {0x0a70, 0x0a71},
2180 {0x0a75, 0x0a75},
2181 {0x0a81, 0x0a83},
2182 {0x0abc, 0x0abc},
2183 {0x0abe, 0x0ac5},
2184 {0x0ac7, 0x0ac9},
2185 {0x0acb, 0x0acd},
2186 {0x0ae2, 0x0ae3},
2187 {0x0b01, 0x0b03},
2188 {0x0b3c, 0x0b3c},
2189 {0x0b3e, 0x0b44},
2190 {0x0b47, 0x0b48},
2191 {0x0b4b, 0x0b4d},
2192 {0x0b56, 0x0b57},
2193 {0x0b62, 0x0b63},
2194 {0x0b82, 0x0b82},
2195 {0x0bbe, 0x0bc2},
2196 {0x0bc6, 0x0bc8},
2197 {0x0bca, 0x0bcd},
2198 {0x0bd7, 0x0bd7},
2199 {0x0c01, 0x0c03},
2200 {0x0c3e, 0x0c44},
2201 {0x0c46, 0x0c48},
2202 {0x0c4a, 0x0c4d},
2203 {0x0c55, 0x0c56},
2204 {0x0c62, 0x0c63},
2205 {0x0c82, 0x0c83},
2206 {0x0cbc, 0x0cbc},
2207 {0x0cbe, 0x0cc4},
2208 {0x0cc6, 0x0cc8},
2209 {0x0cca, 0x0ccd},
2210 {0x0cd5, 0x0cd6},
2211 {0x0ce2, 0x0ce3},
2212 {0x0d02, 0x0d03},
2213 {0x0d3e, 0x0d44},
2214 {0x0d46, 0x0d48},
2215 {0x0d4a, 0x0d4d},
2216 {0x0d57, 0x0d57},
2217 {0x0d62, 0x0d63},
2218 {0x0d82, 0x0d83},
2219 {0x0dca, 0x0dca},
2220 {0x0dcf, 0x0dd4},
2221 {0x0dd6, 0x0dd6},
2222 {0x0dd8, 0x0ddf},
2223 {0x0df2, 0x0df3},
2224 {0x0e31, 0x0e31},
2225 {0x0e34, 0x0e3a},
2226 {0x0e47, 0x0e4e},
2227 {0x0eb1, 0x0eb1},
2228 {0x0eb4, 0x0eb9},
2229 {0x0ebb, 0x0ebc},
2230 {0x0ec8, 0x0ecd},
2231 {0x0f18, 0x0f19},
2232 {0x0f35, 0x0f35},
2233 {0x0f37, 0x0f37},
2234 {0x0f39, 0x0f39},
2235 {0x0f3e, 0x0f3f},
2236 {0x0f71, 0x0f84},
2237 {0x0f86, 0x0f87},
2238 {0x0f90, 0x0f97},
2239 {0x0f99, 0x0fbc},
2240 {0x0fc6, 0x0fc6},
2241 {0x102b, 0x103e},
2242 {0x1056, 0x1059},
2243 {0x105e, 0x1060},
2244 {0x1062, 0x1064},
2245 {0x1067, 0x106d},
2246 {0x1071, 0x1074},
2247 {0x1082, 0x108d},
2248 {0x108f, 0x108f},
2249 {0x109a, 0x109d},
2250 {0x135f, 0x135f},
2251 {0x1712, 0x1714},
2252 {0x1732, 0x1734},
2253 {0x1752, 0x1753},
2254 {0x1772, 0x1773},
2255 {0x17b6, 0x17d3},
2256 {0x17dd, 0x17dd},
2257 {0x180b, 0x180d},
2258 {0x18a9, 0x18a9},
2259 {0x1920, 0x192b},
2260 {0x1930, 0x193b},
2261 {0x19b0, 0x19c0},
2262 {0x19c8, 0x19c9},
2263 {0x1a17, 0x1a1b},
2264 {0x1a55, 0x1a5e},
2265 {0x1a60, 0x1a7c},
2266 {0x1a7f, 0x1a7f},
2267 {0x1b00, 0x1b04},
2268 {0x1b34, 0x1b44},
2269 {0x1b6b, 0x1b73},
2270 {0x1b80, 0x1b82},
2271 {0x1ba1, 0x1baa},
2272 {0x1c24, 0x1c37},
2273 {0x1cd0, 0x1cd2},
2274 {0x1cd4, 0x1ce8},
2275 {0x1ced, 0x1ced},
2276 {0x1cf2, 0x1cf2},
2277 {0x1dc0, 0x1de6},
2278 {0x1dfd, 0x1dff},
2279 {0x20d0, 0x20f0},
2280 {0x2cef, 0x2cf1},
2281 {0x2de0, 0x2dff},
2282 {0x302a, 0x302f},
2283 {0x3099, 0x309a},
2284 {0xa66f, 0xa672},
2285 {0xa67c, 0xa67d},
2286 {0xa6f0, 0xa6f1},
2287 {0xa802, 0xa802},
2288 {0xa806, 0xa806},
2289 {0xa80b, 0xa80b},
2290 {0xa823, 0xa827},
2291 {0xa880, 0xa881},
2292 {0xa8b4, 0xa8c4},
2293 {0xa8e0, 0xa8f1},
2294 {0xa926, 0xa92d},
2295 {0xa947, 0xa953},
2296 {0xa980, 0xa983},
2297 {0xa9b3, 0xa9c0},
2298 {0xaa29, 0xaa36},
2299 {0xaa43, 0xaa43},
2300 {0xaa4c, 0xaa4d},
2301 {0xaa7b, 0xaa7b},
2302 {0xaab0, 0xaab0},
2303 {0xaab2, 0xaab4},
2304 {0xaab7, 0xaab8},
2305 {0xaabe, 0xaabf},
2306 {0xaac1, 0xaac1},
2307 {0xabe3, 0xabea},
2308 {0xabec, 0xabed},
2309 {0xfb1e, 0xfb1e},
2310 {0xfe00, 0xfe0f},
2311 {0xfe20, 0xfe26},
2312 {0x101fd, 0x101fd},
2313 {0x10a01, 0x10a03},
2314 {0x10a05, 0x10a06},
2315 {0x10a0c, 0x10a0f},
2316 {0x10a38, 0x10a3a},
2317 {0x10a3f, 0x10a3f},
2318 {0x11080, 0x11082},
2319 {0x110b0, 0x110ba},
2320 {0x1d165, 0x1d169},
2321 {0x1d16d, 0x1d172},
2322 {0x1d17b, 0x1d182},
2323 {0x1d185, 0x1d18b},
2324 {0x1d1aa, 0x1d1ad},
2325 {0x1d242, 0x1d244},
2326 {0xe0100, 0xe01ef}
2329 return intable(combining, sizeof(combining), c);
2333 * Return TRUE for characters that can be displayed in a normal way.
2334 * Only for characters of 0x100 and above!
2337 utf_printable(c)
2338 int c;
2340 #ifdef USE_WCHAR_FUNCTIONS
2342 * Assume the iswprint() library function works better than our own stuff.
2344 return iswprint(c);
2345 #else
2346 /* Sorted list of non-overlapping intervals.
2347 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2348 static struct interval nonprint[] =
2350 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2351 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2352 {0xfffe, 0xffff}
2355 return !intable(nonprint, sizeof(nonprint), c);
2356 #endif
2360 * Get class of a Unicode character.
2361 * 0: white space
2362 * 1: punctuation
2363 * 2 or bigger: some class of word character.
2366 utf_class(c)
2367 int c;
2369 /* sorted list of non-overlapping intervals */
2370 static struct clinterval
2372 unsigned short first;
2373 unsigned short last;
2374 unsigned short class;
2375 } classes[] =
2377 {0x037e, 0x037e, 1}, /* Greek question mark */
2378 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2379 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2380 {0x0589, 0x0589, 1}, /* Armenian full stop */
2381 {0x05be, 0x05be, 1},
2382 {0x05c0, 0x05c0, 1},
2383 {0x05c3, 0x05c3, 1},
2384 {0x05f3, 0x05f4, 1},
2385 {0x060c, 0x060c, 1},
2386 {0x061b, 0x061b, 1},
2387 {0x061f, 0x061f, 1},
2388 {0x066a, 0x066d, 1},
2389 {0x06d4, 0x06d4, 1},
2390 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2391 {0x0964, 0x0965, 1},
2392 {0x0970, 0x0970, 1},
2393 {0x0df4, 0x0df4, 1},
2394 {0x0e4f, 0x0e4f, 1},
2395 {0x0e5a, 0x0e5b, 1},
2396 {0x0f04, 0x0f12, 1},
2397 {0x0f3a, 0x0f3d, 1},
2398 {0x0f85, 0x0f85, 1},
2399 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2400 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2401 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2402 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2403 {0x1680, 0x1680, 0},
2404 {0x169b, 0x169c, 1},
2405 {0x16eb, 0x16ed, 1},
2406 {0x1735, 0x1736, 1},
2407 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2408 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2409 {0x2000, 0x200b, 0}, /* spaces */
2410 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2411 {0x2028, 0x2029, 0},
2412 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2413 {0x202f, 0x202f, 0},
2414 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2415 {0x205f, 0x205f, 0},
2416 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2417 {0x2070, 0x207f, 0x2070}, /* superscript */
2418 {0x2080, 0x2094, 0x2080}, /* subscript */
2419 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2420 {0x2800, 0x28ff, 0x2800}, /* braille */
2421 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
2422 {0x29d8, 0x29db, 1},
2423 {0x29fc, 0x29fd, 1},
2424 {0x3000, 0x3000, 0}, /* ideographic space */
2425 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2426 {0x3030, 0x3030, 1},
2427 {0x303d, 0x303d, 1},
2428 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2429 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2430 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2431 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2432 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2433 {0xfd3e, 0xfd3f, 1},
2434 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2435 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2436 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2437 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2438 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
2440 int bot = 0;
2441 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2442 int mid;
2444 /* First quick check for Latin1 characters, use 'iskeyword'. */
2445 if (c < 0x100)
2447 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
2448 return 0; /* blank */
2449 if (vim_iswordc(c))
2450 return 2; /* word character */
2451 return 1; /* punctuation */
2454 /* binary search in table */
2455 while (top >= bot)
2457 mid = (bot + top) / 2;
2458 if (classes[mid].last < c)
2459 bot = mid + 1;
2460 else if (classes[mid].first > c)
2461 top = mid - 1;
2462 else
2463 return (int)classes[mid].class;
2466 /* most other characters are "word" characters */
2467 return 2;
2471 * Code for Unicode case-dependent operations. Based on notes in
2472 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2473 * This code uses simple case folding, not full case folding.
2474 * Last updated for Unicode 5.2.
2478 * The following tables are built by ../runtime/tools/unicode.vim.
2479 * They must be in numeric order, because we use binary search.
2480 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2481 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2482 * folded/upper/lower by adding 32.
2484 typedef struct
2486 int rangeStart;
2487 int rangeEnd;
2488 int step;
2489 int offset;
2490 } convertStruct;
2492 static convertStruct foldCase[] =
2494 {0x41,0x5a,1,32},
2495 {0xb5,0xb5,-1,775},
2496 {0xc0,0xd6,1,32},
2497 {0xd8,0xde,1,32},
2498 {0x100,0x12e,2,1},
2499 {0x132,0x136,2,1},
2500 {0x139,0x147,2,1},
2501 {0x14a,0x176,2,1},
2502 {0x178,0x178,-1,-121},
2503 {0x179,0x17d,2,1},
2504 {0x17f,0x17f,-1,-268},
2505 {0x181,0x181,-1,210},
2506 {0x182,0x184,2,1},
2507 {0x186,0x186,-1,206},
2508 {0x187,0x187,-1,1},
2509 {0x189,0x18a,1,205},
2510 {0x18b,0x18b,-1,1},
2511 {0x18e,0x18e,-1,79},
2512 {0x18f,0x18f,-1,202},
2513 {0x190,0x190,-1,203},
2514 {0x191,0x191,-1,1},
2515 {0x193,0x193,-1,205},
2516 {0x194,0x194,-1,207},
2517 {0x196,0x196,-1,211},
2518 {0x197,0x197,-1,209},
2519 {0x198,0x198,-1,1},
2520 {0x19c,0x19c,-1,211},
2521 {0x19d,0x19d,-1,213},
2522 {0x19f,0x19f,-1,214},
2523 {0x1a0,0x1a4,2,1},
2524 {0x1a6,0x1a6,-1,218},
2525 {0x1a7,0x1a7,-1,1},
2526 {0x1a9,0x1a9,-1,218},
2527 {0x1ac,0x1ac,-1,1},
2528 {0x1ae,0x1ae,-1,218},
2529 {0x1af,0x1af,-1,1},
2530 {0x1b1,0x1b2,1,217},
2531 {0x1b3,0x1b5,2,1},
2532 {0x1b7,0x1b7,-1,219},
2533 {0x1b8,0x1bc,4,1},
2534 {0x1c4,0x1c4,-1,2},
2535 {0x1c5,0x1c5,-1,1},
2536 {0x1c7,0x1c7,-1,2},
2537 {0x1c8,0x1c8,-1,1},
2538 {0x1ca,0x1ca,-1,2},
2539 {0x1cb,0x1db,2,1},
2540 {0x1de,0x1ee,2,1},
2541 {0x1f1,0x1f1,-1,2},
2542 {0x1f2,0x1f4,2,1},
2543 {0x1f6,0x1f6,-1,-97},
2544 {0x1f7,0x1f7,-1,-56},
2545 {0x1f8,0x21e,2,1},
2546 {0x220,0x220,-1,-130},
2547 {0x222,0x232,2,1},
2548 {0x23a,0x23a,-1,10795},
2549 {0x23b,0x23b,-1,1},
2550 {0x23d,0x23d,-1,-163},
2551 {0x23e,0x23e,-1,10792},
2552 {0x241,0x241,-1,1},
2553 {0x243,0x243,-1,-195},
2554 {0x244,0x244,-1,69},
2555 {0x245,0x245,-1,71},
2556 {0x246,0x24e,2,1},
2557 {0x345,0x345,-1,116},
2558 {0x370,0x372,2,1},
2559 {0x376,0x376,-1,1},
2560 {0x386,0x386,-1,38},
2561 {0x388,0x38a,1,37},
2562 {0x38c,0x38c,-1,64},
2563 {0x38e,0x38f,1,63},
2564 {0x391,0x3a1,1,32},
2565 {0x3a3,0x3ab,1,32},
2566 {0x3c2,0x3c2,-1,1},
2567 {0x3cf,0x3cf,-1,8},
2568 {0x3d0,0x3d0,-1,-30},
2569 {0x3d1,0x3d1,-1,-25},
2570 {0x3d5,0x3d5,-1,-15},
2571 {0x3d6,0x3d6,-1,-22},
2572 {0x3d8,0x3ee,2,1},
2573 {0x3f0,0x3f0,-1,-54},
2574 {0x3f1,0x3f1,-1,-48},
2575 {0x3f4,0x3f4,-1,-60},
2576 {0x3f5,0x3f5,-1,-64},
2577 {0x3f7,0x3f7,-1,1},
2578 {0x3f9,0x3f9,-1,-7},
2579 {0x3fa,0x3fa,-1,1},
2580 {0x3fd,0x3ff,1,-130},
2581 {0x400,0x40f,1,80},
2582 {0x410,0x42f,1,32},
2583 {0x460,0x480,2,1},
2584 {0x48a,0x4be,2,1},
2585 {0x4c0,0x4c0,-1,15},
2586 {0x4c1,0x4cd,2,1},
2587 {0x4d0,0x524,2,1},
2588 {0x531,0x556,1,48},
2589 {0x10a0,0x10c5,1,7264},
2590 {0x1e00,0x1e94,2,1},
2591 {0x1e9b,0x1e9b,-1,-58},
2592 {0x1e9e,0x1e9e,-1,-7615},
2593 {0x1ea0,0x1efe,2,1},
2594 {0x1f08,0x1f0f,1,-8},
2595 {0x1f18,0x1f1d,1,-8},
2596 {0x1f28,0x1f2f,1,-8},
2597 {0x1f38,0x1f3f,1,-8},
2598 {0x1f48,0x1f4d,1,-8},
2599 {0x1f59,0x1f5f,2,-8},
2600 {0x1f68,0x1f6f,1,-8},
2601 {0x1f88,0x1f8f,1,-8},
2602 {0x1f98,0x1f9f,1,-8},
2603 {0x1fa8,0x1faf,1,-8},
2604 {0x1fb8,0x1fb9,1,-8},
2605 {0x1fba,0x1fbb,1,-74},
2606 {0x1fbc,0x1fbc,-1,-9},
2607 {0x1fbe,0x1fbe,-1,-7173},
2608 {0x1fc8,0x1fcb,1,-86},
2609 {0x1fcc,0x1fcc,-1,-9},
2610 {0x1fd8,0x1fd9,1,-8},
2611 {0x1fda,0x1fdb,1,-100},
2612 {0x1fe8,0x1fe9,1,-8},
2613 {0x1fea,0x1feb,1,-112},
2614 {0x1fec,0x1fec,-1,-7},
2615 {0x1ff8,0x1ff9,1,-128},
2616 {0x1ffa,0x1ffb,1,-126},
2617 {0x1ffc,0x1ffc,-1,-9},
2618 {0x2126,0x2126,-1,-7517},
2619 {0x212a,0x212a,-1,-8383},
2620 {0x212b,0x212b,-1,-8262},
2621 {0x2132,0x2132,-1,28},
2622 {0x2160,0x216f,1,16},
2623 {0x2183,0x2183,-1,1},
2624 {0x24b6,0x24cf,1,26},
2625 {0x2c00,0x2c2e,1,48},
2626 {0x2c60,0x2c60,-1,1},
2627 {0x2c62,0x2c62,-1,-10743},
2628 {0x2c63,0x2c63,-1,-3814},
2629 {0x2c64,0x2c64,-1,-10727},
2630 {0x2c67,0x2c6b,2,1},
2631 {0x2c6d,0x2c6d,-1,-10780},
2632 {0x2c6e,0x2c6e,-1,-10749},
2633 {0x2c6f,0x2c6f,-1,-10783},
2634 {0x2c70,0x2c70,-1,-10782},
2635 {0x2c72,0x2c75,3,1},
2636 {0x2c7e,0x2c7f,1,-10815},
2637 {0x2c80,0x2ce2,2,1},
2638 {0x2ceb,0x2ced,2,1},
2639 {0xa640,0xa65e,2,1},
2640 {0xa662,0xa66c,2,1},
2641 {0xa680,0xa696,2,1},
2642 {0xa722,0xa72e,2,1},
2643 {0xa732,0xa76e,2,1},
2644 {0xa779,0xa77b,2,1},
2645 {0xa77d,0xa77d,-1,-35332},
2646 {0xa77e,0xa786,2,1},
2647 {0xa78b,0xa78b,-1,1},
2648 {0xff21,0xff3a,1,32},
2649 {0x10400,0x10427,1,40}
2652 static int utf_convert(int a, convertStruct table[], int tableSize);
2655 * Generic conversion function for case operations.
2656 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2657 * the given conversion "table". Uses binary search on "table".
2659 static int
2660 utf_convert(a, table, tableSize)
2661 int a;
2662 convertStruct table[];
2663 int tableSize;
2665 int start, mid, end; /* indices into table */
2667 start = 0;
2668 end = tableSize / sizeof(convertStruct);
2669 while (start < end)
2671 /* need to search further */
2672 mid = (end + start) /2;
2673 if (table[mid].rangeEnd < a)
2674 start = mid + 1;
2675 else
2676 end = mid;
2678 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
2679 && (a - table[start].rangeStart) % table[start].step == 0)
2680 return (a + table[start].offset);
2681 else
2682 return a;
2686 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2687 * simple case folding.
2690 utf_fold(a)
2691 int a;
2693 return utf_convert(a, foldCase, sizeof(foldCase));
2696 static convertStruct toLower[] =
2698 {0x41,0x5a,1,32},
2699 {0xc0,0xd6,1,32},
2700 {0xd8,0xde,1,32},
2701 {0x100,0x12e,2,1},
2702 {0x130,0x130,-1,-199},
2703 {0x132,0x136,2,1},
2704 {0x139,0x147,2,1},
2705 {0x14a,0x176,2,1},
2706 {0x178,0x178,-1,-121},
2707 {0x179,0x17d,2,1},
2708 {0x181,0x181,-1,210},
2709 {0x182,0x184,2,1},
2710 {0x186,0x186,-1,206},
2711 {0x187,0x187,-1,1},
2712 {0x189,0x18a,1,205},
2713 {0x18b,0x18b,-1,1},
2714 {0x18e,0x18e,-1,79},
2715 {0x18f,0x18f,-1,202},
2716 {0x190,0x190,-1,203},
2717 {0x191,0x191,-1,1},
2718 {0x193,0x193,-1,205},
2719 {0x194,0x194,-1,207},
2720 {0x196,0x196,-1,211},
2721 {0x197,0x197,-1,209},
2722 {0x198,0x198,-1,1},
2723 {0x19c,0x19c,-1,211},
2724 {0x19d,0x19d,-1,213},
2725 {0x19f,0x19f,-1,214},
2726 {0x1a0,0x1a4,2,1},
2727 {0x1a6,0x1a6,-1,218},
2728 {0x1a7,0x1a7,-1,1},
2729 {0x1a9,0x1a9,-1,218},
2730 {0x1ac,0x1ac,-1,1},
2731 {0x1ae,0x1ae,-1,218},
2732 {0x1af,0x1af,-1,1},
2733 {0x1b1,0x1b2,1,217},
2734 {0x1b3,0x1b5,2,1},
2735 {0x1b7,0x1b7,-1,219},
2736 {0x1b8,0x1bc,4,1},
2737 {0x1c4,0x1c4,-1,2},
2738 {0x1c5,0x1c5,-1,1},
2739 {0x1c7,0x1c7,-1,2},
2740 {0x1c8,0x1c8,-1,1},
2741 {0x1ca,0x1ca,-1,2},
2742 {0x1cb,0x1db,2,1},
2743 {0x1de,0x1ee,2,1},
2744 {0x1f1,0x1f1,-1,2},
2745 {0x1f2,0x1f4,2,1},
2746 {0x1f6,0x1f6,-1,-97},
2747 {0x1f7,0x1f7,-1,-56},
2748 {0x1f8,0x21e,2,1},
2749 {0x220,0x220,-1,-130},
2750 {0x222,0x232,2,1},
2751 {0x23a,0x23a,-1,10795},
2752 {0x23b,0x23b,-1,1},
2753 {0x23d,0x23d,-1,-163},
2754 {0x23e,0x23e,-1,10792},
2755 {0x241,0x241,-1,1},
2756 {0x243,0x243,-1,-195},
2757 {0x244,0x244,-1,69},
2758 {0x245,0x245,-1,71},
2759 {0x246,0x24e,2,1},
2760 {0x370,0x372,2,1},
2761 {0x376,0x376,-1,1},
2762 {0x386,0x386,-1,38},
2763 {0x388,0x38a,1,37},
2764 {0x38c,0x38c,-1,64},
2765 {0x38e,0x38f,1,63},
2766 {0x391,0x3a1,1,32},
2767 {0x3a3,0x3ab,1,32},
2768 {0x3cf,0x3cf,-1,8},
2769 {0x3d8,0x3ee,2,1},
2770 {0x3f4,0x3f4,-1,-60},
2771 {0x3f7,0x3f7,-1,1},
2772 {0x3f9,0x3f9,-1,-7},
2773 {0x3fa,0x3fa,-1,1},
2774 {0x3fd,0x3ff,1,-130},
2775 {0x400,0x40f,1,80},
2776 {0x410,0x42f,1,32},
2777 {0x460,0x480,2,1},
2778 {0x48a,0x4be,2,1},
2779 {0x4c0,0x4c0,-1,15},
2780 {0x4c1,0x4cd,2,1},
2781 {0x4d0,0x524,2,1},
2782 {0x531,0x556,1,48},
2783 {0x10a0,0x10c5,1,7264},
2784 {0x1e00,0x1e94,2,1},
2785 {0x1e9e,0x1e9e,-1,-7615},
2786 {0x1ea0,0x1efe,2,1},
2787 {0x1f08,0x1f0f,1,-8},
2788 {0x1f18,0x1f1d,1,-8},
2789 {0x1f28,0x1f2f,1,-8},
2790 {0x1f38,0x1f3f,1,-8},
2791 {0x1f48,0x1f4d,1,-8},
2792 {0x1f59,0x1f5f,2,-8},
2793 {0x1f68,0x1f6f,1,-8},
2794 {0x1f88,0x1f8f,1,-8},
2795 {0x1f98,0x1f9f,1,-8},
2796 {0x1fa8,0x1faf,1,-8},
2797 {0x1fb8,0x1fb9,1,-8},
2798 {0x1fba,0x1fbb,1,-74},
2799 {0x1fbc,0x1fbc,-1,-9},
2800 {0x1fc8,0x1fcb,1,-86},
2801 {0x1fcc,0x1fcc,-1,-9},
2802 {0x1fd8,0x1fd9,1,-8},
2803 {0x1fda,0x1fdb,1,-100},
2804 {0x1fe8,0x1fe9,1,-8},
2805 {0x1fea,0x1feb,1,-112},
2806 {0x1fec,0x1fec,-1,-7},
2807 {0x1ff8,0x1ff9,1,-128},
2808 {0x1ffa,0x1ffb,1,-126},
2809 {0x1ffc,0x1ffc,-1,-9},
2810 {0x2126,0x2126,-1,-7517},
2811 {0x212a,0x212a,-1,-8383},
2812 {0x212b,0x212b,-1,-8262},
2813 {0x2132,0x2132,-1,28},
2814 {0x2160,0x216f,1,16},
2815 {0x2183,0x2183,-1,1},
2816 {0x24b6,0x24cf,1,26},
2817 {0x2c00,0x2c2e,1,48},
2818 {0x2c60,0x2c60,-1,1},
2819 {0x2c62,0x2c62,-1,-10743},
2820 {0x2c63,0x2c63,-1,-3814},
2821 {0x2c64,0x2c64,-1,-10727},
2822 {0x2c67,0x2c6b,2,1},
2823 {0x2c6d,0x2c6d,-1,-10780},
2824 {0x2c6e,0x2c6e,-1,-10749},
2825 {0x2c6f,0x2c6f,-1,-10783},
2826 {0x2c70,0x2c70,-1,-10782},
2827 {0x2c72,0x2c75,3,1},
2828 {0x2c7e,0x2c7f,1,-10815},
2829 {0x2c80,0x2ce2,2,1},
2830 {0x2ceb,0x2ced,2,1},
2831 {0xa640,0xa65e,2,1},
2832 {0xa662,0xa66c,2,1},
2833 {0xa680,0xa696,2,1},
2834 {0xa722,0xa72e,2,1},
2835 {0xa732,0xa76e,2,1},
2836 {0xa779,0xa77b,2,1},
2837 {0xa77d,0xa77d,-1,-35332},
2838 {0xa77e,0xa786,2,1},
2839 {0xa78b,0xa78b,-1,1},
2840 {0xff21,0xff3a,1,32},
2841 {0x10400,0x10427,1,40}
2844 static convertStruct toUpper[] =
2846 {0x61,0x7a,1,-32},
2847 {0xb5,0xb5,-1,743},
2848 {0xe0,0xf6,1,-32},
2849 {0xf8,0xfe,1,-32},
2850 {0xff,0xff,-1,121},
2851 {0x101,0x12f,2,-1},
2852 {0x131,0x131,-1,-232},
2853 {0x133,0x137,2,-1},
2854 {0x13a,0x148,2,-1},
2855 {0x14b,0x177,2,-1},
2856 {0x17a,0x17e,2,-1},
2857 {0x17f,0x17f,-1,-300},
2858 {0x180,0x180,-1,195},
2859 {0x183,0x185,2,-1},
2860 {0x188,0x18c,4,-1},
2861 {0x192,0x192,-1,-1},
2862 {0x195,0x195,-1,97},
2863 {0x199,0x199,-1,-1},
2864 {0x19a,0x19a,-1,163},
2865 {0x19e,0x19e,-1,130},
2866 {0x1a1,0x1a5,2,-1},
2867 {0x1a8,0x1ad,5,-1},
2868 {0x1b0,0x1b4,4,-1},
2869 {0x1b6,0x1b9,3,-1},
2870 {0x1bd,0x1bd,-1,-1},
2871 {0x1bf,0x1bf,-1,56},
2872 {0x1c5,0x1c5,-1,-1},
2873 {0x1c6,0x1c6,-1,-2},
2874 {0x1c8,0x1c8,-1,-1},
2875 {0x1c9,0x1c9,-1,-2},
2876 {0x1cb,0x1cb,-1,-1},
2877 {0x1cc,0x1cc,-1,-2},
2878 {0x1ce,0x1dc,2,-1},
2879 {0x1dd,0x1dd,-1,-79},
2880 {0x1df,0x1ef,2,-1},
2881 {0x1f2,0x1f2,-1,-1},
2882 {0x1f3,0x1f3,-1,-2},
2883 {0x1f5,0x1f9,4,-1},
2884 {0x1fb,0x21f,2,-1},
2885 {0x223,0x233,2,-1},
2886 {0x23c,0x23c,-1,-1},
2887 {0x23f,0x240,1,10815},
2888 {0x242,0x247,5,-1},
2889 {0x249,0x24f,2,-1},
2890 {0x250,0x250,-1,10783},
2891 {0x251,0x251,-1,10780},
2892 {0x252,0x252,-1,10782},
2893 {0x253,0x253,-1,-210},
2894 {0x254,0x254,-1,-206},
2895 {0x256,0x257,1,-205},
2896 {0x259,0x259,-1,-202},
2897 {0x25b,0x25b,-1,-203},
2898 {0x260,0x260,-1,-205},
2899 {0x263,0x263,-1,-207},
2900 {0x268,0x268,-1,-209},
2901 {0x269,0x269,-1,-211},
2902 {0x26b,0x26b,-1,10743},
2903 {0x26f,0x26f,-1,-211},
2904 {0x271,0x271,-1,10749},
2905 {0x272,0x272,-1,-213},
2906 {0x275,0x275,-1,-214},
2907 {0x27d,0x27d,-1,10727},
2908 {0x280,0x283,3,-218},
2909 {0x288,0x288,-1,-218},
2910 {0x289,0x289,-1,-69},
2911 {0x28a,0x28b,1,-217},
2912 {0x28c,0x28c,-1,-71},
2913 {0x292,0x292,-1,-219},
2914 {0x345,0x345,-1,84},
2915 {0x371,0x373,2,-1},
2916 {0x377,0x377,-1,-1},
2917 {0x37b,0x37d,1,130},
2918 {0x3ac,0x3ac,-1,-38},
2919 {0x3ad,0x3af,1,-37},
2920 {0x3b1,0x3c1,1,-32},
2921 {0x3c2,0x3c2,-1,-31},
2922 {0x3c3,0x3cb,1,-32},
2923 {0x3cc,0x3cc,-1,-64},
2924 {0x3cd,0x3ce,1,-63},
2925 {0x3d0,0x3d0,-1,-62},
2926 {0x3d1,0x3d1,-1,-57},
2927 {0x3d5,0x3d5,-1,-47},
2928 {0x3d6,0x3d6,-1,-54},
2929 {0x3d7,0x3d7,-1,-8},
2930 {0x3d9,0x3ef,2,-1},
2931 {0x3f0,0x3f0,-1,-86},
2932 {0x3f1,0x3f1,-1,-80},
2933 {0x3f2,0x3f2,-1,7},
2934 {0x3f5,0x3f5,-1,-96},
2935 {0x3f8,0x3fb,3,-1},
2936 {0x430,0x44f,1,-32},
2937 {0x450,0x45f,1,-80},
2938 {0x461,0x481,2,-1},
2939 {0x48b,0x4bf,2,-1},
2940 {0x4c2,0x4ce,2,-1},
2941 {0x4cf,0x4cf,-1,-15},
2942 {0x4d1,0x525,2,-1},
2943 {0x561,0x586,1,-48},
2944 {0x1d79,0x1d79,-1,35332},
2945 {0x1d7d,0x1d7d,-1,3814},
2946 {0x1e01,0x1e95,2,-1},
2947 {0x1e9b,0x1e9b,-1,-59},
2948 {0x1ea1,0x1eff,2,-1},
2949 {0x1f00,0x1f07,1,8},
2950 {0x1f10,0x1f15,1,8},
2951 {0x1f20,0x1f27,1,8},
2952 {0x1f30,0x1f37,1,8},
2953 {0x1f40,0x1f45,1,8},
2954 {0x1f51,0x1f57,2,8},
2955 {0x1f60,0x1f67,1,8},
2956 {0x1f70,0x1f71,1,74},
2957 {0x1f72,0x1f75,1,86},
2958 {0x1f76,0x1f77,1,100},
2959 {0x1f78,0x1f79,1,128},
2960 {0x1f7a,0x1f7b,1,112},
2961 {0x1f7c,0x1f7d,1,126},
2962 {0x1f80,0x1f87,1,8},
2963 {0x1f90,0x1f97,1,8},
2964 {0x1fa0,0x1fa7,1,8},
2965 {0x1fb0,0x1fb1,1,8},
2966 {0x1fb3,0x1fb3,-1,9},
2967 {0x1fbe,0x1fbe,-1,-7205},
2968 {0x1fc3,0x1fc3,-1,9},
2969 {0x1fd0,0x1fd1,1,8},
2970 {0x1fe0,0x1fe1,1,8},
2971 {0x1fe5,0x1fe5,-1,7},
2972 {0x1ff3,0x1ff3,-1,9},
2973 {0x214e,0x214e,-1,-28},
2974 {0x2170,0x217f,1,-16},
2975 {0x2184,0x2184,-1,-1},
2976 {0x24d0,0x24e9,1,-26},
2977 {0x2c30,0x2c5e,1,-48},
2978 {0x2c61,0x2c61,-1,-1},
2979 {0x2c65,0x2c65,-1,-10795},
2980 {0x2c66,0x2c66,-1,-10792},
2981 {0x2c68,0x2c6c,2,-1},
2982 {0x2c73,0x2c76,3,-1},
2983 {0x2c81,0x2ce3,2,-1},
2984 {0x2cec,0x2cee,2,-1},
2985 {0x2d00,0x2d25,1,-7264},
2986 {0xa641,0xa65f,2,-1},
2987 {0xa663,0xa66d,2,-1},
2988 {0xa681,0xa697,2,-1},
2989 {0xa723,0xa72f,2,-1},
2990 {0xa733,0xa76f,2,-1},
2991 {0xa77a,0xa77c,2,-1},
2992 {0xa77f,0xa787,2,-1},
2993 {0xa78c,0xa78c,-1,-1},
2994 {0xff41,0xff5a,1,-32},
2995 {0x10428,0x1044f,1,-40}
2999 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3000 * simple case folding.
3003 utf_toupper(a)
3004 int a;
3006 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
3007 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3008 return TOUPPER_ASC(a);
3010 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
3011 /* If towupper() is available and handles Unicode, use it. */
3012 if (!(cmp_flags & CMP_INTERNAL))
3013 return towupper(a);
3014 #endif
3016 /* For characters below 128 use locale sensitive toupper(). */
3017 if (a < 128)
3018 return TOUPPER_LOC(a);
3020 /* For any other characters use the above mapping table. */
3021 return utf_convert(a, toUpper, sizeof(toUpper));
3025 utf_islower(a)
3026 int a;
3028 return (utf_toupper(a) != a);
3032 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3033 * simple case folding.
3036 utf_tolower(a)
3037 int a;
3039 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
3040 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3041 return TOLOWER_ASC(a);
3043 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
3044 /* If towlower() is available and handles Unicode, use it. */
3045 if (!(cmp_flags & CMP_INTERNAL))
3046 return towlower(a);
3047 #endif
3049 /* For characters below 128 use locale sensitive tolower(). */
3050 if (a < 128)
3051 return TOLOWER_LOC(a);
3053 /* For any other characters use the above mapping table. */
3054 return utf_convert(a, toLower, sizeof(toLower));
3058 utf_isupper(a)
3059 int a;
3061 return (utf_tolower(a) != a);
3065 * Version of strnicmp() that handles multi-byte characters.
3066 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
3067 * probably use strnicmp(), because there are no ASCII characters in the
3068 * second byte.
3069 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3070 * two characters otherwise.
3073 mb_strnicmp(s1, s2, nn)
3074 char_u *s1, *s2;
3075 size_t nn;
3077 int i, j, l;
3078 int cdiff;
3079 int incomplete = FALSE;
3080 int n = (int)nn;
3082 for (i = 0; i < n; i += l)
3084 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
3085 return 0;
3086 if (enc_utf8)
3088 l = utf_byte2len(s1[i]);
3089 if (l > n - i)
3091 l = n - i; /* incomplete character */
3092 incomplete = TRUE;
3094 /* Check directly first, it's faster. */
3095 for (j = 0; j < l; ++j)
3097 if (s1[i + j] != s2[i + j])
3098 break;
3099 if (s1[i + j] == 0)
3100 /* Both stings have the same bytes but are incomplete or
3101 * have illegal bytes, accept them as equal. */
3102 l = j;
3104 if (j < l)
3106 /* If one of the two characters is incomplete return -1. */
3107 if (incomplete || i + utf_byte2len(s2[i]) > n)
3108 return -1;
3109 cdiff = utf_fold(utf_ptr2char(s1 + i))
3110 - utf_fold(utf_ptr2char(s2 + i));
3111 if (cdiff != 0)
3112 return cdiff;
3115 else
3117 l = (*mb_ptr2len)(s1 + i);
3118 if (l <= 1)
3120 /* Single byte: first check normally, then with ignore case. */
3121 if (s1[i] != s2[i])
3123 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
3124 if (cdiff != 0)
3125 return cdiff;
3128 else
3130 /* For non-Unicode multi-byte don't ignore case. */
3131 if (l > n - i)
3132 l = n - i;
3133 cdiff = STRNCMP(s1 + i, s2 + i, l);
3134 if (cdiff != 0)
3135 return cdiff;
3139 return 0;
3143 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3144 * 'encoding' has been set to.
3146 void
3147 show_utf8()
3149 int len;
3150 int rlen = 0;
3151 char_u *line;
3152 int clen;
3153 int i;
3155 /* Get the byte length of the char under the cursor, including composing
3156 * characters. */
3157 line = ml_get_cursor();
3158 len = utfc_ptr2len(line);
3159 if (len == 0)
3161 MSG("NUL");
3162 return;
3165 clen = 0;
3166 for (i = 0; i < len; ++i)
3168 if (clen == 0)
3170 /* start of (composing) character, get its length */
3171 if (i > 0)
3173 STRCPY(IObuff + rlen, "+ ");
3174 rlen += 2;
3176 clen = utf_ptr2len(line + i);
3178 sprintf((char *)IObuff + rlen, "%02x ", line[i]);
3179 --clen;
3180 rlen += (int)STRLEN(IObuff + rlen);
3181 if (rlen > IOSIZE - 20)
3182 break;
3185 msg(IObuff);
3189 * mb_head_off() function pointer.
3190 * Return offset from "p" to the first byte of the character it points into.
3191 * If "p" points to the NUL at the end of the string return 0.
3192 * Returns 0 when already at the first byte of a character.
3195 latin_head_off(base, p)
3196 char_u *base UNUSED;
3197 char_u *p UNUSED;
3199 return 0;
3203 dbcs_head_off(base, p)
3204 char_u *base;
3205 char_u *p;
3207 char_u *q;
3209 /* It can't be a trailing byte when not using DBCS, at the start of the
3210 * string or the previous byte can't start a double-byte. */
3211 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
3212 return 0;
3214 /* This is slow: need to start at the base and go forward until the
3215 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
3216 q = base;
3217 while (q < p)
3218 q += dbcs_ptr2len(q);
3219 return (q == p) ? 0 : 1;
3223 * Special version of dbcs_head_off() that works for ScreenLines[], where
3224 * single-width DBCS_JPNU characters are stored separately.
3227 dbcs_screen_head_off(base, p)
3228 char_u *base;
3229 char_u *p;
3231 char_u *q;
3233 /* It can't be a trailing byte when not using DBCS, at the start of the
3234 * string or the previous byte can't start a double-byte.
3235 * For euc-jp an 0x8e byte in the previous cell always means we have a
3236 * lead byte in the current cell. */
3237 if (p <= base
3238 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
3239 || MB_BYTE2LEN(p[-1]) == 1
3240 || *p == NUL)
3241 return 0;
3243 /* This is slow: need to start at the base and go forward until the
3244 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
3245 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
3246 * stored as the next byte. */
3247 q = base;
3248 while (q < p)
3250 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3251 ++q;
3252 else
3253 q += dbcs_ptr2len(q);
3255 return (q == p) ? 0 : 1;
3259 utf_head_off(base, p)
3260 char_u *base;
3261 char_u *p;
3263 char_u *q;
3264 char_u *s;
3265 int c;
3266 int len;
3267 #ifdef FEAT_ARABIC
3268 char_u *j;
3269 #endif
3271 if (*p < 0x80) /* be quick for ASCII */
3272 return 0;
3274 /* Skip backwards over trailing bytes: 10xx.xxxx
3275 * Skip backwards again if on a composing char. */
3276 for (q = p; ; --q)
3278 /* Move s to the last byte of this char. */
3279 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3281 /* Move q to the first byte of this char. */
3282 while (q > base && (*q & 0xc0) == 0x80)
3283 --q;
3284 /* Check for illegal sequence. Do allow an illegal byte after where we
3285 * started. */
3286 len = utf8len_tab[*q];
3287 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
3288 return 0;
3290 if (q <= base)
3291 break;
3293 c = utf_ptr2char(q);
3294 if (utf_iscomposing(c))
3295 continue;
3297 #ifdef FEAT_ARABIC
3298 if (arabic_maycombine(c))
3300 /* Advance to get a sneak-peak at the next char */
3301 j = q;
3302 --j;
3303 /* Move j to the first byte of this char. */
3304 while (j > base && (*j & 0xc0) == 0x80)
3305 --j;
3306 if (arabic_combine(utf_ptr2char(j), c))
3307 continue;
3309 #endif
3310 break;
3313 return (int)(p - q);
3317 * Copy a character from "*fp" to "*tp" and advance the pointers.
3319 void
3320 mb_copy_char(fp, tp)
3321 char_u **fp;
3322 char_u **tp;
3324 int l = (*mb_ptr2len)(*fp);
3326 mch_memmove(*tp, *fp, (size_t)l);
3327 *tp += l;
3328 *fp += l;
3332 * Return the offset from "p" to the first byte of a character. When "p" is
3333 * at the start of a character 0 is returned, otherwise the offset to the next
3334 * character. Can start anywhere in a stream of bytes.
3337 mb_off_next(base, p)
3338 char_u *base;
3339 char_u *p;
3341 int i;
3342 int j;
3344 if (enc_utf8)
3346 if (*p < 0x80) /* be quick for ASCII */
3347 return 0;
3349 /* Find the next character that isn't 10xx.xxxx */
3350 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
3352 if (i > 0)
3354 /* Check for illegal sequence. */
3355 for (j = 0; p - j > base; ++j)
3356 if ((p[-j] & 0xc0) != 0x80)
3357 break;
3358 if (utf8len_tab[p[-j]] != i + j)
3359 return 0;
3361 return i;
3364 /* Only need to check if we're on a trail byte, it doesn't matter if we
3365 * want the offset to the next or current character. */
3366 return (*mb_head_off)(base, p);
3370 * Return the offset from "p" to the last byte of the character it points
3371 * into. Can start anywhere in a stream of bytes.
3374 mb_tail_off(base, p)
3375 char_u *base;
3376 char_u *p;
3378 int i;
3379 int j;
3381 if (*p == NUL)
3382 return 0;
3384 if (enc_utf8)
3386 /* Find the last character that is 10xx.xxxx */
3387 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
3389 /* Check for illegal sequence. */
3390 for (j = 0; p - j > base; ++j)
3391 if ((p[-j] & 0xc0) != 0x80)
3392 break;
3393 if (utf8len_tab[p[-j]] != i + j + 1)
3394 return 0;
3395 return i;
3398 /* It can't be the first byte if a double-byte when not using DBCS, at the
3399 * end of the string or the byte can't start a double-byte. */
3400 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
3401 return 0;
3403 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3404 return 1 - dbcs_head_off(base, p);
3408 * Find the next illegal byte sequence.
3410 void
3411 utf_find_illegal()
3413 pos_T pos = curwin->w_cursor;
3414 char_u *p;
3415 int len;
3416 vimconv_T vimconv;
3417 char_u *tofree = NULL;
3419 vimconv.vc_type = CONV_NONE;
3420 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
3422 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
3423 * possibly a utf-8 file with illegal bytes. Setup for conversion
3424 * from utf-8 to 'fileencoding'. */
3425 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
3428 #ifdef FEAT_VIRTUALEDIT
3429 curwin->w_cursor.coladd = 0;
3430 #endif
3431 for (;;)
3433 p = ml_get_cursor();
3434 if (vimconv.vc_type != CONV_NONE)
3436 vim_free(tofree);
3437 tofree = string_convert(&vimconv, p, NULL);
3438 if (tofree == NULL)
3439 break;
3440 p = tofree;
3443 while (*p != NUL)
3445 /* Illegal means that there are not enough trail bytes (checked by
3446 * utf_ptr2len()) or too many of them (overlong sequence). */
3447 len = utf_ptr2len(p);
3448 if (*p >= 0x80 && (len == 1
3449 || utf_char2len(utf_ptr2char(p)) != len))
3451 if (vimconv.vc_type == CONV_NONE)
3452 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
3453 else
3455 int l;
3457 len = (int)(p - tofree);
3458 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
3460 l = utf_ptr2len(p);
3461 curwin->w_cursor.col += l;
3464 goto theend;
3466 p += len;
3468 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
3469 break;
3470 ++curwin->w_cursor.lnum;
3471 curwin->w_cursor.col = 0;
3474 /* didn't find it: don't move and beep */
3475 curwin->w_cursor = pos;
3476 beep_flush();
3478 theend:
3479 vim_free(tofree);
3480 convert_setup(&vimconv, NULL, NULL);
3483 #if defined(HAVE_GTK2) || defined(PROTO)
3485 * Return TRUE if string "s" is a valid utf-8 string.
3486 * When "end" is NULL stop at the first NUL.
3487 * When "end" is positive stop there.
3490 utf_valid_string(s, end)
3491 char_u *s;
3492 char_u *end;
3494 int l;
3495 char_u *p = s;
3497 while (end == NULL ? *p != NUL : p < end)
3499 l = utf8len_tab_zero[*p];
3500 if (l == 0)
3501 return FALSE; /* invalid lead byte */
3502 if (end != NULL && p + l > end)
3503 return FALSE; /* incomplete byte sequence */
3504 ++p;
3505 while (--l > 0)
3506 if ((*p++ & 0xc0) != 0x80)
3507 return FALSE; /* invalid trail byte */
3509 return TRUE;
3511 #endif
3513 #if defined(FEAT_GUI) || defined(PROTO)
3515 * Special version of mb_tail_off() for use in ScreenLines[].
3518 dbcs_screen_tail_off(base, p)
3519 char_u *base;
3520 char_u *p;
3522 /* It can't be the first byte if a double-byte when not using DBCS, at the
3523 * end of the string or the byte can't start a double-byte.
3524 * For euc-jp an 0x8e byte always means we have a lead byte in the current
3525 * cell. */
3526 if (*p == NUL || p[1] == NUL
3527 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
3528 || MB_BYTE2LEN(*p) == 1)
3529 return 0;
3531 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3532 return 1 - dbcs_screen_head_off(base, p);
3534 #endif
3537 * If the cursor moves on an trail byte, set the cursor on the lead byte.
3538 * Thus it moves left if necessary.
3539 * Return TRUE when the cursor was adjusted.
3541 void
3542 mb_adjust_cursor()
3544 mb_adjustpos(&curwin->w_cursor);
3548 * Adjust position "*lp" to point to the first byte of a multi-byte character.
3549 * If it points to a tail byte it's moved backwards to the head byte.
3551 void
3552 mb_adjustpos(lp)
3553 pos_T *lp;
3555 char_u *p;
3557 if (lp->col > 0
3558 #ifdef FEAT_VIRTUALEDIT
3559 || lp->coladd > 1
3560 #endif
3563 p = ml_get(lp->lnum);
3564 lp->col -= (*mb_head_off)(p, p + lp->col);
3565 #ifdef FEAT_VIRTUALEDIT
3566 /* Reset "coladd" when the cursor would be on the right half of a
3567 * double-wide character. */
3568 if (lp->coladd == 1
3569 && p[lp->col] != TAB
3570 && vim_isprintc((*mb_ptr2char)(p + lp->col))
3571 && ptr2cells(p + lp->col) > 1)
3572 lp->coladd = 0;
3573 #endif
3578 * Return a pointer to the character before "*p", if there is one.
3580 char_u *
3581 mb_prevptr(line, p)
3582 char_u *line; /* start of the string */
3583 char_u *p;
3585 if (p > line)
3586 mb_ptr_back(line, p);
3587 return p;
3591 * Return the character length of "str". Each multi-byte character (with
3592 * following composing characters) counts as one.
3595 mb_charlen(str)
3596 char_u *str;
3598 char_u *p = str;
3599 int count;
3601 if (p == NULL)
3602 return 0;
3604 for (count = 0; *p != NUL; count++)
3605 p += (*mb_ptr2len)(p);
3607 return count;
3610 #if defined(FEAT_SPELL) || defined(PROTO)
3612 * Like mb_charlen() but for a string with specified length.
3615 mb_charlen_len(str, len)
3616 char_u *str;
3617 int len;
3619 char_u *p = str;
3620 int count;
3622 for (count = 0; *p != NUL && p < str + len; count++)
3623 p += (*mb_ptr2len)(p);
3625 return count;
3627 #endif
3630 * Try to un-escape a multi-byte character.
3631 * Used for the "to" and "from" part of a mapping.
3632 * Return the un-escaped string if it is a multi-byte character, and advance
3633 * "pp" to just after the bytes that formed it.
3634 * Return NULL if no multi-byte char was found.
3636 char_u *
3637 mb_unescape(pp)
3638 char_u **pp;
3640 static char_u buf[MB_MAXBYTES + 1];
3641 int n, m = 0;
3642 char_u *str = *pp;
3644 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
3645 * KS_EXTRA KE_CSI to CSI. */
3646 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
3648 if (str[n] == K_SPECIAL
3649 && str[n + 1] == KS_SPECIAL
3650 && str[n + 2] == KE_FILLER)
3652 buf[m++] = K_SPECIAL;
3653 n += 2;
3655 else if ((str[n] == K_SPECIAL
3656 # ifdef FEAT_GUI
3657 || str[n] == CSI
3658 # endif
3660 && str[n + 1] == KS_EXTRA
3661 && str[n + 2] == (int)KE_CSI)
3663 buf[m++] = CSI;
3664 n += 2;
3666 else if (str[n] == K_SPECIAL
3667 # ifdef FEAT_GUI
3668 || str[n] == CSI
3669 # endif
3671 break; /* a special key can't be a multibyte char */
3672 else
3673 buf[m++] = str[n];
3674 buf[m] = NUL;
3676 /* Return a multi-byte character if it's found. An illegal sequence
3677 * will result in a 1 here. */
3678 if ((*mb_ptr2len)(buf) > 1)
3680 *pp = str + n + 1;
3681 return buf;
3684 return NULL;
3688 * Return TRUE if the character at "row"/"col" on the screen is the left side
3689 * of a double-width character.
3690 * Caller must make sure "row" and "col" are not invalid!
3693 mb_lefthalve(row, col)
3694 int row;
3695 int col;
3697 #ifdef FEAT_HANGULIN
3698 if (composing_hangul)
3699 return TRUE;
3700 #endif
3701 return (*mb_off2cells)(LineOffset[row] + col,
3702 LineOffset[row] + screen_Columns) > 1;
3706 * Correct a position on the screen, if it's the right half of a double-wide
3707 * char move it to the left half. Returns the corrected column.
3710 mb_fix_col(col, row)
3711 int col;
3712 int row;
3714 col = check_col(col);
3715 row = check_row(row);
3716 if (has_mbyte && ScreenLines != NULL && col > 0
3717 && ((enc_dbcs
3718 && ScreenLines[LineOffset[row] + col] != NUL
3719 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
3720 ScreenLines + LineOffset[row] + col))
3721 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
3722 return col - 1;
3723 return col;
3725 #endif
3727 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3728 static int enc_alias_search __ARGS((char_u *name));
3731 * Skip the Vim specific head of a 'encoding' name.
3733 char_u *
3734 enc_skip(p)
3735 char_u *p;
3737 if (STRNCMP(p, "2byte-", 6) == 0)
3738 return p + 6;
3739 if (STRNCMP(p, "8bit-", 5) == 0)
3740 return p + 5;
3741 return p;
3745 * Find the canonical name for encoding "enc".
3746 * When the name isn't recognized, returns "enc" itself, but with all lower
3747 * case characters and '_' replaced with '-'.
3748 * Returns an allocated string. NULL for out-of-memory.
3750 char_u *
3751 enc_canonize(enc)
3752 char_u *enc;
3754 char_u *r;
3755 char_u *p, *s;
3756 int i;
3758 # ifdef FEAT_MBYTE
3759 if (STRCMP(enc, "default") == 0)
3761 /* Use the default encoding as it's found by set_init_1(). */
3762 r = get_encoding_default();
3763 if (r == NULL)
3764 r = (char_u *)"latin1";
3765 return vim_strsave(r);
3767 # endif
3769 /* copy "enc" to allocated memory, with room for two '-' */
3770 r = alloc((unsigned)(STRLEN(enc) + 3));
3771 if (r != NULL)
3773 /* Make it all lower case and replace '_' with '-'. */
3774 p = r;
3775 for (s = enc; *s != NUL; ++s)
3777 if (*s == '_')
3778 *p++ = '-';
3779 else
3780 *p++ = TOLOWER_ASC(*s);
3782 *p = NUL;
3784 /* Skip "2byte-" and "8bit-". */
3785 p = enc_skip(r);
3787 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3788 if (STRNCMP(p, "microsoft-cp", 12) == 0)
3789 STRMOVE(p, p + 10);
3791 /* "iso8859" -> "iso-8859" */
3792 if (STRNCMP(p, "iso8859", 7) == 0)
3794 STRMOVE(p + 4, p + 3);
3795 p[3] = '-';
3798 /* "iso-8859n" -> "iso-8859-n" */
3799 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
3801 STRMOVE(p + 9, p + 8);
3802 p[8] = '-';
3805 /* "latin-N" -> "latinN" */
3806 if (STRNCMP(p, "latin-", 6) == 0)
3807 STRMOVE(p + 5, p + 6);
3809 if (enc_canon_search(p) >= 0)
3811 /* canonical name can be used unmodified */
3812 if (p != r)
3813 STRMOVE(r, p);
3815 else if ((i = enc_alias_search(p)) >= 0)
3817 /* alias recognized, get canonical name */
3818 vim_free(r);
3819 r = vim_strsave((char_u *)enc_canon_table[i].name);
3822 return r;
3826 * Search for an encoding alias of "name".
3827 * Returns -1 when not found.
3829 static int
3830 enc_alias_search(name)
3831 char_u *name;
3833 int i;
3835 for (i = 0; enc_alias_table[i].name != NULL; ++i)
3836 if (STRCMP(name, enc_alias_table[i].name) == 0)
3837 return enc_alias_table[i].canon;
3838 return -1;
3840 #endif
3842 #if defined(FEAT_MBYTE) || defined(PROTO)
3844 #ifdef HAVE_LANGINFO_H
3845 # include <langinfo.h>
3846 #endif
3849 * Get the canonicalized encoding of the current locale.
3850 * Returns an allocated string when successful, NULL when not.
3852 char_u *
3853 enc_locale()
3855 #ifndef WIN3264
3856 char *s;
3857 char *p;
3858 int i;
3859 #endif
3860 char buf[50];
3861 #ifdef WIN3264
3862 long acp = GetACP();
3864 if (acp == 1200)
3865 STRCPY(buf, "ucs-2le");
3866 else if (acp == 1252) /* cp1252 is used as latin1 */
3867 STRCPY(buf, "latin1");
3868 else
3869 sprintf(buf, "cp%ld", acp);
3870 #else
3871 # ifdef HAVE_NL_LANGINFO_CODESET
3872 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
3873 # endif
3874 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
3875 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
3876 # endif
3877 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
3878 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
3879 s = getenv("LANG");
3881 if (s == NULL || *s == NUL)
3882 return FAIL;
3884 /* The most generic locale format is:
3885 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
3886 * If there is a '.' remove the part before it.
3887 * if there is something after the codeset, remove it.
3888 * Make the name lowercase and replace '_' with '-'.
3889 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
3890 * "ko_KR.EUC" == "euc-kr"
3892 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
3894 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
3895 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
3897 /* copy "XY.EUC" to "euc-XY" to buf[10] */
3898 STRCPY(buf + 10, "euc-");
3899 buf[14] = p[-2];
3900 buf[15] = p[-1];
3901 buf[16] = 0;
3902 s = buf + 10;
3904 else
3905 s = p + 1;
3907 for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
3909 if (s[i] == '_' || s[i] == '-')
3910 buf[i] = '-';
3911 else if (isalnum((int)s[i]))
3912 buf[i] = TOLOWER_ASC(s[i]);
3913 else
3914 break;
3916 buf[i] = NUL;
3917 #endif
3919 return enc_canonize((char_u *)buf);
3922 #if defined(WIN3264) || defined(PROTO)
3924 * Convert an encoding name to an MS-Windows codepage.
3925 * Returns zero if no codepage can be figured out.
3928 encname2codepage(name)
3929 char_u *name;
3931 int cp;
3932 char_u *p = name;
3933 int idx;
3935 if (STRNCMP(p, "8bit-", 5) == 0)
3936 p += 5;
3937 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
3938 p += 6;
3940 if (p[0] == 'c' && p[1] == 'p')
3941 cp = atoi(p + 2);
3942 else if ((idx = enc_canon_search(p)) >= 0)
3943 cp = enc_canon_table[idx].codepage;
3944 else
3945 return 0;
3946 if (IsValidCodePage(cp))
3947 return cp;
3948 return 0;
3950 #endif
3952 # if defined(USE_ICONV) || defined(PROTO)
3954 static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp));
3957 * Call iconv_open() with a check if iconv() works properly (there are broken
3958 * versions).
3959 * Returns (void *)-1 if failed.
3960 * (should return iconv_t, but that causes problems with prototypes).
3962 void *
3963 my_iconv_open(to, from)
3964 char_u *to;
3965 char_u *from;
3967 iconv_t fd;
3968 #define ICONV_TESTLEN 400
3969 char_u tobuf[ICONV_TESTLEN];
3970 char *p;
3971 size_t tolen;
3972 static int iconv_ok = -1;
3974 if (iconv_ok == FALSE)
3975 return (void *)-1; /* detected a broken iconv() previously */
3977 #ifdef DYNAMIC_ICONV
3978 /* Check if the iconv.dll can be found. */
3979 if (!iconv_enabled(TRUE))
3980 return (void *)-1;
3981 #endif
3983 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
3985 if (fd != (iconv_t)-1 && iconv_ok == -1)
3988 * Do a dummy iconv() call to check if it actually works. There is a
3989 * version of iconv() on Linux that is broken. We can't ignore it,
3990 * because it's wide-spread. The symptoms are that after outputting
3991 * the initial shift state the "to" pointer is NULL and conversion
3992 * stops for no apparent reason after about 8160 characters.
3994 p = (char *)tobuf;
3995 tolen = ICONV_TESTLEN;
3996 (void)iconv(fd, NULL, NULL, &p, &tolen);
3997 if (p == NULL)
3999 iconv_ok = FALSE;
4000 iconv_close(fd);
4001 fd = (iconv_t)-1;
4003 else
4004 iconv_ok = TRUE;
4007 return (void *)fd;
4011 * Convert the string "str[slen]" with iconv().
4012 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4013 * sequence and set "*unconvlenp" to the length of it.
4014 * Returns the converted string in allocated memory. NULL for an error.
4015 * If resultlenp is not NULL, sets it to the result length in bytes.
4017 static char_u *
4018 iconv_string(vcp, str, slen, unconvlenp, resultlenp)
4019 vimconv_T *vcp;
4020 char_u *str;
4021 int slen;
4022 int *unconvlenp;
4023 int *resultlenp;
4025 const char *from;
4026 size_t fromlen;
4027 char *to;
4028 size_t tolen;
4029 size_t len = 0;
4030 size_t done = 0;
4031 char_u *result = NULL;
4032 char_u *p;
4033 int l;
4035 from = (char *)str;
4036 fromlen = slen;
4037 for (;;)
4039 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4041 /* Allocate enough room for most conversions. When re-allocating
4042 * increase the buffer size. */
4043 len = len + fromlen * 2 + 40;
4044 p = alloc((unsigned)len);
4045 if (p != NULL && done > 0)
4046 mch_memmove(p, result, done);
4047 vim_free(result);
4048 result = p;
4049 if (result == NULL) /* out of memory */
4050 break;
4053 to = (char *)result + done;
4054 tolen = len - done - 2;
4055 /* Avoid a warning for systems with a wrong iconv() prototype by
4056 * casting the second argument to void *. */
4057 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4058 != (size_t)-1)
4060 /* Finished, append a NUL. */
4061 *to = NUL;
4062 break;
4065 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4066 * iconv library may use one of them. */
4067 if (!vcp->vc_fail && unconvlenp != NULL
4068 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4070 /* Handle an incomplete sequence at the end. */
4071 *to = NUL;
4072 *unconvlenp = (int)fromlen;
4073 break;
4076 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4077 * iconv library may use one of them. */
4078 else if (!vcp->vc_fail
4079 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4080 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4082 /* Can't convert: insert a '?' and skip a character. This assumes
4083 * conversion from 'encoding' to something else. In other
4084 * situations we don't know what to skip anyway. */
4085 *to++ = '?';
4086 if ((*mb_ptr2cells)((char_u *)from) > 1)
4087 *to++ = '?';
4088 if (enc_utf8)
4089 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
4090 else
4092 l = (*mb_ptr2len)((char_u *)from);
4093 if (l > (int)fromlen)
4094 l = (int)fromlen;
4096 from += l;
4097 fromlen -= l;
4099 else if (ICONV_ERRNO != ICONV_E2BIG)
4101 /* conversion failed */
4102 vim_free(result);
4103 result = NULL;
4104 break;
4106 /* Not enough room or skipping illegal sequence. */
4107 done = to - (char *)result;
4110 if (resultlenp != NULL)
4111 *resultlenp = (int)(to - (char *)result);
4112 return result;
4115 # if defined(DYNAMIC_ICONV) || defined(PROTO)
4117 * Dynamically load the "iconv.dll" on Win32.
4120 #ifndef DYNAMIC_ICONV /* just generating prototypes */
4121 # define HINSTANCE int
4122 #endif
4123 static HINSTANCE hIconvDLL = 0;
4124 static HINSTANCE hMsvcrtDLL = 0;
4126 # ifndef DYNAMIC_ICONV_DLL
4127 # define DYNAMIC_ICONV_DLL "iconv.dll"
4128 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
4129 # endif
4130 # ifndef DYNAMIC_MSVCRT_DLL
4131 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4132 # endif
4135 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4138 iconv_enabled(verbose)
4139 int verbose;
4141 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4142 return TRUE;
4143 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
4144 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
4145 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
4146 if (hIconvDLL != 0)
4147 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
4148 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
4150 /* Only give the message when 'verbose' is set, otherwise it might be
4151 * done whenever a conversion is attempted. */
4152 if (verbose && p_verbose > 0)
4154 verbose_enter();
4155 EMSG2(_(e_loadlib),
4156 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
4157 verbose_leave();
4159 iconv_end();
4160 return FALSE;
4163 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
4164 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
4165 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
4166 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
4167 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
4168 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
4169 || iconvctl == NULL || iconv_errno == NULL)
4171 iconv_end();
4172 if (verbose && p_verbose > 0)
4174 verbose_enter();
4175 EMSG2(_(e_loadfunc), "for libiconv");
4176 verbose_leave();
4178 return FALSE;
4180 return TRUE;
4183 void
4184 iconv_end()
4186 /* Don't use iconv() when inputting or outputting characters. */
4187 if (input_conv.vc_type == CONV_ICONV)
4188 convert_setup(&input_conv, NULL, NULL);
4189 if (output_conv.vc_type == CONV_ICONV)
4190 convert_setup(&output_conv, NULL, NULL);
4192 if (hIconvDLL != 0)
4193 FreeLibrary(hIconvDLL);
4194 if (hMsvcrtDLL != 0)
4195 FreeLibrary(hMsvcrtDLL);
4196 hIconvDLL = 0;
4197 hMsvcrtDLL = 0;
4199 # endif /* DYNAMIC_ICONV */
4200 # endif /* USE_ICONV */
4202 #endif /* FEAT_MBYTE */
4204 #if defined(FEAT_XIM) || defined(PROTO)
4206 # ifdef FEAT_GUI_MACVIM
4207 typedef int GtkIMContext;
4208 typedef int * gpointer;
4209 typedef char gchar;
4210 # define g_return_if_fail(x) if (!(x)) return;
4211 # endif
4213 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
4214 static int xim_has_preediting INIT(= FALSE); /* IM current status */
4217 * Set preedit_start_col to the current cursor position.
4219 static void
4220 init_preedit_start_col(void)
4222 if (State & CMDLINE)
4223 preedit_start_col = cmdline_getvcol_cursor();
4224 else if (curwin != NULL)
4225 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
4226 /* Prevent that preediting marks the buffer as changed. */
4227 xim_changed_while_preediting = curbuf->b_changed;
4229 # endif
4231 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) && !defined(PROTO)
4233 static int im_is_active = FALSE; /* IM is enabled for current mode */
4234 static int preedit_is_active = FALSE;
4235 static int im_preedit_cursor = 0; /* cursor offset in characters */
4236 static int im_preedit_trailing = 0; /* number of characters after cursor */
4238 static unsigned long im_commit_handler_id = 0;
4239 # ifndef FEAT_GUI_MACVIM
4240 static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
4241 static unsigned int im_activatekey_state = 0;
4242 # endif
4244 # ifndef FEAT_GUI_MACVIM
4245 void
4246 im_set_active(int active)
4248 int was_active;
4250 was_active = !!im_is_active;
4251 im_is_active = (active && !p_imdisable);
4253 if (im_is_active != was_active)
4254 xim_reset();
4256 # endif
4258 void
4259 xim_set_focus(int focus)
4261 # ifndef FEAT_GUI_MACVIM
4262 if (xic != NULL)
4264 if (focus)
4265 gtk_im_context_focus_in(xic);
4266 else
4267 gtk_im_context_focus_out(xic);
4269 # endif
4272 # ifndef FEAT_GUI_MACVIM
4273 void
4274 im_set_position(int row, int col)
4276 if (xic != NULL)
4278 GdkRectangle area;
4280 area.x = FILL_X(col);
4281 area.y = FILL_Y(row);
4282 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
4283 area.height = gui.char_height;
4285 gtk_im_context_set_cursor_location(xic, &area);
4288 # endif
4290 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
4291 void
4292 xim_set_preedit(void)
4294 im_set_position(gui.row, gui.col);
4296 # endif
4298 static void
4299 im_add_to_input(char_u *str, int len)
4301 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
4302 if (input_conv.vc_type != CONV_NONE)
4304 str = string_convert(&input_conv, str, &len);
4305 g_return_if_fail(str != NULL);
4308 add_to_input_buf_csi(str, len);
4310 if (input_conv.vc_type != CONV_NONE)
4311 vim_free(str);
4313 # ifndef FEAT_GUI_MACVIM
4314 if (p_mh) /* blank out the pointer if necessary */
4315 gui_mch_mousehide(TRUE);
4316 # endif
4319 static void
4320 im_delete_preedit(void)
4322 char_u bskey[] = {CSI, 'k', 'b'};
4323 char_u delkey[] = {CSI, 'k', 'D'};
4325 if (State & NORMAL)
4327 im_preedit_cursor = 0;
4328 return;
4330 for (; im_preedit_cursor > 0; --im_preedit_cursor)
4331 add_to_input_buf(bskey, (int)sizeof(bskey));
4333 for (; im_preedit_trailing > 0; --im_preedit_trailing)
4334 add_to_input_buf(delkey, (int)sizeof(delkey));
4338 * Move the cursor left by "num_move_back" characters.
4339 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
4340 * these K_LEFT keys.
4342 static void
4343 im_correct_cursor(int num_move_back)
4345 char_u backkey[] = {CSI, 'k', 'l'};
4347 if (State & NORMAL)
4348 return;
4349 # ifdef FEAT_RIGHTLEFT
4350 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
4351 backkey[2] = 'r';
4352 # endif
4353 for (; num_move_back > 0; --num_move_back)
4354 add_to_input_buf(backkey, (int)sizeof(backkey));
4357 # ifndef FEAT_GUI_MACVIM
4358 static int xim_expected_char = NUL;
4359 static int xim_ignored_char = FALSE;
4360 # endif
4363 * Update the mode and cursor while in an IM callback.
4365 static void
4366 im_show_info(void)
4368 int old_vgetc_busy;
4370 old_vgetc_busy = vgetc_busy;
4371 vgetc_busy = TRUE;
4372 showmode();
4373 vgetc_busy = old_vgetc_busy;
4374 setcursor();
4375 out_flush();
4378 # ifndef FEAT_GUI_MACVIM
4380 * Callback invoked when the user finished preediting.
4381 * Put the final string into the input buffer.
4383 static void
4384 im_commit_cb(GtkIMContext *context UNUSED,
4385 const gchar *str,
4386 gpointer data UNUSED)
4388 int slen = (int)STRLEN(str);
4389 int add_to_input = TRUE;
4390 int clen;
4391 int len = slen;
4392 int commit_with_preedit = TRUE;
4393 char_u *im_str, *p;
4395 #ifdef XIM_DEBUG
4396 xim_log("im_commit_cb(): %s\n", str);
4397 #endif
4399 /* The imhangul module doesn't reset the preedit string before
4400 * committing. Call im_delete_preedit() to work around that. */
4401 im_delete_preedit();
4403 /* Indicate that preediting has finished. */
4404 if (preedit_start_col == MAXCOL)
4406 init_preedit_start_col();
4407 commit_with_preedit = FALSE;
4410 /* The thing which setting "preedit_start_col" to MAXCOL means that
4411 * "preedit_start_col" will be set forcely when calling
4412 * preedit_changed_cb() next time.
4413 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
4414 * is simulating the preediting by using add_to_input_str(). when
4415 * preedit begin immediately before committed, the typebuf is not
4416 * flushed to screen, then it can't get correct "preedit_start_col".
4417 * Thus, it should calculate the cells by adding cells of the committed
4418 * string. */
4419 if (input_conv.vc_type != CONV_NONE)
4421 im_str = string_convert(&input_conv, (char_u *)str, &len);
4422 g_return_if_fail(im_str != NULL);
4424 else
4425 im_str = (char_u *)str;
4426 clen = 0;
4427 for (p = im_str; p < im_str + len; p += (*mb_ptr2len)(p))
4428 clen += (*mb_ptr2cells)(p);
4429 if (input_conv.vc_type != CONV_NONE)
4430 vim_free(im_str);
4431 preedit_start_col += clen;
4433 /* Is this a single character that matches a keypad key that's just
4434 * been pressed? If so, we don't want it to be entered as such - let
4435 * us carry on processing the raw keycode so that it may be used in
4436 * mappings as <kSomething>. */
4437 if (xim_expected_char != NUL)
4439 /* We're currently processing a keypad or other special key */
4440 if (slen == 1 && str[0] == xim_expected_char)
4442 /* It's a match - don't do it here */
4443 xim_ignored_char = TRUE;
4444 add_to_input = FALSE;
4446 else
4448 /* Not a match */
4449 xim_ignored_char = FALSE;
4453 if (add_to_input)
4454 im_add_to_input((char_u *)str, slen);
4456 /* Inserting chars while "im_is_active" is set does not cause a change of
4457 * buffer. When the chars are committed the buffer must be marked as
4458 * changed. */
4459 if (!commit_with_preedit)
4460 preedit_start_col = MAXCOL;
4462 /* This flag is used in changed() at next call. */
4463 xim_changed_while_preediting = TRUE;
4465 if (gtk_main_level() > 0)
4466 gtk_main_quit();
4468 # endif
4471 * Callback invoked after start to the preedit.
4473 # ifndef FEAT_GUI_MACVIM
4474 static void
4475 im_preedit_start_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
4476 # else
4477 void
4478 im_preedit_start_macvim()
4479 # endif
4481 #ifdef XIM_DEBUG
4482 xim_log("im_preedit_start_cb()\n");
4483 #endif
4485 im_is_active = TRUE;
4486 preedit_is_active = TRUE;
4487 gui_update_cursor(TRUE, FALSE);
4488 im_show_info();
4492 * Callback invoked after end to the preedit.
4494 # ifndef FEAT_GUI_MACVIM
4495 static void
4496 im_preedit_end_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
4497 # else
4498 void
4499 im_preedit_end_macvim()
4500 # endif
4502 #ifdef XIM_DEBUG
4503 xim_log("im_preedit_end_cb()\n");
4504 #endif
4505 im_delete_preedit();
4507 /* Indicate that preediting has finished */
4508 preedit_start_col = MAXCOL;
4509 xim_has_preediting = FALSE;
4511 #if 0
4512 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
4513 * switched off unintentionally. We now use preedit_is_active (added by
4514 * SungHyun Nam). */
4515 im_is_active = FALSE;
4516 #endif
4517 preedit_is_active = FALSE;
4518 gui_update_cursor(TRUE, FALSE);
4519 im_show_info();
4522 #ifdef FEAT_GUI_MACVIM
4523 void
4524 im_preedit_abandon_macvim()
4526 /* Abandon preedit text, don't send any backspace sequences. */
4527 im_preedit_cursor = 0;
4528 im_preedit_trailing = 0;
4530 im_preedit_end_macvim();
4532 #endif
4535 * Callback invoked after changes to the preedit string. If the preedit
4536 * string was empty before, remember the preedit start column so we know
4537 * where to apply feedback attributes. Delete the previous preedit string
4538 * if there was one, save the new preedit cursor offset, and put the new
4539 * string into the input buffer.
4541 * TODO: The pragmatic "put into input buffer" approach used here has
4542 * several fundamental problems:
4544 * - The characters in the preedit string are subject to remapping.
4545 * That's broken, only the finally committed string should be remapped.
4547 * - There is a race condition involved: The retrieved value for the
4548 * current cursor position will be wrong if any unprocessed characters
4549 * are still queued in the input buffer.
4551 * - Due to the lack of synchronization between the file buffer in memory
4552 * and any typed characters, it's practically impossible to implement the
4553 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
4554 * modules for languages such as Thai are likely to rely on this feature
4555 * for proper operation.
4557 * Conclusions: I think support for preediting needs to be moved to the
4558 * core parts of Vim. Ideally, until it has been committed, the preediting
4559 * string should only be displayed and not affect the buffer content at all.
4560 * The question how to deal with the synchronization issue still remains.
4561 * Circumventing the input buffer is probably not desirable. Anyway, I think
4562 * implementing "retrieve_surrounding" is the only hard problem.
4564 * One way to solve all of this in a clean manner would be to queue all key
4565 * press/release events "as is" in the input buffer, and apply the IM filtering
4566 * at the receiving end of the queue. This, however, would have a rather large
4567 * impact on the code base. If there is an easy way to force processing of all
4568 * remaining input from within the "retrieve_surrounding" signal handler, this
4569 * might not be necessary. Gotta ask on vim-dev for opinions.
4571 # ifndef FEAT_GUI_MACVIM
4572 static void
4573 im_preedit_changed_cb(GtkIMContext *context, gpointer data UNUSED)
4574 # else
4575 void
4576 im_preedit_changed_macvim(char *preedit_string, int cursor_index)
4577 # endif
4579 # ifndef FEAT_GUI_MACVIM
4580 char *preedit_string = NULL;
4581 int cursor_index = 0;
4582 # endif
4583 int num_move_back = 0;
4584 char_u *str;
4585 char_u *p;
4586 int i;
4588 # ifndef FEAT_GUI_MACVIM
4589 gtk_im_context_get_preedit_string(context,
4590 &preedit_string, NULL,
4591 &cursor_index);
4592 # endif
4594 #ifdef XIM_DEBUG
4595 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
4596 #endif
4598 g_return_if_fail(preedit_string != NULL); /* just in case */
4600 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
4601 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
4603 xim_has_preediting = TRUE;
4605 /* Urgh, this breaks if the input buffer isn't empty now */
4606 init_preedit_start_col();
4608 else if (cursor_index == 0 && preedit_string[0] == '\0')
4610 xim_has_preediting = FALSE;
4612 /* If at the start position (after typing backspace)
4613 * preedit_start_col must be reset. */
4614 preedit_start_col = MAXCOL;
4617 im_delete_preedit();
4620 * Compute the end of the preediting area: "preedit_end_col".
4621 * According to the documentation of gtk_im_context_get_preedit_string(),
4622 * the cursor_pos output argument returns the offset in bytes. This is
4623 * unfortunately not true -- real life shows the offset is in characters,
4624 * and the GTK+ source code agrees with me. Will file a bug later.
4626 if (preedit_start_col != MAXCOL)
4627 preedit_end_col = preedit_start_col;
4628 str = (char_u *)preedit_string;
4629 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
4631 int is_composing;
4633 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
4635 * These offsets are used as counters when generating <BS> and <Del>
4636 * to delete the preedit string. So don't count composing characters
4637 * unless 'delcombine' is enabled.
4639 if (!is_composing || p_deco)
4641 if (i < cursor_index)
4642 ++im_preedit_cursor;
4643 else
4644 ++im_preedit_trailing;
4646 if (!is_composing && i >= cursor_index)
4648 /* This is essentially the same as im_preedit_trailing, except
4649 * composing characters are not counted even if p_deco is set. */
4650 ++num_move_back;
4652 if (preedit_start_col != MAXCOL)
4653 preedit_end_col += utf_ptr2cells(p);
4656 if (p > str)
4658 im_add_to_input(str, (int)(p - str));
4659 im_correct_cursor(num_move_back);
4662 # ifndef FEAT_GUI_MACVIM
4663 g_free(preedit_string);
4665 if (gtk_main_level() > 0)
4666 gtk_main_quit();
4667 # endif
4670 # ifndef FEAT_GUI_MACVIM
4672 * Translate the Pango attributes at iter to Vim highlighting attributes.
4673 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4674 * too much impact -- right now we handle even more attributes than necessary
4675 * for the IM modules I tested with.
4677 static int
4678 translate_pango_attributes(PangoAttrIterator *iter)
4680 PangoAttribute *attr;
4681 int char_attr = HL_NORMAL;
4683 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
4684 if (attr != NULL && ((PangoAttrInt *)attr)->value
4685 != (int)PANGO_UNDERLINE_NONE)
4686 char_attr |= HL_UNDERLINE;
4688 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
4689 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
4690 char_attr |= HL_BOLD;
4692 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
4693 if (attr != NULL && ((PangoAttrInt *)attr)->value
4694 != (int)PANGO_STYLE_NORMAL)
4695 char_attr |= HL_ITALIC;
4697 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
4698 if (attr != NULL)
4700 const PangoColor *color = &((PangoAttrColor *)attr)->color;
4702 /* Assume inverse if black background is requested */
4703 if ((color->red | color->green | color->blue) == 0)
4704 char_attr |= HL_INVERSE;
4707 return char_attr;
4709 # endif
4712 * Retrieve the highlighting attributes at column col in the preedit string.
4713 * Return -1 if not in preediting mode or if col is out of range.
4716 im_get_feedback_attr(int col)
4718 # ifndef FEAT_GUI_MACVIM
4719 char *preedit_string = NULL;
4720 PangoAttrList *attr_list = NULL;
4721 int char_attr = -1;
4723 if (xic == NULL)
4724 return char_attr;
4726 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
4728 if (preedit_string != NULL && attr_list != NULL)
4730 int idx;
4732 /* Get the byte index as used by PangoAttrIterator */
4733 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
4734 idx += utfc_ptr2len((char_u *)preedit_string + idx);
4736 if (preedit_string[idx] != '\0')
4738 PangoAttrIterator *iter;
4739 int start, end;
4741 char_attr = HL_NORMAL;
4742 iter = pango_attr_list_get_iterator(attr_list);
4744 /* Extract all relevant attributes from the list. */
4747 pango_attr_iterator_range(iter, &start, &end);
4749 if (idx >= start && idx < end)
4750 char_attr |= translate_pango_attributes(iter);
4752 while (pango_attr_iterator_next(iter));
4754 pango_attr_iterator_destroy(iter);
4758 if (attr_list != NULL)
4759 pango_attr_list_unref(attr_list);
4760 g_free(preedit_string);
4762 return char_attr;
4763 # else
4764 return HL_UNDERLINE;
4765 # endif
4768 void
4769 xim_init(void)
4771 #ifdef XIM_DEBUG
4772 xim_log("xim_init()\n");
4773 #endif
4775 # ifndef FEAT_GUI_MACVIM
4776 g_return_if_fail(gui.drawarea != NULL);
4777 g_return_if_fail(gui.drawarea->window != NULL);
4779 xic = gtk_im_multicontext_new();
4780 g_object_ref(xic);
4782 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
4783 G_CALLBACK(&im_commit_cb), NULL);
4784 g_signal_connect(G_OBJECT(xic), "preedit_changed",
4785 G_CALLBACK(&im_preedit_changed_cb), NULL);
4786 g_signal_connect(G_OBJECT(xic), "preedit_start",
4787 G_CALLBACK(&im_preedit_start_cb), NULL);
4788 g_signal_connect(G_OBJECT(xic), "preedit_end",
4789 G_CALLBACK(&im_preedit_end_cb), NULL);
4791 gtk_im_context_set_client_window(xic, gui.drawarea->window);
4792 # endif
4795 void
4796 im_shutdown(void)
4798 #ifdef XIM_DEBUG
4799 xim_log("im_shutdown()\n");
4800 #endif
4802 # ifndef FEAT_GUI_MACVIM
4803 if (xic != NULL)
4805 gtk_im_context_focus_out(xic);
4806 g_object_unref(xic);
4807 xic = NULL;
4809 # endif
4810 im_is_active = FALSE;
4811 im_commit_handler_id = 0;
4812 preedit_start_col = MAXCOL;
4813 xim_has_preediting = FALSE;
4816 # ifndef FEAT_GUI_MACVIM
4818 * Convert the string argument to keyval and state for GdkEventKey.
4819 * If str is valid return TRUE, otherwise FALSE.
4821 * See 'imactivatekey' for documentation of the format.
4823 static int
4824 im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
4826 const char *mods_end;
4827 unsigned tmp_keyval;
4828 unsigned tmp_state = 0;
4830 mods_end = strrchr(str, '-');
4831 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
4833 /* Parse modifier keys */
4834 while (str < mods_end)
4835 switch (*str++)
4837 case '-': break;
4838 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
4839 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
4840 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
4841 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
4842 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
4843 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
4844 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
4845 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
4846 default:
4847 return FALSE;
4850 tmp_keyval = gdk_keyval_from_name(str);
4852 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
4853 return FALSE;
4855 if (keyval != NULL)
4856 *keyval = tmp_keyval;
4857 if (state != NULL)
4858 *state = tmp_state;
4860 return TRUE;
4864 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
4865 * empty string is also regarded as valid.
4867 * Note: The numerical key value of p_imak is cached if it was valid; thus
4868 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
4869 * 'imak' changes. This is currently the case but not obvious -- should
4870 * probably rename the function for clarity.
4873 im_xim_isvalid_imactivate(void)
4875 if (p_imak[0] == NUL)
4877 im_activatekey_keyval = GDK_VoidSymbol;
4878 im_activatekey_state = 0;
4879 return TRUE;
4882 return im_string_to_keyval((const char *)p_imak,
4883 &im_activatekey_keyval,
4884 &im_activatekey_state);
4887 static void
4888 im_synthesize_keypress(unsigned int keyval, unsigned int state)
4890 GdkEventKey *event;
4892 # ifdef HAVE_GTK_MULTIHEAD
4893 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
4894 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
4895 # else
4896 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
4897 event->type = GDK_KEY_PRESS;
4898 # endif
4899 event->window = gui.drawarea->window;
4900 event->send_event = TRUE;
4901 event->time = GDK_CURRENT_TIME;
4902 event->state = state;
4903 event->keyval = keyval;
4904 event->hardware_keycode = /* needed for XIM */
4905 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
4906 event->length = 0;
4907 event->string = NULL;
4909 gtk_im_context_filter_keypress(xic, event);
4911 /* For consistency, also send the corresponding release event. */
4912 event->type = GDK_KEY_RELEASE;
4913 event->send_event = FALSE;
4914 gtk_im_context_filter_keypress(xic, event);
4916 # ifdef HAVE_GTK_MULTIHEAD
4917 gdk_event_free((GdkEvent *)event);
4918 # else
4919 g_free(event);
4920 # endif
4922 # endif // FEAT_GUI_MACVIM
4924 void
4925 xim_reset(void)
4927 # ifndef FEAT_GUI_MACVIM
4928 if (xic != NULL)
4931 * The third-party imhangul module (and maybe others too) ignores
4932 * gtk_im_context_reset() or at least doesn't reset the active state.
4933 * Thus sending imactivatekey would turn it off if it was on before,
4934 * which is clearly not what we want. Fortunately we can work around
4935 * that for imhangul by sending GDK_Escape, but I don't know if it
4936 * works with all IM modules that support an activation key :/
4938 * An alternative approach would be to destroy the IM context and
4939 * recreate it. But that means loading/unloading the IM module on
4940 * every mode switch, which causes a quite noticable delay even on
4941 * my rather fast box...
4943 * Moreover, there are some XIM which cannot respond to
4944 * im_synthesize_keypress(). we hope that they reset by
4945 * xim_shutdown().
4947 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
4948 im_synthesize_keypress(GDK_Escape, 0U);
4950 gtk_im_context_reset(xic);
4953 * HACK for Ami: This sequence of function calls makes Ami handle
4954 * the IM reset graciously, without breaking loads of other stuff.
4955 * It seems to force English mode as well, which is exactly what we
4956 * want because it makes the Ami status display work reliably.
4958 gtk_im_context_set_use_preedit(xic, FALSE);
4960 if (p_imdisable)
4961 im_shutdown();
4962 else
4964 gtk_im_context_set_use_preedit(xic, TRUE);
4965 xim_set_focus(gui.in_focus);
4967 if (im_activatekey_keyval != GDK_VoidSymbol)
4969 if (im_is_active)
4971 g_signal_handler_block(xic, im_commit_handler_id);
4972 im_synthesize_keypress(im_activatekey_keyval,
4973 im_activatekey_state);
4974 g_signal_handler_unblock(xic, im_commit_handler_id);
4977 else
4979 im_shutdown();
4980 xim_init();
4981 xim_set_focus(gui.in_focus);
4985 # endif
4987 preedit_start_col = MAXCOL;
4988 xim_has_preediting = FALSE;
4991 # ifndef FEAT_GUI_MACVIM
4993 xim_queue_key_press_event(GdkEventKey *event, int down)
4995 if (down)
4998 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
4999 * chars., even when not part of an IM sequence (ref. feature of
5000 * gdk/gdkkeyuni.c).
5001 * Flag any keypad keys that might represent a single char.
5002 * If this (on its own - i.e., not part of an IM sequence) is
5003 * committed while we're processing one of these keys, we can ignore
5004 * that commit and go ahead & process it ourselves. That way we can
5005 * still distinguish keypad keys for use in mappings.
5006 * Also add GDK_space to make <S-Space> work.
5008 switch (event->keyval)
5010 case GDK_KP_Add: xim_expected_char = '+'; break;
5011 case GDK_KP_Subtract: xim_expected_char = '-'; break;
5012 case GDK_KP_Divide: xim_expected_char = '/'; break;
5013 case GDK_KP_Multiply: xim_expected_char = '*'; break;
5014 case GDK_KP_Decimal: xim_expected_char = '.'; break;
5015 case GDK_KP_Equal: xim_expected_char = '='; break;
5016 case GDK_KP_0: xim_expected_char = '0'; break;
5017 case GDK_KP_1: xim_expected_char = '1'; break;
5018 case GDK_KP_2: xim_expected_char = '2'; break;
5019 case GDK_KP_3: xim_expected_char = '3'; break;
5020 case GDK_KP_4: xim_expected_char = '4'; break;
5021 case GDK_KP_5: xim_expected_char = '5'; break;
5022 case GDK_KP_6: xim_expected_char = '6'; break;
5023 case GDK_KP_7: xim_expected_char = '7'; break;
5024 case GDK_KP_8: xim_expected_char = '8'; break;
5025 case GDK_KP_9: xim_expected_char = '9'; break;
5026 case GDK_space: xim_expected_char = ' '; break;
5027 default: xim_expected_char = NUL;
5029 xim_ignored_char = FALSE;
5033 * When typing fFtT, XIM may be activated. Thus it must pass
5034 * gtk_im_context_filter_keypress() in Normal mode.
5035 * And while doing :sh too.
5037 if (xic != NULL && !p_imdisable
5038 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
5041 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
5042 * always aware of the current status of IM, and can even emulate
5043 * the activation key for modules that don't support one.
5045 if (event->keyval == im_activatekey_keyval
5046 && (event->state & im_activatekey_state) == im_activatekey_state)
5048 unsigned int state_mask;
5050 /* Require the state of the 3 most used modifiers to match exactly.
5051 * Otherwise e.g. <S-C-space> would be unusable for other purposes
5052 * if the IM activate key is <S-space>. */
5053 state_mask = im_activatekey_state;
5054 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
5055 | (int)GDK_MOD1_MASK);
5057 if ((event->state & state_mask) != im_activatekey_state)
5058 return FALSE;
5060 /* Don't send it a second time on GDK_KEY_RELEASE. */
5061 if (event->type != GDK_KEY_PRESS)
5062 return TRUE;
5064 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
5066 im_set_active(FALSE);
5068 /* ":lmap" mappings exists, toggle use of mappings. */
5069 State ^= LANGMAP;
5070 if (State & LANGMAP)
5072 curbuf->b_p_iminsert = B_IMODE_NONE;
5073 State &= ~LANGMAP;
5075 else
5077 curbuf->b_p_iminsert = B_IMODE_LMAP;
5078 State |= LANGMAP;
5080 return TRUE;
5083 return gtk_im_context_filter_keypress(xic, event);
5086 /* Don't filter events through the IM context if IM isn't active
5087 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
5088 * not doing anything before the activation key was sent. */
5089 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
5091 int imresult = gtk_im_context_filter_keypress(xic, event);
5093 /* Some XIM send following sequence:
5094 * 1. preedited string.
5095 * 2. committed string.
5096 * 3. line changed key.
5097 * 4. preedited string.
5098 * 5. remove preedited string.
5099 * if 3, Vim can't move back the above line for 5.
5100 * thus, this part should not parse the key. */
5101 if (!imresult && preedit_start_col != MAXCOL
5102 && event->keyval == GDK_Return)
5104 im_synthesize_keypress(GDK_Return, 0U);
5105 return FALSE;
5108 /* If XIM tried to commit a keypad key as a single char.,
5109 * ignore it so we can use the keypad key 'raw', for mappings. */
5110 if (xim_expected_char != NUL && xim_ignored_char)
5111 /* We had a keypad key, and XIM tried to thieve it */
5112 return FALSE;
5114 /* Normal processing */
5115 return imresult;
5119 return FALSE;
5121 # endif
5123 # ifndef FEAT_GUI_MACVIM
5125 im_get_status(void)
5127 return im_is_active;
5129 # endif
5131 # else /* !HAVE_GTK2 */
5133 static int xim_is_active = FALSE; /* XIM should be active in the current
5134 mode */
5135 static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
5136 #ifdef FEAT_GUI_X11
5137 static XIMStyle input_style;
5138 static int status_area_enabled = TRUE;
5139 #endif
5141 #ifdef FEAT_GUI_GTK
5142 # ifdef WIN3264
5143 # include <gdk/gdkwin32.h>
5144 # else
5145 # include <gdk/gdkx.h>
5146 # endif
5147 #else
5148 # ifdef PROTO
5149 /* Define a few things to be able to generate prototypes while not configured
5150 * for GTK. */
5151 # define GSList int
5152 # define gboolean int
5153 typedef int GdkEvent;
5154 typedef int GdkEventKey;
5155 # define GdkIC int
5156 # endif
5157 #endif
5159 #if defined(FEAT_GUI_GTK) || defined(PROTO)
5160 static int preedit_buf_len = 0;
5161 static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
5162 static int xim_input_style;
5163 #ifndef FEAT_GUI_GTK
5164 # define gboolean int
5165 #endif
5166 static gboolean use_status_area = 0;
5168 static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
5169 static void im_xim_send_event_imactivate __ARGS((void));
5172 * Convert string to keycode and state for XKeyEvent.
5173 * When string is valid return OK, when invalid return FAIL.
5175 * See 'imactivatekey' documentation for the format.
5177 static int
5178 im_xim_str2keycode(code, state)
5179 unsigned int *code;
5180 unsigned int *state;
5182 int retval = OK;
5183 int len;
5184 unsigned keycode = 0, keystate = 0;
5185 Window window;
5186 Display *display;
5187 char_u *flag_end;
5188 char_u *str;
5190 if (*p_imak != NUL)
5192 len = STRLEN(p_imak);
5193 for (flag_end = p_imak + len - 1;
5194 flag_end > p_imak && *flag_end != '-'; --flag_end)
5197 /* Parse modifier keys */
5198 for (str = p_imak; str < flag_end; ++str)
5200 switch (*str)
5202 case 's': case 'S':
5203 keystate |= ShiftMask;
5204 break;
5205 case 'l': case 'L':
5206 keystate |= LockMask;
5207 break;
5208 case 'c': case 'C':
5209 keystate |= ControlMask;
5210 break;
5211 case '1':
5212 keystate |= Mod1Mask;
5213 break;
5214 case '2':
5215 keystate |= Mod2Mask;
5216 break;
5217 case '3':
5218 keystate |= Mod3Mask;
5219 break;
5220 case '4':
5221 keystate |= Mod4Mask;
5222 break;
5223 case '5':
5224 keystate |= Mod5Mask;
5225 break;
5226 case '-':
5227 break;
5228 default:
5229 retval = FAIL;
5232 if (*str == '-')
5233 ++str;
5235 /* Get keycode from string. */
5236 gui_get_x11_windis(&window, &display);
5237 if (display)
5238 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
5239 if (keycode == 0)
5240 retval = FAIL;
5242 if (code != NULL)
5243 *code = keycode;
5244 if (state != NULL)
5245 *state = keystate;
5247 return retval;
5250 static void
5251 im_xim_send_event_imactivate()
5253 /* Force turn on preedit state by symulate keypress event.
5254 * Keycode and state is specified by 'imactivatekey'.
5256 XKeyEvent ev;
5258 gui_get_x11_windis(&ev.window, &ev.display);
5259 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
5260 ev.subwindow = None;
5261 ev.time = CurrentTime;
5262 ev.x = 1;
5263 ev.y = 1;
5264 ev.x_root = 1;
5265 ev.y_root = 1;
5266 ev.same_screen = 1;
5267 ev.type = KeyPress;
5268 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
5269 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
5273 * Return TRUE if 'imactivatekey' has a valid value.
5276 im_xim_isvalid_imactivate()
5278 return im_xim_str2keycode(NULL, NULL) == OK;
5280 #endif /* FEAT_GUI_GTK */
5283 * Switch using XIM on/off. This is used by the code that changes "State".
5285 void
5286 im_set_active(active)
5287 int active;
5289 if (xic == NULL)
5290 return;
5292 /* If 'imdisable' is set, XIM is never active. */
5293 if (p_imdisable)
5294 active = FALSE;
5295 #if !defined (FEAT_GUI_GTK)
5296 else if (input_style & XIMPreeditPosition)
5297 /* There is a problem in switching XIM off when preediting is used,
5298 * and it is not clear how this can be solved. For now, keep XIM on
5299 * all the time, like it was done in Vim 5.8. */
5300 active = TRUE;
5301 #endif
5303 /* Remember the active state, it is needed when Vim gets keyboard focus. */
5304 xim_is_active = active;
5306 #ifdef FEAT_GUI_GTK
5307 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
5308 * state. When 'imactivatekey' has no or invalid string, try old XIM
5309 * focus control.
5311 if (*p_imak != NUL)
5313 /* BASIC STRATEGY:
5314 * Destroy old Input Context (XIC), and create new one. New XIC
5315 * would have a state of preedit that is off. When argument:active
5316 * is false, that's all. Else argument:active is true, send a key
5317 * event specified by 'imactivatekey' to activate XIM preedit state.
5320 xim_is_active = TRUE; /* Disable old XIM focus control */
5321 /* If we can monitor preedit state with preedit callback functions,
5322 * try least creation of new XIC.
5324 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5326 if (xim_can_preediting && !active)
5328 /* Force turn off preedit state. With some IM
5329 * implementations, we cannot turn off preedit state by
5330 * symulate keypress event. It is why using such a method
5331 * that destroy old IC (input context), and create new one.
5332 * When create new IC, its preedit state is usually off.
5334 xim_reset();
5335 xim_set_focus(FALSE);
5336 gdk_ic_destroy(xic);
5337 xim_init();
5338 xim_can_preediting = FALSE;
5340 else if (!xim_can_preediting && active)
5341 im_xim_send_event_imactivate();
5343 else
5345 /* First, force destroy old IC, and create new one. It
5346 * symulates "turning off preedit state".
5348 xim_set_focus(FALSE);
5349 gdk_ic_destroy(xic);
5350 xim_init();
5351 xim_can_preediting = FALSE;
5353 /* 2nd, when requested to activate IM, symulate this by sending
5354 * the event.
5356 if (active)
5358 im_xim_send_event_imactivate();
5359 xim_can_preediting = TRUE;
5363 else
5365 # ifndef XIMPreeditUnKnown
5366 /* X11R5 doesn't have these, it looks safe enough to define here. */
5367 typedef unsigned long XIMPreeditState;
5368 # define XIMPreeditUnKnown 0L
5369 # define XIMPreeditEnable 1L
5370 # define XIMPreeditDisable (1L<<1)
5371 # define XNPreeditState "preeditState"
5372 # endif
5373 XIMPreeditState preedit_state = XIMPreeditUnKnown;
5374 XVaNestedList preedit_attr;
5375 XIC pxic;
5377 preedit_attr = XVaCreateNestedList(0,
5378 XNPreeditState, &preedit_state,
5379 NULL);
5380 pxic = ((GdkICPrivate *)xic)->xic;
5382 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
5384 XFree(preedit_attr);
5385 preedit_attr = XVaCreateNestedList(0,
5386 XNPreeditState,
5387 active ? XIMPreeditEnable : XIMPreeditDisable,
5388 NULL);
5389 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
5390 xim_can_preediting = active;
5391 xim_is_active = active;
5393 XFree(preedit_attr);
5395 if (xim_input_style & XIMPreeditCallbacks)
5397 preedit_buf_len = 0;
5398 init_preedit_start_col();
5400 #else
5401 # if 0
5402 /* When had tested kinput2 + canna + Athena GUI version with
5403 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
5404 * work correctly. It just inserted one space. I don't know why we
5405 * couldn't switch state of XIM preediting. This is reason why these
5406 * codes are commented out.
5408 /* First, force destroy old IC, and create new one. It symulates
5409 * "turning off preedit state".
5411 xim_set_focus(FALSE);
5412 XDestroyIC(xic);
5413 xic = NULL;
5414 xim_init();
5416 /* 2nd, when requested to activate IM, symulate this by sending the
5417 * event.
5419 if (active)
5420 im_xim_send_event_imactivate();
5421 # endif
5422 #endif
5423 xim_set_preedit();
5427 * Adjust using XIM for gaining or losing keyboard focus. Also called when
5428 * "xim_is_active" changes.
5430 void
5431 xim_set_focus(focus)
5432 int focus;
5434 if (xic == NULL)
5435 return;
5438 * XIM only gets focus when the Vim window has keyboard focus and XIM has
5439 * been set active for the current mode.
5441 if (focus && xim_is_active)
5443 if (!xim_has_focus)
5445 xim_has_focus = TRUE;
5446 #ifdef FEAT_GUI_GTK
5447 gdk_im_begin(xic, gui.drawarea->window);
5448 #else
5449 XSetICFocus(xic);
5450 #endif
5453 else
5455 if (xim_has_focus)
5457 xim_has_focus = FALSE;
5458 #ifdef FEAT_GUI_GTK
5459 gdk_im_end();
5460 #else
5461 XUnsetICFocus(xic);
5462 #endif
5467 void
5468 im_set_position(row, col)
5469 int row UNUSED;
5470 int col UNUSED;
5472 xim_set_preedit();
5476 * Set the XIM to the current cursor position.
5478 void
5479 xim_set_preedit()
5481 if (xic == NULL)
5482 return;
5484 xim_set_focus(TRUE);
5486 #ifdef FEAT_GUI_GTK
5487 if (gdk_im_ready())
5489 int attrmask;
5490 GdkICAttr *attr;
5492 if (!xic_attr)
5493 return;
5495 attr = xic_attr;
5496 attrmask = 0;
5498 # ifdef FEAT_XFONTSET
5499 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
5500 && gui.fontset != NOFONTSET
5501 && gui.fontset->type == GDK_FONT_FONTSET)
5503 if (!xim_has_focus)
5505 if (attr->spot_location.y >= 0)
5507 attr->spot_location.x = 0;
5508 attr->spot_location.y = -100;
5509 attrmask |= (int)GDK_IC_SPOT_LOCATION;
5512 else
5514 gint width, height;
5516 if (attr->spot_location.x != TEXT_X(gui.col)
5517 || attr->spot_location.y != TEXT_Y(gui.row))
5519 attr->spot_location.x = TEXT_X(gui.col);
5520 attr->spot_location.y = TEXT_Y(gui.row);
5521 attrmask |= (int)GDK_IC_SPOT_LOCATION;
5524 gdk_window_get_size(gui.drawarea->window, &width, &height);
5525 width -= 2 * gui.border_offset;
5526 height -= 2 * gui.border_offset;
5527 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
5528 height -= gui.char_height;
5529 if (attr->preedit_area.width != width
5530 || attr->preedit_area.height != height)
5532 attr->preedit_area.x = gui.border_offset;
5533 attr->preedit_area.y = gui.border_offset;
5534 attr->preedit_area.width = width;
5535 attr->preedit_area.height = height;
5536 attrmask |= (int)GDK_IC_PREEDIT_AREA;
5539 if (attr->preedit_fontset != gui.current_font)
5541 attr->preedit_fontset = gui.current_font;
5542 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
5546 # endif /* FEAT_XFONTSET */
5548 if (xim_fg_color == INVALCOLOR)
5550 xim_fg_color = gui.def_norm_pixel;
5551 xim_bg_color = gui.def_back_pixel;
5553 if (attr->preedit_foreground.pixel != xim_fg_color)
5555 attr->preedit_foreground.pixel = xim_fg_color;
5556 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
5558 if (attr->preedit_background.pixel != xim_bg_color)
5560 attr->preedit_background.pixel = xim_bg_color;
5561 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
5564 if (attrmask != 0)
5565 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
5567 #else /* FEAT_GUI_GTK */
5569 XVaNestedList attr_list;
5570 XRectangle spot_area;
5571 XPoint over_spot;
5572 int line_space;
5574 if (!xim_has_focus)
5576 /* hide XIM cursor */
5577 over_spot.x = 0;
5578 over_spot.y = -100; /* arbitrary invisible position */
5579 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5580 XNSpotLocation,
5581 &over_spot,
5582 NULL);
5583 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
5584 XFree(attr_list);
5585 return;
5588 if (input_style & XIMPreeditPosition)
5590 if (xim_fg_color == INVALCOLOR)
5592 xim_fg_color = gui.def_norm_pixel;
5593 xim_bg_color = gui.def_back_pixel;
5595 over_spot.x = TEXT_X(gui.col);
5596 over_spot.y = TEXT_Y(gui.row);
5597 spot_area.x = 0;
5598 spot_area.y = 0;
5599 spot_area.height = gui.char_height * Rows;
5600 spot_area.width = gui.char_width * Columns;
5601 line_space = gui.char_height;
5602 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5603 XNSpotLocation, &over_spot,
5604 XNForeground, (Pixel) xim_fg_color,
5605 XNBackground, (Pixel) xim_bg_color,
5606 XNArea, &spot_area,
5607 XNLineSpace, line_space,
5608 NULL);
5609 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
5610 EMSG(_("E284: Cannot set IC values"));
5611 XFree(attr_list);
5614 #endif /* FEAT_GUI_GTK */
5618 * Set up the status area.
5620 * This should use a separate Widget, but that seems not possible, because
5621 * preedit_area and status_area should be set to the same window as for the
5622 * text input. Unfortunately this means the status area pollutes the text
5623 * window...
5625 void
5626 xim_set_status_area()
5628 if (xic == NULL)
5629 return;
5631 #ifdef FEAT_GUI_GTK
5632 # if defined(FEAT_XFONTSET)
5633 if (use_status_area)
5635 GdkICAttr *attr;
5636 int style;
5637 gint width, height;
5638 GtkWidget *widget;
5639 int attrmask;
5641 if (!xic_attr)
5642 return;
5644 attr = xic_attr;
5645 attrmask = 0;
5646 style = (int)gdk_ic_get_style(xic);
5647 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
5649 if (gui.fontset != NOFONTSET
5650 && gui.fontset->type == GDK_FONT_FONTSET)
5652 widget = gui.mainwin;
5653 gdk_window_get_size(widget->window, &width, &height);
5655 attrmask |= (int)GDK_IC_STATUS_AREA;
5656 attr->status_area.x = 0;
5657 attr->status_area.y = height - gui.char_height - 1;
5658 attr->status_area.width = width;
5659 attr->status_area.height = gui.char_height;
5662 if (attrmask != 0)
5663 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
5665 # endif
5666 #else
5668 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
5669 XRectangle pre_area, status_area;
5671 if (input_style & XIMStatusArea)
5673 if (input_style & XIMPreeditArea)
5675 XRectangle *needed_rect;
5677 /* to get status_area width */
5678 status_list = XVaCreateNestedList(0, XNAreaNeeded,
5679 &needed_rect, NULL);
5680 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
5681 XFree(status_list);
5683 status_area.width = needed_rect->width;
5685 else
5686 status_area.width = gui.char_width * Columns;
5688 status_area.x = 0;
5689 status_area.y = gui.char_height * Rows + gui.border_offset;
5690 if (gui.which_scrollbars[SBAR_BOTTOM])
5691 status_area.y += gui.scrollbar_height;
5692 #ifdef FEAT_MENU
5693 if (gui.menu_is_active)
5694 status_area.y += gui.menu_height;
5695 #endif
5696 status_area.height = gui.char_height;
5697 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
5699 else
5701 status_area.x = 0;
5702 status_area.y = gui.char_height * Rows + gui.border_offset;
5703 if (gui.which_scrollbars[SBAR_BOTTOM])
5704 status_area.y += gui.scrollbar_height;
5705 #ifdef FEAT_MENU
5706 if (gui.menu_is_active)
5707 status_area.y += gui.menu_height;
5708 #endif
5709 status_area.width = 0;
5710 status_area.height = gui.char_height;
5713 if (input_style & XIMPreeditArea) /* off-the-spot */
5715 pre_area.x = status_area.x + status_area.width;
5716 pre_area.y = gui.char_height * Rows + gui.border_offset;
5717 pre_area.width = gui.char_width * Columns - pre_area.x;
5718 if (gui.which_scrollbars[SBAR_BOTTOM])
5719 pre_area.y += gui.scrollbar_height;
5720 #ifdef FEAT_MENU
5721 if (gui.menu_is_active)
5722 pre_area.y += gui.menu_height;
5723 #endif
5724 pre_area.height = gui.char_height;
5725 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5727 else if (input_style & XIMPreeditPosition) /* over-the-spot */
5729 pre_area.x = 0;
5730 pre_area.y = 0;
5731 pre_area.height = gui.char_height * Rows;
5732 pre_area.width = gui.char_width * Columns;
5733 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5736 if (preedit_list && status_list)
5737 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5738 XNStatusAttributes, status_list, NULL);
5739 else if (preedit_list)
5740 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5741 NULL);
5742 else if (status_list)
5743 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
5744 NULL);
5745 else
5746 list = NULL;
5748 if (list)
5750 XSetICValues(xic, XNVaNestedList, list, NULL);
5751 XFree(list);
5753 if (status_list)
5754 XFree(status_list);
5755 if (preedit_list)
5756 XFree(preedit_list);
5758 #endif
5761 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
5762 static char e_xim[] = N_("E285: Failed to create input context");
5763 #endif
5765 #if defined(FEAT_GUI_X11) || defined(PROTO)
5766 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5767 # define USE_X11R6_XIM
5768 # endif
5770 static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
5773 #ifdef USE_X11R6_XIM
5774 static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
5775 static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
5777 static void
5778 xim_instantiate_cb(display, client_data, call_data)
5779 Display *display;
5780 XPointer client_data UNUSED;
5781 XPointer call_data UNUSED;
5783 Window x11_window;
5784 Display *x11_display;
5786 #ifdef XIM_DEBUG
5787 xim_log("xim_instantiate_cb()\n");
5788 #endif
5790 gui_get_x11_windis(&x11_window, &x11_display);
5791 if (display != x11_display)
5792 return;
5794 xim_real_init(x11_window, x11_display);
5795 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5796 if (xic != NULL)
5797 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5798 xim_instantiate_cb, NULL);
5801 static void
5802 xim_destroy_cb(im, client_data, call_data)
5803 XIM im UNUSED;
5804 XPointer client_data UNUSED;
5805 XPointer call_data UNUSED;
5807 Window x11_window;
5808 Display *x11_display;
5810 #ifdef XIM_DEBUG
5811 xim_log("xim_destroy_cb()\n");
5812 #endif
5813 gui_get_x11_windis(&x11_window, &x11_display);
5815 xic = NULL;
5816 status_area_enabled = FALSE;
5818 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5820 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5821 xim_instantiate_cb, NULL);
5823 #endif
5825 void
5826 xim_init()
5828 Window x11_window;
5829 Display *x11_display;
5831 #ifdef XIM_DEBUG
5832 xim_log("xim_init()\n");
5833 #endif
5835 gui_get_x11_windis(&x11_window, &x11_display);
5837 xic = NULL;
5839 if (xim_real_init(x11_window, x11_display))
5840 return;
5842 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5844 #ifdef USE_X11R6_XIM
5845 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5846 xim_instantiate_cb, NULL);
5847 #endif
5850 static int
5851 xim_real_init(x11_window, x11_display)
5852 Window x11_window;
5853 Display *x11_display;
5855 int i;
5856 char *p,
5858 *ns,
5859 *end,
5860 tmp[1024];
5861 #define IMLEN_MAX 40
5862 char buf[IMLEN_MAX + 7];
5863 XIM xim = NULL;
5864 XIMStyles *xim_styles;
5865 XIMStyle this_input_style = 0;
5866 Boolean found;
5867 XPoint over_spot;
5868 XVaNestedList preedit_list, status_list;
5870 input_style = 0;
5871 status_area_enabled = FALSE;
5873 if (xic != NULL)
5874 return FALSE;
5876 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
5878 strcpy(tmp, gui.rsrc_input_method);
5879 for (ns = s = tmp; ns != NULL && *s != NUL;)
5881 s = (char *)skipwhite((char_u *)s);
5882 if (*s == NUL)
5883 break;
5884 if ((ns = end = strchr(s, ',')) == NULL)
5885 end = s + strlen(s);
5886 while (isspace(((char_u *)end)[-1]))
5887 end--;
5888 *end = NUL;
5890 if (strlen(s) <= IMLEN_MAX)
5892 strcpy(buf, "@im=");
5893 strcat(buf, s);
5894 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
5895 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
5896 != NULL)
5897 break;
5900 s = ns + 1;
5904 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
5905 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5907 /* This is supposed to be useful to obtain characters through
5908 * XmbLookupString() without really using a XIM. */
5909 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
5910 && *p != NUL)
5911 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5913 if (xim == NULL)
5915 /* Only give this message when verbose is set, because too many people
5916 * got this message when they didn't want to use a XIM. */
5917 if (p_verbose > 0)
5919 verbose_enter();
5920 EMSG(_("E286: Failed to open input method"));
5921 verbose_leave();
5923 return FALSE;
5926 #ifdef USE_X11R6_XIM
5928 XIMCallback destroy_cb;
5930 destroy_cb.callback = xim_destroy_cb;
5931 destroy_cb.client_data = NULL;
5932 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
5933 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5935 #endif
5937 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
5939 EMSG(_("E288: input method doesn't support any style"));
5940 XCloseIM(xim);
5941 return FALSE;
5944 found = False;
5945 strcpy(tmp, gui.rsrc_preedit_type_name);
5946 for (s = tmp; s && !found; )
5948 while (*s && isspace((unsigned char)*s))
5949 s++;
5950 if (!*s)
5951 break;
5952 if ((ns = end = strchr(s, ',')) != 0)
5953 ns++;
5954 else
5955 end = s + strlen(s);
5956 while (isspace((unsigned char)*end))
5957 end--;
5958 *end = '\0';
5960 if (!strcmp(s, "OverTheSpot"))
5961 this_input_style = (XIMPreeditPosition | XIMStatusArea);
5962 else if (!strcmp(s, "OffTheSpot"))
5963 this_input_style = (XIMPreeditArea | XIMStatusArea);
5964 else if (!strcmp(s, "Root"))
5965 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
5967 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5969 if (this_input_style == xim_styles->supported_styles[i])
5971 found = True;
5972 break;
5975 if (!found)
5976 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5978 if ((xim_styles->supported_styles[i] & this_input_style)
5979 == (this_input_style & ~XIMStatusArea))
5981 this_input_style &= ~XIMStatusArea;
5982 found = True;
5983 break;
5987 s = ns;
5989 XFree(xim_styles);
5991 if (!found)
5993 /* Only give this message when verbose is set, because too many people
5994 * got this message when they didn't want to use a XIM. */
5995 if (p_verbose > 0)
5997 verbose_enter();
5998 EMSG(_("E289: input method doesn't support my preedit type"));
5999 verbose_leave();
6001 XCloseIM(xim);
6002 return FALSE;
6005 over_spot.x = TEXT_X(gui.col);
6006 over_spot.y = TEXT_Y(gui.row);
6007 input_style = this_input_style;
6009 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
6010 * thus that has been removed. Hopefully the default works... */
6011 #ifdef FEAT_XFONTSET
6012 if (gui.fontset != NOFONTSET)
6014 preedit_list = XVaCreateNestedList(0,
6015 XNSpotLocation, &over_spot,
6016 XNForeground, (Pixel)gui.def_norm_pixel,
6017 XNBackground, (Pixel)gui.def_back_pixel,
6018 XNFontSet, (XFontSet)gui.fontset,
6019 NULL);
6020 status_list = XVaCreateNestedList(0,
6021 XNForeground, (Pixel)gui.def_norm_pixel,
6022 XNBackground, (Pixel)gui.def_back_pixel,
6023 XNFontSet, (XFontSet)gui.fontset,
6024 NULL);
6026 else
6027 #endif
6029 preedit_list = XVaCreateNestedList(0,
6030 XNSpotLocation, &over_spot,
6031 XNForeground, (Pixel)gui.def_norm_pixel,
6032 XNBackground, (Pixel)gui.def_back_pixel,
6033 NULL);
6034 status_list = XVaCreateNestedList(0,
6035 XNForeground, (Pixel)gui.def_norm_pixel,
6036 XNBackground, (Pixel)gui.def_back_pixel,
6037 NULL);
6040 xic = XCreateIC(xim,
6041 XNInputStyle, input_style,
6042 XNClientWindow, x11_window,
6043 XNFocusWindow, gui.wid,
6044 XNPreeditAttributes, preedit_list,
6045 XNStatusAttributes, status_list,
6046 NULL);
6047 XFree(status_list);
6048 XFree(preedit_list);
6049 if (xic != NULL)
6051 if (input_style & XIMStatusArea)
6053 xim_set_status_area();
6054 status_area_enabled = TRUE;
6056 else
6057 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
6059 else
6061 EMSG(_(e_xim));
6062 XCloseIM(xim);
6063 return FALSE;
6066 return TRUE;
6069 #endif /* FEAT_GUI_X11 */
6071 #if defined(FEAT_GUI_GTK) || defined(PROTO)
6073 # ifdef FEAT_XFONTSET
6074 static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
6075 # endif
6077 # ifdef PROTO
6078 typedef int GdkIC;
6079 # endif
6081 void
6082 xim_decide_input_style()
6084 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
6085 * OverTheSpot. */
6086 int supported_style = (int)GDK_IM_PREEDIT_NONE |
6087 (int)GDK_IM_PREEDIT_NOTHING |
6088 (int)GDK_IM_PREEDIT_POSITION |
6089 (int)GDK_IM_PREEDIT_CALLBACKS |
6090 (int)GDK_IM_STATUS_CALLBACKS |
6091 (int)GDK_IM_STATUS_AREA |
6092 (int)GDK_IM_STATUS_NONE |
6093 (int)GDK_IM_STATUS_NOTHING;
6095 #ifdef XIM_DEBUG
6096 xim_log("xim_decide_input_style()\n");
6097 #endif
6099 if (!gdk_im_ready())
6100 xim_input_style = 0;
6101 else
6103 if (gtk_major_version > 1
6104 || (gtk_major_version == 1
6105 && (gtk_minor_version > 2
6106 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
6107 use_status_area = TRUE;
6108 else
6110 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
6111 use_status_area = FALSE;
6113 #ifdef FEAT_XFONTSET
6114 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
6115 #endif
6116 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
6117 | (int)GDK_IM_STATUS_AREA);
6118 if (!use_status_area)
6119 supported_style &= ~(int)GDK_IM_STATUS_AREA;
6120 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
6124 static void
6125 preedit_start_cbproc(XIC thexic UNUSED,
6126 XPointer client_data UNUSED,
6127 XPointer call_data UNUSED)
6129 #ifdef XIM_DEBUG
6130 xim_log("xim_decide_input_style()\n");
6131 #endif
6133 draw_feedback = NULL;
6134 xim_can_preediting = TRUE;
6135 xim_has_preediting = TRUE;
6136 gui_update_cursor(TRUE, FALSE);
6137 if (showmode() > 0)
6139 setcursor();
6140 out_flush();
6144 static void
6145 xim_back_delete(int n)
6147 char_u str[3];
6149 str[0] = CSI;
6150 str[1] = 'k';
6151 str[2] = 'b';
6152 while (n-- > 0)
6153 add_to_input_buf(str, 3);
6156 static GSList *key_press_event_queue = NULL;
6157 static gboolean processing_queued_event = FALSE;
6159 static void
6160 preedit_draw_cbproc(XIC thexic UNUSED,
6161 XPointer client_data UNUSED,
6162 XPointer call_data)
6164 XIMPreeditDrawCallbackStruct *draw_data;
6165 XIMText *text;
6166 char *src;
6167 GSList *event_queue;
6169 #ifdef XIM_DEBUG
6170 xim_log("preedit_draw_cbproc()\n");
6171 #endif
6173 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
6174 text = (XIMText *) draw_data->text;
6176 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
6177 || preedit_buf_len == 0)
6179 init_preedit_start_col();
6180 vim_free(draw_feedback);
6181 draw_feedback = NULL;
6183 if (draw_data->chg_length > 0)
6185 int bs_cnt;
6187 if (draw_data->chg_length > preedit_buf_len)
6188 bs_cnt = preedit_buf_len;
6189 else
6190 bs_cnt = draw_data->chg_length;
6191 xim_back_delete(bs_cnt);
6192 preedit_buf_len -= bs_cnt;
6194 if (text != NULL)
6196 int len;
6197 #ifdef FEAT_MBYTE
6198 char_u *buf = NULL;
6199 unsigned int nfeedback = 0;
6200 #endif
6201 char_u *ptr;
6203 src = text->string.multi_byte;
6204 if (src != NULL && !text->encoding_is_wchar)
6206 len = strlen(src);
6207 ptr = (char_u *)src;
6208 /* Avoid the enter for decision */
6209 if (*ptr == '\n')
6210 return;
6212 #ifdef FEAT_MBYTE
6213 if (input_conv.vc_type != CONV_NONE
6214 && (buf = string_convert(&input_conv,
6215 (char_u *)src, &len)) != NULL)
6217 /* Converted from 'termencoding' to 'encoding'. */
6218 add_to_input_buf_csi(buf, len);
6219 ptr = buf;
6221 else
6222 #endif
6223 add_to_input_buf_csi((char_u *)src, len);
6224 /* Add count of character to preedit_buf_len */
6225 while (*ptr != NUL)
6227 #ifdef FEAT_MBYTE
6228 if (draw_data->text->feedback != NULL)
6230 if (draw_feedback == NULL)
6231 draw_feedback = (char *)alloc(draw_data->chg_first
6232 + text->length);
6233 else
6234 draw_feedback = vim_realloc(draw_feedback,
6235 draw_data->chg_first + text->length);
6236 if (draw_feedback != NULL)
6238 draw_feedback[nfeedback + draw_data->chg_first]
6239 = draw_data->text->feedback[nfeedback];
6240 nfeedback++;
6243 if (has_mbyte)
6244 ptr += (*mb_ptr2len)(ptr);
6245 else
6246 #endif
6247 ptr++;
6248 preedit_buf_len++;
6250 #ifdef FEAT_MBYTE
6251 vim_free(buf);
6252 #endif
6253 preedit_end_col = MAXCOL;
6256 if (text != NULL || draw_data->chg_length > 0)
6258 event_queue = key_press_event_queue;
6259 processing_queued_event = TRUE;
6260 while (event_queue != NULL && processing_queued_event)
6262 GdkEvent *ev = event_queue->data;
6264 gboolean *ret;
6265 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
6266 ev, &ret);
6267 gdk_event_free(ev);
6268 event_queue = event_queue->next;
6270 processing_queued_event = FALSE;
6271 if (key_press_event_queue)
6273 g_slist_free(key_press_event_queue);
6274 key_press_event_queue = NULL;
6277 if (gtk_main_level() > 0)
6278 gtk_main_quit();
6282 * Retrieve the highlighting attributes at column col in the preedit string.
6283 * Return -1 if not in preediting mode or if col is out of range.
6286 im_get_feedback_attr(int col)
6288 if (draw_feedback != NULL && col < preedit_buf_len)
6290 if (draw_feedback[col] & XIMReverse)
6291 return HL_INVERSE;
6292 else if (draw_feedback[col] & XIMUnderline)
6293 return HL_UNDERLINE;
6294 else
6295 return hl_attr(HLF_V);
6298 return -1;
6301 static void
6302 preedit_caret_cbproc(XIC thexic UNUSED,
6303 XPointer client_data UNUSED,
6304 XPointer call_data UNUSED)
6306 #ifdef XIM_DEBUG
6307 xim_log("preedit_caret_cbproc()\n");
6308 #endif
6311 static void
6312 preedit_done_cbproc(XIC thexic UNUSED,
6313 XPointer client_data UNUSED,
6314 XPointer call_data UNUSED)
6316 #ifdef XIM_DEBUG
6317 xim_log("preedit_done_cbproc()\n");
6318 #endif
6320 vim_free(draw_feedback);
6321 draw_feedback = NULL;
6322 xim_can_preediting = FALSE;
6323 xim_has_preediting = FALSE;
6324 gui_update_cursor(TRUE, FALSE);
6325 if (showmode() > 0)
6327 setcursor();
6328 out_flush();
6332 void
6333 xim_reset(void)
6335 char *text;
6337 #ifdef XIM_DEBUG
6338 xim_log("xim_reset()\n");
6339 #endif
6341 if (xic != NULL)
6343 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
6344 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
6345 add_to_input_buf_csi((char_u *)text, strlen(text));
6346 else
6347 preedit_buf_len = 0;
6348 if (text != NULL)
6349 XFree(text);
6354 xim_queue_key_press_event(GdkEventKey *event, int down UNUSED)
6356 #ifdef XIM_DEBUG
6357 xim_log("xim_queue_key_press_event()\n");
6358 #endif
6360 if (preedit_buf_len <= 0)
6361 return FALSE;
6362 if (processing_queued_event)
6363 processing_queued_event = FALSE;
6365 key_press_event_queue = g_slist_append(key_press_event_queue,
6366 gdk_event_copy((GdkEvent *)event));
6367 return TRUE;
6370 static void
6371 preedit_callback_setup(GdkIC *ic UNUSED)
6373 XIC xxic;
6374 XVaNestedList preedit_attr;
6375 XIMCallback preedit_start_cb;
6376 XIMCallback preedit_draw_cb;
6377 XIMCallback preedit_caret_cb;
6378 XIMCallback preedit_done_cb;
6380 xxic = ((GdkICPrivate*)xic)->xic;
6381 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
6382 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
6383 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
6384 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
6385 preedit_attr
6386 = XVaCreateNestedList(0,
6387 XNPreeditStartCallback, &preedit_start_cb,
6388 XNPreeditDrawCallback, &preedit_draw_cb,
6389 XNPreeditCaretCallback, &preedit_caret_cb,
6390 XNPreeditDoneCallback, &preedit_done_cb,
6391 NULL);
6392 XSetICValues(xxic, XNPreeditAttributes, preedit_attr, NULL);
6393 XFree(preedit_attr);
6396 static void
6397 reset_state_setup(GdkIC *ic UNUSED)
6399 #ifdef USE_X11R6_XIM
6400 /* don't change the input context when we call reset */
6401 XSetICValues(((GdkICPrivate *)ic)->xic, XNResetState, XIMPreserveState,
6402 NULL);
6403 #endif
6406 void
6407 xim_init(void)
6409 #ifdef XIM_DEBUG
6410 xim_log("xim_init()\n");
6411 #endif
6413 xic = NULL;
6414 xic_attr = NULL;
6416 if (!gdk_im_ready())
6418 if (p_verbose > 0)
6420 verbose_enter();
6421 EMSG(_("E292: Input Method Server is not running"));
6422 verbose_leave();
6424 return;
6426 if ((xic_attr = gdk_ic_attr_new()) != NULL)
6428 #ifdef FEAT_XFONTSET
6429 gint width, height;
6430 #endif
6431 int mask;
6432 GdkColormap *colormap;
6433 GdkICAttr *attr = xic_attr;
6434 int attrmask = (int)GDK_IC_ALL_REQ;
6435 GtkWidget *widget = gui.drawarea;
6437 attr->style = (GdkIMStyle)xim_input_style;
6438 attr->client_window = gui.mainwin->window;
6440 if ((colormap = gtk_widget_get_colormap(widget)) !=
6441 gtk_widget_get_default_colormap())
6443 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
6444 attr->preedit_colormap = colormap;
6446 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
6447 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
6448 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
6449 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
6451 #ifdef FEAT_XFONTSET
6452 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
6453 == (int)GDK_IM_PREEDIT_POSITION)
6455 if (gui.fontset == NOFONTSET
6456 || gui.fontset->type != GDK_FONT_FONTSET)
6458 EMSG(_(e_overthespot));
6460 else
6462 gdk_window_get_size(widget->window, &width, &height);
6464 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
6465 attr->spot_location.x = TEXT_X(0);
6466 attr->spot_location.y = TEXT_Y(0);
6467 attr->preedit_area.x = gui.border_offset;
6468 attr->preedit_area.y = gui.border_offset;
6469 attr->preedit_area.width = width - 2*gui.border_offset;
6470 attr->preedit_area.height = height - 2*gui.border_offset;
6471 attr->preedit_fontset = gui.fontset;
6475 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
6476 == (int)GDK_IM_STATUS_AREA)
6478 if (gui.fontset == NOFONTSET
6479 || gui.fontset->type != GDK_FONT_FONTSET)
6481 EMSG(_(e_overthespot));
6483 else
6485 gdk_window_get_size(gui.mainwin->window, &width, &height);
6486 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
6487 attr->status_area.x = 0;
6488 attr->status_area.y = height - gui.char_height - 1;
6489 attr->status_area.width = width;
6490 attr->status_area.height = gui.char_height;
6491 attr->status_fontset = gui.fontset;
6494 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
6495 == (int)GDK_IM_STATUS_CALLBACKS)
6497 /* FIXME */
6499 #endif
6501 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
6503 if (xic == NULL)
6504 EMSG(_(e_xim));
6505 else
6507 mask = (int)gdk_window_get_events(widget->window);
6508 mask |= (int)gdk_ic_get_events(xic);
6509 gdk_window_set_events(widget->window, (GdkEventMask)mask);
6510 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
6511 preedit_callback_setup(xic);
6512 reset_state_setup(xic);
6517 void
6518 im_shutdown(void)
6520 #ifdef XIM_DEBUG
6521 xim_log("im_shutdown()\n");
6522 #endif
6524 if (xic != NULL)
6526 gdk_im_end();
6527 gdk_ic_destroy(xic);
6528 xic = NULL;
6530 xim_is_active = FALSE;
6531 xim_can_preediting = FALSE;
6532 preedit_start_col = MAXCOL;
6533 xim_has_preediting = FALSE;
6536 #endif /* FEAT_GUI_GTK */
6539 xim_get_status_area_height()
6541 #ifdef FEAT_GUI_GTK
6542 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
6543 return gui.char_height;
6544 #else
6545 if (status_area_enabled)
6546 return gui.char_height;
6547 #endif
6548 return 0;
6552 * Get IM status. When IM is on, return TRUE. Else return FALSE.
6553 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
6554 * active, when not having focus XIM may still be active (e.g., when using a
6555 * tear-off menu item).
6558 im_get_status()
6560 # ifdef FEAT_GUI_GTK
6561 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
6562 return xim_can_preediting;
6563 # endif
6564 return xim_has_focus;
6567 # endif /* !HAVE_GTK2 */
6569 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
6571 preedit_get_status(void)
6573 return preedit_is_active;
6575 # endif
6577 # if (defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
6579 im_is_preediting()
6581 return xim_has_preediting;
6583 # endif
6584 #endif /* FEAT_XIM */
6586 #if defined(FEAT_MBYTE) || defined(PROTO)
6589 * Setup "vcp" for conversion from "from" to "to".
6590 * The names must have been made canonical with enc_canonize().
6591 * vcp->vc_type must have been initialized to CONV_NONE.
6592 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
6593 * instead).
6594 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
6595 * Return FAIL when conversion is not supported, OK otherwise.
6598 convert_setup(vcp, from, to)
6599 vimconv_T *vcp;
6600 char_u *from;
6601 char_u *to;
6603 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
6607 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
6608 * "from" unicode charsets be considered utf-8. Same for "to".
6611 convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8)
6612 vimconv_T *vcp;
6613 char_u *from;
6614 int from_unicode_is_utf8;
6615 char_u *to;
6616 int to_unicode_is_utf8;
6618 int from_prop;
6619 int to_prop;
6620 int from_is_utf8;
6621 int to_is_utf8;
6623 /* Reset to no conversion. */
6624 # ifdef USE_ICONV
6625 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
6626 iconv_close(vcp->vc_fd);
6627 # endif
6628 vcp->vc_type = CONV_NONE;
6629 vcp->vc_factor = 1;
6630 vcp->vc_fail = FALSE;
6632 /* No conversion when one of the names is empty or they are equal. */
6633 if (from == NULL || *from == NUL || to == NULL || *to == NUL
6634 || STRCMP(from, to) == 0)
6635 return OK;
6637 from_prop = enc_canon_props(from);
6638 to_prop = enc_canon_props(to);
6639 if (from_unicode_is_utf8)
6640 from_is_utf8 = from_prop & ENC_UNICODE;
6641 else
6642 from_is_utf8 = from_prop == ENC_UNICODE;
6643 if (to_unicode_is_utf8)
6644 to_is_utf8 = to_prop & ENC_UNICODE;
6645 else
6646 to_is_utf8 = to_prop == ENC_UNICODE;
6648 if ((from_prop & ENC_LATIN1) && to_is_utf8)
6650 /* Internal latin1 -> utf-8 conversion. */
6651 vcp->vc_type = CONV_TO_UTF8;
6652 vcp->vc_factor = 2; /* up to twice as long */
6654 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
6656 /* Internal latin9 -> utf-8 conversion. */
6657 vcp->vc_type = CONV_9_TO_UTF8;
6658 vcp->vc_factor = 3; /* up to three as long (euro sign) */
6660 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
6662 /* Internal utf-8 -> latin1 conversion. */
6663 vcp->vc_type = CONV_TO_LATIN1;
6665 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
6667 /* Internal utf-8 -> latin9 conversion. */
6668 vcp->vc_type = CONV_TO_LATIN9;
6670 #ifdef WIN3264
6671 /* Win32-specific codepage <-> codepage conversion without iconv. */
6672 else if ((from_is_utf8 || encname2codepage(from) > 0)
6673 && (to_is_utf8 || encname2codepage(to) > 0))
6675 vcp->vc_type = CONV_CODEPAGE;
6676 vcp->vc_factor = 2; /* up to twice as long */
6677 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
6678 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
6680 #endif
6681 #ifdef MACOS_X
6682 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
6684 vcp->vc_type = CONV_MAC_LATIN1;
6686 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
6688 vcp->vc_type = CONV_MAC_UTF8;
6689 vcp->vc_factor = 2; /* up to twice as long */
6691 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
6693 vcp->vc_type = CONV_LATIN1_MAC;
6695 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
6697 vcp->vc_type = CONV_UTF8_MAC;
6699 #endif
6700 # ifdef USE_ICONV
6701 else
6703 /* Use iconv() for conversion. */
6704 vcp->vc_fd = (iconv_t)my_iconv_open(
6705 to_is_utf8 ? (char_u *)"utf-8" : to,
6706 from_is_utf8 ? (char_u *)"utf-8" : from);
6707 if (vcp->vc_fd != (iconv_t)-1)
6709 vcp->vc_type = CONV_ICONV;
6710 vcp->vc_factor = 4; /* could be longer too... */
6713 # endif
6714 if (vcp->vc_type == CONV_NONE)
6715 return FAIL;
6717 return OK;
6720 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6721 || defined(MSDOS) || defined(PROTO)
6723 * Do conversion on typed input characters in-place.
6724 * The input and output are not NUL terminated!
6725 * Returns the length after conversion.
6728 convert_input(ptr, len, maxlen)
6729 char_u *ptr;
6730 int len;
6731 int maxlen;
6733 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
6735 #endif
6738 * Like convert_input(), but when there is an incomplete byte sequence at the
6739 * end return that as an allocated string in "restp" and set "*restlenp" to
6740 * the length. If "restp" is NULL it is not used.
6743 convert_input_safe(ptr, len, maxlen, restp, restlenp)
6744 char_u *ptr;
6745 int len;
6746 int maxlen;
6747 char_u **restp;
6748 int *restlenp;
6750 char_u *d;
6751 int dlen = len;
6752 int unconvertlen = 0;
6754 d = string_convert_ext(&input_conv, ptr, &dlen,
6755 restp == NULL ? NULL : &unconvertlen);
6756 if (d != NULL)
6758 if (dlen <= maxlen)
6760 if (unconvertlen > 0)
6762 /* Move the unconverted characters to allocated memory. */
6763 *restp = alloc(unconvertlen);
6764 if (*restp != NULL)
6765 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
6766 *restlenp = unconvertlen;
6768 mch_memmove(ptr, d, dlen);
6770 else
6771 /* result is too long, keep the unconverted text (the caller must
6772 * have done something wrong!) */
6773 dlen = len;
6774 vim_free(d);
6776 return dlen;
6780 * Convert text "ptr[*lenp]" according to "vcp".
6781 * Returns the result in allocated memory and sets "*lenp".
6782 * When "lenp" is NULL, use NUL terminated strings.
6783 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6784 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6786 char_u *
6787 string_convert(vcp, ptr, lenp)
6788 vimconv_T *vcp;
6789 char_u *ptr;
6790 int *lenp;
6792 return string_convert_ext(vcp, ptr, lenp, NULL);
6796 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6797 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6798 * set to the number of remaining bytes.
6800 char_u *
6801 string_convert_ext(vcp, ptr, lenp, unconvlenp)
6802 vimconv_T *vcp;
6803 char_u *ptr;
6804 int *lenp;
6805 int *unconvlenp;
6807 char_u *retval = NULL;
6808 char_u *d;
6809 int len;
6810 int i;
6811 int l;
6812 int c;
6814 if (lenp == NULL)
6815 len = (int)STRLEN(ptr);
6816 else
6817 len = *lenp;
6818 if (len == 0)
6819 return vim_strsave((char_u *)"");
6821 switch (vcp->vc_type)
6823 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
6824 retval = alloc(len * 2 + 1);
6825 if (retval == NULL)
6826 break;
6827 d = retval;
6828 for (i = 0; i < len; ++i)
6830 c = ptr[i];
6831 if (c < 0x80)
6832 *d++ = c;
6833 else
6835 *d++ = 0xc0 + ((unsigned)c >> 6);
6836 *d++ = 0x80 + (c & 0x3f);
6839 *d = NUL;
6840 if (lenp != NULL)
6841 *lenp = (int)(d - retval);
6842 break;
6844 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
6845 retval = alloc(len * 3 + 1);
6846 if (retval == NULL)
6847 break;
6848 d = retval;
6849 for (i = 0; i < len; ++i)
6851 c = ptr[i];
6852 switch (c)
6854 case 0xa4: c = 0x20ac; break; /* euro */
6855 case 0xa6: c = 0x0160; break; /* S hat */
6856 case 0xa8: c = 0x0161; break; /* S -hat */
6857 case 0xb4: c = 0x017d; break; /* Z hat */
6858 case 0xb8: c = 0x017e; break; /* Z -hat */
6859 case 0xbc: c = 0x0152; break; /* OE */
6860 case 0xbd: c = 0x0153; break; /* oe */
6861 case 0xbe: c = 0x0178; break; /* Y */
6863 d += utf_char2bytes(c, d);
6865 *d = NUL;
6866 if (lenp != NULL)
6867 *lenp = (int)(d - retval);
6868 break;
6870 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
6871 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
6872 retval = alloc(len + 1);
6873 if (retval == NULL)
6874 break;
6875 d = retval;
6876 for (i = 0; i < len; ++i)
6878 l = utf_ptr2len_len(ptr + i, len - i);
6879 if (l == 0)
6880 *d++ = NUL;
6881 else if (l == 1)
6883 int l_w = utf8len_tab_zero[ptr[i]];
6885 if (l_w == 0)
6887 /* Illegal utf-8 byte cannot be converted */
6888 vim_free(retval);
6889 return NULL;
6891 if (unconvlenp != NULL && l_w > len - i)
6893 /* Incomplete sequence at the end. */
6894 *unconvlenp = len - i;
6895 break;
6897 *d++ = ptr[i];
6899 else
6901 c = utf_ptr2char(ptr + i);
6902 if (vcp->vc_type == CONV_TO_LATIN9)
6903 switch (c)
6905 case 0x20ac: c = 0xa4; break; /* euro */
6906 case 0x0160: c = 0xa6; break; /* S hat */
6907 case 0x0161: c = 0xa8; break; /* S -hat */
6908 case 0x017d: c = 0xb4; break; /* Z hat */
6909 case 0x017e: c = 0xb8; break; /* Z -hat */
6910 case 0x0152: c = 0xbc; break; /* OE */
6911 case 0x0153: c = 0xbd; break; /* oe */
6912 case 0x0178: c = 0xbe; break; /* Y */
6913 case 0xa4:
6914 case 0xa6:
6915 case 0xa8:
6916 case 0xb4:
6917 case 0xb8:
6918 case 0xbc:
6919 case 0xbd:
6920 case 0xbe: c = 0x100; break; /* not in latin9 */
6922 if (!utf_iscomposing(c)) /* skip composing chars */
6924 if (c < 0x100)
6925 *d++ = c;
6926 else if (vcp->vc_fail)
6928 vim_free(retval);
6929 return NULL;
6931 else
6933 *d++ = 0xbf;
6934 if (utf_char2cells(c) > 1)
6935 *d++ = '?';
6938 i += l - 1;
6941 *d = NUL;
6942 if (lenp != NULL)
6943 *lenp = (int)(d - retval);
6944 break;
6946 # ifdef MACOS_CONVERT
6947 case CONV_MAC_LATIN1:
6948 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6949 'm', 'l', unconvlenp);
6950 break;
6952 case CONV_LATIN1_MAC:
6953 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6954 'l', 'm', unconvlenp);
6955 break;
6957 case CONV_MAC_UTF8:
6958 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6959 'm', 'u', unconvlenp);
6960 break;
6962 case CONV_UTF8_MAC:
6963 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6964 'u', 'm', unconvlenp);
6965 break;
6966 # endif
6968 # ifdef USE_ICONV
6969 case CONV_ICONV: /* conversion with output_conv.vc_fd */
6970 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
6971 break;
6972 # endif
6973 # ifdef WIN3264
6974 case CONV_CODEPAGE: /* codepage -> codepage */
6976 int retlen;
6977 int tmp_len;
6978 short_u *tmp;
6980 /* 1. codepage/UTF-8 -> ucs-2. */
6981 if (vcp->vc_cpfrom == 0)
6982 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
6983 else
6984 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
6985 ptr, len, 0, 0);
6986 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
6987 if (tmp == NULL)
6988 break;
6989 if (vcp->vc_cpfrom == 0)
6990 utf8_to_utf16(ptr, len, tmp, unconvlenp);
6991 else
6992 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
6994 /* 2. ucs-2 -> codepage/UTF-8. */
6995 if (vcp->vc_cpto == 0)
6996 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
6997 else
6998 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
6999 tmp, tmp_len, 0, 0, 0, 0);
7000 retval = alloc(retlen + 1);
7001 if (retval != NULL)
7003 if (vcp->vc_cpto == 0)
7004 utf16_to_utf8(tmp, tmp_len, retval);
7005 else
7006 WideCharToMultiByte(vcp->vc_cpto, 0,
7007 tmp, tmp_len, retval, retlen, 0, 0);
7008 retval[retlen] = NUL;
7009 if (lenp != NULL)
7010 *lenp = retlen;
7012 vim_free(tmp);
7013 break;
7015 # endif
7018 return retval;
7020 #endif