Merge branch 'master' of git://repo.or.cz/MacVim into KaoriYa
[MacVim/KaoriYa.git] / src / mbyte.c
blobc8b02c4e36ecf5a7d05143553bb6a74fb6e0f414
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 defined(FEAT_UIMFEP) || defined(PROTO)
117 static int uimfep_lastmode = 1;
118 static void uimfep_set_active __ARGS((int active));
119 static int uimfep_get_status __ARGS((void));
120 #endif
122 #if 0
123 /* This has been disabled, because several people reported problems with the
124 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
125 # ifdef __STDC_ISO_10646__
126 # define USE_WCHAR_FUNCTIONS
127 # endif
128 #endif
130 #if defined(FEAT_MBYTE) || defined(PROTO)
132 static int enc_canon_search __ARGS((char_u *name));
133 static int dbcs_char2len __ARGS((int c));
134 static int dbcs_char2bytes __ARGS((int c, char_u *buf));
135 static int dbcs_ptr2len __ARGS((char_u *p));
136 static int dbcs_ptr2len_len __ARGS((char_u *p, int size));
137 static int utf_ptr2cells_len __ARGS((char_u *p, int size));
138 static int dbcs_char2cells __ARGS((int c));
139 static int dbcs_ptr2cells_len __ARGS((char_u *p, int size));
140 static int dbcs_ptr2char __ARGS((char_u *p));
143 * Lookup table to quickly get the length in bytes of a UTF-8 character from
144 * the first byte of a UTF-8 string.
145 * Bytes which are illegal when used as the first byte have a 1.
146 * The NUL byte has length 1.
148 static char utf8len_tab[256] =
150 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
151 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
152 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
153 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
154 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
155 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
156 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,
157 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,
161 * Like utf8len_tab above, but using a zero for illegal lead bytes.
163 static char utf8len_tab_zero[256] =
165 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
166 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
167 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
168 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
169 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,
170 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,
171 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,
172 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,
176 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
177 * in the "xim.log" file.
179 /* #define XIM_DEBUG */
180 #ifdef XIM_DEBUG
181 static void
182 xim_log(char *s, ...)
184 va_list arglist;
185 static FILE *fd = NULL;
187 if (fd == (FILE *)-1)
188 return;
189 if (fd == NULL)
191 fd = mch_fopen("xim.log", "w");
192 if (fd == NULL)
194 EMSG("Cannot open xim.log");
195 fd = (FILE *)-1;
196 return;
200 va_start(arglist, s);
201 vfprintf(fd, s, arglist);
202 va_end(arglist);
204 #endif
206 #endif
208 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
210 * Canonical encoding names and their properties.
211 * "iso-8859-n" is handled by enc_canonize() directly.
213 static struct
214 { char *name; int prop; int codepage;}
215 enc_canon_table[] =
217 #define IDX_LATIN_1 0
218 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
219 #define IDX_ISO_2 1
220 {"iso-8859-2", ENC_8BIT, 0},
221 #define IDX_ISO_3 2
222 {"iso-8859-3", ENC_8BIT, 0},
223 #define IDX_ISO_4 3
224 {"iso-8859-4", ENC_8BIT, 0},
225 #define IDX_ISO_5 4
226 {"iso-8859-5", ENC_8BIT, 0},
227 #define IDX_ISO_6 5
228 {"iso-8859-6", ENC_8BIT, 0},
229 #define IDX_ISO_7 6
230 {"iso-8859-7", ENC_8BIT, 0},
231 #define IDX_ISO_8 7
232 {"iso-8859-8", ENC_8BIT, 0},
233 #define IDX_ISO_9 8
234 {"iso-8859-9", ENC_8BIT, 0},
235 #define IDX_ISO_10 9
236 {"iso-8859-10", ENC_8BIT, 0},
237 #define IDX_ISO_11 10
238 {"iso-8859-11", ENC_8BIT, 0},
239 #define IDX_ISO_13 11
240 {"iso-8859-13", ENC_8BIT, 0},
241 #define IDX_ISO_14 12
242 {"iso-8859-14", ENC_8BIT, 0},
243 #define IDX_ISO_15 13
244 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
245 #define IDX_KOI8_R 14
246 {"koi8-r", ENC_8BIT, 0},
247 #define IDX_KOI8_U 15
248 {"koi8-u", ENC_8BIT, 0},
249 #define IDX_UTF8 16
250 {"utf-8", ENC_UNICODE, 0},
251 #define IDX_UCS2 17
252 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
253 #define IDX_UCS2LE 18
254 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
255 #define IDX_UTF16 19
256 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
257 #define IDX_UTF16LE 20
258 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
259 #define IDX_UCS4 21
260 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
261 #define IDX_UCS4LE 22
262 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
264 /* For debugging DBCS encoding on Unix. */
265 #define IDX_DEBUG 23
266 {"debug", ENC_DBCS, DBCS_DEBUG},
267 #define IDX_EUC_JP 24
268 {"euc-jp", ENC_DBCS, DBCS_JPNU},
269 #define IDX_SJIS 25
270 {"sjis", ENC_DBCS, DBCS_JPN},
271 #define IDX_EUC_KR 26
272 {"euc-kr", ENC_DBCS, DBCS_KORU},
273 #define IDX_EUC_CN 27
274 {"euc-cn", ENC_DBCS, DBCS_CHSU},
275 #define IDX_EUC_TW 28
276 {"euc-tw", ENC_DBCS, DBCS_CHTU},
277 #define IDX_BIG5 29
278 {"big5", ENC_DBCS, DBCS_CHT},
280 /* MS-DOS and MS-Windows codepages are included here, so that they can be
281 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
282 * not exactly the same. */
283 #define IDX_CP437 30
284 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
285 #define IDX_CP737 31
286 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
287 #define IDX_CP775 32
288 {"cp775", ENC_8BIT, 775}, /* Baltic */
289 #define IDX_CP850 33
290 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
291 #define IDX_CP852 34
292 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
293 #define IDX_CP855 35
294 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
295 #define IDX_CP857 36
296 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
297 #define IDX_CP860 37
298 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
299 #define IDX_CP861 38
300 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
301 #define IDX_CP862 39
302 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
303 #define IDX_CP863 40
304 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
305 #define IDX_CP865 41
306 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
307 #define IDX_CP866 42
308 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
309 #define IDX_CP869 43
310 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
311 #define IDX_CP874 44
312 {"cp874", ENC_8BIT, 874}, /* Thai */
313 #define IDX_CP932 45
314 {"cp932", ENC_DBCS, DBCS_JPN},
315 #define IDX_CP936 46
316 {"cp936", ENC_DBCS, DBCS_CHS},
317 #define IDX_CP949 47
318 {"cp949", ENC_DBCS, DBCS_KOR},
319 #define IDX_CP950 48
320 {"cp950", ENC_DBCS, DBCS_CHT},
321 #define IDX_CP1250 49
322 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
323 #define IDX_CP1251 50
324 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
325 /* cp1252 is considered to be equal to latin1 */
326 #define IDX_CP1253 51
327 {"cp1253", ENC_8BIT, 1253}, /* Greek */
328 #define IDX_CP1254 52
329 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
330 #define IDX_CP1255 53
331 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
332 #define IDX_CP1256 54
333 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
334 #define IDX_CP1257 55
335 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
336 #define IDX_CP1258 56
337 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
339 #define IDX_MACROMAN 57
340 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
341 #define IDX_DECMCS 58
342 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
343 #define IDX_HPROMAN8 59
344 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
345 #define IDX_COUNT 60
349 * Aliases for encoding names.
351 static struct
352 { char *name; int canon;}
353 enc_alias_table[] =
355 {"ansi", IDX_LATIN_1},
356 {"iso-8859-1", IDX_LATIN_1},
357 {"latin2", IDX_ISO_2},
358 {"latin3", IDX_ISO_3},
359 {"latin4", IDX_ISO_4},
360 {"cyrillic", IDX_ISO_5},
361 {"arabic", IDX_ISO_6},
362 {"greek", IDX_ISO_7},
363 #ifdef WIN3264
364 {"hebrew", IDX_CP1255},
365 #else
366 {"hebrew", IDX_ISO_8},
367 #endif
368 {"latin5", IDX_ISO_9},
369 {"turkish", IDX_ISO_9}, /* ? */
370 {"latin6", IDX_ISO_10},
371 {"nordic", IDX_ISO_10}, /* ? */
372 {"thai", IDX_ISO_11}, /* ? */
373 {"latin7", IDX_ISO_13},
374 {"latin8", IDX_ISO_14},
375 {"latin9", IDX_ISO_15},
376 {"utf8", IDX_UTF8},
377 {"unicode", IDX_UCS2},
378 {"ucs2", IDX_UCS2},
379 {"ucs2be", IDX_UCS2},
380 {"ucs-2be", IDX_UCS2},
381 {"ucs2le", IDX_UCS2LE},
382 {"utf16", IDX_UTF16},
383 {"utf16be", IDX_UTF16},
384 {"utf-16be", IDX_UTF16},
385 {"utf16le", IDX_UTF16LE},
386 {"ucs4", IDX_UCS4},
387 {"ucs4be", IDX_UCS4},
388 {"ucs-4be", IDX_UCS4},
389 {"ucs4le", IDX_UCS4LE},
390 {"utf32", IDX_UCS4},
391 {"utf-32", IDX_UCS4},
392 {"utf32be", IDX_UCS4},
393 {"utf-32be", IDX_UCS4},
394 {"utf32le", IDX_UCS4LE},
395 {"utf-32le", IDX_UCS4LE},
396 {"932", IDX_CP932},
397 {"949", IDX_CP949},
398 {"936", IDX_CP936},
399 {"gbk", IDX_CP936},
400 {"950", IDX_CP950},
401 {"eucjp", IDX_EUC_JP},
402 {"unix-jis", IDX_EUC_JP},
403 {"ujis", IDX_EUC_JP},
404 {"shift-jis", IDX_SJIS},
405 {"euckr", IDX_EUC_KR},
406 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
407 {"euccn", IDX_EUC_CN},
408 {"gb2312", IDX_EUC_CN},
409 {"euctw", IDX_EUC_TW},
410 #if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
411 {"japan", IDX_CP932},
412 {"korea", IDX_CP949},
413 {"prc", IDX_CP936},
414 {"chinese", IDX_CP936},
415 {"taiwan", IDX_CP950},
416 {"big5", IDX_CP950},
417 #else
418 {"japan", IDX_EUC_JP},
419 {"korea", IDX_EUC_KR},
420 {"prc", IDX_EUC_CN},
421 {"chinese", IDX_EUC_CN},
422 {"taiwan", IDX_EUC_TW},
423 {"cp950", IDX_BIG5},
424 {"950", IDX_BIG5},
425 #endif
426 {"mac", IDX_MACROMAN},
427 {"mac-roman", IDX_MACROMAN},
428 {NULL, 0}
431 #ifndef CP_UTF8
432 # define CP_UTF8 65001 /* magic number from winnls.h */
433 #endif
436 * Find encoding "name" in the list of canonical encoding names.
437 * Returns -1 if not found.
439 static int
440 enc_canon_search(name)
441 char_u *name;
443 int i;
445 for (i = 0; i < IDX_COUNT; ++i)
446 if (STRCMP(name, enc_canon_table[i].name) == 0)
447 return i;
448 return -1;
451 #endif
453 #if defined(FEAT_MBYTE) || defined(PROTO)
456 * Find canonical encoding "name" in the list and return its properties.
457 * Returns 0 if not found.
460 enc_canon_props(name)
461 char_u *name;
463 int i;
465 i = enc_canon_search(name);
466 if (i >= 0)
467 return enc_canon_table[i].prop;
468 #ifdef WIN3264
469 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
471 CPINFO cpinfo;
473 /* Get info on this codepage to find out what it is. */
474 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
476 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
477 return ENC_8BIT;
478 if (cpinfo.MaxCharSize == 2
479 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
480 /* must be a DBCS encoding */
481 return ENC_DBCS;
483 return 0;
485 #endif
486 if (STRNCMP(name, "2byte-", 6) == 0)
487 return ENC_DBCS;
488 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
489 return ENC_8BIT;
490 return 0;
494 * Set up for using multi-byte characters.
495 * Called in three cases:
496 * - by main() to initialize (p_enc == NULL)
497 * - by set_init_1() after 'encoding' was set to its default.
498 * - by do_set() when 'encoding' has been set.
499 * p_enc must have been passed through enc_canonize() already.
500 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
501 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
502 * When there is something wrong: Returns an error message and doesn't change
503 * anything.
505 char_u *
506 mb_init()
508 int i;
509 int idx;
510 int n;
511 int enc_dbcs_new = 0;
512 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
513 && !defined(MACOS)
514 # define LEN_FROM_CONV
515 vimconv_T vimconv;
516 char_u *p;
517 #endif
519 if (p_enc == NULL)
521 /* Just starting up: set the whole table to one's. */
522 for (i = 0; i < 256; ++i)
523 mb_bytelen_tab[i] = 1;
524 input_conv.vc_type = CONV_NONE;
525 input_conv.vc_factor = 1;
526 output_conv.vc_type = CONV_NONE;
527 return NULL;
530 #ifdef WIN3264
531 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
533 CPINFO cpinfo;
535 /* Get info on this codepage to find out what it is. */
536 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
538 if (cpinfo.MaxCharSize == 1)
540 /* some single-byte encoding */
541 enc_unicode = 0;
542 enc_utf8 = FALSE;
544 else if (cpinfo.MaxCharSize == 2
545 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
547 /* must be a DBCS encoding, check below */
548 enc_dbcs_new = atoi(p_enc + 2);
550 else
551 goto codepage_invalid;
553 else if (GetLastError() == ERROR_INVALID_PARAMETER)
555 codepage_invalid:
556 return (char_u *)N_("E543: Not a valid codepage");
559 #endif
560 else if (STRNCMP(p_enc, "8bit-", 5) == 0
561 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
563 /* Accept any "8bit-" or "iso-8859-" name. */
564 enc_unicode = 0;
565 enc_utf8 = FALSE;
567 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
569 #ifdef WIN3264
570 /* Windows: accept only valid codepage numbers, check below. */
571 if (p_enc[6] != 'c' || p_enc[7] != 'p'
572 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
573 return e_invarg;
574 #else
575 /* Unix: accept any "2byte-" name, assume current locale. */
576 enc_dbcs_new = DBCS_2BYTE;
577 #endif
579 else if ((idx = enc_canon_search(p_enc)) >= 0)
581 i = enc_canon_table[idx].prop;
582 if (i & ENC_UNICODE)
584 /* Unicode */
585 enc_utf8 = TRUE;
586 if (i & (ENC_2BYTE | ENC_2WORD))
587 enc_unicode = 2;
588 else if (i & ENC_4BYTE)
589 enc_unicode = 4;
590 else
591 enc_unicode = 0;
593 else if (i & ENC_DBCS)
595 /* 2byte, handle below */
596 enc_dbcs_new = enc_canon_table[idx].codepage;
598 else
600 /* Must be 8-bit. */
601 enc_unicode = 0;
602 enc_utf8 = FALSE;
605 else /* Don't know what encoding this is, reject it. */
606 return e_invarg;
608 if (enc_dbcs_new != 0)
610 #ifdef WIN3264
611 /* Check if the DBCS code page is OK. */
612 if (!IsValidCodePage(enc_dbcs_new))
613 goto codepage_invalid;
614 #endif
615 enc_unicode = 0;
616 enc_utf8 = FALSE;
618 enc_dbcs = enc_dbcs_new;
619 has_mbyte = (enc_dbcs != 0 || enc_utf8);
621 #ifdef WIN3264
622 enc_codepage = encname2codepage(p_enc);
623 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
624 #endif
626 /* Detect an encoding that uses latin1 characters. */
627 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
628 || STRCMP(p_enc, "iso-8859-15") == 0);
631 * Set the function pointers.
633 if (enc_utf8)
635 mb_ptr2len = utfc_ptr2len;
636 mb_ptr2len_len = utfc_ptr2len_len;
637 mb_char2len = utf_char2len;
638 mb_char2bytes = utf_char2bytes;
639 mb_ptr2cells = utf_ptr2cells;
640 mb_ptr2cells_len = utf_ptr2cells_len;
641 mb_char2cells = utf_char2cells;
642 mb_off2cells = utf_off2cells;
643 mb_ptr2char = utf_ptr2char;
644 mb_head_off = utf_head_off;
646 else if (enc_dbcs != 0)
648 mb_ptr2len = dbcs_ptr2len;
649 mb_ptr2len_len = dbcs_ptr2len_len;
650 mb_char2len = dbcs_char2len;
651 mb_char2bytes = dbcs_char2bytes;
652 mb_ptr2cells = dbcs_ptr2cells;
653 mb_ptr2cells_len = dbcs_ptr2cells_len;
654 mb_char2cells = dbcs_char2cells;
655 mb_off2cells = dbcs_off2cells;
656 mb_ptr2char = dbcs_ptr2char;
657 mb_head_off = dbcs_head_off;
659 else
661 mb_ptr2len = latin_ptr2len;
662 mb_ptr2len_len = latin_ptr2len_len;
663 mb_char2len = latin_char2len;
664 mb_char2bytes = latin_char2bytes;
665 mb_ptr2cells = latin_ptr2cells;
666 mb_ptr2cells_len = latin_ptr2cells_len;
667 mb_char2cells = latin_char2cells;
668 mb_off2cells = latin_off2cells;
669 mb_ptr2char = latin_ptr2char;
670 mb_head_off = latin_head_off;
674 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
676 #ifdef LEN_FROM_CONV
677 /* When 'encoding' is different from the current locale mblen() won't
678 * work. Use conversion to "utf-8" instead. */
679 vimconv.vc_type = CONV_NONE;
680 if (enc_dbcs)
682 p = enc_locale();
683 if (p == NULL || STRCMP(p, p_enc) != 0)
685 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
686 vimconv.vc_fail = TRUE;
688 vim_free(p);
690 #endif
692 for (i = 0; i < 256; ++i)
694 /* Our own function to reliably check the length of UTF-8 characters,
695 * independent of mblen(). */
696 if (enc_utf8)
697 n = utf8len_tab[i];
698 else if (enc_dbcs == 0)
699 n = 1;
700 else
702 #if defined(WIN3264) || defined(WIN32UNIX)
703 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
704 * CodePage identifier, which we can pass directly in to Windows
705 * API */
706 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
707 #else
708 # if defined(MACOS) || defined(__amigaos4__)
710 * if mblen() is not available, character which MSB is turned on
711 * are treated as leading byte character. (note : This assumption
712 * is not always true.)
714 n = (i & 0x80) ? 2 : 1;
715 # else
716 char buf[MB_MAXBYTES];
717 # ifdef X_LOCALE
718 # ifndef mblen
719 # define mblen _Xmblen
720 # endif
721 # endif
722 if (i == NUL) /* just in case mblen() can't handle "" */
723 n = 1;
724 else
726 buf[0] = i;
727 buf[1] = 0;
728 #ifdef LEN_FROM_CONV
729 if (vimconv.vc_type != CONV_NONE)
732 * string_convert() should fail when converting the first
733 * byte of a double-byte character.
735 p = string_convert(&vimconv, (char_u *)buf, NULL);
736 if (p != NULL)
738 vim_free(p);
739 n = 1;
741 else
742 n = 2;
744 else
745 #endif
748 * mblen() should return -1 for invalid (means the leading
749 * multibyte) character. However there are some platforms
750 * where mblen() returns 0 for invalid character.
751 * Therefore, following condition includes 0.
753 ignored = mblen(NULL, 0); /* First reset the state. */
754 if (mblen(buf, (size_t)1) <= 0)
755 n = 2;
756 else
757 n = 1;
760 # endif
761 #endif
764 mb_bytelen_tab[i] = n;
767 #ifdef LEN_FROM_CONV
768 convert_setup(&vimconv, NULL, NULL);
769 #endif
771 /* The cell width depends on the type of multi-byte characters. */
772 (void)init_chartab();
774 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
775 screenalloc(FALSE);
777 /* When using Unicode, set default for 'fileencodings'. */
778 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
779 set_string_option_direct((char_u *)"fencs", -1,
780 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
782 #if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
783 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
784 * translated messages independently from the current locale. */
785 (void)bind_textdomain_codeset(VIMPACKAGE,
786 enc_utf8 ? "utf-8" : (char *)p_enc);
787 #endif
789 #ifdef WIN32
790 /* When changing 'encoding' while starting up, then convert the command
791 * line arguments from the active codepage to 'encoding'. */
792 if (starting != 0)
793 fix_arg_enc();
794 #endif
796 #ifdef FEAT_AUTOCMD
797 /* Fire an autocommand to let people do custom font setup. This must be
798 * after Vim has been setup for the new encoding. */
799 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
800 #endif
802 #ifdef FEAT_SPELL
803 /* Need to reload spell dictionaries */
804 spell_reload();
805 #endif
807 return NULL;
811 * Return the size of the BOM for the current buffer:
812 * 0 - no BOM
813 * 2 - UCS-2 or UTF-16 BOM
814 * 4 - UCS-4 BOM
815 * 3 - UTF-8 BOM
818 bomb_size()
820 int n = 0;
822 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
824 if (*curbuf->b_p_fenc == NUL)
826 if (enc_utf8)
828 if (enc_unicode != 0)
829 n = enc_unicode;
830 else
831 n = 3;
834 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
835 n = 3;
836 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
837 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
838 n = 2;
839 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
840 n = 4;
842 return n;
846 * Get class of pointer:
847 * 0 for blank or NUL
848 * 1 for punctuation
849 * 2 for an (ASCII) word character
850 * >2 for other word characters
853 mb_get_class(p)
854 char_u *p;
856 if (MB_BYTE2LEN(p[0]) == 1)
858 if (p[0] == NUL || vim_iswhite(p[0]))
859 return 0;
860 if (vim_iswordc(p[0]))
861 return 2;
862 return 1;
864 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
865 return dbcs_class(p[0], p[1]);
866 if (enc_utf8)
867 return utf_class(utf_ptr2char(p));
868 return 0;
872 * Get class of a double-byte character. This always returns 3 or bigger.
873 * TODO: Should return 1 for punctuation.
876 dbcs_class(lead, trail)
877 unsigned lead;
878 unsigned trail;
880 switch (enc_dbcs)
882 /* please add classfy routine for your language in here */
884 case DBCS_JPNU: /* ? */
885 case DBCS_JPN:
887 /* JIS code classification */
888 unsigned char lb = lead;
889 unsigned char tb = trail;
891 /* convert process code to JIS */
892 # if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
893 /* process code is SJIS */
894 if (lb <= 0x9f)
895 lb = (lb - 0x81) * 2 + 0x21;
896 else
897 lb = (lb - 0xc1) * 2 + 0x21;
898 if (tb <= 0x7e)
899 tb -= 0x1f;
900 else if (tb <= 0x9e)
901 tb -= 0x20;
902 else
904 tb -= 0x7e;
905 lb += 1;
907 # else
909 * XXX: Code page identification can not use with all
910 * system! So, some other encoding information
911 * will be needed.
912 * In japanese: SJIS,EUC,UNICODE,(JIS)
913 * Note that JIS-code system don't use as
914 * process code in most system because it uses
915 * escape sequences(JIS is context depend encoding).
917 /* assume process code is JAPANESE-EUC */
918 lb &= 0x7f;
919 tb &= 0x7f;
920 # endif
921 /* exceptions */
922 switch (lb << 8 | tb)
924 case 0x2121: /* ZENKAKU space */
925 return 0;
926 case 0x2122: /* KU-TEN (Japanese comma) */
927 case 0x2123: /* TOU-TEN (Japanese period) */
928 case 0x2124: /* ZENKAKU comma */
929 case 0x2125: /* ZENKAKU period */
930 return 1;
931 case 0x213c: /* prolongedsound handled as KATAKANA */
932 return 13;
934 /* sieved by KU code */
935 switch (lb)
937 case 0x21:
938 case 0x22:
939 /* special symbols */
940 return 10;
941 case 0x23:
942 /* alpha-numeric */
943 return 11;
944 case 0x24:
945 /* hiragana */
946 return 12;
947 case 0x25:
948 /* katakana */
949 return 13;
950 case 0x26:
951 /* greek */
952 return 14;
953 case 0x27:
954 /* russian */
955 return 15;
956 case 0x28:
957 /* lines */
958 return 16;
959 default:
960 /* kanji */
961 return 17;
965 case DBCS_KORU: /* ? */
966 case DBCS_KOR:
968 /* KS code classification */
969 unsigned char c1 = lead;
970 unsigned char c2 = trail;
973 * 20 : Hangul
974 * 21 : Hanja
975 * 22 : Symbols
976 * 23 : Alpha-numeric/Roman Letter (Full width)
977 * 24 : Hangul Letter(Alphabet)
978 * 25 : Roman Numeral/Greek Letter
979 * 26 : Box Drawings
980 * 27 : Unit Symbols
981 * 28 : Circled/Parenthesized Letter
982 * 29 : Hirigana/Katakana
983 * 30 : Cyrillic Letter
986 if (c1 >= 0xB0 && c1 <= 0xC8)
987 /* Hangul */
988 return 20;
989 #if defined(WIN3264) || defined(WIN32UNIX)
990 else if (c1 <= 0xA0 || c2 <= 0xA0)
991 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
992 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
993 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
995 return 20;
996 #endif
998 else if (c1 >= 0xCA && c1 <= 0xFD)
999 /* Hanja */
1000 return 21;
1001 else switch (c1)
1003 case 0xA1:
1004 case 0xA2:
1005 /* Symbols */
1006 return 22;
1007 case 0xA3:
1008 /* Alpha-numeric */
1009 return 23;
1010 case 0xA4:
1011 /* Hangul Letter(Alphabet) */
1012 return 24;
1013 case 0xA5:
1014 /* Roman Numeral/Greek Letter */
1015 return 25;
1016 case 0xA6:
1017 /* Box Drawings */
1018 return 26;
1019 case 0xA7:
1020 /* Unit Symbols */
1021 return 27;
1022 case 0xA8:
1023 case 0xA9:
1024 if (c2 <= 0xAF)
1025 return 25; /* Roman Letter */
1026 else if (c2 >= 0xF6)
1027 return 22; /* Symbols */
1028 else
1029 /* Circled/Parenthesized Letter */
1030 return 28;
1031 case 0xAA:
1032 case 0xAB:
1033 /* Hirigana/Katakana */
1034 return 29;
1035 case 0xAC:
1036 /* Cyrillic Letter */
1037 return 30;
1040 default:
1041 break;
1043 return 3;
1047 * mb_char2len() function pointer.
1048 * Return length in bytes of character "c".
1049 * Returns 1 for a single-byte character.
1052 latin_char2len(c)
1053 int c UNUSED;
1055 return 1;
1058 static int
1059 dbcs_char2len(c)
1060 int c;
1062 if (c >= 0x100)
1063 return 2;
1064 return 1;
1068 * mb_char2bytes() function pointer.
1069 * Convert a character to its bytes.
1070 * Returns the length in bytes.
1073 latin_char2bytes(c, buf)
1074 int c;
1075 char_u *buf;
1077 buf[0] = c;
1078 return 1;
1081 static int
1082 dbcs_char2bytes(c, buf)
1083 int c;
1084 char_u *buf;
1086 if (c >= 0x100)
1088 buf[0] = (unsigned)c >> 8;
1089 buf[1] = c;
1090 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1091 * character anyway. */
1092 if (buf[1] == NUL)
1093 buf[1] = '\n';
1094 return 2;
1096 buf[0] = c;
1097 return 1;
1101 * mb_ptr2len() function pointer.
1102 * Get byte length of character at "*p" but stop at a NUL.
1103 * For UTF-8 this includes following composing characters.
1104 * Returns 0 when *p is NUL.
1107 latin_ptr2len(p)
1108 char_u *p;
1110 return MB_BYTE2LEN(*p);
1113 static int
1114 dbcs_ptr2len(p)
1115 char_u *p;
1117 int len;
1119 /* Check if second byte is not missing. */
1120 len = MB_BYTE2LEN(*p);
1121 if (len == 2 && p[1] == NUL)
1122 len = 1;
1123 return len;
1127 * mb_ptr2len_len() function pointer.
1128 * Like mb_ptr2len(), but limit to read "size" bytes.
1129 * Returns 0 for an empty string.
1130 * Returns 1 for an illegal char or an incomplete byte sequence.
1133 latin_ptr2len_len(p, size)
1134 char_u *p;
1135 int size;
1137 if (size < 1 || *p == NUL)
1138 return 0;
1139 return 1;
1142 static int
1143 dbcs_ptr2len_len(p, size)
1144 char_u *p;
1145 int size;
1147 int len;
1149 if (size < 1 || *p == NUL)
1150 return 0;
1151 if (size == 1)
1152 return 1;
1153 /* Check that second byte is not missing. */
1154 len = MB_BYTE2LEN(*p);
1155 if (len == 2 && p[1] == NUL)
1156 len = 1;
1157 return len;
1160 struct interval
1162 long first;
1163 long last;
1165 static int intable __ARGS((struct interval *table, size_t size, int c));
1168 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1170 static int
1171 intable(table, size, c)
1172 struct interval *table;
1173 size_t size;
1174 int c;
1176 int mid, bot, top;
1178 /* first quick check for Latin1 etc. characters */
1179 if (c < table[0].first)
1180 return FALSE;
1182 /* binary search in table */
1183 bot = 0;
1184 top = (int)(size / sizeof(struct interval) - 1);
1185 while (top >= bot)
1187 mid = (bot + top) / 2;
1188 if (table[mid].last < c)
1189 bot = mid + 1;
1190 else if (table[mid].first > c)
1191 top = mid - 1;
1192 else
1193 return TRUE;
1195 return FALSE;
1199 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1200 * Returns 4 or 6 for an unprintable character.
1201 * Is only correct for characters >= 0x80.
1202 * When p_ambw is "double", return 2 for a character with East Asian Width
1203 * class 'A'(mbiguous).
1206 utf_char2cells(c)
1207 int c;
1209 /* Sorted list of non-overlapping intervals of East Asian Ambiguous
1210 * characters, generated with ../runtime/tools/unicode.vim. */
1211 static struct interval ambiguous[] =
1213 {0x00a1, 0x00a1},
1214 {0x00a4, 0x00a4},
1215 {0x00a7, 0x00a8},
1216 {0x00aa, 0x00aa},
1217 {0x00ad, 0x00ae},
1218 {0x00b0, 0x00b4},
1219 {0x00b6, 0x00ba},
1220 {0x00bc, 0x00bf},
1221 {0x00c6, 0x00c6},
1222 {0x00d0, 0x00d0},
1223 {0x00d7, 0x00d8},
1224 {0x00de, 0x00e1},
1225 {0x00e6, 0x00e6},
1226 {0x00e8, 0x00ea},
1227 {0x00ec, 0x00ed},
1228 {0x00f0, 0x00f0},
1229 {0x00f2, 0x00f3},
1230 {0x00f7, 0x00fa},
1231 {0x00fc, 0x00fc},
1232 {0x00fe, 0x00fe},
1233 {0x0101, 0x0101},
1234 {0x0111, 0x0111},
1235 {0x0113, 0x0113},
1236 {0x011b, 0x011b},
1237 {0x0126, 0x0127},
1238 {0x012b, 0x012b},
1239 {0x0131, 0x0133},
1240 {0x0138, 0x0138},
1241 {0x013f, 0x0142},
1242 {0x0144, 0x0144},
1243 {0x0148, 0x014b},
1244 {0x014d, 0x014d},
1245 {0x0152, 0x0153},
1246 {0x0166, 0x0167},
1247 {0x016b, 0x016b},
1248 {0x01ce, 0x01ce},
1249 {0x01d0, 0x01d0},
1250 {0x01d2, 0x01d2},
1251 {0x01d4, 0x01d4},
1252 {0x01d6, 0x01d6},
1253 {0x01d8, 0x01d8},
1254 {0x01da, 0x01da},
1255 {0x01dc, 0x01dc},
1256 {0x0251, 0x0251},
1257 {0x0261, 0x0261},
1258 {0x02c4, 0x02c4},
1259 {0x02c7, 0x02c7},
1260 {0x02c9, 0x02cb},
1261 {0x02cd, 0x02cd},
1262 {0x02d0, 0x02d0},
1263 {0x02d8, 0x02db},
1264 {0x02dd, 0x02dd},
1265 {0x02df, 0x02df},
1266 {0x0391, 0x03a1},
1267 {0x03a3, 0x03a9},
1268 {0x03b1, 0x03c1},
1269 {0x03c3, 0x03c9},
1270 {0x0401, 0x0401},
1271 {0x0410, 0x044f},
1272 {0x0451, 0x0451},
1273 {0x2010, 0x2010},
1274 {0x2013, 0x2016},
1275 {0x2018, 0x2019},
1276 {0x201c, 0x201d},
1277 {0x2020, 0x2022},
1278 {0x2024, 0x2027},
1279 {0x2030, 0x2030},
1280 {0x2032, 0x2033},
1281 {0x2035, 0x2035},
1282 {0x203b, 0x203b},
1283 {0x203e, 0x203e},
1284 {0x2074, 0x2074},
1285 {0x207f, 0x207f},
1286 {0x2081, 0x2084},
1287 {0x20ac, 0x20ac},
1288 {0x2103, 0x2103},
1289 {0x2105, 0x2105},
1290 {0x2109, 0x2109},
1291 {0x2113, 0x2113},
1292 {0x2116, 0x2116},
1293 {0x2121, 0x2122},
1294 {0x2126, 0x2126},
1295 {0x212b, 0x212b},
1296 {0x2153, 0x2154},
1297 {0x215b, 0x215e},
1298 {0x2160, 0x216b},
1299 {0x2170, 0x2179},
1300 {0x2189, 0x2189},
1301 {0x2190, 0x2199},
1302 {0x21b8, 0x21b9},
1303 {0x21d2, 0x21d2},
1304 {0x21d4, 0x21d4},
1305 {0x21e7, 0x21e7},
1306 {0x2200, 0x2200},
1307 {0x2202, 0x2203},
1308 {0x2207, 0x2208},
1309 {0x220b, 0x220b},
1310 {0x220f, 0x220f},
1311 {0x2211, 0x2211},
1312 {0x2215, 0x2215},
1313 {0x221a, 0x221a},
1314 {0x221d, 0x2220},
1315 {0x2223, 0x2223},
1316 {0x2225, 0x2225},
1317 {0x2227, 0x222c},
1318 {0x222e, 0x222e},
1319 {0x2234, 0x2237},
1320 {0x223c, 0x223d},
1321 {0x2248, 0x2248},
1322 {0x224c, 0x224c},
1323 {0x2252, 0x2252},
1324 {0x2260, 0x2261},
1325 {0x2264, 0x2267},
1326 {0x226a, 0x226b},
1327 {0x226e, 0x226f},
1328 {0x2282, 0x2283},
1329 {0x2286, 0x2287},
1330 {0x2295, 0x2295},
1331 {0x2299, 0x2299},
1332 {0x22a5, 0x22a5},
1333 {0x22bf, 0x22bf},
1334 {0x2312, 0x2312},
1335 {0x2460, 0x24e9},
1336 {0x24eb, 0x254b},
1337 {0x2550, 0x2573},
1338 {0x2580, 0x258f},
1339 {0x2592, 0x2595},
1340 {0x25a0, 0x25a1},
1341 {0x25a3, 0x25a9},
1342 {0x25b2, 0x25b3},
1343 {0x25b6, 0x25b7},
1344 {0x25bc, 0x25bd},
1345 {0x25c0, 0x25c1},
1346 {0x25c6, 0x25c8},
1347 {0x25cb, 0x25cb},
1348 {0x25ce, 0x25d1},
1349 {0x25e2, 0x25e5},
1350 {0x25ef, 0x25ef},
1351 {0x2605, 0x2606},
1352 {0x2609, 0x2609},
1353 {0x260e, 0x260f},
1354 {0x2614, 0x2615},
1355 {0x261c, 0x261c},
1356 {0x261e, 0x261e},
1357 {0x2640, 0x2640},
1358 {0x2642, 0x2642},
1359 {0x2660, 0x2661},
1360 {0x2663, 0x2665},
1361 {0x2667, 0x266a},
1362 {0x266c, 0x266d},
1363 {0x266f, 0x266f},
1364 {0x269e, 0x269f},
1365 {0x26be, 0x26bf},
1366 {0x26c4, 0x26cd},
1367 {0x26cf, 0x26e1},
1368 {0x26e3, 0x26e3},
1369 {0x26e8, 0x26ff},
1370 {0x273d, 0x273d},
1371 {0x2757, 0x2757},
1372 {0x2776, 0x277f},
1373 {0x2b55, 0x2b59},
1374 {0x3248, 0x324f},
1375 {0xe000, 0xf8ff},
1376 {0xfffd, 0xfffd},
1377 {0x1f100, 0x1f10a},
1378 {0x1f110, 0x1f12d},
1379 {0x1f131, 0x1f131},
1380 {0x1f13d, 0x1f13d},
1381 {0x1f13f, 0x1f13f},
1382 {0x1f142, 0x1f142},
1383 {0x1f146, 0x1f146},
1384 {0x1f14a, 0x1f14e},
1385 {0x1f157, 0x1f157},
1386 {0x1f15f, 0x1f15f},
1387 {0x1f179, 0x1f179},
1388 {0x1f17b, 0x1f17c},
1389 {0x1f17f, 0x1f17f},
1390 {0x1f18a, 0x1f18d},
1391 {0x1f190, 0x1f190},
1392 {0xf0000, 0xffffd},
1393 {0x100000, 0x10fffd}
1396 #ifdef USE_AMBIWIDTH_AUTO
1397 if (gui.in_use && *p_ambw == 'a')
1399 int cell;
1401 /* This is required by screen.c implicitly. */
1402 if (c == 0)
1403 return 1;
1404 if ((cell = gui_mch_get_charwidth(c)) > 0)
1405 return cell;
1407 #endif
1409 if (c >= 0x100)
1411 #ifdef USE_WCHAR_FUNCTIONS
1413 * Assume the library function wcwidth() works better than our own
1414 * stuff. It should return 1 for ambiguous width chars!
1416 int n = wcwidth(c);
1418 if (n < 0)
1419 return 6; /* unprintable, displays <xxxx> */
1420 if (n > 1)
1421 return n;
1422 #else
1423 if (!utf_printable(c))
1424 return 6; /* unprintable, displays <xxxx> */
1425 if (c >= 0x1100
1426 && (c <= 0x115f /* Hangul Jamo */
1427 || c == 0x2329
1428 || c == 0x232a
1429 || (c >= 0x2e80 && c <= 0xa4cf
1430 && c != 0x303f) /* CJK ... Yi */
1431 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
1432 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility
1433 Ideographs */
1434 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
1435 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
1436 || (c >= 0xffe0 && c <= 0xffe6)
1437 || (c >= 0x20000 && c <= 0x2fffd)
1438 || (c >= 0x30000 && c <= 0x3fffd)))
1439 return 2;
1440 #endif
1443 /* Characters below 0x100 are influenced by 'isprint' option */
1444 else if (c >= 0x80 && !vim_isprintc(c))
1445 return 4; /* unprintable, displays <xx> */
1447 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1448 return 2;
1450 return 1;
1454 * mb_ptr2cells() function pointer.
1455 * Return the number of display cells character at "*p" occupies.
1456 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1459 latin_ptr2cells(p)
1460 char_u *p UNUSED;
1462 return 1;
1466 utf_ptr2cells(p)
1467 char_u *p;
1469 int c;
1471 /* Need to convert to a wide character. */
1472 if (*p >= 0x80)
1474 c = utf_ptr2char(p);
1475 /* An illegal byte is displayed as <xx>. */
1476 if (utf_ptr2len(p) == 1 || c == NUL)
1477 return 4;
1478 /* If the char is ASCII it must be an overlong sequence. */
1479 if (c < 0x80)
1480 return char2cells(c);
1481 return utf_char2cells(c);
1483 return 1;
1487 dbcs_ptr2cells(p)
1488 char_u *p;
1490 /* Number of cells is equal to number of bytes, except for euc-jp when
1491 * the first byte is 0x8e. */
1492 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1493 return 1;
1494 return MB_BYTE2LEN(*p);
1498 * mb_ptr2cells_len() function pointer.
1499 * Like mb_ptr2cells(), but limit string length to "size".
1500 * For an empty string or truncated character returns 1.
1503 latin_ptr2cells_len(p, size)
1504 char_u *p UNUSED;
1505 int size UNUSED;
1507 return 1;
1510 static int
1511 utf_ptr2cells_len(p, size)
1512 char_u *p;
1513 int size;
1515 int c;
1517 /* Need to convert to a wide character. */
1518 if (size > 0 && *p >= 0x80)
1520 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
1521 return 1; /* truncated */
1522 c = utf_ptr2char(p);
1523 /* An illegal byte is displayed as <xx>. */
1524 if (utf_ptr2len(p) == 1 || c == NUL)
1525 return 4;
1526 /* If the char is ASCII it must be an overlong sequence. */
1527 if (c < 0x80)
1528 return char2cells(c);
1529 return utf_char2cells(c);
1531 return 1;
1534 static int
1535 dbcs_ptr2cells_len(p, size)
1536 char_u *p;
1537 int size;
1539 /* Number of cells is equal to number of bytes, except for euc-jp when
1540 * the first byte is 0x8e. */
1541 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1542 return 1;
1543 return MB_BYTE2LEN(*p);
1547 * mb_char2cells() function pointer.
1548 * Return the number of display cells character "c" occupies.
1549 * Only takes care of multi-byte chars, not "^C" and such.
1552 latin_char2cells(c)
1553 int c UNUSED;
1555 return 1;
1558 static int
1559 dbcs_char2cells(c)
1560 int c;
1562 /* Number of cells is equal to number of bytes, except for euc-jp when
1563 * the first byte is 0x8e. */
1564 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1565 return 1;
1566 /* use the first byte */
1567 return MB_BYTE2LEN((unsigned)c >> 8);
1571 * mb_off2cells() function pointer.
1572 * Return number of display cells for char at ScreenLines[off].
1573 * We make sure that the offset used is less than "max_off".
1576 latin_off2cells(off, max_off)
1577 unsigned off UNUSED;
1578 unsigned max_off UNUSED;
1580 return 1;
1584 dbcs_off2cells(off, max_off)
1585 unsigned off;
1586 unsigned max_off;
1588 /* never check beyond end of the line */
1589 if (off >= max_off)
1590 return 1;
1592 /* Number of cells is equal to number of bytes, except for euc-jp when
1593 * the first byte is 0x8e. */
1594 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1595 return 1;
1596 return MB_BYTE2LEN(ScreenLines[off]);
1600 utf_off2cells(off, max_off)
1601 unsigned off;
1602 unsigned max_off;
1604 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
1608 * mb_ptr2char() function pointer.
1609 * Convert a byte sequence into a character.
1612 latin_ptr2char(p)
1613 char_u *p;
1615 return *p;
1618 static int
1619 dbcs_ptr2char(p)
1620 char_u *p;
1622 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1623 return (p[0] << 8) + p[1];
1624 return *p;
1628 * Convert a UTF-8 byte sequence to a wide character.
1629 * If the sequence is illegal or truncated by a NUL the first byte is
1630 * returned.
1631 * Does not include composing characters, of course.
1634 utf_ptr2char(p)
1635 char_u *p;
1637 int len;
1639 if (p[0] < 0x80) /* be quick for ASCII */
1640 return p[0];
1642 len = utf8len_tab_zero[p[0]];
1643 if (len > 1 && (p[1] & 0xc0) == 0x80)
1645 if (len == 2)
1646 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1647 if ((p[2] & 0xc0) == 0x80)
1649 if (len == 3)
1650 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1651 + (p[2] & 0x3f);
1652 if ((p[3] & 0xc0) == 0x80)
1654 if (len == 4)
1655 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1656 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1657 if ((p[4] & 0xc0) == 0x80)
1659 if (len == 5)
1660 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1661 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1662 + (p[4] & 0x3f);
1663 if ((p[5] & 0xc0) == 0x80 && len == 6)
1664 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1665 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1666 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1671 /* Illegal value, just return the first byte */
1672 return p[0];
1676 * Get character at **pp and advance *pp to the next character.
1677 * Note: composing characters are skipped!
1680 mb_ptr2char_adv(pp)
1681 char_u **pp;
1683 int c;
1685 c = (*mb_ptr2char)(*pp);
1686 *pp += (*mb_ptr2len)(*pp);
1687 return c;
1691 * Get character at **pp and advance *pp to the next character.
1692 * Note: composing characters are returned as separate characters.
1695 mb_cptr2char_adv(pp)
1696 char_u **pp;
1698 int c;
1700 c = (*mb_ptr2char)(*pp);
1701 if (enc_utf8)
1702 *pp += utf_ptr2len(*pp);
1703 else
1704 *pp += (*mb_ptr2len)(*pp);
1705 return c;
1708 #if defined(FEAT_ARABIC) || defined(PROTO)
1710 * Check whether we are dealing with Arabic combining characters.
1711 * Note: these are NOT really composing characters!
1714 arabic_combine(one, two)
1715 int one; /* first character */
1716 int two; /* character just after "one" */
1718 if (one == a_LAM)
1719 return arabic_maycombine(two);
1720 return FALSE;
1724 * Check whether we are dealing with a character that could be regarded as an
1725 * Arabic combining character, need to check the character before this.
1728 arabic_maycombine(two)
1729 int two;
1731 if (p_arshape && !p_tbidi)
1732 return (two == a_ALEF_MADDA
1733 || two == a_ALEF_HAMZA_ABOVE
1734 || two == a_ALEF_HAMZA_BELOW
1735 || two == a_ALEF);
1736 return FALSE;
1740 * Check if the character pointed to by "p2" is a composing character when it
1741 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1742 * behaves like a composing character.
1745 utf_composinglike(p1, p2)
1746 char_u *p1;
1747 char_u *p2;
1749 int c2;
1751 c2 = utf_ptr2char(p2);
1752 if (utf_iscomposing(c2))
1753 return TRUE;
1754 if (!arabic_maycombine(c2))
1755 return FALSE;
1756 return arabic_combine(utf_ptr2char(p1), c2);
1758 #endif
1761 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1762 * composing characters.
1765 utfc_ptr2char(p, pcc)
1766 char_u *p;
1767 int *pcc; /* return: composing chars, last one is 0 */
1769 int len;
1770 int c;
1771 int cc;
1772 int i = 0;
1774 c = utf_ptr2char(p);
1775 len = utf_ptr2len(p);
1777 /* Only accept a composing char when the first char isn't illegal. */
1778 if ((len > 1 || *p < 0x80)
1779 && p[len] >= 0x80
1780 && UTF_COMPOSINGLIKE(p, p + len))
1782 cc = utf_ptr2char(p + len);
1783 for (;;)
1785 pcc[i++] = cc;
1786 if (i == MAX_MCO)
1787 break;
1788 len += utf_ptr2len(p + len);
1789 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1790 break;
1794 if (i < MAX_MCO) /* last composing char must be 0 */
1795 pcc[i] = 0;
1797 return c;
1801 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1802 * composing characters. Use no more than p[maxlen].
1805 utfc_ptr2char_len(p, pcc, maxlen)
1806 char_u *p;
1807 int *pcc; /* return: composing chars, last one is 0 */
1808 int maxlen;
1810 int len;
1811 int c;
1812 int cc;
1813 int i = 0;
1815 c = utf_ptr2char(p);
1816 len = utf_ptr2len_len(p, maxlen);
1817 /* Only accept a composing char when the first char isn't illegal. */
1818 if ((len > 1 || *p < 0x80)
1819 && len < maxlen
1820 && p[len] >= 0x80
1821 && UTF_COMPOSINGLIKE(p, p + len))
1823 cc = utf_ptr2char(p + len);
1824 for (;;)
1826 pcc[i++] = cc;
1827 if (i == MAX_MCO)
1828 break;
1829 len += utf_ptr2len_len(p + len, maxlen - len);
1830 if (len >= maxlen
1831 || p[len] < 0x80
1832 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1833 break;
1837 if (i < MAX_MCO) /* last composing char must be 0 */
1838 pcc[i] = 0;
1840 return c;
1844 * Convert the character at screen position "off" to a sequence of bytes.
1845 * Includes the composing characters.
1846 * "buf" must at least have the length MB_MAXBYTES.
1847 * Returns the produced number of bytes.
1850 utfc_char2bytes(off, buf)
1851 int off;
1852 char_u *buf;
1854 int len;
1855 int i;
1857 len = utf_char2bytes(ScreenLinesUC[off], buf);
1858 for (i = 0; i < Screen_mco; ++i)
1860 if (ScreenLinesC[i][off] == 0)
1861 break;
1862 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
1864 return len;
1868 * Get the length of a UTF-8 byte sequence, not including any following
1869 * composing characters.
1870 * Returns 0 for "".
1871 * Returns 1 for an illegal byte sequence.
1874 utf_ptr2len(p)
1875 char_u *p;
1877 int len;
1878 int i;
1880 if (*p == NUL)
1881 return 0;
1882 len = utf8len_tab[*p];
1883 for (i = 1; i < len; ++i)
1884 if ((p[i] & 0xc0) != 0x80)
1885 return 1;
1886 return len;
1890 * Return length of UTF-8 character, obtained from the first byte.
1891 * "b" must be between 0 and 255!
1892 * Returns 1 for an invalid first byte value.
1895 utf_byte2len(b)
1896 int b;
1898 return utf8len_tab[b];
1902 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1903 * following composing characters.
1904 * Returns 1 for "".
1905 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
1906 * Returns number > "size" for an incomplete byte sequence.
1907 * Never returns zero.
1910 utf_ptr2len_len(p, size)
1911 char_u *p;
1912 int size;
1914 int len;
1915 int i;
1916 int m;
1918 len = utf8len_tab[*p];
1919 if (len == 1)
1920 return 1; /* NUL, ascii or illegal lead byte */
1921 if (len > size)
1922 m = size; /* incomplete byte sequence. */
1923 else
1924 m = len;
1925 for (i = 1; i < m; ++i)
1926 if ((p[i] & 0xc0) != 0x80)
1927 return 1;
1928 return len;
1932 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1933 * This includes following composing characters.
1936 utfc_ptr2len(p)
1937 char_u *p;
1939 int len;
1940 int b0 = *p;
1941 #ifdef FEAT_ARABIC
1942 int prevlen;
1943 #endif
1945 if (b0 == NUL)
1946 return 0;
1947 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
1948 return 1;
1950 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1951 len = utf_ptr2len(p);
1953 /* Check for illegal byte. */
1954 if (len == 1 && b0 >= 0x80)
1955 return 1;
1958 * Check for composing characters. We can handle only the first six, but
1959 * skip all of them (otherwise the cursor would get stuck).
1961 #ifdef FEAT_ARABIC
1962 prevlen = 0;
1963 #endif
1964 for (;;)
1966 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1967 return len;
1969 /* Skip over composing char */
1970 #ifdef FEAT_ARABIC
1971 prevlen = len;
1972 #endif
1973 len += utf_ptr2len(p + len);
1978 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1979 * takes. This includes following composing characters.
1980 * Returns 0 for an empty string.
1981 * Returns 1 for an illegal char or an incomplete byte sequence.
1984 utfc_ptr2len_len(p, size)
1985 char_u *p;
1986 int size;
1988 int len;
1989 #ifdef FEAT_ARABIC
1990 int prevlen;
1991 #endif
1993 if (size < 1 || *p == NUL)
1994 return 0;
1995 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
1996 return 1;
1998 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1999 len = utf_ptr2len_len(p, size);
2001 /* Check for illegal byte and incomplete byte sequence. */
2002 if ((len == 1 && p[0] >= 0x80) || len > size)
2003 return 1;
2006 * Check for composing characters. We can handle only the first six, but
2007 * skip all of them (otherwise the cursor would get stuck).
2009 #ifdef FEAT_ARABIC
2010 prevlen = 0;
2011 #endif
2012 while (len < size)
2014 int len_next_char;
2016 if (p[len] < 0x80)
2017 break;
2020 * Next character length should not go beyond size to ensure that
2021 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2023 len_next_char = utf_ptr2len_len(p + len, size - len);
2024 if (len_next_char > size - len)
2025 break;
2027 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
2028 break;
2030 /* Skip over composing char */
2031 #ifdef FEAT_ARABIC
2032 prevlen = len;
2033 #endif
2034 len += len_next_char;
2036 return len;
2040 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2041 * This does not include composing characters.
2044 utf_char2len(c)
2045 int c;
2047 if (c < 0x80)
2048 return 1;
2049 if (c < 0x800)
2050 return 2;
2051 if (c < 0x10000)
2052 return 3;
2053 if (c < 0x200000)
2054 return 4;
2055 if (c < 0x4000000)
2056 return 5;
2057 return 6;
2061 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2062 * Returns the number of bytes.
2063 * This does not include composing characters.
2066 utf_char2bytes(c, buf)
2067 int c;
2068 char_u *buf;
2070 if (c < 0x80) /* 7 bits */
2072 buf[0] = c;
2073 return 1;
2075 if (c < 0x800) /* 11 bits */
2077 buf[0] = 0xc0 + ((unsigned)c >> 6);
2078 buf[1] = 0x80 + (c & 0x3f);
2079 return 2;
2081 if (c < 0x10000) /* 16 bits */
2083 buf[0] = 0xe0 + ((unsigned)c >> 12);
2084 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2085 buf[2] = 0x80 + (c & 0x3f);
2086 return 3;
2088 if (c < 0x200000) /* 21 bits */
2090 buf[0] = 0xf0 + ((unsigned)c >> 18);
2091 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2092 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2093 buf[3] = 0x80 + (c & 0x3f);
2094 return 4;
2096 if (c < 0x4000000) /* 26 bits */
2098 buf[0] = 0xf8 + ((unsigned)c >> 24);
2099 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2100 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2101 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2102 buf[4] = 0x80 + (c & 0x3f);
2103 return 5;
2105 /* 31 bits */
2106 buf[0] = 0xfc + ((unsigned)c >> 30);
2107 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
2108 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
2109 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
2110 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
2111 buf[5] = 0x80 + (c & 0x3f);
2112 return 6;
2116 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2117 * drawn on top of the preceding character.
2118 * Based on code from Markus Kuhn.
2121 utf_iscomposing(c)
2122 int c;
2124 /* Sorted list of non-overlapping intervals.
2125 * Generated by ../runtime/tools/unicode.vim. */
2126 static struct interval combining[] =
2128 {0x0300, 0x036f},
2129 {0x0483, 0x0489},
2130 {0x0591, 0x05bd},
2131 {0x05bf, 0x05bf},
2132 {0x05c1, 0x05c2},
2133 {0x05c4, 0x05c5},
2134 {0x05c7, 0x05c7},
2135 {0x0610, 0x061a},
2136 {0x064b, 0x065e},
2137 {0x0670, 0x0670},
2138 {0x06d6, 0x06dc},
2139 {0x06de, 0x06e4},
2140 {0x06e7, 0x06e8},
2141 {0x06ea, 0x06ed},
2142 {0x0711, 0x0711},
2143 {0x0730, 0x074a},
2144 {0x07a6, 0x07b0},
2145 {0x07eb, 0x07f3},
2146 {0x0816, 0x0819},
2147 {0x081b, 0x0823},
2148 {0x0825, 0x0827},
2149 {0x0829, 0x082d},
2150 {0x0900, 0x0903},
2151 {0x093c, 0x093c},
2152 {0x093e, 0x094e},
2153 {0x0951, 0x0955},
2154 {0x0962, 0x0963},
2155 {0x0981, 0x0983},
2156 {0x09bc, 0x09bc},
2157 {0x09be, 0x09c4},
2158 {0x09c7, 0x09c8},
2159 {0x09cb, 0x09cd},
2160 {0x09d7, 0x09d7},
2161 {0x09e2, 0x09e3},
2162 {0x0a01, 0x0a03},
2163 {0x0a3c, 0x0a3c},
2164 {0x0a3e, 0x0a42},
2165 {0x0a47, 0x0a48},
2166 {0x0a4b, 0x0a4d},
2167 {0x0a51, 0x0a51},
2168 {0x0a70, 0x0a71},
2169 {0x0a75, 0x0a75},
2170 {0x0a81, 0x0a83},
2171 {0x0abc, 0x0abc},
2172 {0x0abe, 0x0ac5},
2173 {0x0ac7, 0x0ac9},
2174 {0x0acb, 0x0acd},
2175 {0x0ae2, 0x0ae3},
2176 {0x0b01, 0x0b03},
2177 {0x0b3c, 0x0b3c},
2178 {0x0b3e, 0x0b44},
2179 {0x0b47, 0x0b48},
2180 {0x0b4b, 0x0b4d},
2181 {0x0b56, 0x0b57},
2182 {0x0b62, 0x0b63},
2183 {0x0b82, 0x0b82},
2184 {0x0bbe, 0x0bc2},
2185 {0x0bc6, 0x0bc8},
2186 {0x0bca, 0x0bcd},
2187 {0x0bd7, 0x0bd7},
2188 {0x0c01, 0x0c03},
2189 {0x0c3e, 0x0c44},
2190 {0x0c46, 0x0c48},
2191 {0x0c4a, 0x0c4d},
2192 {0x0c55, 0x0c56},
2193 {0x0c62, 0x0c63},
2194 {0x0c82, 0x0c83},
2195 {0x0cbc, 0x0cbc},
2196 {0x0cbe, 0x0cc4},
2197 {0x0cc6, 0x0cc8},
2198 {0x0cca, 0x0ccd},
2199 {0x0cd5, 0x0cd6},
2200 {0x0ce2, 0x0ce3},
2201 {0x0d02, 0x0d03},
2202 {0x0d3e, 0x0d44},
2203 {0x0d46, 0x0d48},
2204 {0x0d4a, 0x0d4d},
2205 {0x0d57, 0x0d57},
2206 {0x0d62, 0x0d63},
2207 {0x0d82, 0x0d83},
2208 {0x0dca, 0x0dca},
2209 {0x0dcf, 0x0dd4},
2210 {0x0dd6, 0x0dd6},
2211 {0x0dd8, 0x0ddf},
2212 {0x0df2, 0x0df3},
2213 {0x0e31, 0x0e31},
2214 {0x0e34, 0x0e3a},
2215 {0x0e47, 0x0e4e},
2216 {0x0eb1, 0x0eb1},
2217 {0x0eb4, 0x0eb9},
2218 {0x0ebb, 0x0ebc},
2219 {0x0ec8, 0x0ecd},
2220 {0x0f18, 0x0f19},
2221 {0x0f35, 0x0f35},
2222 {0x0f37, 0x0f37},
2223 {0x0f39, 0x0f39},
2224 {0x0f3e, 0x0f3f},
2225 {0x0f71, 0x0f84},
2226 {0x0f86, 0x0f87},
2227 {0x0f90, 0x0f97},
2228 {0x0f99, 0x0fbc},
2229 {0x0fc6, 0x0fc6},
2230 {0x102b, 0x103e},
2231 {0x1056, 0x1059},
2232 {0x105e, 0x1060},
2233 {0x1062, 0x1064},
2234 {0x1067, 0x106d},
2235 {0x1071, 0x1074},
2236 {0x1082, 0x108d},
2237 {0x108f, 0x108f},
2238 {0x109a, 0x109d},
2239 {0x135f, 0x135f},
2240 {0x1712, 0x1714},
2241 {0x1732, 0x1734},
2242 {0x1752, 0x1753},
2243 {0x1772, 0x1773},
2244 {0x17b6, 0x17d3},
2245 {0x17dd, 0x17dd},
2246 {0x180b, 0x180d},
2247 {0x18a9, 0x18a9},
2248 {0x1920, 0x192b},
2249 {0x1930, 0x193b},
2250 {0x19b0, 0x19c0},
2251 {0x19c8, 0x19c9},
2252 {0x1a17, 0x1a1b},
2253 {0x1a55, 0x1a5e},
2254 {0x1a60, 0x1a7c},
2255 {0x1a7f, 0x1a7f},
2256 {0x1b00, 0x1b04},
2257 {0x1b34, 0x1b44},
2258 {0x1b6b, 0x1b73},
2259 {0x1b80, 0x1b82},
2260 {0x1ba1, 0x1baa},
2261 {0x1c24, 0x1c37},
2262 {0x1cd0, 0x1cd2},
2263 {0x1cd4, 0x1ce8},
2264 {0x1ced, 0x1ced},
2265 {0x1cf2, 0x1cf2},
2266 {0x1dc0, 0x1de6},
2267 {0x1dfd, 0x1dff},
2268 {0x20d0, 0x20f0},
2269 {0x2cef, 0x2cf1},
2270 {0x2de0, 0x2dff},
2271 {0x302a, 0x302f},
2272 {0x3099, 0x309a},
2273 {0xa66f, 0xa672},
2274 {0xa67c, 0xa67d},
2275 {0xa6f0, 0xa6f1},
2276 {0xa802, 0xa802},
2277 {0xa806, 0xa806},
2278 {0xa80b, 0xa80b},
2279 {0xa823, 0xa827},
2280 {0xa880, 0xa881},
2281 {0xa8b4, 0xa8c4},
2282 {0xa8e0, 0xa8f1},
2283 {0xa926, 0xa92d},
2284 {0xa947, 0xa953},
2285 {0xa980, 0xa983},
2286 {0xa9b3, 0xa9c0},
2287 {0xaa29, 0xaa36},
2288 {0xaa43, 0xaa43},
2289 {0xaa4c, 0xaa4d},
2290 {0xaa7b, 0xaa7b},
2291 {0xaab0, 0xaab0},
2292 {0xaab2, 0xaab4},
2293 {0xaab7, 0xaab8},
2294 {0xaabe, 0xaabf},
2295 {0xaac1, 0xaac1},
2296 {0xabe3, 0xabea},
2297 {0xabec, 0xabed},
2298 {0xfb1e, 0xfb1e},
2299 {0xfe00, 0xfe0f},
2300 {0xfe20, 0xfe26},
2301 {0x101fd, 0x101fd},
2302 {0x10a01, 0x10a03},
2303 {0x10a05, 0x10a06},
2304 {0x10a0c, 0x10a0f},
2305 {0x10a38, 0x10a3a},
2306 {0x10a3f, 0x10a3f},
2307 {0x11080, 0x11082},
2308 {0x110b0, 0x110ba},
2309 {0x1d165, 0x1d169},
2310 {0x1d16d, 0x1d172},
2311 {0x1d17b, 0x1d182},
2312 {0x1d185, 0x1d18b},
2313 {0x1d1aa, 0x1d1ad},
2314 {0x1d242, 0x1d244},
2315 {0xe0100, 0xe01ef}
2318 return intable(combining, sizeof(combining), c);
2322 * Return TRUE for characters that can be displayed in a normal way.
2323 * Only for characters of 0x100 and above!
2326 utf_printable(c)
2327 int c;
2329 #ifdef USE_WCHAR_FUNCTIONS
2331 * Assume the iswprint() library function works better than our own stuff.
2333 return iswprint(c);
2334 #else
2335 /* Sorted list of non-overlapping intervals.
2336 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2337 static struct interval nonprint[] =
2339 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2340 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2341 {0xfffe, 0xffff}
2344 return !intable(nonprint, sizeof(nonprint), c);
2345 #endif
2349 * Get class of a Unicode character.
2350 * 0: white space
2351 * 1: punctuation
2352 * 2 or bigger: some class of word character.
2355 utf_class(c)
2356 int c;
2358 /* sorted list of non-overlapping intervals */
2359 static struct clinterval
2361 unsigned short first;
2362 unsigned short last;
2363 unsigned short class;
2364 } classes[] =
2366 {0x037e, 0x037e, 1}, /* Greek question mark */
2367 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2368 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2369 {0x0589, 0x0589, 1}, /* Armenian full stop */
2370 {0x05be, 0x05be, 1},
2371 {0x05c0, 0x05c0, 1},
2372 {0x05c3, 0x05c3, 1},
2373 {0x05f3, 0x05f4, 1},
2374 {0x060c, 0x060c, 1},
2375 {0x061b, 0x061b, 1},
2376 {0x061f, 0x061f, 1},
2377 {0x066a, 0x066d, 1},
2378 {0x06d4, 0x06d4, 1},
2379 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2380 {0x0964, 0x0965, 1},
2381 {0x0970, 0x0970, 1},
2382 {0x0df4, 0x0df4, 1},
2383 {0x0e4f, 0x0e4f, 1},
2384 {0x0e5a, 0x0e5b, 1},
2385 {0x0f04, 0x0f12, 1},
2386 {0x0f3a, 0x0f3d, 1},
2387 {0x0f85, 0x0f85, 1},
2388 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2389 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2390 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2391 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2392 {0x1680, 0x1680, 0},
2393 {0x169b, 0x169c, 1},
2394 {0x16eb, 0x16ed, 1},
2395 {0x1735, 0x1736, 1},
2396 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2397 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2398 {0x2000, 0x200b, 0}, /* spaces */
2399 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2400 {0x2028, 0x2029, 0},
2401 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2402 {0x202f, 0x202f, 0},
2403 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2404 {0x205f, 0x205f, 0},
2405 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2406 {0x2070, 0x207f, 0x2070}, /* superscript */
2407 {0x2080, 0x2094, 0x2080}, /* subscript */
2408 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2409 {0x2800, 0x28ff, 0x2800}, /* braille */
2410 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
2411 {0x29d8, 0x29db, 1},
2412 {0x29fc, 0x29fd, 1},
2413 {0x3000, 0x3000, 0}, /* ideographic space */
2414 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2415 {0x3030, 0x3030, 1},
2416 {0x303d, 0x303d, 1},
2417 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2418 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2419 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2420 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2421 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2422 {0xfd3e, 0xfd3f, 1},
2423 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2424 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2425 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2426 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2427 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
2429 int bot = 0;
2430 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2431 int mid;
2433 /* First quick check for Latin1 characters, use 'iskeyword'. */
2434 if (c < 0x100)
2436 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
2437 return 0; /* blank */
2438 if (vim_iswordc(c))
2439 return 2; /* word character */
2440 return 1; /* punctuation */
2443 /* binary search in table */
2444 while (top >= bot)
2446 mid = (bot + top) / 2;
2447 if (classes[mid].last < c)
2448 bot = mid + 1;
2449 else if (classes[mid].first > c)
2450 top = mid - 1;
2451 else
2452 return (int)classes[mid].class;
2455 /* most other characters are "word" characters */
2456 return 2;
2460 * Code for Unicode case-dependent operations. Based on notes in
2461 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2462 * This code uses simple case folding, not full case folding.
2463 * Last updated for Unicode 5.2.
2467 * The following tables are built by ../runtime/tools/unicode.vim.
2468 * They must be in numeric order, because we use binary search.
2469 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2470 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2471 * folded/upper/lower by adding 32.
2473 typedef struct
2475 int rangeStart;
2476 int rangeEnd;
2477 int step;
2478 int offset;
2479 } convertStruct;
2481 static convertStruct foldCase[] =
2483 {0x41,0x5a,1,32},
2484 {0xb5,0xb5,-1,775},
2485 {0xc0,0xd6,1,32},
2486 {0xd8,0xde,1,32},
2487 {0x100,0x12e,2,1},
2488 {0x132,0x136,2,1},
2489 {0x139,0x147,2,1},
2490 {0x14a,0x176,2,1},
2491 {0x178,0x178,-1,-121},
2492 {0x179,0x17d,2,1},
2493 {0x17f,0x17f,-1,-268},
2494 {0x181,0x181,-1,210},
2495 {0x182,0x184,2,1},
2496 {0x186,0x186,-1,206},
2497 {0x187,0x187,-1,1},
2498 {0x189,0x18a,1,205},
2499 {0x18b,0x18b,-1,1},
2500 {0x18e,0x18e,-1,79},
2501 {0x18f,0x18f,-1,202},
2502 {0x190,0x190,-1,203},
2503 {0x191,0x191,-1,1},
2504 {0x193,0x193,-1,205},
2505 {0x194,0x194,-1,207},
2506 {0x196,0x196,-1,211},
2507 {0x197,0x197,-1,209},
2508 {0x198,0x198,-1,1},
2509 {0x19c,0x19c,-1,211},
2510 {0x19d,0x19d,-1,213},
2511 {0x19f,0x19f,-1,214},
2512 {0x1a0,0x1a4,2,1},
2513 {0x1a6,0x1a6,-1,218},
2514 {0x1a7,0x1a7,-1,1},
2515 {0x1a9,0x1a9,-1,218},
2516 {0x1ac,0x1ac,-1,1},
2517 {0x1ae,0x1ae,-1,218},
2518 {0x1af,0x1af,-1,1},
2519 {0x1b1,0x1b2,1,217},
2520 {0x1b3,0x1b5,2,1},
2521 {0x1b7,0x1b7,-1,219},
2522 {0x1b8,0x1bc,4,1},
2523 {0x1c4,0x1c4,-1,2},
2524 {0x1c5,0x1c5,-1,1},
2525 {0x1c7,0x1c7,-1,2},
2526 {0x1c8,0x1c8,-1,1},
2527 {0x1ca,0x1ca,-1,2},
2528 {0x1cb,0x1db,2,1},
2529 {0x1de,0x1ee,2,1},
2530 {0x1f1,0x1f1,-1,2},
2531 {0x1f2,0x1f4,2,1},
2532 {0x1f6,0x1f6,-1,-97},
2533 {0x1f7,0x1f7,-1,-56},
2534 {0x1f8,0x21e,2,1},
2535 {0x220,0x220,-1,-130},
2536 {0x222,0x232,2,1},
2537 {0x23a,0x23a,-1,10795},
2538 {0x23b,0x23b,-1,1},
2539 {0x23d,0x23d,-1,-163},
2540 {0x23e,0x23e,-1,10792},
2541 {0x241,0x241,-1,1},
2542 {0x243,0x243,-1,-195},
2543 {0x244,0x244,-1,69},
2544 {0x245,0x245,-1,71},
2545 {0x246,0x24e,2,1},
2546 {0x345,0x345,-1,116},
2547 {0x370,0x372,2,1},
2548 {0x376,0x376,-1,1},
2549 {0x386,0x386,-1,38},
2550 {0x388,0x38a,1,37},
2551 {0x38c,0x38c,-1,64},
2552 {0x38e,0x38f,1,63},
2553 {0x391,0x3a1,1,32},
2554 {0x3a3,0x3ab,1,32},
2555 {0x3c2,0x3c2,-1,1},
2556 {0x3cf,0x3cf,-1,8},
2557 {0x3d0,0x3d0,-1,-30},
2558 {0x3d1,0x3d1,-1,-25},
2559 {0x3d5,0x3d5,-1,-15},
2560 {0x3d6,0x3d6,-1,-22},
2561 {0x3d8,0x3ee,2,1},
2562 {0x3f0,0x3f0,-1,-54},
2563 {0x3f1,0x3f1,-1,-48},
2564 {0x3f4,0x3f4,-1,-60},
2565 {0x3f5,0x3f5,-1,-64},
2566 {0x3f7,0x3f7,-1,1},
2567 {0x3f9,0x3f9,-1,-7},
2568 {0x3fa,0x3fa,-1,1},
2569 {0x3fd,0x3ff,1,-130},
2570 {0x400,0x40f,1,80},
2571 {0x410,0x42f,1,32},
2572 {0x460,0x480,2,1},
2573 {0x48a,0x4be,2,1},
2574 {0x4c0,0x4c0,-1,15},
2575 {0x4c1,0x4cd,2,1},
2576 {0x4d0,0x524,2,1},
2577 {0x531,0x556,1,48},
2578 {0x10a0,0x10c5,1,7264},
2579 {0x1e00,0x1e94,2,1},
2580 {0x1e9b,0x1e9b,-1,-58},
2581 {0x1e9e,0x1e9e,-1,-7615},
2582 {0x1ea0,0x1efe,2,1},
2583 {0x1f08,0x1f0f,1,-8},
2584 {0x1f18,0x1f1d,1,-8},
2585 {0x1f28,0x1f2f,1,-8},
2586 {0x1f38,0x1f3f,1,-8},
2587 {0x1f48,0x1f4d,1,-8},
2588 {0x1f59,0x1f5f,2,-8},
2589 {0x1f68,0x1f6f,1,-8},
2590 {0x1f88,0x1f8f,1,-8},
2591 {0x1f98,0x1f9f,1,-8},
2592 {0x1fa8,0x1faf,1,-8},
2593 {0x1fb8,0x1fb9,1,-8},
2594 {0x1fba,0x1fbb,1,-74},
2595 {0x1fbc,0x1fbc,-1,-9},
2596 {0x1fbe,0x1fbe,-1,-7173},
2597 {0x1fc8,0x1fcb,1,-86},
2598 {0x1fcc,0x1fcc,-1,-9},
2599 {0x1fd8,0x1fd9,1,-8},
2600 {0x1fda,0x1fdb,1,-100},
2601 {0x1fe8,0x1fe9,1,-8},
2602 {0x1fea,0x1feb,1,-112},
2603 {0x1fec,0x1fec,-1,-7},
2604 {0x1ff8,0x1ff9,1,-128},
2605 {0x1ffa,0x1ffb,1,-126},
2606 {0x1ffc,0x1ffc,-1,-9},
2607 {0x2126,0x2126,-1,-7517},
2608 {0x212a,0x212a,-1,-8383},
2609 {0x212b,0x212b,-1,-8262},
2610 {0x2132,0x2132,-1,28},
2611 {0x2160,0x216f,1,16},
2612 {0x2183,0x2183,-1,1},
2613 {0x24b6,0x24cf,1,26},
2614 {0x2c00,0x2c2e,1,48},
2615 {0x2c60,0x2c60,-1,1},
2616 {0x2c62,0x2c62,-1,-10743},
2617 {0x2c63,0x2c63,-1,-3814},
2618 {0x2c64,0x2c64,-1,-10727},
2619 {0x2c67,0x2c6b,2,1},
2620 {0x2c6d,0x2c6d,-1,-10780},
2621 {0x2c6e,0x2c6e,-1,-10749},
2622 {0x2c6f,0x2c6f,-1,-10783},
2623 {0x2c70,0x2c70,-1,-10782},
2624 {0x2c72,0x2c75,3,1},
2625 {0x2c7e,0x2c7f,1,-10815},
2626 {0x2c80,0x2ce2,2,1},
2627 {0x2ceb,0x2ced,2,1},
2628 {0xa640,0xa65e,2,1},
2629 {0xa662,0xa66c,2,1},
2630 {0xa680,0xa696,2,1},
2631 {0xa722,0xa72e,2,1},
2632 {0xa732,0xa76e,2,1},
2633 {0xa779,0xa77b,2,1},
2634 {0xa77d,0xa77d,-1,-35332},
2635 {0xa77e,0xa786,2,1},
2636 {0xa78b,0xa78b,-1,1},
2637 {0xff21,0xff3a,1,32},
2638 {0x10400,0x10427,1,40}
2641 static int utf_convert(int a, convertStruct table[], int tableSize);
2644 * Generic conversion function for case operations.
2645 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2646 * the given conversion "table". Uses binary search on "table".
2648 static int
2649 utf_convert(a, table, tableSize)
2650 int a;
2651 convertStruct table[];
2652 int tableSize;
2654 int start, mid, end; /* indices into table */
2656 start = 0;
2657 end = tableSize / sizeof(convertStruct);
2658 while (start < end)
2660 /* need to search further */
2661 mid = (end + start) /2;
2662 if (table[mid].rangeEnd < a)
2663 start = mid + 1;
2664 else
2665 end = mid;
2667 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
2668 && (a - table[start].rangeStart) % table[start].step == 0)
2669 return (a + table[start].offset);
2670 else
2671 return a;
2675 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2676 * simple case folding.
2679 utf_fold(a)
2680 int a;
2682 return utf_convert(a, foldCase, sizeof(foldCase));
2685 static convertStruct toLower[] =
2687 {0x41,0x5a,1,32},
2688 {0xc0,0xd6,1,32},
2689 {0xd8,0xde,1,32},
2690 {0x100,0x12e,2,1},
2691 {0x130,0x130,-1,-199},
2692 {0x132,0x136,2,1},
2693 {0x139,0x147,2,1},
2694 {0x14a,0x176,2,1},
2695 {0x178,0x178,-1,-121},
2696 {0x179,0x17d,2,1},
2697 {0x181,0x181,-1,210},
2698 {0x182,0x184,2,1},
2699 {0x186,0x186,-1,206},
2700 {0x187,0x187,-1,1},
2701 {0x189,0x18a,1,205},
2702 {0x18b,0x18b,-1,1},
2703 {0x18e,0x18e,-1,79},
2704 {0x18f,0x18f,-1,202},
2705 {0x190,0x190,-1,203},
2706 {0x191,0x191,-1,1},
2707 {0x193,0x193,-1,205},
2708 {0x194,0x194,-1,207},
2709 {0x196,0x196,-1,211},
2710 {0x197,0x197,-1,209},
2711 {0x198,0x198,-1,1},
2712 {0x19c,0x19c,-1,211},
2713 {0x19d,0x19d,-1,213},
2714 {0x19f,0x19f,-1,214},
2715 {0x1a0,0x1a4,2,1},
2716 {0x1a6,0x1a6,-1,218},
2717 {0x1a7,0x1a7,-1,1},
2718 {0x1a9,0x1a9,-1,218},
2719 {0x1ac,0x1ac,-1,1},
2720 {0x1ae,0x1ae,-1,218},
2721 {0x1af,0x1af,-1,1},
2722 {0x1b1,0x1b2,1,217},
2723 {0x1b3,0x1b5,2,1},
2724 {0x1b7,0x1b7,-1,219},
2725 {0x1b8,0x1bc,4,1},
2726 {0x1c4,0x1c4,-1,2},
2727 {0x1c5,0x1c5,-1,1},
2728 {0x1c7,0x1c7,-1,2},
2729 {0x1c8,0x1c8,-1,1},
2730 {0x1ca,0x1ca,-1,2},
2731 {0x1cb,0x1db,2,1},
2732 {0x1de,0x1ee,2,1},
2733 {0x1f1,0x1f1,-1,2},
2734 {0x1f2,0x1f4,2,1},
2735 {0x1f6,0x1f6,-1,-97},
2736 {0x1f7,0x1f7,-1,-56},
2737 {0x1f8,0x21e,2,1},
2738 {0x220,0x220,-1,-130},
2739 {0x222,0x232,2,1},
2740 {0x23a,0x23a,-1,10795},
2741 {0x23b,0x23b,-1,1},
2742 {0x23d,0x23d,-1,-163},
2743 {0x23e,0x23e,-1,10792},
2744 {0x241,0x241,-1,1},
2745 {0x243,0x243,-1,-195},
2746 {0x244,0x244,-1,69},
2747 {0x245,0x245,-1,71},
2748 {0x246,0x24e,2,1},
2749 {0x370,0x372,2,1},
2750 {0x376,0x376,-1,1},
2751 {0x386,0x386,-1,38},
2752 {0x388,0x38a,1,37},
2753 {0x38c,0x38c,-1,64},
2754 {0x38e,0x38f,1,63},
2755 {0x391,0x3a1,1,32},
2756 {0x3a3,0x3ab,1,32},
2757 {0x3cf,0x3cf,-1,8},
2758 {0x3d8,0x3ee,2,1},
2759 {0x3f4,0x3f4,-1,-60},
2760 {0x3f7,0x3f7,-1,1},
2761 {0x3f9,0x3f9,-1,-7},
2762 {0x3fa,0x3fa,-1,1},
2763 {0x3fd,0x3ff,1,-130},
2764 {0x400,0x40f,1,80},
2765 {0x410,0x42f,1,32},
2766 {0x460,0x480,2,1},
2767 {0x48a,0x4be,2,1},
2768 {0x4c0,0x4c0,-1,15},
2769 {0x4c1,0x4cd,2,1},
2770 {0x4d0,0x524,2,1},
2771 {0x531,0x556,1,48},
2772 {0x10a0,0x10c5,1,7264},
2773 {0x1e00,0x1e94,2,1},
2774 {0x1e9e,0x1e9e,-1,-7615},
2775 {0x1ea0,0x1efe,2,1},
2776 {0x1f08,0x1f0f,1,-8},
2777 {0x1f18,0x1f1d,1,-8},
2778 {0x1f28,0x1f2f,1,-8},
2779 {0x1f38,0x1f3f,1,-8},
2780 {0x1f48,0x1f4d,1,-8},
2781 {0x1f59,0x1f5f,2,-8},
2782 {0x1f68,0x1f6f,1,-8},
2783 {0x1f88,0x1f8f,1,-8},
2784 {0x1f98,0x1f9f,1,-8},
2785 {0x1fa8,0x1faf,1,-8},
2786 {0x1fb8,0x1fb9,1,-8},
2787 {0x1fba,0x1fbb,1,-74},
2788 {0x1fbc,0x1fbc,-1,-9},
2789 {0x1fc8,0x1fcb,1,-86},
2790 {0x1fcc,0x1fcc,-1,-9},
2791 {0x1fd8,0x1fd9,1,-8},
2792 {0x1fda,0x1fdb,1,-100},
2793 {0x1fe8,0x1fe9,1,-8},
2794 {0x1fea,0x1feb,1,-112},
2795 {0x1fec,0x1fec,-1,-7},
2796 {0x1ff8,0x1ff9,1,-128},
2797 {0x1ffa,0x1ffb,1,-126},
2798 {0x1ffc,0x1ffc,-1,-9},
2799 {0x2126,0x2126,-1,-7517},
2800 {0x212a,0x212a,-1,-8383},
2801 {0x212b,0x212b,-1,-8262},
2802 {0x2132,0x2132,-1,28},
2803 {0x2160,0x216f,1,16},
2804 {0x2183,0x2183,-1,1},
2805 {0x24b6,0x24cf,1,26},
2806 {0x2c00,0x2c2e,1,48},
2807 {0x2c60,0x2c60,-1,1},
2808 {0x2c62,0x2c62,-1,-10743},
2809 {0x2c63,0x2c63,-1,-3814},
2810 {0x2c64,0x2c64,-1,-10727},
2811 {0x2c67,0x2c6b,2,1},
2812 {0x2c6d,0x2c6d,-1,-10780},
2813 {0x2c6e,0x2c6e,-1,-10749},
2814 {0x2c6f,0x2c6f,-1,-10783},
2815 {0x2c70,0x2c70,-1,-10782},
2816 {0x2c72,0x2c75,3,1},
2817 {0x2c7e,0x2c7f,1,-10815},
2818 {0x2c80,0x2ce2,2,1},
2819 {0x2ceb,0x2ced,2,1},
2820 {0xa640,0xa65e,2,1},
2821 {0xa662,0xa66c,2,1},
2822 {0xa680,0xa696,2,1},
2823 {0xa722,0xa72e,2,1},
2824 {0xa732,0xa76e,2,1},
2825 {0xa779,0xa77b,2,1},
2826 {0xa77d,0xa77d,-1,-35332},
2827 {0xa77e,0xa786,2,1},
2828 {0xa78b,0xa78b,-1,1},
2829 {0xff21,0xff3a,1,32},
2830 {0x10400,0x10427,1,40}
2833 static convertStruct toUpper[] =
2835 {0x61,0x7a,1,-32},
2836 {0xb5,0xb5,-1,743},
2837 {0xe0,0xf6,1,-32},
2838 {0xf8,0xfe,1,-32},
2839 {0xff,0xff,-1,121},
2840 {0x101,0x12f,2,-1},
2841 {0x131,0x131,-1,-232},
2842 {0x133,0x137,2,-1},
2843 {0x13a,0x148,2,-1},
2844 {0x14b,0x177,2,-1},
2845 {0x17a,0x17e,2,-1},
2846 {0x17f,0x17f,-1,-300},
2847 {0x180,0x180,-1,195},
2848 {0x183,0x185,2,-1},
2849 {0x188,0x18c,4,-1},
2850 {0x192,0x192,-1,-1},
2851 {0x195,0x195,-1,97},
2852 {0x199,0x199,-1,-1},
2853 {0x19a,0x19a,-1,163},
2854 {0x19e,0x19e,-1,130},
2855 {0x1a1,0x1a5,2,-1},
2856 {0x1a8,0x1ad,5,-1},
2857 {0x1b0,0x1b4,4,-1},
2858 {0x1b6,0x1b9,3,-1},
2859 {0x1bd,0x1bd,-1,-1},
2860 {0x1bf,0x1bf,-1,56},
2861 {0x1c5,0x1c5,-1,-1},
2862 {0x1c6,0x1c6,-1,-2},
2863 {0x1c8,0x1c8,-1,-1},
2864 {0x1c9,0x1c9,-1,-2},
2865 {0x1cb,0x1cb,-1,-1},
2866 {0x1cc,0x1cc,-1,-2},
2867 {0x1ce,0x1dc,2,-1},
2868 {0x1dd,0x1dd,-1,-79},
2869 {0x1df,0x1ef,2,-1},
2870 {0x1f2,0x1f2,-1,-1},
2871 {0x1f3,0x1f3,-1,-2},
2872 {0x1f5,0x1f9,4,-1},
2873 {0x1fb,0x21f,2,-1},
2874 {0x223,0x233,2,-1},
2875 {0x23c,0x23c,-1,-1},
2876 {0x23f,0x240,1,10815},
2877 {0x242,0x247,5,-1},
2878 {0x249,0x24f,2,-1},
2879 {0x250,0x250,-1,10783},
2880 {0x251,0x251,-1,10780},
2881 {0x252,0x252,-1,10782},
2882 {0x253,0x253,-1,-210},
2883 {0x254,0x254,-1,-206},
2884 {0x256,0x257,1,-205},
2885 {0x259,0x259,-1,-202},
2886 {0x25b,0x25b,-1,-203},
2887 {0x260,0x260,-1,-205},
2888 {0x263,0x263,-1,-207},
2889 {0x268,0x268,-1,-209},
2890 {0x269,0x269,-1,-211},
2891 {0x26b,0x26b,-1,10743},
2892 {0x26f,0x26f,-1,-211},
2893 {0x271,0x271,-1,10749},
2894 {0x272,0x272,-1,-213},
2895 {0x275,0x275,-1,-214},
2896 {0x27d,0x27d,-1,10727},
2897 {0x280,0x283,3,-218},
2898 {0x288,0x288,-1,-218},
2899 {0x289,0x289,-1,-69},
2900 {0x28a,0x28b,1,-217},
2901 {0x28c,0x28c,-1,-71},
2902 {0x292,0x292,-1,-219},
2903 {0x345,0x345,-1,84},
2904 {0x371,0x373,2,-1},
2905 {0x377,0x377,-1,-1},
2906 {0x37b,0x37d,1,130},
2907 {0x3ac,0x3ac,-1,-38},
2908 {0x3ad,0x3af,1,-37},
2909 {0x3b1,0x3c1,1,-32},
2910 {0x3c2,0x3c2,-1,-31},
2911 {0x3c3,0x3cb,1,-32},
2912 {0x3cc,0x3cc,-1,-64},
2913 {0x3cd,0x3ce,1,-63},
2914 {0x3d0,0x3d0,-1,-62},
2915 {0x3d1,0x3d1,-1,-57},
2916 {0x3d5,0x3d5,-1,-47},
2917 {0x3d6,0x3d6,-1,-54},
2918 {0x3d7,0x3d7,-1,-8},
2919 {0x3d9,0x3ef,2,-1},
2920 {0x3f0,0x3f0,-1,-86},
2921 {0x3f1,0x3f1,-1,-80},
2922 {0x3f2,0x3f2,-1,7},
2923 {0x3f5,0x3f5,-1,-96},
2924 {0x3f8,0x3fb,3,-1},
2925 {0x430,0x44f,1,-32},
2926 {0x450,0x45f,1,-80},
2927 {0x461,0x481,2,-1},
2928 {0x48b,0x4bf,2,-1},
2929 {0x4c2,0x4ce,2,-1},
2930 {0x4cf,0x4cf,-1,-15},
2931 {0x4d1,0x525,2,-1},
2932 {0x561,0x586,1,-48},
2933 {0x1d79,0x1d79,-1,35332},
2934 {0x1d7d,0x1d7d,-1,3814},
2935 {0x1e01,0x1e95,2,-1},
2936 {0x1e9b,0x1e9b,-1,-59},
2937 {0x1ea1,0x1eff,2,-1},
2938 {0x1f00,0x1f07,1,8},
2939 {0x1f10,0x1f15,1,8},
2940 {0x1f20,0x1f27,1,8},
2941 {0x1f30,0x1f37,1,8},
2942 {0x1f40,0x1f45,1,8},
2943 {0x1f51,0x1f57,2,8},
2944 {0x1f60,0x1f67,1,8},
2945 {0x1f70,0x1f71,1,74},
2946 {0x1f72,0x1f75,1,86},
2947 {0x1f76,0x1f77,1,100},
2948 {0x1f78,0x1f79,1,128},
2949 {0x1f7a,0x1f7b,1,112},
2950 {0x1f7c,0x1f7d,1,126},
2951 {0x1f80,0x1f87,1,8},
2952 {0x1f90,0x1f97,1,8},
2953 {0x1fa0,0x1fa7,1,8},
2954 {0x1fb0,0x1fb1,1,8},
2955 {0x1fb3,0x1fb3,-1,9},
2956 {0x1fbe,0x1fbe,-1,-7205},
2957 {0x1fc3,0x1fc3,-1,9},
2958 {0x1fd0,0x1fd1,1,8},
2959 {0x1fe0,0x1fe1,1,8},
2960 {0x1fe5,0x1fe5,-1,7},
2961 {0x1ff3,0x1ff3,-1,9},
2962 {0x214e,0x214e,-1,-28},
2963 {0x2170,0x217f,1,-16},
2964 {0x2184,0x2184,-1,-1},
2965 {0x24d0,0x24e9,1,-26},
2966 {0x2c30,0x2c5e,1,-48},
2967 {0x2c61,0x2c61,-1,-1},
2968 {0x2c65,0x2c65,-1,-10795},
2969 {0x2c66,0x2c66,-1,-10792},
2970 {0x2c68,0x2c6c,2,-1},
2971 {0x2c73,0x2c76,3,-1},
2972 {0x2c81,0x2ce3,2,-1},
2973 {0x2cec,0x2cee,2,-1},
2974 {0x2d00,0x2d25,1,-7264},
2975 {0xa641,0xa65f,2,-1},
2976 {0xa663,0xa66d,2,-1},
2977 {0xa681,0xa697,2,-1},
2978 {0xa723,0xa72f,2,-1},
2979 {0xa733,0xa76f,2,-1},
2980 {0xa77a,0xa77c,2,-1},
2981 {0xa77f,0xa787,2,-1},
2982 {0xa78c,0xa78c,-1,-1},
2983 {0xff41,0xff5a,1,-32},
2984 {0x10428,0x1044f,1,-40}
2988 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
2989 * simple case folding.
2992 utf_toupper(a)
2993 int a;
2995 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
2996 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2997 return TOUPPER_ASC(a);
2999 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
3000 /* If towupper() is available and handles Unicode, use it. */
3001 if (!(cmp_flags & CMP_INTERNAL))
3002 return towupper(a);
3003 #endif
3005 /* For characters below 128 use locale sensitive toupper(). */
3006 if (a < 128)
3007 return TOUPPER_LOC(a);
3009 /* For any other characters use the above mapping table. */
3010 return utf_convert(a, toUpper, sizeof(toUpper));
3014 utf_islower(a)
3015 int a;
3017 return (utf_toupper(a) != a);
3021 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3022 * simple case folding.
3025 utf_tolower(a)
3026 int a;
3028 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
3029 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
3030 return TOLOWER_ASC(a);
3032 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
3033 /* If towlower() is available and handles Unicode, use it. */
3034 if (!(cmp_flags & CMP_INTERNAL))
3035 return towlower(a);
3036 #endif
3038 /* For characters below 128 use locale sensitive tolower(). */
3039 if (a < 128)
3040 return TOLOWER_LOC(a);
3042 /* For any other characters use the above mapping table. */
3043 return utf_convert(a, toLower, sizeof(toLower));
3047 utf_isupper(a)
3048 int a;
3050 return (utf_tolower(a) != a);
3054 * Version of strnicmp() that handles multi-byte characters.
3055 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
3056 * probably use strnicmp(), because there are no ASCII characters in the
3057 * second byte.
3058 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3059 * two characters otherwise.
3062 mb_strnicmp(s1, s2, nn)
3063 char_u *s1, *s2;
3064 size_t nn;
3066 int i, j, l;
3067 int cdiff;
3068 int incomplete = FALSE;
3069 int n = (int)nn;
3071 for (i = 0; i < n; i += l)
3073 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
3074 return 0;
3075 if (enc_utf8)
3077 l = utf_byte2len(s1[i]);
3078 if (l > n - i)
3080 l = n - i; /* incomplete character */
3081 incomplete = TRUE;
3083 /* Check directly first, it's faster. */
3084 for (j = 0; j < l; ++j)
3086 if (s1[i + j] != s2[i + j])
3087 break;
3088 if (s1[i + j] == 0)
3089 /* Both stings have the same bytes but are incomplete or
3090 * have illegal bytes, accept them as equal. */
3091 l = j;
3093 if (j < l)
3095 /* If one of the two characters is incomplete return -1. */
3096 if (incomplete || i + utf_byte2len(s2[i]) > n)
3097 return -1;
3098 cdiff = utf_fold(utf_ptr2char(s1 + i))
3099 - utf_fold(utf_ptr2char(s2 + i));
3100 if (cdiff != 0)
3101 return cdiff;
3104 else
3106 l = (*mb_ptr2len)(s1 + i);
3107 if (l <= 1)
3109 /* Single byte: first check normally, then with ignore case. */
3110 if (s1[i] != s2[i])
3112 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
3113 if (cdiff != 0)
3114 return cdiff;
3117 else
3119 /* For non-Unicode multi-byte don't ignore case. */
3120 if (l > n - i)
3121 l = n - i;
3122 cdiff = STRNCMP(s1 + i, s2 + i, l);
3123 if (cdiff != 0)
3124 return cdiff;
3128 return 0;
3132 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3133 * 'encoding' has been set to.
3135 void
3136 show_utf8()
3138 int len;
3139 int rlen = 0;
3140 char_u *line;
3141 int clen;
3142 int i;
3144 /* Get the byte length of the char under the cursor, including composing
3145 * characters. */
3146 line = ml_get_cursor();
3147 len = utfc_ptr2len(line);
3148 if (len == 0)
3150 MSG("NUL");
3151 return;
3154 clen = 0;
3155 for (i = 0; i < len; ++i)
3157 if (clen == 0)
3159 /* start of (composing) character, get its length */
3160 if (i > 0)
3162 STRCPY(IObuff + rlen, "+ ");
3163 rlen += 2;
3165 clen = utf_ptr2len(line + i);
3167 sprintf((char *)IObuff + rlen, "%02x ", line[i]);
3168 --clen;
3169 rlen += (int)STRLEN(IObuff + rlen);
3170 if (rlen > IOSIZE - 20)
3171 break;
3174 msg(IObuff);
3178 * mb_head_off() function pointer.
3179 * Return offset from "p" to the first byte of the character it points into.
3180 * If "p" points to the NUL at the end of the string return 0.
3181 * Returns 0 when already at the first byte of a character.
3184 latin_head_off(base, p)
3185 char_u *base UNUSED;
3186 char_u *p UNUSED;
3188 return 0;
3192 dbcs_head_off(base, p)
3193 char_u *base;
3194 char_u *p;
3196 char_u *q;
3198 /* It can't be a trailing byte when not using DBCS, at the start of the
3199 * string or the previous byte can't start a double-byte. */
3200 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
3201 return 0;
3203 /* This is slow: need to start at the base and go forward until the
3204 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
3205 q = base;
3206 while (q < p)
3207 q += dbcs_ptr2len(q);
3208 return (q == p) ? 0 : 1;
3212 * Special version of dbcs_head_off() that works for ScreenLines[], where
3213 * single-width DBCS_JPNU characters are stored separately.
3216 dbcs_screen_head_off(base, p)
3217 char_u *base;
3218 char_u *p;
3220 char_u *q;
3222 /* It can't be a trailing byte when not using DBCS, at the start of the
3223 * string or the previous byte can't start a double-byte.
3224 * For euc-jp an 0x8e byte in the previous cell always means we have a
3225 * lead byte in the current cell. */
3226 if (p <= base
3227 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
3228 || MB_BYTE2LEN(p[-1]) == 1
3229 || *p == NUL)
3230 return 0;
3232 /* This is slow: need to start at the base and go forward until the
3233 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
3234 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
3235 * stored as the next byte. */
3236 q = base;
3237 while (q < p)
3239 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
3240 ++q;
3241 else
3242 q += dbcs_ptr2len(q);
3244 return (q == p) ? 0 : 1;
3248 utf_head_off(base, p)
3249 char_u *base;
3250 char_u *p;
3252 char_u *q;
3253 char_u *s;
3254 int c;
3255 int len;
3256 #ifdef FEAT_ARABIC
3257 char_u *j;
3258 #endif
3260 if (*p < 0x80) /* be quick for ASCII */
3261 return 0;
3263 /* Skip backwards over trailing bytes: 10xx.xxxx
3264 * Skip backwards again if on a composing char. */
3265 for (q = p; ; --q)
3267 /* Move s to the last byte of this char. */
3268 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
3270 /* Move q to the first byte of this char. */
3271 while (q > base && (*q & 0xc0) == 0x80)
3272 --q;
3273 /* Check for illegal sequence. Do allow an illegal byte after where we
3274 * started. */
3275 len = utf8len_tab[*q];
3276 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
3277 return 0;
3279 if (q <= base)
3280 break;
3282 c = utf_ptr2char(q);
3283 if (utf_iscomposing(c))
3284 continue;
3286 #ifdef FEAT_ARABIC
3287 if (arabic_maycombine(c))
3289 /* Advance to get a sneak-peak at the next char */
3290 j = q;
3291 --j;
3292 /* Move j to the first byte of this char. */
3293 while (j > base && (*j & 0xc0) == 0x80)
3294 --j;
3295 if (arabic_combine(utf_ptr2char(j), c))
3296 continue;
3298 #endif
3299 break;
3302 return (int)(p - q);
3306 * Copy a character from "*fp" to "*tp" and advance the pointers.
3308 void
3309 mb_copy_char(fp, tp)
3310 char_u **fp;
3311 char_u **tp;
3313 int l = (*mb_ptr2len)(*fp);
3315 mch_memmove(*tp, *fp, (size_t)l);
3316 *tp += l;
3317 *fp += l;
3321 * Return the offset from "p" to the first byte of a character. When "p" is
3322 * at the start of a character 0 is returned, otherwise the offset to the next
3323 * character. Can start anywhere in a stream of bytes.
3326 mb_off_next(base, p)
3327 char_u *base;
3328 char_u *p;
3330 int i;
3331 int j;
3333 if (enc_utf8)
3335 if (*p < 0x80) /* be quick for ASCII */
3336 return 0;
3338 /* Find the next character that isn't 10xx.xxxx */
3339 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
3341 if (i > 0)
3343 /* Check for illegal sequence. */
3344 for (j = 0; p - j > base; ++j)
3345 if ((p[-j] & 0xc0) != 0x80)
3346 break;
3347 if (utf8len_tab[p[-j]] != i + j)
3348 return 0;
3350 return i;
3353 /* Only need to check if we're on a trail byte, it doesn't matter if we
3354 * want the offset to the next or current character. */
3355 return (*mb_head_off)(base, p);
3359 * Return the offset from "p" to the last byte of the character it points
3360 * into. Can start anywhere in a stream of bytes.
3363 mb_tail_off(base, p)
3364 char_u *base;
3365 char_u *p;
3367 int i;
3368 int j;
3370 if (*p == NUL)
3371 return 0;
3373 if (enc_utf8)
3375 /* Find the last character that is 10xx.xxxx */
3376 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
3378 /* Check for illegal sequence. */
3379 for (j = 0; p - j > base; ++j)
3380 if ((p[-j] & 0xc0) != 0x80)
3381 break;
3382 if (utf8len_tab[p[-j]] != i + j + 1)
3383 return 0;
3384 return i;
3387 /* It can't be the first byte if a double-byte when not using DBCS, at the
3388 * end of the string or the byte can't start a double-byte. */
3389 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
3390 return 0;
3392 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3393 return 1 - dbcs_head_off(base, p);
3397 * Find the next illegal byte sequence.
3399 void
3400 utf_find_illegal()
3402 pos_T pos = curwin->w_cursor;
3403 char_u *p;
3404 int len;
3405 vimconv_T vimconv;
3406 char_u *tofree = NULL;
3408 vimconv.vc_type = CONV_NONE;
3409 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
3411 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
3412 * possibly a utf-8 file with illegal bytes. Setup for conversion
3413 * from utf-8 to 'fileencoding'. */
3414 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
3417 #ifdef FEAT_VIRTUALEDIT
3418 curwin->w_cursor.coladd = 0;
3419 #endif
3420 for (;;)
3422 p = ml_get_cursor();
3423 if (vimconv.vc_type != CONV_NONE)
3425 vim_free(tofree);
3426 tofree = string_convert(&vimconv, p, NULL);
3427 if (tofree == NULL)
3428 break;
3429 p = tofree;
3432 while (*p != NUL)
3434 /* Illegal means that there are not enough trail bytes (checked by
3435 * utf_ptr2len()) or too many of them (overlong sequence). */
3436 len = utf_ptr2len(p);
3437 if (*p >= 0x80 && (len == 1
3438 || utf_char2len(utf_ptr2char(p)) != len))
3440 if (vimconv.vc_type == CONV_NONE)
3441 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
3442 else
3444 int l;
3446 len = (int)(p - tofree);
3447 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
3449 l = utf_ptr2len(p);
3450 curwin->w_cursor.col += l;
3453 goto theend;
3455 p += len;
3457 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
3458 break;
3459 ++curwin->w_cursor.lnum;
3460 curwin->w_cursor.col = 0;
3463 /* didn't find it: don't move and beep */
3464 curwin->w_cursor = pos;
3465 beep_flush();
3467 theend:
3468 vim_free(tofree);
3469 convert_setup(&vimconv, NULL, NULL);
3472 #if defined(HAVE_GTK2) || defined(PROTO)
3474 * Return TRUE if string "s" is a valid utf-8 string.
3475 * When "end" is NULL stop at the first NUL.
3476 * When "end" is positive stop there.
3479 utf_valid_string(s, end)
3480 char_u *s;
3481 char_u *end;
3483 int l;
3484 char_u *p = s;
3486 while (end == NULL ? *p != NUL : p < end)
3488 l = utf8len_tab_zero[*p];
3489 if (l == 0)
3490 return FALSE; /* invalid lead byte */
3491 if (end != NULL && p + l > end)
3492 return FALSE; /* incomplete byte sequence */
3493 ++p;
3494 while (--l > 0)
3495 if ((*p++ & 0xc0) != 0x80)
3496 return FALSE; /* invalid trail byte */
3498 return TRUE;
3500 #endif
3502 #if defined(FEAT_GUI) || defined(PROTO)
3504 * Special version of mb_tail_off() for use in ScreenLines[].
3507 dbcs_screen_tail_off(base, p)
3508 char_u *base;
3509 char_u *p;
3511 /* It can't be the first byte if a double-byte when not using DBCS, at the
3512 * end of the string or the byte can't start a double-byte.
3513 * For euc-jp an 0x8e byte always means we have a lead byte in the current
3514 * cell. */
3515 if (*p == NUL || p[1] == NUL
3516 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
3517 || MB_BYTE2LEN(*p) == 1)
3518 return 0;
3520 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3521 return 1 - dbcs_screen_head_off(base, p);
3523 #endif
3526 * If the cursor moves on an trail byte, set the cursor on the lead byte.
3527 * Thus it moves left if necessary.
3528 * Return TRUE when the cursor was adjusted.
3530 void
3531 mb_adjust_cursor()
3533 mb_adjustpos(&curwin->w_cursor);
3537 * Adjust position "*lp" to point to the first byte of a multi-byte character.
3538 * If it points to a tail byte it's moved backwards to the head byte.
3540 void
3541 mb_adjustpos(lp)
3542 pos_T *lp;
3544 char_u *p;
3546 if (lp->col > 0
3547 #ifdef FEAT_VIRTUALEDIT
3548 || lp->coladd > 1
3549 #endif
3552 p = ml_get(lp->lnum);
3553 lp->col -= (*mb_head_off)(p, p + lp->col);
3554 #ifdef FEAT_VIRTUALEDIT
3555 /* Reset "coladd" when the cursor would be on the right half of a
3556 * double-wide character. */
3557 if (lp->coladd == 1
3558 && p[lp->col] != TAB
3559 && vim_isprintc((*mb_ptr2char)(p + lp->col))
3560 && ptr2cells(p + lp->col) > 1)
3561 lp->coladd = 0;
3562 #endif
3567 * Return a pointer to the character before "*p", if there is one.
3569 char_u *
3570 mb_prevptr(line, p)
3571 char_u *line; /* start of the string */
3572 char_u *p;
3574 if (p > line)
3575 mb_ptr_back(line, p);
3576 return p;
3580 * Return the character length of "str". Each multi-byte character (with
3581 * following composing characters) counts as one.
3584 mb_charlen(str)
3585 char_u *str;
3587 char_u *p = str;
3588 int count;
3590 if (p == NULL)
3591 return 0;
3593 for (count = 0; *p != NUL; count++)
3594 p += (*mb_ptr2len)(p);
3596 return count;
3599 #if defined(FEAT_SPELL) || defined(PROTO)
3601 * Like mb_charlen() but for a string with specified length.
3604 mb_charlen_len(str, len)
3605 char_u *str;
3606 int len;
3608 char_u *p = str;
3609 int count;
3611 for (count = 0; *p != NUL && p < str + len; count++)
3612 p += (*mb_ptr2len)(p);
3614 return count;
3616 #endif
3619 * Try to un-escape a multi-byte character.
3620 * Used for the "to" and "from" part of a mapping.
3621 * Return the un-escaped string if it is a multi-byte character, and advance
3622 * "pp" to just after the bytes that formed it.
3623 * Return NULL if no multi-byte char was found.
3625 char_u *
3626 mb_unescape(pp)
3627 char_u **pp;
3629 static char_u buf[MB_MAXBYTES + 1];
3630 int n, m = 0;
3631 char_u *str = *pp;
3633 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
3634 * KS_EXTRA KE_CSI to CSI. */
3635 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
3637 if (str[n] == K_SPECIAL
3638 && str[n + 1] == KS_SPECIAL
3639 && str[n + 2] == KE_FILLER)
3641 buf[m++] = K_SPECIAL;
3642 n += 2;
3644 else if ((str[n] == K_SPECIAL
3645 # ifdef FEAT_GUI
3646 || str[n] == CSI
3647 # endif
3649 && str[n + 1] == KS_EXTRA
3650 && str[n + 2] == (int)KE_CSI)
3652 buf[m++] = CSI;
3653 n += 2;
3655 else if (str[n] == K_SPECIAL
3656 # ifdef FEAT_GUI
3657 || str[n] == CSI
3658 # endif
3660 break; /* a special key can't be a multibyte char */
3661 else
3662 buf[m++] = str[n];
3663 buf[m] = NUL;
3665 /* Return a multi-byte character if it's found. An illegal sequence
3666 * will result in a 1 here. */
3667 if ((*mb_ptr2len)(buf) > 1)
3669 *pp = str + n + 1;
3670 return buf;
3673 return NULL;
3677 * Return TRUE if the character at "row"/"col" on the screen is the left side
3678 * of a double-width character.
3679 * Caller must make sure "row" and "col" are not invalid!
3682 mb_lefthalve(row, col)
3683 int row;
3684 int col;
3686 #ifdef FEAT_HANGULIN
3687 if (composing_hangul)
3688 return TRUE;
3689 #endif
3690 return (*mb_off2cells)(LineOffset[row] + col,
3691 LineOffset[row] + screen_Columns) > 1;
3695 * Correct a position on the screen, if it's the right half of a double-wide
3696 * char move it to the left half. Returns the corrected column.
3699 mb_fix_col(col, row)
3700 int col;
3701 int row;
3703 col = check_col(col);
3704 row = check_row(row);
3705 if (has_mbyte && ScreenLines != NULL && col > 0
3706 && ((enc_dbcs
3707 && ScreenLines[LineOffset[row] + col] != NUL
3708 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
3709 ScreenLines + LineOffset[row] + col))
3710 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
3711 return col - 1;
3712 return col;
3714 #endif
3716 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3717 static int enc_alias_search __ARGS((char_u *name));
3720 * Skip the Vim specific head of a 'encoding' name.
3722 char_u *
3723 enc_skip(p)
3724 char_u *p;
3726 if (STRNCMP(p, "2byte-", 6) == 0)
3727 return p + 6;
3728 if (STRNCMP(p, "8bit-", 5) == 0)
3729 return p + 5;
3730 return p;
3734 * Find the canonical name for encoding "enc".
3735 * When the name isn't recognized, returns "enc" itself, but with all lower
3736 * case characters and '_' replaced with '-'.
3737 * Returns an allocated string. NULL for out-of-memory.
3739 char_u *
3740 enc_canonize(enc)
3741 char_u *enc;
3743 char_u *r;
3744 char_u *p, *s;
3745 int i;
3747 # ifdef FEAT_MBYTE
3748 if (STRCMP(enc, "default") == 0)
3750 /* Use the default encoding as it's found by set_init_1(). */
3751 r = get_encoding_default();
3752 if (r == NULL)
3753 r = (char_u *)"latin1";
3754 return vim_strsave(r);
3756 # endif
3758 /* copy "enc" to allocated memory, with room for two '-' */
3759 r = alloc((unsigned)(STRLEN(enc) + 3));
3760 if (r != NULL)
3762 /* Make it all lower case and replace '_' with '-'. */
3763 p = r;
3764 for (s = enc; *s != NUL; ++s)
3766 if (*s == '_')
3767 *p++ = '-';
3768 else
3769 *p++ = TOLOWER_ASC(*s);
3771 *p = NUL;
3773 /* Skip "2byte-" and "8bit-". */
3774 p = enc_skip(r);
3776 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3777 if (STRNCMP(p, "microsoft-cp", 12) == 0)
3778 STRMOVE(p, p + 10);
3780 /* "iso8859" -> "iso-8859" */
3781 if (STRNCMP(p, "iso8859", 7) == 0)
3783 STRMOVE(p + 4, p + 3);
3784 p[3] = '-';
3787 /* "iso-8859n" -> "iso-8859-n" */
3788 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
3790 STRMOVE(p + 9, p + 8);
3791 p[8] = '-';
3794 /* "latin-N" -> "latinN" */
3795 if (STRNCMP(p, "latin-", 6) == 0)
3796 STRMOVE(p + 5, p + 6);
3798 if (enc_canon_search(p) >= 0)
3800 /* canonical name can be used unmodified */
3801 if (p != r)
3802 STRMOVE(r, p);
3804 else if ((i = enc_alias_search(p)) >= 0)
3806 /* alias recognized, get canonical name */
3807 vim_free(r);
3808 r = vim_strsave((char_u *)enc_canon_table[i].name);
3811 return r;
3815 * Search for an encoding alias of "name".
3816 * Returns -1 when not found.
3818 static int
3819 enc_alias_search(name)
3820 char_u *name;
3822 int i;
3824 for (i = 0; enc_alias_table[i].name != NULL; ++i)
3825 if (STRCMP(name, enc_alias_table[i].name) == 0)
3826 return enc_alias_table[i].canon;
3827 return -1;
3829 #endif
3831 #if defined(FEAT_MBYTE) || defined(PROTO)
3833 #ifdef HAVE_LANGINFO_H
3834 # include <langinfo.h>
3835 #endif
3838 * Get the canonicalized encoding of the current locale.
3839 * Returns an allocated string when successful, NULL when not.
3841 char_u *
3842 enc_locale()
3844 #ifndef WIN3264
3845 char *s;
3846 char *p;
3847 int i;
3848 #endif
3849 char buf[50];
3850 #ifdef WIN3264
3851 long acp = GetACP();
3853 if (acp == 1200)
3854 STRCPY(buf, "ucs-2le");
3855 else if (acp == 1252) /* cp1252 is used as latin1 */
3856 STRCPY(buf, "latin1");
3857 else
3858 sprintf(buf, "cp%ld", acp);
3859 #else
3860 # ifdef HAVE_NL_LANGINFO_CODESET
3861 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
3862 # endif
3863 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
3864 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
3865 # endif
3866 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
3867 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
3868 s = getenv("LANG");
3870 if (s == NULL || *s == NUL)
3871 return FAIL;
3873 /* The most generic locale format is:
3874 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
3875 * If there is a '.' remove the part before it.
3876 * if there is something after the codeset, remove it.
3877 * Make the name lowercase and replace '_' with '-'.
3878 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
3879 * "ko_KR.EUC" == "euc-kr"
3881 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
3883 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
3884 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
3886 /* copy "XY.EUC" to "euc-XY" to buf[10] */
3887 STRCPY(buf + 10, "euc-");
3888 buf[14] = p[-2];
3889 buf[15] = p[-1];
3890 buf[16] = 0;
3891 s = buf + 10;
3893 else
3894 s = p + 1;
3896 for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
3898 if (s[i] == '_' || s[i] == '-')
3899 buf[i] = '-';
3900 else if (isalnum((int)s[i]))
3901 buf[i] = TOLOWER_ASC(s[i]);
3902 else
3903 break;
3905 buf[i] = NUL;
3906 #endif
3908 return enc_canonize((char_u *)buf);
3911 #if defined(WIN3264) || defined(PROTO)
3913 * Convert an encoding name to an MS-Windows codepage.
3914 * Returns zero if no codepage can be figured out.
3917 encname2codepage(name)
3918 char_u *name;
3920 int cp;
3921 char_u *p = name;
3922 int idx;
3924 if (STRNCMP(p, "8bit-", 5) == 0)
3925 p += 5;
3926 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
3927 p += 6;
3929 if (p[0] == 'c' && p[1] == 'p')
3930 cp = atoi(p + 2);
3931 else if ((idx = enc_canon_search(p)) >= 0)
3932 cp = enc_canon_table[idx].codepage;
3933 else
3934 return 0;
3935 if (IsValidCodePage(cp))
3936 return cp;
3937 return 0;
3939 #endif
3941 # if defined(USE_ICONV) || defined(PROTO)
3943 static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp));
3946 * Call iconv_open() with a check if iconv() works properly (there are broken
3947 * versions).
3948 * Returns (void *)-1 if failed.
3949 * (should return iconv_t, but that causes problems with prototypes).
3951 void *
3952 my_iconv_open(to, from)
3953 char_u *to;
3954 char_u *from;
3956 iconv_t fd;
3957 #define ICONV_TESTLEN 400
3958 char_u tobuf[ICONV_TESTLEN];
3959 char *p;
3960 size_t tolen;
3961 static int iconv_ok = -1;
3963 if (iconv_ok == FALSE)
3964 return (void *)-1; /* detected a broken iconv() previously */
3966 #ifdef DYNAMIC_ICONV
3967 /* Check if the iconv.dll can be found. */
3968 if (!iconv_enabled(TRUE))
3969 return (void *)-1;
3970 #endif
3972 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
3974 if (fd != (iconv_t)-1 && iconv_ok == -1)
3977 * Do a dummy iconv() call to check if it actually works. There is a
3978 * version of iconv() on Linux that is broken. We can't ignore it,
3979 * because it's wide-spread. The symptoms are that after outputting
3980 * the initial shift state the "to" pointer is NULL and conversion
3981 * stops for no apparent reason after about 8160 characters.
3983 p = (char *)tobuf;
3984 tolen = ICONV_TESTLEN;
3985 (void)iconv(fd, NULL, NULL, &p, &tolen);
3986 if (p == NULL)
3988 iconv_ok = FALSE;
3989 iconv_close(fd);
3990 fd = (iconv_t)-1;
3992 else
3993 iconv_ok = TRUE;
3996 return (void *)fd;
4000 * Convert the string "str[slen]" with iconv().
4001 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4002 * sequence and set "*unconvlenp" to the length of it.
4003 * Returns the converted string in allocated memory. NULL for an error.
4004 * If resultlenp is not NULL, sets it to the result length in bytes.
4006 static char_u *
4007 iconv_string(vcp, str, slen, unconvlenp, resultlenp)
4008 vimconv_T *vcp;
4009 char_u *str;
4010 int slen;
4011 int *unconvlenp;
4012 int *resultlenp;
4014 const char *from;
4015 size_t fromlen;
4016 char *to;
4017 size_t tolen;
4018 size_t len = 0;
4019 size_t done = 0;
4020 char_u *result = NULL;
4021 char_u *p;
4022 int l;
4024 from = (char *)str;
4025 fromlen = slen;
4026 for (;;)
4028 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
4030 /* Allocate enough room for most conversions. When re-allocating
4031 * increase the buffer size. */
4032 len = len + fromlen * 2 + 40;
4033 p = alloc((unsigned)len);
4034 if (p != NULL && done > 0)
4035 mch_memmove(p, result, done);
4036 vim_free(result);
4037 result = p;
4038 if (result == NULL) /* out of memory */
4039 break;
4042 to = (char *)result + done;
4043 tolen = len - done - 2;
4044 /* Avoid a warning for systems with a wrong iconv() prototype by
4045 * casting the second argument to void *. */
4046 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
4047 != (size_t)-1)
4049 /* Finished, append a NUL. */
4050 *to = NUL;
4051 break;
4054 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4055 * iconv library may use one of them. */
4056 if (!vcp->vc_fail && unconvlenp != NULL
4057 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4059 /* Handle an incomplete sequence at the end. */
4060 *to = NUL;
4061 *unconvlenp = (int)fromlen;
4062 break;
4065 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4066 * iconv library may use one of them. */
4067 else if (!vcp->vc_fail
4068 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
4069 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
4071 /* Can't convert: insert a '?' and skip a character. This assumes
4072 * conversion from 'encoding' to something else. In other
4073 * situations we don't know what to skip anyway. */
4074 *to++ = '?';
4075 if ((*mb_ptr2cells)((char_u *)from) > 1)
4076 *to++ = '?';
4077 if (enc_utf8)
4078 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
4079 else
4081 l = (*mb_ptr2len)((char_u *)from);
4082 if (l > (int)fromlen)
4083 l = (int)fromlen;
4085 from += l;
4086 fromlen -= l;
4088 else if (ICONV_ERRNO != ICONV_E2BIG)
4090 /* conversion failed */
4091 vim_free(result);
4092 result = NULL;
4093 break;
4095 /* Not enough room or skipping illegal sequence. */
4096 done = to - (char *)result;
4099 if (resultlenp != NULL)
4100 *resultlenp = (int)(to - (char *)result);
4101 return result;
4104 # if defined(DYNAMIC_ICONV) || defined(PROTO)
4106 * Dynamically load the "iconv.dll" on Win32.
4109 #ifndef DYNAMIC_ICONV /* just generating prototypes */
4110 # define HINSTANCE int
4111 #endif
4112 static HINSTANCE hIconvDLL = 0;
4113 static HINSTANCE hMsvcrtDLL = 0;
4115 # ifndef DYNAMIC_ICONV_DLL
4116 # define DYNAMIC_ICONV_DLL "iconv.dll"
4117 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
4118 # endif
4119 # ifndef DYNAMIC_MSVCRT_DLL
4120 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4121 # endif
4124 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4127 iconv_enabled(verbose)
4128 int verbose;
4130 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
4131 return TRUE;
4132 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
4133 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
4134 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
4135 if (hIconvDLL != 0)
4136 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
4137 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
4139 /* Only give the message when 'verbose' is set, otherwise it might be
4140 * done whenever a conversion is attempted. */
4141 if (verbose && p_verbose > 0)
4143 verbose_enter();
4144 EMSG2(_(e_loadlib),
4145 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
4146 verbose_leave();
4148 iconv_end();
4149 return FALSE;
4152 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
4153 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
4154 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
4155 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
4156 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
4157 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
4158 || iconvctl == NULL || iconv_errno == NULL)
4160 iconv_end();
4161 if (verbose && p_verbose > 0)
4163 verbose_enter();
4164 EMSG2(_(e_loadfunc), "for libiconv");
4165 verbose_leave();
4167 return FALSE;
4169 return TRUE;
4172 void
4173 iconv_end()
4175 /* Don't use iconv() when inputting or outputting characters. */
4176 if (input_conv.vc_type == CONV_ICONV)
4177 convert_setup(&input_conv, NULL, NULL);
4178 if (output_conv.vc_type == CONV_ICONV)
4179 convert_setup(&output_conv, NULL, NULL);
4181 if (hIconvDLL != 0)
4182 FreeLibrary(hIconvDLL);
4183 if (hMsvcrtDLL != 0)
4184 FreeLibrary(hMsvcrtDLL);
4185 hIconvDLL = 0;
4186 hMsvcrtDLL = 0;
4188 # endif /* DYNAMIC_ICONV */
4189 # endif /* USE_ICONV */
4191 #endif /* FEAT_MBYTE */
4193 #if defined(FEAT_XIM) || defined(PROTO)
4195 # ifdef FEAT_GUI_MACVIM
4196 typedef int GtkIMContext;
4197 typedef int * gpointer;
4198 typedef char gchar;
4199 # define g_return_if_fail(x) if (!(x)) return;
4200 # endif
4202 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
4203 static int xim_has_preediting INIT(= FALSE); /* IM current status */
4206 * Set preedit_start_col to the current cursor position.
4208 static void
4209 init_preedit_start_col(void)
4211 if (State & CMDLINE)
4212 preedit_start_col = cmdline_getvcol_cursor();
4213 else if (curwin != NULL)
4214 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
4215 /* Prevent that preediting marks the buffer as changed. */
4216 xim_changed_while_preediting = curbuf->b_changed;
4218 # endif
4220 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) && !defined(PROTO)
4222 static int im_is_active = FALSE; /* IM is enabled for current mode */
4223 static int preedit_is_active = FALSE;
4224 static int im_preedit_cursor = 0; /* cursor offset in characters */
4225 static int im_preedit_trailing = 0; /* number of characters after cursor */
4227 static unsigned long im_commit_handler_id = 0;
4228 # ifndef FEAT_GUI_MACVIM
4229 static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
4230 static unsigned int im_activatekey_state = 0;
4231 # endif
4233 # ifndef FEAT_GUI_MACVIM
4234 void
4235 im_set_active(int active)
4237 int was_active;
4239 #ifdef FEAT_UIMFEP
4240 if (!gui.in_use)
4242 uimfep_set_active(active);
4243 return;
4245 #endif
4247 was_active = !!im_is_active;
4248 im_is_active = (active && !p_imdisable);
4250 if (im_is_active != was_active)
4251 xim_reset();
4253 # endif
4255 void
4256 xim_set_focus(int focus)
4258 # ifndef FEAT_GUI_MACVIM
4259 if (xic != NULL)
4261 if (focus)
4262 gtk_im_context_focus_in(xic);
4263 else
4264 gtk_im_context_focus_out(xic);
4266 # endif
4269 # ifndef FEAT_GUI_MACVIM
4270 void
4271 im_set_position(int row, int col)
4273 if (xic != NULL)
4275 GdkRectangle area;
4277 area.x = FILL_X(col);
4278 area.y = FILL_Y(row);
4279 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
4280 area.height = gui.char_height;
4282 gtk_im_context_set_cursor_location(xic, &area);
4285 # endif
4287 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
4288 void
4289 xim_set_preedit(void)
4291 im_set_position(gui.row, gui.col);
4293 # endif
4295 static void
4296 im_add_to_input(char_u *str, int len)
4298 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
4299 if (input_conv.vc_type != CONV_NONE)
4301 str = string_convert(&input_conv, str, &len);
4302 g_return_if_fail(str != NULL);
4305 add_to_input_buf_csi(str, len);
4307 if (input_conv.vc_type != CONV_NONE)
4308 vim_free(str);
4310 # ifndef FEAT_GUI_MACVIM
4311 if (p_mh) /* blank out the pointer if necessary */
4312 gui_mch_mousehide(TRUE);
4313 # endif
4316 static void
4317 im_delete_preedit(void)
4319 char_u bskey[] = {CSI, 'k', 'b'};
4320 char_u delkey[] = {CSI, 'k', 'D'};
4322 if (State & NORMAL)
4324 im_preedit_cursor = 0;
4325 return;
4327 for (; im_preedit_cursor > 0; --im_preedit_cursor)
4328 add_to_input_buf(bskey, (int)sizeof(bskey));
4330 for (; im_preedit_trailing > 0; --im_preedit_trailing)
4331 add_to_input_buf(delkey, (int)sizeof(delkey));
4335 * Move the cursor left by "num_move_back" characters.
4336 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
4337 * these K_LEFT keys.
4339 static void
4340 im_correct_cursor(int num_move_back)
4342 char_u backkey[] = {CSI, 'k', 'l'};
4344 if (State & NORMAL)
4345 return;
4346 # ifdef FEAT_RIGHTLEFT
4347 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
4348 backkey[2] = 'r';
4349 # endif
4350 for (; num_move_back > 0; --num_move_back)
4351 add_to_input_buf(backkey, (int)sizeof(backkey));
4354 # ifndef FEAT_GUI_MACVIM
4355 static int xim_expected_char = NUL;
4356 static int xim_ignored_char = FALSE;
4357 # endif
4360 * Update the mode and cursor while in an IM callback.
4362 static void
4363 im_show_info(void)
4365 int old_vgetc_busy;
4367 old_vgetc_busy = vgetc_busy;
4368 vgetc_busy = TRUE;
4369 showmode();
4370 vgetc_busy = old_vgetc_busy;
4371 setcursor();
4372 out_flush();
4375 # ifndef FEAT_GUI_MACVIM
4377 * Callback invoked when the user finished preediting.
4378 * Put the final string into the input buffer.
4380 static void
4381 im_commit_cb(GtkIMContext *context UNUSED,
4382 const gchar *str,
4383 gpointer data UNUSED)
4385 int slen = (int)STRLEN(str);
4386 int add_to_input = TRUE;
4387 int clen;
4388 int len = slen;
4389 int commit_with_preedit = TRUE;
4390 char_u *im_str, *p;
4392 #ifdef XIM_DEBUG
4393 xim_log("im_commit_cb(): %s\n", str);
4394 #endif
4396 /* The imhangul module doesn't reset the preedit string before
4397 * committing. Call im_delete_preedit() to work around that. */
4398 im_delete_preedit();
4400 /* Indicate that preediting has finished. */
4401 if (preedit_start_col == MAXCOL)
4403 init_preedit_start_col();
4404 commit_with_preedit = FALSE;
4407 /* The thing which setting "preedit_start_col" to MAXCOL means that
4408 * "preedit_start_col" will be set forcely when calling
4409 * preedit_changed_cb() next time.
4410 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
4411 * is simulating the preediting by using add_to_input_str(). when
4412 * preedit begin immediately before committed, the typebuf is not
4413 * flushed to screen, then it can't get correct "preedit_start_col".
4414 * Thus, it should calculate the cells by adding cells of the committed
4415 * string. */
4416 if (input_conv.vc_type != CONV_NONE)
4418 im_str = string_convert(&input_conv, (char_u *)str, &len);
4419 g_return_if_fail(im_str != NULL);
4421 else
4422 im_str = (char_u *)str;
4423 clen = 0;
4424 for (p = im_str; p < im_str + len; p += (*mb_ptr2len)(p))
4425 clen += (*mb_ptr2cells)(p);
4426 if (input_conv.vc_type != CONV_NONE)
4427 vim_free(im_str);
4428 preedit_start_col += clen;
4430 /* Is this a single character that matches a keypad key that's just
4431 * been pressed? If so, we don't want it to be entered as such - let
4432 * us carry on processing the raw keycode so that it may be used in
4433 * mappings as <kSomething>. */
4434 if (xim_expected_char != NUL)
4436 /* We're currently processing a keypad or other special key */
4437 if (slen == 1 && str[0] == xim_expected_char)
4439 /* It's a match - don't do it here */
4440 xim_ignored_char = TRUE;
4441 add_to_input = FALSE;
4443 else
4445 /* Not a match */
4446 xim_ignored_char = FALSE;
4450 if (add_to_input)
4451 im_add_to_input((char_u *)str, slen);
4453 /* Inserting chars while "im_is_active" is set does not cause a change of
4454 * buffer. When the chars are committed the buffer must be marked as
4455 * changed. */
4456 if (!commit_with_preedit)
4457 preedit_start_col = MAXCOL;
4459 /* This flag is used in changed() at next call. */
4460 xim_changed_while_preediting = TRUE;
4462 if (gtk_main_level() > 0)
4463 gtk_main_quit();
4465 # endif
4468 * Callback invoked after start to the preedit.
4470 # ifndef FEAT_GUI_MACVIM
4471 static void
4472 im_preedit_start_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
4473 # else
4474 void
4475 im_preedit_start_macvim()
4476 # endif
4478 #ifdef XIM_DEBUG
4479 xim_log("im_preedit_start_cb()\n");
4480 #endif
4482 im_is_active = TRUE;
4483 preedit_is_active = TRUE;
4484 gui_update_cursor(TRUE, FALSE);
4485 im_show_info();
4489 * Callback invoked after end to the preedit.
4491 # ifndef FEAT_GUI_MACVIM
4492 static void
4493 im_preedit_end_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
4494 # else
4495 void
4496 im_preedit_end_macvim()
4497 # endif
4499 #ifdef XIM_DEBUG
4500 xim_log("im_preedit_end_cb()\n");
4501 #endif
4502 im_delete_preedit();
4504 /* Indicate that preediting has finished */
4505 preedit_start_col = MAXCOL;
4506 xim_has_preediting = FALSE;
4508 #if 0
4509 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
4510 * switched off unintentionally. We now use preedit_is_active (added by
4511 * SungHyun Nam). */
4512 im_is_active = FALSE;
4513 #endif
4514 preedit_is_active = FALSE;
4515 gui_update_cursor(TRUE, FALSE);
4516 im_show_info();
4520 * Callback invoked after changes to the preedit string. If the preedit
4521 * string was empty before, remember the preedit start column so we know
4522 * where to apply feedback attributes. Delete the previous preedit string
4523 * if there was one, save the new preedit cursor offset, and put the new
4524 * string into the input buffer.
4526 * TODO: The pragmatic "put into input buffer" approach used here has
4527 * several fundamental problems:
4529 * - The characters in the preedit string are subject to remapping.
4530 * That's broken, only the finally committed string should be remapped.
4532 * - There is a race condition involved: The retrieved value for the
4533 * current cursor position will be wrong if any unprocessed characters
4534 * are still queued in the input buffer.
4536 * - Due to the lack of synchronization between the file buffer in memory
4537 * and any typed characters, it's practically impossible to implement the
4538 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
4539 * modules for languages such as Thai are likely to rely on this feature
4540 * for proper operation.
4542 * Conclusions: I think support for preediting needs to be moved to the
4543 * core parts of Vim. Ideally, until it has been committed, the preediting
4544 * string should only be displayed and not affect the buffer content at all.
4545 * The question how to deal with the synchronization issue still remains.
4546 * Circumventing the input buffer is probably not desirable. Anyway, I think
4547 * implementing "retrieve_surrounding" is the only hard problem.
4549 * One way to solve all of this in a clean manner would be to queue all key
4550 * press/release events "as is" in the input buffer, and apply the IM filtering
4551 * at the receiving end of the queue. This, however, would have a rather large
4552 * impact on the code base. If there is an easy way to force processing of all
4553 * remaining input from within the "retrieve_surrounding" signal handler, this
4554 * might not be necessary. Gotta ask on vim-dev for opinions.
4556 # ifndef FEAT_GUI_MACVIM
4557 static void
4558 im_preedit_changed_cb(GtkIMContext *context, gpointer data UNUSED)
4559 # else
4560 void
4561 im_preedit_changed_macvim(char *preedit_string, int cursor_index)
4562 # endif
4564 # ifndef FEAT_GUI_MACVIM
4565 char *preedit_string = NULL;
4566 int cursor_index = 0;
4567 # endif
4568 int num_move_back = 0;
4569 char_u *str;
4570 char_u *p;
4571 int i;
4573 # ifndef FEAT_GUI_MACVIM
4574 gtk_im_context_get_preedit_string(context,
4575 &preedit_string, NULL,
4576 &cursor_index);
4577 # endif
4579 #ifdef XIM_DEBUG
4580 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
4581 #endif
4583 g_return_if_fail(preedit_string != NULL); /* just in case */
4585 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
4586 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
4588 xim_has_preediting = TRUE;
4590 /* Urgh, this breaks if the input buffer isn't empty now */
4591 init_preedit_start_col();
4593 else if (cursor_index == 0 && preedit_string[0] == '\0')
4595 xim_has_preediting = FALSE;
4597 /* If at the start position (after typing backspace)
4598 * preedit_start_col must be reset. */
4599 preedit_start_col = MAXCOL;
4602 im_delete_preedit();
4605 * Compute the end of the preediting area: "preedit_end_col".
4606 * According to the documentation of gtk_im_context_get_preedit_string(),
4607 * the cursor_pos output argument returns the offset in bytes. This is
4608 * unfortunately not true -- real life shows the offset is in characters,
4609 * and the GTK+ source code agrees with me. Will file a bug later.
4611 if (preedit_start_col != MAXCOL)
4612 preedit_end_col = preedit_start_col;
4613 str = (char_u *)preedit_string;
4614 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
4616 int is_composing;
4618 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
4620 * These offsets are used as counters when generating <BS> and <Del>
4621 * to delete the preedit string. So don't count composing characters
4622 * unless 'delcombine' is enabled.
4624 if (!is_composing || p_deco)
4626 if (i < cursor_index)
4627 ++im_preedit_cursor;
4628 else
4629 ++im_preedit_trailing;
4631 if (!is_composing && i >= cursor_index)
4633 /* This is essentially the same as im_preedit_trailing, except
4634 * composing characters are not counted even if p_deco is set. */
4635 ++num_move_back;
4637 if (preedit_start_col != MAXCOL)
4638 preedit_end_col += utf_ptr2cells(p);
4641 if (p > str)
4643 im_add_to_input(str, (int)(p - str));
4644 im_correct_cursor(num_move_back);
4647 # ifndef FEAT_GUI_MACVIM
4648 g_free(preedit_string);
4650 if (gtk_main_level() > 0)
4651 gtk_main_quit();
4652 # endif
4655 # ifndef FEAT_GUI_MACVIM
4657 * Translate the Pango attributes at iter to Vim highlighting attributes.
4658 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4659 * too much impact -- right now we handle even more attributes than necessary
4660 * for the IM modules I tested with.
4662 static int
4663 translate_pango_attributes(PangoAttrIterator *iter)
4665 PangoAttribute *attr;
4666 int char_attr = HL_NORMAL;
4668 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
4669 if (attr != NULL && ((PangoAttrInt *)attr)->value
4670 != (int)PANGO_UNDERLINE_NONE)
4671 char_attr |= HL_UNDERLINE;
4673 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
4674 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
4675 char_attr |= HL_BOLD;
4677 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
4678 if (attr != NULL && ((PangoAttrInt *)attr)->value
4679 != (int)PANGO_STYLE_NORMAL)
4680 char_attr |= HL_ITALIC;
4682 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
4683 if (attr != NULL)
4685 const PangoColor *color = &((PangoAttrColor *)attr)->color;
4687 /* Assume inverse if black background is requested */
4688 if ((color->red | color->green | color->blue) == 0)
4689 char_attr |= HL_INVERSE;
4692 return char_attr;
4694 # endif
4697 * Retrieve the highlighting attributes at column col in the preedit string.
4698 * Return -1 if not in preediting mode or if col is out of range.
4701 im_get_feedback_attr(int col)
4703 # ifndef FEAT_GUI_MACVIM
4704 char *preedit_string = NULL;
4705 PangoAttrList *attr_list = NULL;
4706 int char_attr = -1;
4708 if (xic == NULL)
4709 return char_attr;
4711 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
4713 if (preedit_string != NULL && attr_list != NULL)
4715 int idx;
4717 /* Get the byte index as used by PangoAttrIterator */
4718 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
4719 idx += utfc_ptr2len((char_u *)preedit_string + idx);
4721 if (preedit_string[idx] != '\0')
4723 PangoAttrIterator *iter;
4724 int start, end;
4726 char_attr = HL_NORMAL;
4727 iter = pango_attr_list_get_iterator(attr_list);
4729 /* Extract all relevant attributes from the list. */
4732 pango_attr_iterator_range(iter, &start, &end);
4734 if (idx >= start && idx < end)
4735 char_attr |= translate_pango_attributes(iter);
4737 while (pango_attr_iterator_next(iter));
4739 pango_attr_iterator_destroy(iter);
4743 if (attr_list != NULL)
4744 pango_attr_list_unref(attr_list);
4745 g_free(preedit_string);
4747 return char_attr;
4748 # else
4749 return HL_UNDERLINE;
4750 # endif
4753 void
4754 xim_init(void)
4756 #ifdef XIM_DEBUG
4757 xim_log("xim_init()\n");
4758 #endif
4760 # ifndef FEAT_GUI_MACVIM
4761 g_return_if_fail(gui.drawarea != NULL);
4762 g_return_if_fail(gui.drawarea->window != NULL);
4764 xic = gtk_im_multicontext_new();
4765 g_object_ref(xic);
4767 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
4768 G_CALLBACK(&im_commit_cb), NULL);
4769 g_signal_connect(G_OBJECT(xic), "preedit_changed",
4770 G_CALLBACK(&im_preedit_changed_cb), NULL);
4771 g_signal_connect(G_OBJECT(xic), "preedit_start",
4772 G_CALLBACK(&im_preedit_start_cb), NULL);
4773 g_signal_connect(G_OBJECT(xic), "preedit_end",
4774 G_CALLBACK(&im_preedit_end_cb), NULL);
4776 gtk_im_context_set_client_window(xic, gui.drawarea->window);
4777 # endif
4780 void
4781 im_shutdown(void)
4783 #ifdef XIM_DEBUG
4784 xim_log("im_shutdown()\n");
4785 #endif
4787 # ifndef FEAT_GUI_MACVIM
4788 if (xic != NULL)
4790 gtk_im_context_focus_out(xic);
4791 g_object_unref(xic);
4792 xic = NULL;
4794 # endif
4795 im_is_active = FALSE;
4796 im_commit_handler_id = 0;
4797 preedit_start_col = MAXCOL;
4798 xim_has_preediting = FALSE;
4801 # ifndef FEAT_GUI_MACVIM
4803 * Convert the string argument to keyval and state for GdkEventKey.
4804 * If str is valid return TRUE, otherwise FALSE.
4806 * See 'imactivatekey' for documentation of the format.
4808 static int
4809 im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
4811 const char *mods_end;
4812 unsigned tmp_keyval;
4813 unsigned tmp_state = 0;
4815 mods_end = strrchr(str, '-');
4816 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
4818 /* Parse modifier keys */
4819 while (str < mods_end)
4820 switch (*str++)
4822 case '-': break;
4823 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
4824 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
4825 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
4826 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
4827 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
4828 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
4829 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
4830 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
4831 default:
4832 return FALSE;
4835 tmp_keyval = gdk_keyval_from_name(str);
4837 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
4838 return FALSE;
4840 if (keyval != NULL)
4841 *keyval = tmp_keyval;
4842 if (state != NULL)
4843 *state = tmp_state;
4845 return TRUE;
4849 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
4850 * empty string is also regarded as valid.
4852 * Note: The numerical key value of p_imak is cached if it was valid; thus
4853 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
4854 * 'imak' changes. This is currently the case but not obvious -- should
4855 * probably rename the function for clarity.
4858 im_xim_isvalid_imactivate(void)
4860 if (p_imak[0] == NUL)
4862 im_activatekey_keyval = GDK_VoidSymbol;
4863 im_activatekey_state = 0;
4864 return TRUE;
4867 return im_string_to_keyval((const char *)p_imak,
4868 &im_activatekey_keyval,
4869 &im_activatekey_state);
4872 static void
4873 im_synthesize_keypress(unsigned int keyval, unsigned int state)
4875 GdkEventKey *event;
4877 # ifdef HAVE_GTK_MULTIHEAD
4878 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
4879 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
4880 # else
4881 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
4882 event->type = GDK_KEY_PRESS;
4883 # endif
4884 event->window = gui.drawarea->window;
4885 event->send_event = TRUE;
4886 event->time = GDK_CURRENT_TIME;
4887 event->state = state;
4888 event->keyval = keyval;
4889 event->hardware_keycode = /* needed for XIM */
4890 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
4891 event->length = 0;
4892 event->string = NULL;
4894 gtk_im_context_filter_keypress(xic, event);
4896 /* For consistency, also send the corresponding release event. */
4897 event->type = GDK_KEY_RELEASE;
4898 event->send_event = FALSE;
4899 gtk_im_context_filter_keypress(xic, event);
4901 # ifdef HAVE_GTK_MULTIHEAD
4902 gdk_event_free((GdkEvent *)event);
4903 # else
4904 g_free(event);
4905 # endif
4907 # endif // FEAT_GUI_MACVIM
4909 void
4910 xim_reset(void)
4912 # ifndef FEAT_GUI_MACVIM
4913 if (xic != NULL)
4916 * The third-party imhangul module (and maybe others too) ignores
4917 * gtk_im_context_reset() or at least doesn't reset the active state.
4918 * Thus sending imactivatekey would turn it off if it was on before,
4919 * which is clearly not what we want. Fortunately we can work around
4920 * that for imhangul by sending GDK_Escape, but I don't know if it
4921 * works with all IM modules that support an activation key :/
4923 * An alternative approach would be to destroy the IM context and
4924 * recreate it. But that means loading/unloading the IM module on
4925 * every mode switch, which causes a quite noticable delay even on
4926 * my rather fast box...
4928 * Moreover, there are some XIM which cannot respond to
4929 * im_synthesize_keypress(). we hope that they reset by
4930 * xim_shutdown().
4932 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
4933 im_synthesize_keypress(GDK_Escape, 0U);
4935 gtk_im_context_reset(xic);
4938 * HACK for Ami: This sequence of function calls makes Ami handle
4939 * the IM reset graciously, without breaking loads of other stuff.
4940 * It seems to force English mode as well, which is exactly what we
4941 * want because it makes the Ami status display work reliably.
4943 gtk_im_context_set_use_preedit(xic, FALSE);
4945 if (p_imdisable)
4946 im_shutdown();
4947 else
4949 gtk_im_context_set_use_preedit(xic, TRUE);
4950 xim_set_focus(gui.in_focus);
4952 if (im_activatekey_keyval != GDK_VoidSymbol)
4954 if (im_is_active)
4956 g_signal_handler_block(xic, im_commit_handler_id);
4957 im_synthesize_keypress(im_activatekey_keyval,
4958 im_activatekey_state);
4959 g_signal_handler_unblock(xic, im_commit_handler_id);
4962 else
4964 im_shutdown();
4965 xim_init();
4966 xim_set_focus(gui.in_focus);
4970 # endif
4972 preedit_start_col = MAXCOL;
4973 xim_has_preediting = FALSE;
4976 # ifndef FEAT_GUI_MACVIM
4978 xim_queue_key_press_event(GdkEventKey *event, int down)
4980 if (down)
4983 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
4984 * chars., even when not part of an IM sequence (ref. feature of
4985 * gdk/gdkkeyuni.c).
4986 * Flag any keypad keys that might represent a single char.
4987 * If this (on its own - i.e., not part of an IM sequence) is
4988 * committed while we're processing one of these keys, we can ignore
4989 * that commit and go ahead & process it ourselves. That way we can
4990 * still distinguish keypad keys for use in mappings.
4991 * Also add GDK_space to make <S-Space> work.
4993 switch (event->keyval)
4995 case GDK_KP_Add: xim_expected_char = '+'; break;
4996 case GDK_KP_Subtract: xim_expected_char = '-'; break;
4997 case GDK_KP_Divide: xim_expected_char = '/'; break;
4998 case GDK_KP_Multiply: xim_expected_char = '*'; break;
4999 case GDK_KP_Decimal: xim_expected_char = '.'; break;
5000 case GDK_KP_Equal: xim_expected_char = '='; break;
5001 case GDK_KP_0: xim_expected_char = '0'; break;
5002 case GDK_KP_1: xim_expected_char = '1'; break;
5003 case GDK_KP_2: xim_expected_char = '2'; break;
5004 case GDK_KP_3: xim_expected_char = '3'; break;
5005 case GDK_KP_4: xim_expected_char = '4'; break;
5006 case GDK_KP_5: xim_expected_char = '5'; break;
5007 case GDK_KP_6: xim_expected_char = '6'; break;
5008 case GDK_KP_7: xim_expected_char = '7'; break;
5009 case GDK_KP_8: xim_expected_char = '8'; break;
5010 case GDK_KP_9: xim_expected_char = '9'; break;
5011 case GDK_space: xim_expected_char = ' '; break;
5012 default: xim_expected_char = NUL;
5014 xim_ignored_char = FALSE;
5018 * When typing fFtT, XIM may be activated. Thus it must pass
5019 * gtk_im_context_filter_keypress() in Normal mode.
5020 * And while doing :sh too.
5022 if (xic != NULL && !p_imdisable
5023 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
5026 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
5027 * always aware of the current status of IM, and can even emulate
5028 * the activation key for modules that don't support one.
5030 if (event->keyval == im_activatekey_keyval
5031 && (event->state & im_activatekey_state) == im_activatekey_state)
5033 unsigned int state_mask;
5035 /* Require the state of the 3 most used modifiers to match exactly.
5036 * Otherwise e.g. <S-C-space> would be unusable for other purposes
5037 * if the IM activate key is <S-space>. */
5038 state_mask = im_activatekey_state;
5039 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
5040 | (int)GDK_MOD1_MASK);
5042 if ((event->state & state_mask) != im_activatekey_state)
5043 return FALSE;
5045 /* Don't send it a second time on GDK_KEY_RELEASE. */
5046 if (event->type != GDK_KEY_PRESS)
5047 return TRUE;
5049 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
5051 im_set_active(FALSE);
5053 /* ":lmap" mappings exists, toggle use of mappings. */
5054 State ^= LANGMAP;
5055 if (State & LANGMAP)
5057 curbuf->b_p_iminsert = B_IMODE_NONE;
5058 State &= ~LANGMAP;
5060 else
5062 curbuf->b_p_iminsert = B_IMODE_LMAP;
5063 State |= LANGMAP;
5065 return TRUE;
5068 return gtk_im_context_filter_keypress(xic, event);
5071 /* Don't filter events through the IM context if IM isn't active
5072 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
5073 * not doing anything before the activation key was sent. */
5074 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
5076 int imresult = gtk_im_context_filter_keypress(xic, event);
5078 /* Some XIM send following sequence:
5079 * 1. preedited string.
5080 * 2. committed string.
5081 * 3. line changed key.
5082 * 4. preedited string.
5083 * 5. remove preedited string.
5084 * if 3, Vim can't move back the above line for 5.
5085 * thus, this part should not parse the key. */
5086 if (!imresult && preedit_start_col != MAXCOL
5087 && event->keyval == GDK_Return)
5089 im_synthesize_keypress(GDK_Return, 0U);
5090 return FALSE;
5093 /* If XIM tried to commit a keypad key as a single char.,
5094 * ignore it so we can use the keypad key 'raw', for mappings. */
5095 if (xim_expected_char != NUL && xim_ignored_char)
5096 /* We had a keypad key, and XIM tried to thieve it */
5097 return FALSE;
5099 /* Normal processing */
5100 return imresult;
5104 return FALSE;
5106 # endif
5108 # ifndef FEAT_GUI_MACVIM
5110 im_get_status(void)
5112 #ifdef FEAT_UIMFEP
5113 if (!gui.in_use)
5114 return uimfep_get_status();
5115 #endif
5116 return im_is_active;
5118 # endif
5120 # else /* !HAVE_GTK2 */
5122 static int xim_is_active = FALSE; /* XIM should be active in the current
5123 mode */
5124 static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
5125 #ifdef FEAT_GUI_X11
5126 static XIMStyle input_style;
5127 static int status_area_enabled = TRUE;
5128 #endif
5130 #ifdef FEAT_GUI_GTK
5131 # ifdef WIN3264
5132 # include <gdk/gdkwin32.h>
5133 # else
5134 # include <gdk/gdkx.h>
5135 # endif
5136 #else
5137 # ifdef PROTO
5138 /* Define a few things to be able to generate prototypes while not configured
5139 * for GTK. */
5140 # define GSList int
5141 # define gboolean int
5142 typedef int GdkEvent;
5143 typedef int GdkEventKey;
5144 # define GdkIC int
5145 # endif
5146 #endif
5148 #if defined(FEAT_GUI_GTK) || defined(PROTO)
5149 static int preedit_buf_len = 0;
5150 static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
5151 static int xim_input_style;
5152 #ifndef FEAT_GUI_GTK
5153 # define gboolean int
5154 #endif
5155 static gboolean use_status_area = 0;
5157 static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
5158 static void im_xim_send_event_imactivate __ARGS((void));
5161 * Convert string to keycode and state for XKeyEvent.
5162 * When string is valid return OK, when invalid return FAIL.
5164 * See 'imactivatekey' documentation for the format.
5166 static int
5167 im_xim_str2keycode(code, state)
5168 unsigned int *code;
5169 unsigned int *state;
5171 int retval = OK;
5172 int len;
5173 unsigned keycode = 0, keystate = 0;
5174 Window window;
5175 Display *display;
5176 char_u *flag_end;
5177 char_u *str;
5179 if (*p_imak != NUL)
5181 len = STRLEN(p_imak);
5182 for (flag_end = p_imak + len - 1;
5183 flag_end > p_imak && *flag_end != '-'; --flag_end)
5186 /* Parse modifier keys */
5187 for (str = p_imak; str < flag_end; ++str)
5189 switch (*str)
5191 case 's': case 'S':
5192 keystate |= ShiftMask;
5193 break;
5194 case 'l': case 'L':
5195 keystate |= LockMask;
5196 break;
5197 case 'c': case 'C':
5198 keystate |= ControlMask;
5199 break;
5200 case '1':
5201 keystate |= Mod1Mask;
5202 break;
5203 case '2':
5204 keystate |= Mod2Mask;
5205 break;
5206 case '3':
5207 keystate |= Mod3Mask;
5208 break;
5209 case '4':
5210 keystate |= Mod4Mask;
5211 break;
5212 case '5':
5213 keystate |= Mod5Mask;
5214 break;
5215 case '-':
5216 break;
5217 default:
5218 retval = FAIL;
5221 if (*str == '-')
5222 ++str;
5224 /* Get keycode from string. */
5225 gui_get_x11_windis(&window, &display);
5226 if (display)
5227 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
5228 if (keycode == 0)
5229 retval = FAIL;
5231 if (code != NULL)
5232 *code = keycode;
5233 if (state != NULL)
5234 *state = keystate;
5236 return retval;
5239 static void
5240 im_xim_send_event_imactivate()
5242 /* Force turn on preedit state by symulate keypress event.
5243 * Keycode and state is specified by 'imactivatekey'.
5245 XKeyEvent ev;
5247 gui_get_x11_windis(&ev.window, &ev.display);
5248 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
5249 ev.subwindow = None;
5250 ev.time = CurrentTime;
5251 ev.x = 1;
5252 ev.y = 1;
5253 ev.x_root = 1;
5254 ev.y_root = 1;
5255 ev.same_screen = 1;
5256 ev.type = KeyPress;
5257 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
5258 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
5262 * Return TRUE if 'imactivatekey' has a valid value.
5265 im_xim_isvalid_imactivate()
5267 return im_xim_str2keycode(NULL, NULL) == OK;
5269 #endif /* FEAT_GUI_GTK */
5272 * Switch using XIM on/off. This is used by the code that changes "State".
5274 void
5275 im_set_active(active)
5276 int active;
5278 if (xic == NULL)
5280 #ifdef FEAT_UIMFEP
5281 if (!gui.in_use)
5282 uimfep_set_active(active);
5283 #endif
5284 return;
5287 /* If 'imdisable' is set, XIM is never active. */
5288 if (p_imdisable)
5289 active = FALSE;
5290 #if !defined (FEAT_GUI_GTK)
5291 else if (input_style & XIMPreeditPosition)
5292 /* There is a problem in switching XIM off when preediting is used,
5293 * and it is not clear how this can be solved. For now, keep XIM on
5294 * all the time, like it was done in Vim 5.8. */
5295 active = TRUE;
5296 #endif
5298 /* Remember the active state, it is needed when Vim gets keyboard focus. */
5299 xim_is_active = active;
5301 #ifdef FEAT_GUI_GTK
5302 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
5303 * state. When 'imactivatekey' has no or invalid string, try old XIM
5304 * focus control.
5306 if (*p_imak != NUL)
5308 /* BASIC STRATEGY:
5309 * Destroy old Input Context (XIC), and create new one. New XIC
5310 * would have a state of preedit that is off. When argument:active
5311 * is false, that's all. Else argument:active is true, send a key
5312 * event specified by 'imactivatekey' to activate XIM preedit state.
5315 xim_is_active = TRUE; /* Disable old XIM focus control */
5316 /* If we can monitor preedit state with preedit callback functions,
5317 * try least creation of new XIC.
5319 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5321 if (xim_can_preediting && !active)
5323 /* Force turn off preedit state. With some IM
5324 * implementations, we cannot turn off preedit state by
5325 * symulate keypress event. It is why using such a method
5326 * that destroy old IC (input context), and create new one.
5327 * When create new IC, its preedit state is usually off.
5329 xim_reset();
5330 xim_set_focus(FALSE);
5331 gdk_ic_destroy(xic);
5332 xim_init();
5333 xim_can_preediting = FALSE;
5335 else if (!xim_can_preediting && active)
5336 im_xim_send_event_imactivate();
5338 else
5340 /* First, force destroy old IC, and create new one. It
5341 * symulates "turning off preedit state".
5343 xim_set_focus(FALSE);
5344 gdk_ic_destroy(xic);
5345 xim_init();
5346 xim_can_preediting = FALSE;
5348 /* 2nd, when requested to activate IM, symulate this by sending
5349 * the event.
5351 if (active)
5353 im_xim_send_event_imactivate();
5354 xim_can_preediting = TRUE;
5358 else
5360 # ifndef XIMPreeditUnKnown
5361 /* X11R5 doesn't have these, it looks safe enough to define here. */
5362 typedef unsigned long XIMPreeditState;
5363 # define XIMPreeditUnKnown 0L
5364 # define XIMPreeditEnable 1L
5365 # define XIMPreeditDisable (1L<<1)
5366 # define XNPreeditState "preeditState"
5367 # endif
5368 XIMPreeditState preedit_state = XIMPreeditUnKnown;
5369 XVaNestedList preedit_attr;
5370 XIC pxic;
5372 preedit_attr = XVaCreateNestedList(0,
5373 XNPreeditState, &preedit_state,
5374 NULL);
5375 pxic = ((GdkICPrivate *)xic)->xic;
5377 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
5379 XFree(preedit_attr);
5380 preedit_attr = XVaCreateNestedList(0,
5381 XNPreeditState,
5382 active ? XIMPreeditEnable : XIMPreeditDisable,
5383 NULL);
5384 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
5385 xim_can_preediting = active;
5386 xim_is_active = active;
5388 XFree(preedit_attr);
5390 if (xim_input_style & XIMPreeditCallbacks)
5392 preedit_buf_len = 0;
5393 init_preedit_start_col();
5395 #else
5396 # if 0
5397 /* When had tested kinput2 + canna + Athena GUI version with
5398 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
5399 * work correctly. It just inserted one space. I don't know why we
5400 * couldn't switch state of XIM preediting. This is reason why these
5401 * codes are commented out.
5403 /* First, force destroy old IC, and create new one. It symulates
5404 * "turning off preedit state".
5406 xim_set_focus(FALSE);
5407 XDestroyIC(xic);
5408 xic = NULL;
5409 xim_init();
5411 /* 2nd, when requested to activate IM, symulate this by sending the
5412 * event.
5414 if (active)
5415 im_xim_send_event_imactivate();
5416 # endif
5417 #endif
5418 xim_set_preedit();
5422 * Adjust using XIM for gaining or losing keyboard focus. Also called when
5423 * "xim_is_active" changes.
5425 void
5426 xim_set_focus(focus)
5427 int focus;
5429 if (xic == NULL)
5430 return;
5433 * XIM only gets focus when the Vim window has keyboard focus and XIM has
5434 * been set active for the current mode.
5436 if (focus && xim_is_active)
5438 if (!xim_has_focus)
5440 xim_has_focus = TRUE;
5441 #ifdef FEAT_GUI_GTK
5442 gdk_im_begin(xic, gui.drawarea->window);
5443 #else
5444 XSetICFocus(xic);
5445 #endif
5448 else
5450 if (xim_has_focus)
5452 xim_has_focus = FALSE;
5453 #ifdef FEAT_GUI_GTK
5454 gdk_im_end();
5455 #else
5456 XUnsetICFocus(xic);
5457 #endif
5462 void
5463 im_set_position(row, col)
5464 int row UNUSED;
5465 int col UNUSED;
5467 xim_set_preedit();
5471 * Set the XIM to the current cursor position.
5473 void
5474 xim_set_preedit()
5476 if (xic == NULL)
5477 return;
5479 xim_set_focus(TRUE);
5481 #ifdef FEAT_GUI_GTK
5482 if (gdk_im_ready())
5484 int attrmask;
5485 GdkICAttr *attr;
5487 if (!xic_attr)
5488 return;
5490 attr = xic_attr;
5491 attrmask = 0;
5493 # ifdef FEAT_XFONTSET
5494 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
5495 && gui.fontset != NOFONTSET
5496 && gui.fontset->type == GDK_FONT_FONTSET)
5498 if (!xim_has_focus)
5500 if (attr->spot_location.y >= 0)
5502 attr->spot_location.x = 0;
5503 attr->spot_location.y = -100;
5504 attrmask |= (int)GDK_IC_SPOT_LOCATION;
5507 else
5509 gint width, height;
5511 if (attr->spot_location.x != TEXT_X(gui.col)
5512 || attr->spot_location.y != TEXT_Y(gui.row))
5514 attr->spot_location.x = TEXT_X(gui.col);
5515 attr->spot_location.y = TEXT_Y(gui.row);
5516 attrmask |= (int)GDK_IC_SPOT_LOCATION;
5519 gdk_window_get_size(gui.drawarea->window, &width, &height);
5520 width -= 2 * gui.border_offset;
5521 height -= 2 * gui.border_offset;
5522 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
5523 height -= gui.char_height;
5524 if (attr->preedit_area.width != width
5525 || attr->preedit_area.height != height)
5527 attr->preedit_area.x = gui.border_offset;
5528 attr->preedit_area.y = gui.border_offset;
5529 attr->preedit_area.width = width;
5530 attr->preedit_area.height = height;
5531 attrmask |= (int)GDK_IC_PREEDIT_AREA;
5534 if (attr->preedit_fontset != gui.current_font)
5536 attr->preedit_fontset = gui.current_font;
5537 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
5541 # endif /* FEAT_XFONTSET */
5543 if (xim_fg_color == INVALCOLOR)
5545 xim_fg_color = gui.def_norm_pixel;
5546 xim_bg_color = gui.def_back_pixel;
5548 if (attr->preedit_foreground.pixel != xim_fg_color)
5550 attr->preedit_foreground.pixel = xim_fg_color;
5551 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
5553 if (attr->preedit_background.pixel != xim_bg_color)
5555 attr->preedit_background.pixel = xim_bg_color;
5556 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
5559 if (attrmask != 0)
5560 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
5562 #else /* FEAT_GUI_GTK */
5564 XVaNestedList attr_list;
5565 XRectangle spot_area;
5566 XPoint over_spot;
5567 int line_space;
5569 if (!xim_has_focus)
5571 /* hide XIM cursor */
5572 over_spot.x = 0;
5573 over_spot.y = -100; /* arbitrary invisible position */
5574 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5575 XNSpotLocation,
5576 &over_spot,
5577 NULL);
5578 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
5579 XFree(attr_list);
5580 return;
5583 if (input_style & XIMPreeditPosition)
5585 if (xim_fg_color == INVALCOLOR)
5587 xim_fg_color = gui.def_norm_pixel;
5588 xim_bg_color = gui.def_back_pixel;
5590 over_spot.x = TEXT_X(gui.col);
5591 over_spot.y = TEXT_Y(gui.row);
5592 spot_area.x = 0;
5593 spot_area.y = 0;
5594 spot_area.height = gui.char_height * Rows;
5595 spot_area.width = gui.char_width * Columns;
5596 line_space = gui.char_height;
5597 attr_list = (XVaNestedList) XVaCreateNestedList(0,
5598 XNSpotLocation, &over_spot,
5599 XNForeground, (Pixel) xim_fg_color,
5600 XNBackground, (Pixel) xim_bg_color,
5601 XNArea, &spot_area,
5602 XNLineSpace, line_space,
5603 NULL);
5604 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
5605 EMSG(_("E284: Cannot set IC values"));
5606 XFree(attr_list);
5609 #endif /* FEAT_GUI_GTK */
5613 * Set up the status area.
5615 * This should use a separate Widget, but that seems not possible, because
5616 * preedit_area and status_area should be set to the same window as for the
5617 * text input. Unfortunately this means the status area pollutes the text
5618 * window...
5620 void
5621 xim_set_status_area()
5623 if (xic == NULL)
5624 return;
5626 #ifdef FEAT_GUI_GTK
5627 # if defined(FEAT_XFONTSET)
5628 if (use_status_area)
5630 GdkICAttr *attr;
5631 int style;
5632 gint width, height;
5633 GtkWidget *widget;
5634 int attrmask;
5636 if (!xic_attr)
5637 return;
5639 attr = xic_attr;
5640 attrmask = 0;
5641 style = (int)gdk_ic_get_style(xic);
5642 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
5644 if (gui.fontset != NOFONTSET
5645 && gui.fontset->type == GDK_FONT_FONTSET)
5647 widget = gui.mainwin;
5648 gdk_window_get_size(widget->window, &width, &height);
5650 attrmask |= (int)GDK_IC_STATUS_AREA;
5651 attr->status_area.x = 0;
5652 attr->status_area.y = height - gui.char_height - 1;
5653 attr->status_area.width = width;
5654 attr->status_area.height = gui.char_height;
5657 if (attrmask != 0)
5658 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
5660 # endif
5661 #else
5663 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
5664 XRectangle pre_area, status_area;
5666 if (input_style & XIMStatusArea)
5668 if (input_style & XIMPreeditArea)
5670 XRectangle *needed_rect;
5672 /* to get status_area width */
5673 status_list = XVaCreateNestedList(0, XNAreaNeeded,
5674 &needed_rect, NULL);
5675 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
5676 XFree(status_list);
5678 status_area.width = needed_rect->width;
5680 else
5681 status_area.width = gui.char_width * Columns;
5683 status_area.x = 0;
5684 status_area.y = gui.char_height * Rows + gui.border_offset;
5685 if (gui.which_scrollbars[SBAR_BOTTOM])
5686 status_area.y += gui.scrollbar_height;
5687 #ifdef FEAT_MENU
5688 if (gui.menu_is_active)
5689 status_area.y += gui.menu_height;
5690 #endif
5691 status_area.height = gui.char_height;
5692 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
5694 else
5696 status_area.x = 0;
5697 status_area.y = gui.char_height * Rows + gui.border_offset;
5698 if (gui.which_scrollbars[SBAR_BOTTOM])
5699 status_area.y += gui.scrollbar_height;
5700 #ifdef FEAT_MENU
5701 if (gui.menu_is_active)
5702 status_area.y += gui.menu_height;
5703 #endif
5704 status_area.width = 0;
5705 status_area.height = gui.char_height;
5708 if (input_style & XIMPreeditArea) /* off-the-spot */
5710 pre_area.x = status_area.x + status_area.width;
5711 pre_area.y = gui.char_height * Rows + gui.border_offset;
5712 pre_area.width = gui.char_width * Columns - pre_area.x;
5713 if (gui.which_scrollbars[SBAR_BOTTOM])
5714 pre_area.y += gui.scrollbar_height;
5715 #ifdef FEAT_MENU
5716 if (gui.menu_is_active)
5717 pre_area.y += gui.menu_height;
5718 #endif
5719 pre_area.height = gui.char_height;
5720 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5722 else if (input_style & XIMPreeditPosition) /* over-the-spot */
5724 pre_area.x = 0;
5725 pre_area.y = 0;
5726 pre_area.height = gui.char_height * Rows;
5727 pre_area.width = gui.char_width * Columns;
5728 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5731 if (preedit_list && status_list)
5732 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5733 XNStatusAttributes, status_list, NULL);
5734 else if (preedit_list)
5735 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5736 NULL);
5737 else if (status_list)
5738 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
5739 NULL);
5740 else
5741 list = NULL;
5743 if (list)
5745 XSetICValues(xic, XNVaNestedList, list, NULL);
5746 XFree(list);
5748 if (status_list)
5749 XFree(status_list);
5750 if (preedit_list)
5751 XFree(preedit_list);
5753 #endif
5756 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
5757 static char e_xim[] = N_("E285: Failed to create input context");
5758 #endif
5760 #if defined(FEAT_GUI_X11) || defined(PROTO)
5761 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5762 # define USE_X11R6_XIM
5763 # endif
5765 static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
5768 #ifdef USE_X11R6_XIM
5769 static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
5770 static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
5772 static void
5773 xim_instantiate_cb(display, client_data, call_data)
5774 Display *display;
5775 XPointer client_data UNUSED;
5776 XPointer call_data UNUSED;
5778 Window x11_window;
5779 Display *x11_display;
5781 #ifdef XIM_DEBUG
5782 xim_log("xim_instantiate_cb()\n");
5783 #endif
5785 gui_get_x11_windis(&x11_window, &x11_display);
5786 if (display != x11_display)
5787 return;
5789 xim_real_init(x11_window, x11_display);
5790 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5791 if (xic != NULL)
5792 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5793 xim_instantiate_cb, NULL);
5796 static void
5797 xim_destroy_cb(im, client_data, call_data)
5798 XIM im UNUSED;
5799 XPointer client_data UNUSED;
5800 XPointer call_data UNUSED;
5802 Window x11_window;
5803 Display *x11_display;
5805 #ifdef XIM_DEBUG
5806 xim_log("xim_destroy_cb()\n");
5807 #endif
5808 gui_get_x11_windis(&x11_window, &x11_display);
5810 xic = NULL;
5811 status_area_enabled = FALSE;
5813 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5815 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5816 xim_instantiate_cb, NULL);
5818 #endif
5820 void
5821 xim_init()
5823 Window x11_window;
5824 Display *x11_display;
5826 #ifdef XIM_DEBUG
5827 xim_log("xim_init()\n");
5828 #endif
5830 gui_get_x11_windis(&x11_window, &x11_display);
5832 xic = NULL;
5834 if (xim_real_init(x11_window, x11_display))
5835 return;
5837 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5839 #ifdef USE_X11R6_XIM
5840 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5841 xim_instantiate_cb, NULL);
5842 #endif
5845 static int
5846 xim_real_init(x11_window, x11_display)
5847 Window x11_window;
5848 Display *x11_display;
5850 int i;
5851 char *p,
5853 *ns,
5854 *end,
5855 tmp[1024];
5856 #define IMLEN_MAX 40
5857 char buf[IMLEN_MAX + 7];
5858 XIM xim = NULL;
5859 XIMStyles *xim_styles;
5860 XIMStyle this_input_style = 0;
5861 Boolean found;
5862 XPoint over_spot;
5863 XVaNestedList preedit_list, status_list;
5865 input_style = 0;
5866 status_area_enabled = FALSE;
5868 if (xic != NULL)
5869 return FALSE;
5871 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
5873 strcpy(tmp, gui.rsrc_input_method);
5874 for (ns = s = tmp; ns != NULL && *s != NUL;)
5876 s = (char *)skipwhite((char_u *)s);
5877 if (*s == NUL)
5878 break;
5879 if ((ns = end = strchr(s, ',')) == NULL)
5880 end = s + strlen(s);
5881 while (isspace(((char_u *)end)[-1]))
5882 end--;
5883 *end = NUL;
5885 if (strlen(s) <= IMLEN_MAX)
5887 strcpy(buf, "@im=");
5888 strcat(buf, s);
5889 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
5890 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
5891 != NULL)
5892 break;
5895 s = ns + 1;
5899 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
5900 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5902 /* This is supposed to be useful to obtain characters through
5903 * XmbLookupString() without really using a XIM. */
5904 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
5905 && *p != NUL)
5906 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5908 if (xim == NULL)
5910 /* Only give this message when verbose is set, because too many people
5911 * got this message when they didn't want to use a XIM. */
5912 if (p_verbose > 0)
5914 verbose_enter();
5915 EMSG(_("E286: Failed to open input method"));
5916 verbose_leave();
5918 return FALSE;
5921 #ifdef USE_X11R6_XIM
5923 XIMCallback destroy_cb;
5925 destroy_cb.callback = xim_destroy_cb;
5926 destroy_cb.client_data = NULL;
5927 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
5928 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5930 #endif
5932 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
5934 EMSG(_("E288: input method doesn't support any style"));
5935 XCloseIM(xim);
5936 return FALSE;
5939 found = False;
5940 strcpy(tmp, gui.rsrc_preedit_type_name);
5941 for (s = tmp; s && !found; )
5943 while (*s && isspace((unsigned char)*s))
5944 s++;
5945 if (!*s)
5946 break;
5947 if ((ns = end = strchr(s, ',')) != 0)
5948 ns++;
5949 else
5950 end = s + strlen(s);
5951 while (isspace((unsigned char)*end))
5952 end--;
5953 *end = '\0';
5955 if (!strcmp(s, "OverTheSpot"))
5956 this_input_style = (XIMPreeditPosition | XIMStatusArea);
5957 else if (!strcmp(s, "OffTheSpot"))
5958 this_input_style = (XIMPreeditArea | XIMStatusArea);
5959 else if (!strcmp(s, "Root"))
5960 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
5962 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5964 if (this_input_style == xim_styles->supported_styles[i])
5966 found = True;
5967 break;
5970 if (!found)
5971 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5973 if ((xim_styles->supported_styles[i] & this_input_style)
5974 == (this_input_style & ~XIMStatusArea))
5976 this_input_style &= ~XIMStatusArea;
5977 found = True;
5978 break;
5982 s = ns;
5984 XFree(xim_styles);
5986 if (!found)
5988 /* Only give this message when verbose is set, because too many people
5989 * got this message when they didn't want to use a XIM. */
5990 if (p_verbose > 0)
5992 verbose_enter();
5993 EMSG(_("E289: input method doesn't support my preedit type"));
5994 verbose_leave();
5996 XCloseIM(xim);
5997 return FALSE;
6000 over_spot.x = TEXT_X(gui.col);
6001 over_spot.y = TEXT_Y(gui.row);
6002 input_style = this_input_style;
6004 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
6005 * thus that has been removed. Hopefully the default works... */
6006 #ifdef FEAT_XFONTSET
6007 if (gui.fontset != NOFONTSET)
6009 preedit_list = XVaCreateNestedList(0,
6010 XNSpotLocation, &over_spot,
6011 XNForeground, (Pixel)gui.def_norm_pixel,
6012 XNBackground, (Pixel)gui.def_back_pixel,
6013 XNFontSet, (XFontSet)gui.fontset,
6014 NULL);
6015 status_list = XVaCreateNestedList(0,
6016 XNForeground, (Pixel)gui.def_norm_pixel,
6017 XNBackground, (Pixel)gui.def_back_pixel,
6018 XNFontSet, (XFontSet)gui.fontset,
6019 NULL);
6021 else
6022 #endif
6024 preedit_list = XVaCreateNestedList(0,
6025 XNSpotLocation, &over_spot,
6026 XNForeground, (Pixel)gui.def_norm_pixel,
6027 XNBackground, (Pixel)gui.def_back_pixel,
6028 NULL);
6029 status_list = XVaCreateNestedList(0,
6030 XNForeground, (Pixel)gui.def_norm_pixel,
6031 XNBackground, (Pixel)gui.def_back_pixel,
6032 NULL);
6035 xic = XCreateIC(xim,
6036 XNInputStyle, input_style,
6037 XNClientWindow, x11_window,
6038 XNFocusWindow, gui.wid,
6039 XNPreeditAttributes, preedit_list,
6040 XNStatusAttributes, status_list,
6041 NULL);
6042 XFree(status_list);
6043 XFree(preedit_list);
6044 if (xic != NULL)
6046 if (input_style & XIMStatusArea)
6048 xim_set_status_area();
6049 status_area_enabled = TRUE;
6051 else
6052 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
6054 else
6056 EMSG(_(e_xim));
6057 XCloseIM(xim);
6058 return FALSE;
6061 return TRUE;
6064 #endif /* FEAT_GUI_X11 */
6066 #if defined(FEAT_GUI_GTK) || defined(PROTO)
6068 # ifdef FEAT_XFONTSET
6069 static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
6070 # endif
6072 # ifdef PROTO
6073 typedef int GdkIC;
6074 # endif
6076 void
6077 xim_decide_input_style()
6079 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
6080 * OverTheSpot. */
6081 int supported_style = (int)GDK_IM_PREEDIT_NONE |
6082 (int)GDK_IM_PREEDIT_NOTHING |
6083 (int)GDK_IM_PREEDIT_POSITION |
6084 (int)GDK_IM_PREEDIT_CALLBACKS |
6085 (int)GDK_IM_STATUS_CALLBACKS |
6086 (int)GDK_IM_STATUS_AREA |
6087 (int)GDK_IM_STATUS_NONE |
6088 (int)GDK_IM_STATUS_NOTHING;
6090 #ifdef XIM_DEBUG
6091 xim_log("xim_decide_input_style()\n");
6092 #endif
6094 if (!gdk_im_ready())
6095 xim_input_style = 0;
6096 else
6098 if (gtk_major_version > 1
6099 || (gtk_major_version == 1
6100 && (gtk_minor_version > 2
6101 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
6102 use_status_area = TRUE;
6103 else
6105 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
6106 use_status_area = FALSE;
6108 #ifdef FEAT_XFONTSET
6109 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
6110 #endif
6111 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
6112 | (int)GDK_IM_STATUS_AREA);
6113 if (!use_status_area)
6114 supported_style &= ~(int)GDK_IM_STATUS_AREA;
6115 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
6119 static void
6120 preedit_start_cbproc(XIC thexic UNUSED,
6121 XPointer client_data UNUSED,
6122 XPointer call_data UNUSED)
6124 #ifdef XIM_DEBUG
6125 xim_log("xim_decide_input_style()\n");
6126 #endif
6128 draw_feedback = NULL;
6129 xim_can_preediting = TRUE;
6130 xim_has_preediting = TRUE;
6131 gui_update_cursor(TRUE, FALSE);
6132 if (showmode() > 0)
6134 setcursor();
6135 out_flush();
6139 static void
6140 xim_back_delete(int n)
6142 char_u str[3];
6144 str[0] = CSI;
6145 str[1] = 'k';
6146 str[2] = 'b';
6147 while (n-- > 0)
6148 add_to_input_buf(str, 3);
6151 static GSList *key_press_event_queue = NULL;
6152 static gboolean processing_queued_event = FALSE;
6154 static void
6155 preedit_draw_cbproc(XIC thexic UNUSED,
6156 XPointer client_data UNUSED,
6157 XPointer call_data)
6159 XIMPreeditDrawCallbackStruct *draw_data;
6160 XIMText *text;
6161 char *src;
6162 GSList *event_queue;
6164 #ifdef XIM_DEBUG
6165 xim_log("preedit_draw_cbproc()\n");
6166 #endif
6168 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
6169 text = (XIMText *) draw_data->text;
6171 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
6172 || preedit_buf_len == 0)
6174 init_preedit_start_col();
6175 vim_free(draw_feedback);
6176 draw_feedback = NULL;
6178 if (draw_data->chg_length > 0)
6180 int bs_cnt;
6182 if (draw_data->chg_length > preedit_buf_len)
6183 bs_cnt = preedit_buf_len;
6184 else
6185 bs_cnt = draw_data->chg_length;
6186 xim_back_delete(bs_cnt);
6187 preedit_buf_len -= bs_cnt;
6189 if (text != NULL)
6191 int len;
6192 #ifdef FEAT_MBYTE
6193 char_u *buf = NULL;
6194 unsigned int nfeedback = 0;
6195 #endif
6196 char_u *ptr;
6198 src = text->string.multi_byte;
6199 if (src != NULL && !text->encoding_is_wchar)
6201 len = strlen(src);
6202 ptr = (char_u *)src;
6203 /* Avoid the enter for decision */
6204 if (*ptr == '\n')
6205 return;
6207 #ifdef FEAT_MBYTE
6208 if (input_conv.vc_type != CONV_NONE
6209 && (buf = string_convert(&input_conv,
6210 (char_u *)src, &len)) != NULL)
6212 /* Converted from 'termencoding' to 'encoding'. */
6213 add_to_input_buf_csi(buf, len);
6214 ptr = buf;
6216 else
6217 #endif
6218 add_to_input_buf_csi((char_u *)src, len);
6219 /* Add count of character to preedit_buf_len */
6220 while (*ptr != NUL)
6222 #ifdef FEAT_MBYTE
6223 if (draw_data->text->feedback != NULL)
6225 if (draw_feedback == NULL)
6226 draw_feedback = (char *)alloc(draw_data->chg_first
6227 + text->length);
6228 else
6229 draw_feedback = vim_realloc(draw_feedback,
6230 draw_data->chg_first + text->length);
6231 if (draw_feedback != NULL)
6233 draw_feedback[nfeedback + draw_data->chg_first]
6234 = draw_data->text->feedback[nfeedback];
6235 nfeedback++;
6238 if (has_mbyte)
6239 ptr += (*mb_ptr2len)(ptr);
6240 else
6241 #endif
6242 ptr++;
6243 preedit_buf_len++;
6245 #ifdef FEAT_MBYTE
6246 vim_free(buf);
6247 #endif
6248 preedit_end_col = MAXCOL;
6251 if (text != NULL || draw_data->chg_length > 0)
6253 event_queue = key_press_event_queue;
6254 processing_queued_event = TRUE;
6255 while (event_queue != NULL && processing_queued_event)
6257 GdkEvent *ev = event_queue->data;
6259 gboolean *ret;
6260 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
6261 ev, &ret);
6262 gdk_event_free(ev);
6263 event_queue = event_queue->next;
6265 processing_queued_event = FALSE;
6266 if (key_press_event_queue)
6268 g_slist_free(key_press_event_queue);
6269 key_press_event_queue = NULL;
6272 if (gtk_main_level() > 0)
6273 gtk_main_quit();
6277 * Retrieve the highlighting attributes at column col in the preedit string.
6278 * Return -1 if not in preediting mode or if col is out of range.
6281 im_get_feedback_attr(int col)
6283 if (draw_feedback != NULL && col < preedit_buf_len)
6285 if (draw_feedback[col] & XIMReverse)
6286 return HL_INVERSE;
6287 else if (draw_feedback[col] & XIMUnderline)
6288 return HL_UNDERLINE;
6289 else
6290 return hl_attr(HLF_V);
6293 return -1;
6296 static void
6297 preedit_caret_cbproc(XIC thexic UNUSED,
6298 XPointer client_data UNUSED,
6299 XPointer call_data UNUSED)
6301 #ifdef XIM_DEBUG
6302 xim_log("preedit_caret_cbproc()\n");
6303 #endif
6306 static void
6307 preedit_done_cbproc(XIC thexic UNUSED,
6308 XPointer client_data UNUSED,
6309 XPointer call_data UNUSED)
6311 #ifdef XIM_DEBUG
6312 xim_log("preedit_done_cbproc()\n");
6313 #endif
6315 vim_free(draw_feedback);
6316 draw_feedback = NULL;
6317 xim_can_preediting = FALSE;
6318 xim_has_preediting = FALSE;
6319 gui_update_cursor(TRUE, FALSE);
6320 if (showmode() > 0)
6322 setcursor();
6323 out_flush();
6327 void
6328 xim_reset(void)
6330 char *text;
6332 #ifdef XIM_DEBUG
6333 xim_log("xim_reset()\n");
6334 #endif
6336 if (xic != NULL)
6338 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
6339 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
6340 add_to_input_buf_csi((char_u *)text, strlen(text));
6341 else
6342 preedit_buf_len = 0;
6343 if (text != NULL)
6344 XFree(text);
6349 xim_queue_key_press_event(GdkEventKey *event, int down UNUSED)
6351 #ifdef XIM_DEBUG
6352 xim_log("xim_queue_key_press_event()\n");
6353 #endif
6355 if (preedit_buf_len <= 0)
6356 return FALSE;
6357 if (processing_queued_event)
6358 processing_queued_event = FALSE;
6360 key_press_event_queue = g_slist_append(key_press_event_queue,
6361 gdk_event_copy((GdkEvent *)event));
6362 return TRUE;
6365 static void
6366 preedit_callback_setup(GdkIC *ic UNUSED)
6368 XIC xxic;
6369 XVaNestedList preedit_attr;
6370 XIMCallback preedit_start_cb;
6371 XIMCallback preedit_draw_cb;
6372 XIMCallback preedit_caret_cb;
6373 XIMCallback preedit_done_cb;
6375 xxic = ((GdkICPrivate*)xic)->xic;
6376 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
6377 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
6378 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
6379 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
6380 preedit_attr
6381 = XVaCreateNestedList(0,
6382 XNPreeditStartCallback, &preedit_start_cb,
6383 XNPreeditDrawCallback, &preedit_draw_cb,
6384 XNPreeditCaretCallback, &preedit_caret_cb,
6385 XNPreeditDoneCallback, &preedit_done_cb,
6386 NULL);
6387 XSetICValues(xxic, XNPreeditAttributes, preedit_attr, NULL);
6388 XFree(preedit_attr);
6391 static void
6392 reset_state_setup(GdkIC *ic UNUSED)
6394 #ifdef USE_X11R6_XIM
6395 /* don't change the input context when we call reset */
6396 XSetICValues(((GdkICPrivate *)ic)->xic, XNResetState, XIMPreserveState,
6397 NULL);
6398 #endif
6401 void
6402 xim_init(void)
6404 #ifdef XIM_DEBUG
6405 xim_log("xim_init()\n");
6406 #endif
6408 xic = NULL;
6409 xic_attr = NULL;
6411 if (!gdk_im_ready())
6413 if (p_verbose > 0)
6415 verbose_enter();
6416 EMSG(_("E292: Input Method Server is not running"));
6417 verbose_leave();
6419 return;
6421 if ((xic_attr = gdk_ic_attr_new()) != NULL)
6423 #ifdef FEAT_XFONTSET
6424 gint width, height;
6425 #endif
6426 int mask;
6427 GdkColormap *colormap;
6428 GdkICAttr *attr = xic_attr;
6429 int attrmask = (int)GDK_IC_ALL_REQ;
6430 GtkWidget *widget = gui.drawarea;
6432 attr->style = (GdkIMStyle)xim_input_style;
6433 attr->client_window = gui.mainwin->window;
6435 if ((colormap = gtk_widget_get_colormap(widget)) !=
6436 gtk_widget_get_default_colormap())
6438 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
6439 attr->preedit_colormap = colormap;
6441 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
6442 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
6443 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
6444 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
6446 #ifdef FEAT_XFONTSET
6447 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
6448 == (int)GDK_IM_PREEDIT_POSITION)
6450 if (gui.fontset == NOFONTSET
6451 || gui.fontset->type != GDK_FONT_FONTSET)
6453 EMSG(_(e_overthespot));
6455 else
6457 gdk_window_get_size(widget->window, &width, &height);
6459 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
6460 attr->spot_location.x = TEXT_X(0);
6461 attr->spot_location.y = TEXT_Y(0);
6462 attr->preedit_area.x = gui.border_offset;
6463 attr->preedit_area.y = gui.border_offset;
6464 attr->preedit_area.width = width - 2*gui.border_offset;
6465 attr->preedit_area.height = height - 2*gui.border_offset;
6466 attr->preedit_fontset = gui.fontset;
6470 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
6471 == (int)GDK_IM_STATUS_AREA)
6473 if (gui.fontset == NOFONTSET
6474 || gui.fontset->type != GDK_FONT_FONTSET)
6476 EMSG(_(e_overthespot));
6478 else
6480 gdk_window_get_size(gui.mainwin->window, &width, &height);
6481 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
6482 attr->status_area.x = 0;
6483 attr->status_area.y = height - gui.char_height - 1;
6484 attr->status_area.width = width;
6485 attr->status_area.height = gui.char_height;
6486 attr->status_fontset = gui.fontset;
6489 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
6490 == (int)GDK_IM_STATUS_CALLBACKS)
6492 /* FIXME */
6494 #endif
6496 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
6498 if (xic == NULL)
6499 EMSG(_(e_xim));
6500 else
6502 mask = (int)gdk_window_get_events(widget->window);
6503 mask |= (int)gdk_ic_get_events(xic);
6504 gdk_window_set_events(widget->window, (GdkEventMask)mask);
6505 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
6506 preedit_callback_setup(xic);
6507 reset_state_setup(xic);
6512 void
6513 im_shutdown(void)
6515 #ifdef XIM_DEBUG
6516 xim_log("im_shutdown()\n");
6517 #endif
6519 if (xic != NULL)
6521 gdk_im_end();
6522 gdk_ic_destroy(xic);
6523 xic = NULL;
6525 xim_is_active = FALSE;
6526 xim_can_preediting = FALSE;
6527 preedit_start_col = MAXCOL;
6528 xim_has_preediting = FALSE;
6531 #endif /* FEAT_GUI_GTK */
6534 xim_get_status_area_height()
6536 #ifdef FEAT_GUI_GTK
6537 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
6538 return gui.char_height;
6539 #else
6540 if (status_area_enabled)
6541 return gui.char_height;
6542 #endif
6543 return 0;
6547 * Get IM status. When IM is on, return TRUE. Else return FALSE.
6548 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
6549 * active, when not having focus XIM may still be active (e.g., when using a
6550 * tear-off menu item).
6553 im_get_status()
6555 #ifdef FEAT_UIMFEP
6556 if (!gui.in_use)
6557 return uimfep_get_status();
6558 #endif
6559 # ifdef FEAT_GUI_GTK
6560 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
6561 return xim_can_preediting;
6562 # endif
6563 return xim_has_focus;
6566 # endif /* !HAVE_GTK2 */
6568 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
6570 preedit_get_status(void)
6572 return preedit_is_active;
6574 # endif
6576 # if (defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
6578 im_is_preediting()
6580 return xim_has_preediting;
6582 # endif
6583 #endif /* FEAT_XIM */
6585 #if defined(FEAT_MBYTE) || defined(PROTO)
6588 * Setup "vcp" for conversion from "from" to "to".
6589 * The names must have been made canonical with enc_canonize().
6590 * vcp->vc_type must have been initialized to CONV_NONE.
6591 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
6592 * instead).
6593 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
6594 * Return FAIL when conversion is not supported, OK otherwise.
6597 convert_setup(vcp, from, to)
6598 vimconv_T *vcp;
6599 char_u *from;
6600 char_u *to;
6602 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
6606 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
6607 * "from" unicode charsets be considered utf-8. Same for "to".
6610 convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8)
6611 vimconv_T *vcp;
6612 char_u *from;
6613 int from_unicode_is_utf8;
6614 char_u *to;
6615 int to_unicode_is_utf8;
6617 int from_prop;
6618 int to_prop;
6619 int from_is_utf8;
6620 int to_is_utf8;
6622 /* Reset to no conversion. */
6623 # ifdef USE_ICONV
6624 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
6625 iconv_close(vcp->vc_fd);
6626 # endif
6627 vcp->vc_type = CONV_NONE;
6628 vcp->vc_factor = 1;
6629 vcp->vc_fail = FALSE;
6631 /* No conversion when one of the names is empty or they are equal. */
6632 if (from == NULL || *from == NUL || to == NULL || *to == NUL
6633 || STRCMP(from, to) == 0)
6634 return OK;
6636 from_prop = enc_canon_props(from);
6637 to_prop = enc_canon_props(to);
6638 if (from_unicode_is_utf8)
6639 from_is_utf8 = from_prop & ENC_UNICODE;
6640 else
6641 from_is_utf8 = from_prop == ENC_UNICODE;
6642 if (to_unicode_is_utf8)
6643 to_is_utf8 = to_prop & ENC_UNICODE;
6644 else
6645 to_is_utf8 = to_prop == ENC_UNICODE;
6647 if ((from_prop & ENC_LATIN1) && to_is_utf8)
6649 /* Internal latin1 -> utf-8 conversion. */
6650 vcp->vc_type = CONV_TO_UTF8;
6651 vcp->vc_factor = 2; /* up to twice as long */
6653 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
6655 /* Internal latin9 -> utf-8 conversion. */
6656 vcp->vc_type = CONV_9_TO_UTF8;
6657 vcp->vc_factor = 3; /* up to three as long (euro sign) */
6659 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
6661 /* Internal utf-8 -> latin1 conversion. */
6662 vcp->vc_type = CONV_TO_LATIN1;
6664 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
6666 /* Internal utf-8 -> latin9 conversion. */
6667 vcp->vc_type = CONV_TO_LATIN9;
6669 #ifdef WIN3264
6670 /* Win32-specific codepage <-> codepage conversion without iconv. */
6671 else if ((from_is_utf8 || encname2codepage(from) > 0)
6672 && (to_is_utf8 || encname2codepage(to) > 0))
6674 vcp->vc_type = CONV_CODEPAGE;
6675 vcp->vc_factor = 2; /* up to twice as long */
6676 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
6677 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
6679 #endif
6680 #ifdef MACOS_X
6681 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
6683 vcp->vc_type = CONV_MAC_LATIN1;
6685 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
6687 vcp->vc_type = CONV_MAC_UTF8;
6688 vcp->vc_factor = 2; /* up to twice as long */
6690 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
6692 vcp->vc_type = CONV_LATIN1_MAC;
6694 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
6696 vcp->vc_type = CONV_UTF8_MAC;
6698 #endif
6699 # ifdef USE_ICONV
6700 else
6702 /* Use iconv() for conversion. */
6703 vcp->vc_fd = (iconv_t)my_iconv_open(
6704 to_is_utf8 ? (char_u *)"utf-8" : to,
6705 from_is_utf8 ? (char_u *)"utf-8" : from);
6706 if (vcp->vc_fd != (iconv_t)-1)
6708 vcp->vc_type = CONV_ICONV;
6709 vcp->vc_factor = 4; /* could be longer too... */
6712 # endif
6713 if (vcp->vc_type == CONV_NONE)
6714 return FAIL;
6716 return OK;
6719 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6720 || defined(MSDOS) || defined(PROTO)
6722 * Do conversion on typed input characters in-place.
6723 * The input and output are not NUL terminated!
6724 * Returns the length after conversion.
6727 convert_input(ptr, len, maxlen)
6728 char_u *ptr;
6729 int len;
6730 int maxlen;
6732 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
6734 #endif
6737 * Like convert_input(), but when there is an incomplete byte sequence at the
6738 * end return that as an allocated string in "restp" and set "*restlenp" to
6739 * the length. If "restp" is NULL it is not used.
6742 convert_input_safe(ptr, len, maxlen, restp, restlenp)
6743 char_u *ptr;
6744 int len;
6745 int maxlen;
6746 char_u **restp;
6747 int *restlenp;
6749 char_u *d;
6750 int dlen = len;
6751 int unconvertlen = 0;
6753 d = string_convert_ext(&input_conv, ptr, &dlen,
6754 restp == NULL ? NULL : &unconvertlen);
6755 if (d != NULL)
6757 if (dlen <= maxlen)
6759 if (unconvertlen > 0)
6761 /* Move the unconverted characters to allocated memory. */
6762 *restp = alloc(unconvertlen);
6763 if (*restp != NULL)
6764 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
6765 *restlenp = unconvertlen;
6767 mch_memmove(ptr, d, dlen);
6769 else
6770 /* result is too long, keep the unconverted text (the caller must
6771 * have done something wrong!) */
6772 dlen = len;
6773 vim_free(d);
6775 return dlen;
6779 * Convert text "ptr[*lenp]" according to "vcp".
6780 * Returns the result in allocated memory and sets "*lenp".
6781 * When "lenp" is NULL, use NUL terminated strings.
6782 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6783 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6785 char_u *
6786 string_convert(vcp, ptr, lenp)
6787 vimconv_T *vcp;
6788 char_u *ptr;
6789 int *lenp;
6791 return string_convert_ext(vcp, ptr, lenp, NULL);
6795 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6796 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6797 * set to the number of remaining bytes.
6799 char_u *
6800 string_convert_ext(vcp, ptr, lenp, unconvlenp)
6801 vimconv_T *vcp;
6802 char_u *ptr;
6803 int *lenp;
6804 int *unconvlenp;
6806 char_u *retval = NULL;
6807 char_u *d;
6808 int len;
6809 int i;
6810 int l;
6811 int c;
6813 if (lenp == NULL)
6814 len = (int)STRLEN(ptr);
6815 else
6816 len = *lenp;
6817 if (len == 0)
6818 return vim_strsave((char_u *)"");
6820 switch (vcp->vc_type)
6822 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
6823 retval = alloc(len * 2 + 1);
6824 if (retval == NULL)
6825 break;
6826 d = retval;
6827 for (i = 0; i < len; ++i)
6829 c = ptr[i];
6830 if (c < 0x80)
6831 *d++ = c;
6832 else
6834 *d++ = 0xc0 + ((unsigned)c >> 6);
6835 *d++ = 0x80 + (c & 0x3f);
6838 *d = NUL;
6839 if (lenp != NULL)
6840 *lenp = (int)(d - retval);
6841 break;
6843 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
6844 retval = alloc(len * 3 + 1);
6845 if (retval == NULL)
6846 break;
6847 d = retval;
6848 for (i = 0; i < len; ++i)
6850 c = ptr[i];
6851 switch (c)
6853 case 0xa4: c = 0x20ac; break; /* euro */
6854 case 0xa6: c = 0x0160; break; /* S hat */
6855 case 0xa8: c = 0x0161; break; /* S -hat */
6856 case 0xb4: c = 0x017d; break; /* Z hat */
6857 case 0xb8: c = 0x017e; break; /* Z -hat */
6858 case 0xbc: c = 0x0152; break; /* OE */
6859 case 0xbd: c = 0x0153; break; /* oe */
6860 case 0xbe: c = 0x0178; break; /* Y */
6862 d += utf_char2bytes(c, d);
6864 *d = NUL;
6865 if (lenp != NULL)
6866 *lenp = (int)(d - retval);
6867 break;
6869 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
6870 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
6871 retval = alloc(len + 1);
6872 if (retval == NULL)
6873 break;
6874 d = retval;
6875 for (i = 0; i < len; ++i)
6877 l = utf_ptr2len_len(ptr + i, len - i);
6878 if (l == 0)
6879 *d++ = NUL;
6880 else if (l == 1)
6882 int l_w = utf8len_tab_zero[ptr[i]];
6884 if (l_w == 0)
6886 /* Illegal utf-8 byte cannot be converted */
6887 vim_free(retval);
6888 return NULL;
6890 if (unconvlenp != NULL && l_w > len - i)
6892 /* Incomplete sequence at the end. */
6893 *unconvlenp = len - i;
6894 break;
6896 *d++ = ptr[i];
6898 else
6900 c = utf_ptr2char(ptr + i);
6901 if (vcp->vc_type == CONV_TO_LATIN9)
6902 switch (c)
6904 case 0x20ac: c = 0xa4; break; /* euro */
6905 case 0x0160: c = 0xa6; break; /* S hat */
6906 case 0x0161: c = 0xa8; break; /* S -hat */
6907 case 0x017d: c = 0xb4; break; /* Z hat */
6908 case 0x017e: c = 0xb8; break; /* Z -hat */
6909 case 0x0152: c = 0xbc; break; /* OE */
6910 case 0x0153: c = 0xbd; break; /* oe */
6911 case 0x0178: c = 0xbe; break; /* Y */
6912 case 0xa4:
6913 case 0xa6:
6914 case 0xa8:
6915 case 0xb4:
6916 case 0xb8:
6917 case 0xbc:
6918 case 0xbd:
6919 case 0xbe: c = 0x100; break; /* not in latin9 */
6921 if (!utf_iscomposing(c)) /* skip composing chars */
6923 if (c < 0x100)
6924 *d++ = c;
6925 else if (vcp->vc_fail)
6927 vim_free(retval);
6928 return NULL;
6930 else
6932 *d++ = 0xbf;
6933 if (utf_char2cells(c) > 1)
6934 *d++ = '?';
6937 i += l - 1;
6940 *d = NUL;
6941 if (lenp != NULL)
6942 *lenp = (int)(d - retval);
6943 break;
6945 # ifdef MACOS_CONVERT
6946 case CONV_MAC_LATIN1:
6947 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6948 'm', 'l', unconvlenp);
6949 break;
6951 case CONV_LATIN1_MAC:
6952 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6953 'l', 'm', unconvlenp);
6954 break;
6956 case CONV_MAC_UTF8:
6957 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6958 'm', 'u', unconvlenp);
6959 break;
6961 case CONV_UTF8_MAC:
6962 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6963 'u', 'm', unconvlenp);
6964 break;
6965 # endif
6967 # ifdef USE_ICONV
6968 case CONV_ICONV: /* conversion with output_conv.vc_fd */
6969 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
6970 break;
6971 # endif
6972 # ifdef WIN3264
6973 case CONV_CODEPAGE: /* codepage -> codepage */
6975 int retlen;
6976 int tmp_len;
6977 short_u *tmp;
6979 /* 1. codepage/UTF-8 -> ucs-2. */
6980 if (vcp->vc_cpfrom == 0)
6981 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
6982 else
6983 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
6984 ptr, len, 0, 0);
6985 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
6986 if (tmp == NULL)
6987 break;
6988 if (vcp->vc_cpfrom == 0)
6989 utf8_to_utf16(ptr, len, tmp, unconvlenp);
6990 else
6991 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
6993 /* 2. ucs-2 -> codepage/UTF-8. */
6994 if (vcp->vc_cpto == 0)
6995 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
6996 else
6997 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
6998 tmp, tmp_len, 0, 0, 0, 0);
6999 retval = alloc(retlen + 1);
7000 if (retval != NULL)
7002 if (vcp->vc_cpto == 0)
7003 utf16_to_utf8(tmp, tmp_len, retval);
7004 else
7005 WideCharToMultiByte(vcp->vc_cpto, 0,
7006 tmp, tmp_len, retval, retlen, 0, 0);
7007 retval[retlen] = NUL;
7008 if (lenp != NULL)
7009 *lenp = retlen;
7011 vim_free(tmp);
7012 break;
7014 # endif
7017 return retval;
7019 #endif
7021 #if defined(FEAT_UIMFEP)
7022 static void
7023 uimfep_set_active(int active)
7025 int mustfree = 0;
7026 char_u *setmode;
7027 setmode = vim_getenv("UIM_FEP_SETMODE", &mustfree);
7028 if (setmode != NULL)
7030 FILE *fp = fopen(setmode, "w");
7031 if (fp)
7033 fprintf(fp, "%d\n", active ? uimfep_lastmode : 0);
7034 fflush(fp);
7035 fclose(fp);
7038 if (mustfree)
7039 vim_free(setmode);
7042 static int
7043 uimfep_get_status(void)
7045 int mustfree = 0;
7046 int mode = 0;
7047 char_u *getmode;
7048 getmode = vim_getenv("UIM_FEP_GETMODE", &mustfree);
7049 if (getmode != NULL)
7051 FILE *fp = fopen(getmode, "r");
7052 if (fp)
7054 char_u buf[99];
7055 if (fgets(buf, sizeof(buf), fp))
7056 mode = atoi(buf);
7057 fclose(fp);
7060 if (mustfree)
7061 vim_free(getmode);
7062 if (mode != 0)
7063 uimfep_lastmode = mode;
7064 return mode != 0;
7067 # if defined(USE_IM_CONTROL) && (!defined(FEAT_XIM) \
7068 && !defined(FEAT_MBYTE_IME) && !defined(GLOBAL_IME))
7069 void
7070 im_set_active(int active)
7072 uimfep_set_active(active);
7076 im_get_status(void)
7078 return uimfep_get_status();
7080 # endif
7082 #endif /* defined(FEAT_UIMFEP) */