Merge branch 'vim'
[MacVim.git] / src / mbyte.c
blob9f5970dd6572b46b35e58a03a1786c063081b37a
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 two composing characters
30 * are allowed. These are drawn on top of the first char.
31 * For most editing the sequence of bytes with composing
32 * characters included is considered to be one character.
33 * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16).
34 * When 4 use 32-but Unicode characters.
35 * Internally characters are stored in UTF-8 encoding to
36 * avoid NUL bytes. Conversion happens when doing I/O.
37 * "enc_utf8" will also be TRUE.
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
44 * 'encoding' specifies the encoding used in the core. This is in registers,
45 * text manipulation, buffers, etc. Conversion has to be done when characters
46 * in another encoding are received or send:
48 * clipboard
49 * ^
50 * | (2)
51 * V
52 * +---------------+
53 * (1) | | (3)
54 * keyboard ----->| core |-----> display
55 * | |
56 * +---------------+
57 * ^
58 * | (4)
59 * V
60 * file
62 * (1) Typed characters arrive in the current locale. Conversion is to be
63 * done when 'encoding' is different from 'termencoding'.
64 * (2) Text will be made available with the encoding specified with
65 * 'encoding'. If this is not sufficient, system-specific conversion
66 * might be required.
67 * (3) For the GUI the correct font must be selected, no conversion done.
68 * Otherwise, conversion is to be done when 'encoding' differs from
69 * 'termencoding'. (Different in the GTK+ 2 port -- 'termencoding'
70 * is always used for both input and output and must always be set to
71 * "utf-8". gui_mch_init() does this automatically.)
72 * (4) The encoding of the file is specified with 'fileencoding'. Conversion
73 * is to be done when it's different from 'encoding'.
75 * The viminfo file is a special case: Only text is converted, not file names.
76 * Vim scripts may contain an ":encoding" command. This has an effect for
77 * some commands, like ":menutrans"
80 #include "vim.h"
82 #ifdef WIN32UNIX
83 # ifndef WIN32_LEAN_AND_MEAN
84 # define WIN32_LEAN_AND_MEAN
85 # endif
86 # include <windows.h>
87 # ifdef WIN32
88 # undef WIN32 /* Some windows.h define WIN32, we don't want that here. */
89 # endif
90 #endif
92 #if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
93 # include <winnls.h>
94 #endif
96 #ifdef FEAT_GUI_X11
97 # include <X11/Intrinsic.h>
98 #endif
99 #ifdef X_LOCALE
100 #include <X11/Xlocale.h>
101 #endif
103 #if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && defined(HAVE_GTK2)
104 # include <gdk/gdkkeysyms.h>
105 # ifdef WIN3264
106 # include <gdk/gdkwin32.h>
107 # else
108 # include <gdk/gdkx.h>
109 # endif
110 #endif
112 #ifdef HAVE_WCHAR_H
113 # include <wchar.h>
114 #endif
116 #if 0
117 /* This has been disabled, because several people reported problems with the
118 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
119 # ifdef __STDC_ISO_10646__
120 # define USE_WCHAR_FUNCTIONS
121 # endif
122 #endif
124 #if defined(FEAT_MBYTE) || defined(PROTO)
126 static int enc_canon_search __ARGS((char_u *name));
127 static int dbcs_char2len __ARGS((int c));
128 static int dbcs_char2bytes __ARGS((int c, char_u *buf));
129 static int dbcs_ptr2len __ARGS((char_u *p));
130 static int dbcs_ptr2len_len __ARGS((char_u *p, int size));
131 static int utf_ptr2cells_len __ARGS((char_u *p, int size));
132 static int dbcs_char2cells __ARGS((int c));
133 static int dbcs_ptr2cells_len __ARGS((char_u *p, int size));
134 static int dbcs_ptr2char __ARGS((char_u *p));
137 * Lookup table to quickly get the length in bytes of a UTF-8 character from
138 * the first byte of a UTF-8 string.
139 * Bytes which are illegal when used as the first byte have a 1.
140 * The NUL byte has length 1.
142 static char utf8len_tab[256] =
144 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
145 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
146 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
147 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
148 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
149 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
150 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
151 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1,
155 * Like utf8len_tab above, but using a zero for illegal lead bytes.
157 static char utf8len_tab_zero[256] =
159 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
160 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
161 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
162 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
163 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
164 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
165 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
166 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,0,0,
170 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
171 * in the "xim.log" file.
173 /* #define XIM_DEBUG */
174 #ifdef XIM_DEBUG
175 static void
176 xim_log(char *s, ...)
178 va_list arglist;
179 static FILE *fd = NULL;
181 if (fd == (FILE *)-1)
182 return;
183 if (fd == NULL)
185 fd = mch_fopen("xim.log", "w");
186 if (fd == NULL)
188 EMSG("Cannot open xim.log");
189 fd = (FILE *)-1;
190 return;
194 va_start(arglist, s);
195 vfprintf(fd, s, arglist);
196 va_end(arglist);
198 #endif
200 #endif
202 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
204 * Canonical encoding names and their properties.
205 * "iso-8859-n" is handled by enc_canonize() directly.
207 static struct
208 { char *name; int prop; int codepage;}
209 enc_canon_table[] =
211 #define IDX_LATIN_1 0
212 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
213 #define IDX_ISO_2 1
214 {"iso-8859-2", ENC_8BIT, 0},
215 #define IDX_ISO_3 2
216 {"iso-8859-3", ENC_8BIT, 0},
217 #define IDX_ISO_4 3
218 {"iso-8859-4", ENC_8BIT, 0},
219 #define IDX_ISO_5 4
220 {"iso-8859-5", ENC_8BIT, 0},
221 #define IDX_ISO_6 5
222 {"iso-8859-6", ENC_8BIT, 0},
223 #define IDX_ISO_7 6
224 {"iso-8859-7", ENC_8BIT, 0},
225 #define IDX_ISO_8 7
226 {"iso-8859-8", ENC_8BIT, 0},
227 #define IDX_ISO_9 8
228 {"iso-8859-9", ENC_8BIT, 0},
229 #define IDX_ISO_10 9
230 {"iso-8859-10", ENC_8BIT, 0},
231 #define IDX_ISO_11 10
232 {"iso-8859-11", ENC_8BIT, 0},
233 #define IDX_ISO_13 11
234 {"iso-8859-13", ENC_8BIT, 0},
235 #define IDX_ISO_14 12
236 {"iso-8859-14", ENC_8BIT, 0},
237 #define IDX_ISO_15 13
238 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
239 #define IDX_KOI8_R 14
240 {"koi8-r", ENC_8BIT, 0},
241 #define IDX_KOI8_U 15
242 {"koi8-u", ENC_8BIT, 0},
243 #define IDX_UTF8 16
244 {"utf-8", ENC_UNICODE, 0},
245 #define IDX_UCS2 17
246 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
247 #define IDX_UCS2LE 18
248 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
249 #define IDX_UTF16 19
250 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
251 #define IDX_UTF16LE 20
252 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
253 #define IDX_UCS4 21
254 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
255 #define IDX_UCS4LE 22
256 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
258 /* For debugging DBCS encoding on Unix. */
259 #define IDX_DEBUG 23
260 {"debug", ENC_DBCS, DBCS_DEBUG},
261 #define IDX_EUC_JP 24
262 {"euc-jp", ENC_DBCS, DBCS_JPNU},
263 #define IDX_SJIS 25
264 {"sjis", ENC_DBCS, DBCS_JPN},
265 #define IDX_EUC_KR 26
266 {"euc-kr", ENC_DBCS, DBCS_KORU},
267 #define IDX_EUC_CN 27
268 {"euc-cn", ENC_DBCS, DBCS_CHSU},
269 #define IDX_EUC_TW 28
270 {"euc-tw", ENC_DBCS, DBCS_CHTU},
271 #define IDX_BIG5 29
272 {"big5", ENC_DBCS, DBCS_CHT},
274 /* MS-DOS and MS-Windows codepages are included here, so that they can be
275 * used on Unix too. Most of them are similar to ISO-8859 encodings, but
276 * not exactly the same. */
277 #define IDX_CP437 30
278 {"cp437", ENC_8BIT, 437}, /* like iso-8859-1 */
279 #define IDX_CP737 31
280 {"cp737", ENC_8BIT, 737}, /* like iso-8859-7 */
281 #define IDX_CP775 32
282 {"cp775", ENC_8BIT, 775}, /* Baltic */
283 #define IDX_CP850 33
284 {"cp850", ENC_8BIT, 850}, /* like iso-8859-4 */
285 #define IDX_CP852 34
286 {"cp852", ENC_8BIT, 852}, /* like iso-8859-1 */
287 #define IDX_CP855 35
288 {"cp855", ENC_8BIT, 855}, /* like iso-8859-2 */
289 #define IDX_CP857 36
290 {"cp857", ENC_8BIT, 857}, /* like iso-8859-5 */
291 #define IDX_CP860 37
292 {"cp860", ENC_8BIT, 860}, /* like iso-8859-9 */
293 #define IDX_CP861 38
294 {"cp861", ENC_8BIT, 861}, /* like iso-8859-1 */
295 #define IDX_CP862 39
296 {"cp862", ENC_8BIT, 862}, /* like iso-8859-1 */
297 #define IDX_CP863 40
298 {"cp863", ENC_8BIT, 863}, /* like iso-8859-8 */
299 #define IDX_CP865 41
300 {"cp865", ENC_8BIT, 865}, /* like iso-8859-1 */
301 #define IDX_CP866 42
302 {"cp866", ENC_8BIT, 866}, /* like iso-8859-5 */
303 #define IDX_CP869 43
304 {"cp869", ENC_8BIT, 869}, /* like iso-8859-7 */
305 #define IDX_CP874 44
306 {"cp874", ENC_8BIT, 874}, /* Thai */
307 #define IDX_CP932 45
308 {"cp932", ENC_DBCS, DBCS_JPN},
309 #define IDX_CP936 46
310 {"cp936", ENC_DBCS, DBCS_CHS},
311 #define IDX_CP949 47
312 {"cp949", ENC_DBCS, DBCS_KOR},
313 #define IDX_CP950 48
314 {"cp950", ENC_DBCS, DBCS_CHT},
315 #define IDX_CP1250 49
316 {"cp1250", ENC_8BIT, 1250}, /* Czech, Polish, etc. */
317 #define IDX_CP1251 50
318 {"cp1251", ENC_8BIT, 1251}, /* Cyrillic */
319 /* cp1252 is considered to be equal to latin1 */
320 #define IDX_CP1253 51
321 {"cp1253", ENC_8BIT, 1253}, /* Greek */
322 #define IDX_CP1254 52
323 {"cp1254", ENC_8BIT, 1254}, /* Turkish */
324 #define IDX_CP1255 53
325 {"cp1255", ENC_8BIT, 1255}, /* Hebrew */
326 #define IDX_CP1256 54
327 {"cp1256", ENC_8BIT, 1256}, /* Arabic */
328 #define IDX_CP1257 55
329 {"cp1257", ENC_8BIT, 1257}, /* Baltic */
330 #define IDX_CP1258 56
331 {"cp1258", ENC_8BIT, 1258}, /* Vietnamese */
333 #define IDX_MACROMAN 57
334 {"macroman", ENC_8BIT + ENC_MACROMAN, 0}, /* Mac OS */
335 #define IDX_DECMCS 58
336 {"dec-mcs", ENC_8BIT, 0}, /* DEC MCS */
337 #define IDX_HPROMAN8 59
338 {"hp-roman8", ENC_8BIT, 0}, /* HP Roman8 */
339 #define IDX_COUNT 60
343 * Aliases for encoding names.
345 static struct
346 { char *name; int canon;}
347 enc_alias_table[] =
349 {"ansi", IDX_LATIN_1},
350 {"iso-8859-1", IDX_LATIN_1},
351 {"latin2", IDX_ISO_2},
352 {"latin3", IDX_ISO_3},
353 {"latin4", IDX_ISO_4},
354 {"cyrillic", IDX_ISO_5},
355 {"arabic", IDX_ISO_6},
356 {"greek", IDX_ISO_7},
357 #ifdef WIN3264
358 {"hebrew", IDX_CP1255},
359 #else
360 {"hebrew", IDX_ISO_8},
361 #endif
362 {"latin5", IDX_ISO_9},
363 {"turkish", IDX_ISO_9}, /* ? */
364 {"latin6", IDX_ISO_10},
365 {"nordic", IDX_ISO_10}, /* ? */
366 {"thai", IDX_ISO_11}, /* ? */
367 {"latin7", IDX_ISO_13},
368 {"latin8", IDX_ISO_14},
369 {"latin9", IDX_ISO_15},
370 {"utf8", IDX_UTF8},
371 {"unicode", IDX_UCS2},
372 {"ucs2", IDX_UCS2},
373 {"ucs2be", IDX_UCS2},
374 {"ucs-2be", IDX_UCS2},
375 {"ucs2le", IDX_UCS2LE},
376 {"utf16", IDX_UTF16},
377 {"utf16be", IDX_UTF16},
378 {"utf-16be", IDX_UTF16},
379 {"utf16le", IDX_UTF16LE},
380 {"ucs4", IDX_UCS4},
381 {"ucs4be", IDX_UCS4},
382 {"ucs-4be", IDX_UCS4},
383 {"ucs4le", IDX_UCS4LE},
384 {"utf32", IDX_UCS4},
385 {"utf-32", IDX_UCS4},
386 {"utf32be", IDX_UCS4},
387 {"utf-32be", IDX_UCS4},
388 {"utf32le", IDX_UCS4LE},
389 {"utf-32le", IDX_UCS4LE},
390 {"932", IDX_CP932},
391 {"949", IDX_CP949},
392 {"936", IDX_CP936},
393 {"gbk", IDX_CP936},
394 {"950", IDX_CP950},
395 {"eucjp", IDX_EUC_JP},
396 {"unix-jis", IDX_EUC_JP},
397 {"ujis", IDX_EUC_JP},
398 {"shift-jis", IDX_SJIS},
399 {"euckr", IDX_EUC_KR},
400 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
401 {"euccn", IDX_EUC_CN},
402 {"gb2312", IDX_EUC_CN},
403 {"euctw", IDX_EUC_TW},
404 #if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
405 {"japan", IDX_CP932},
406 {"korea", IDX_CP949},
407 {"prc", IDX_CP936},
408 {"chinese", IDX_CP936},
409 {"taiwan", IDX_CP950},
410 {"big5", IDX_CP950},
411 #else
412 {"japan", IDX_EUC_JP},
413 {"korea", IDX_EUC_KR},
414 {"prc", IDX_EUC_CN},
415 {"chinese", IDX_EUC_CN},
416 {"taiwan", IDX_EUC_TW},
417 {"cp950", IDX_BIG5},
418 {"950", IDX_BIG5},
419 #endif
420 {"mac", IDX_MACROMAN},
421 {"mac-roman", IDX_MACROMAN},
422 {NULL, 0}
425 #ifndef CP_UTF8
426 # define CP_UTF8 65001 /* magic number from winnls.h */
427 #endif
430 * Find encoding "name" in the list of canonical encoding names.
431 * Returns -1 if not found.
433 static int
434 enc_canon_search(name)
435 char_u *name;
437 int i;
439 for (i = 0; i < IDX_COUNT; ++i)
440 if (STRCMP(name, enc_canon_table[i].name) == 0)
441 return i;
442 return -1;
445 #endif
447 #if defined(FEAT_MBYTE) || defined(PROTO)
450 * Find canonical encoding "name" in the list and return its properties.
451 * Returns 0 if not found.
454 enc_canon_props(name)
455 char_u *name;
457 int i;
459 i = enc_canon_search(name);
460 if (i >= 0)
461 return enc_canon_table[i].prop;
462 #ifdef WIN3264
463 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
465 CPINFO cpinfo;
467 /* Get info on this codepage to find out what it is. */
468 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
470 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
471 return ENC_8BIT;
472 if (cpinfo.MaxCharSize == 2
473 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
474 /* must be a DBCS encoding */
475 return ENC_DBCS;
477 return 0;
479 #endif
480 if (STRNCMP(name, "2byte-", 6) == 0)
481 return ENC_DBCS;
482 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
483 return ENC_8BIT;
484 return 0;
488 * Set up for using multi-byte characters.
489 * Called in three cases:
490 * - by main() to initialize (p_enc == NULL)
491 * - by set_init_1() after 'encoding' was set to its default.
492 * - by do_set() when 'encoding' has been set.
493 * p_enc must have been passed through enc_canonize() already.
494 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
495 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
496 * When there is something wrong: Returns an error message and doesn't change
497 * anything.
499 char_u *
500 mb_init()
502 int i;
503 int idx;
504 int n;
505 int enc_dbcs_new = 0;
506 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
507 && !defined(MACOS)
508 # define LEN_FROM_CONV
509 vimconv_T vimconv;
510 char_u *p;
511 #endif
513 if (p_enc == NULL)
515 /* Just starting up: set the whole table to one's. */
516 for (i = 0; i < 256; ++i)
517 mb_bytelen_tab[i] = 1;
518 input_conv.vc_type = CONV_NONE;
519 input_conv.vc_factor = 1;
520 output_conv.vc_type = CONV_NONE;
521 return NULL;
524 #ifdef WIN3264
525 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
527 CPINFO cpinfo;
529 /* Get info on this codepage to find out what it is. */
530 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
532 if (cpinfo.MaxCharSize == 1)
534 /* some single-byte encoding */
535 enc_unicode = 0;
536 enc_utf8 = FALSE;
538 else if (cpinfo.MaxCharSize == 2
539 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
541 /* must be a DBCS encoding, check below */
542 enc_dbcs_new = atoi(p_enc + 2);
544 else
545 goto codepage_invalid;
547 else if (GetLastError() == ERROR_INVALID_PARAMETER)
549 codepage_invalid:
550 return (char_u *)N_("E543: Not a valid codepage");
553 #endif
554 else if (STRNCMP(p_enc, "8bit-", 5) == 0
555 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
557 /* Accept any "8bit-" or "iso-8859-" name. */
558 enc_unicode = 0;
559 enc_utf8 = FALSE;
561 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
563 #ifdef WIN3264
564 /* Windows: accept only valid codepage numbers, check below. */
565 if (p_enc[6] != 'c' || p_enc[7] != 'p'
566 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
567 return e_invarg;
568 #else
569 /* Unix: accept any "2byte-" name, assume current locale. */
570 enc_dbcs_new = DBCS_2BYTE;
571 #endif
573 else if ((idx = enc_canon_search(p_enc)) >= 0)
575 i = enc_canon_table[idx].prop;
576 if (i & ENC_UNICODE)
578 /* Unicode */
579 enc_utf8 = TRUE;
580 if (i & (ENC_2BYTE | ENC_2WORD))
581 enc_unicode = 2;
582 else if (i & ENC_4BYTE)
583 enc_unicode = 4;
584 else
585 enc_unicode = 0;
587 else if (i & ENC_DBCS)
589 /* 2byte, handle below */
590 enc_dbcs_new = enc_canon_table[idx].codepage;
592 else
594 /* Must be 8-bit. */
595 enc_unicode = 0;
596 enc_utf8 = FALSE;
599 else /* Don't know what encoding this is, reject it. */
600 return e_invarg;
602 if (enc_dbcs_new != 0)
604 #ifdef WIN3264
605 /* Check if the DBCS code page is OK. */
606 if (!IsValidCodePage(enc_dbcs_new))
607 goto codepage_invalid;
608 #endif
609 enc_unicode = 0;
610 enc_utf8 = FALSE;
612 enc_dbcs = enc_dbcs_new;
613 has_mbyte = (enc_dbcs != 0 || enc_utf8);
615 #ifdef WIN3264
616 enc_codepage = encname2codepage(p_enc);
617 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
618 #endif
620 /* Detect an encoding that uses latin1 characters. */
621 enc_latin1like = (enc_utf8 || STRCMP(p_enc, "latin1") == 0
622 || STRCMP(p_enc, "iso-8859-15") == 0);
625 * Set the function pointers.
627 if (enc_utf8)
629 mb_ptr2len = utfc_ptr2len;
630 mb_ptr2len_len = utfc_ptr2len_len;
631 mb_char2len = utf_char2len;
632 mb_char2bytes = utf_char2bytes;
633 mb_ptr2cells = utf_ptr2cells;
634 mb_ptr2cells_len = utf_ptr2cells_len;
635 mb_char2cells = utf_char2cells;
636 mb_off2cells = utf_off2cells;
637 mb_ptr2char = utf_ptr2char;
638 mb_head_off = utf_head_off;
640 else if (enc_dbcs != 0)
642 mb_ptr2len = dbcs_ptr2len;
643 mb_ptr2len_len = dbcs_ptr2len_len;
644 mb_char2len = dbcs_char2len;
645 mb_char2bytes = dbcs_char2bytes;
646 mb_ptr2cells = dbcs_ptr2cells;
647 mb_ptr2cells_len = dbcs_ptr2cells_len;
648 mb_char2cells = dbcs_char2cells;
649 mb_off2cells = dbcs_off2cells;
650 mb_ptr2char = dbcs_ptr2char;
651 mb_head_off = dbcs_head_off;
653 else
655 mb_ptr2len = latin_ptr2len;
656 mb_ptr2len_len = latin_ptr2len_len;
657 mb_char2len = latin_char2len;
658 mb_char2bytes = latin_char2bytes;
659 mb_ptr2cells = latin_ptr2cells;
660 mb_ptr2cells_len = latin_ptr2cells_len;
661 mb_char2cells = latin_char2cells;
662 mb_off2cells = latin_off2cells;
663 mb_ptr2char = latin_ptr2char;
664 mb_head_off = latin_head_off;
668 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
670 #ifdef LEN_FROM_CONV
671 /* When 'encoding' is different from the current locale mblen() won't
672 * work. Use conversion to "utf-8" instead. */
673 vimconv.vc_type = CONV_NONE;
674 if (enc_dbcs)
676 p = enc_locale();
677 if (p == NULL || STRCMP(p, p_enc) != 0)
679 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
680 vimconv.vc_fail = TRUE;
682 vim_free(p);
684 #endif
686 for (i = 0; i < 256; ++i)
688 /* Our own function to reliably check the length of UTF-8 characters,
689 * independent of mblen(). */
690 if (enc_utf8)
691 n = utf8len_tab[i];
692 else if (enc_dbcs == 0)
693 n = 1;
694 else
696 #if defined(WIN3264) || defined(WIN32UNIX)
697 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
698 * CodePage identifier, which we can pass directly in to Windows
699 * API */
700 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
701 #else
702 # if defined(MACOS) || defined(__amigaos4__)
704 * if mblen() is not available, character which MSB is turned on
705 * are treated as leading byte character. (note : This assumption
706 * is not always true.)
708 n = (i & 0x80) ? 2 : 1;
709 # else
710 char buf[MB_MAXBYTES];
711 # ifdef X_LOCALE
712 # ifndef mblen
713 # define mblen _Xmblen
714 # endif
715 # endif
716 if (i == NUL) /* just in case mblen() can't handle "" */
717 n = 1;
718 else
720 buf[0] = i;
721 buf[1] = 0;
722 #ifdef LEN_FROM_CONV
723 if (vimconv.vc_type != CONV_NONE)
726 * string_convert() should fail when converting the first
727 * byte of a double-byte character.
729 p = string_convert(&vimconv, (char_u *)buf, NULL);
730 if (p != NULL)
732 vim_free(p);
733 n = 1;
735 else
736 n = 2;
738 else
739 #endif
742 * mblen() should return -1 for invalid (means the leading
743 * multibyte) character. However there are some platforms
744 * where mblen() returns 0 for invalid character.
745 * Therefore, following condition includes 0.
747 ignored = mblen(NULL, 0); /* First reset the state. */
748 if (mblen(buf, (size_t)1) <= 0)
749 n = 2;
750 else
751 n = 1;
754 # endif
755 #endif
758 mb_bytelen_tab[i] = n;
761 #ifdef LEN_FROM_CONV
762 convert_setup(&vimconv, NULL, NULL);
763 #endif
765 /* The cell width depends on the type of multi-byte characters. */
766 (void)init_chartab();
768 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
769 screenalloc(FALSE);
771 /* When using Unicode, set default for 'fileencodings'. */
772 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
773 set_string_option_direct((char_u *)"fencs", -1,
774 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE, 0);
776 #if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
777 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
778 * translated messages independently from the current locale. */
779 (void)bind_textdomain_codeset(VIMPACKAGE,
780 enc_utf8 ? "utf-8" : (char *)p_enc);
781 #endif
783 #ifdef WIN32
784 /* When changing 'encoding' while starting up, then convert the command
785 * line arguments from the active codepage to 'encoding'. */
786 if (starting != 0)
787 fix_arg_enc();
788 #endif
790 #ifdef FEAT_AUTOCMD
791 /* Fire an autocommand to let people do custom font setup. This must be
792 * after Vim has been setup for the new encoding. */
793 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
794 #endif
796 #ifdef FEAT_SPELL
797 /* Need to reload spell dictionaries */
798 spell_reload();
799 #endif
801 return NULL;
805 * Return the size of the BOM for the current buffer:
806 * 0 - no BOM
807 * 2 - UCS-2 or UTF-16 BOM
808 * 4 - UCS-4 BOM
809 * 3 - UTF-8 BOM
812 bomb_size()
814 int n = 0;
816 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
818 if (*curbuf->b_p_fenc == NUL)
820 if (enc_utf8)
822 if (enc_unicode != 0)
823 n = enc_unicode;
824 else
825 n = 3;
828 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
829 n = 3;
830 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
831 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
832 n = 2;
833 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
834 n = 4;
836 return n;
840 * Get class of pointer:
841 * 0 for blank or NUL
842 * 1 for punctuation
843 * 2 for an (ASCII) word character
844 * >2 for other word characters
847 mb_get_class(p)
848 char_u *p;
850 if (MB_BYTE2LEN(p[0]) == 1)
852 if (p[0] == NUL || vim_iswhite(p[0]))
853 return 0;
854 if (vim_iswordc(p[0]))
855 return 2;
856 return 1;
858 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
859 return dbcs_class(p[0], p[1]);
860 if (enc_utf8)
861 return utf_class(utf_ptr2char(p));
862 return 0;
866 * Get class of a double-byte character. This always returns 3 or bigger.
867 * TODO: Should return 1 for punctuation.
870 dbcs_class(lead, trail)
871 unsigned lead;
872 unsigned trail;
874 switch (enc_dbcs)
876 /* please add classfy routine for your language in here */
878 case DBCS_JPNU: /* ? */
879 case DBCS_JPN:
881 /* JIS code classification */
882 unsigned char lb = lead;
883 unsigned char tb = trail;
885 /* convert process code to JIS */
886 # if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
887 /* process code is SJIS */
888 if (lb <= 0x9f)
889 lb = (lb - 0x81) * 2 + 0x21;
890 else
891 lb = (lb - 0xc1) * 2 + 0x21;
892 if (tb <= 0x7e)
893 tb -= 0x1f;
894 else if (tb <= 0x9e)
895 tb -= 0x20;
896 else
898 tb -= 0x7e;
899 lb += 1;
901 # else
903 * XXX: Code page identification can not use with all
904 * system! So, some other encoding information
905 * will be needed.
906 * In japanese: SJIS,EUC,UNICODE,(JIS)
907 * Note that JIS-code system don't use as
908 * process code in most system because it uses
909 * escape sequences(JIS is context depend encoding).
911 /* assume process code is JAPANESE-EUC */
912 lb &= 0x7f;
913 tb &= 0x7f;
914 # endif
915 /* exceptions */
916 switch (lb << 8 | tb)
918 case 0x2121: /* ZENKAKU space */
919 return 0;
920 case 0x2122: /* KU-TEN (Japanese comma) */
921 case 0x2123: /* TOU-TEN (Japanese period) */
922 case 0x2124: /* ZENKAKU comma */
923 case 0x2125: /* ZENKAKU period */
924 return 1;
925 case 0x213c: /* prolongedsound handled as KATAKANA */
926 return 13;
928 /* sieved by KU code */
929 switch (lb)
931 case 0x21:
932 case 0x22:
933 /* special symbols */
934 return 10;
935 case 0x23:
936 /* alpha-numeric */
937 return 11;
938 case 0x24:
939 /* hiragana */
940 return 12;
941 case 0x25:
942 /* katakana */
943 return 13;
944 case 0x26:
945 /* greek */
946 return 14;
947 case 0x27:
948 /* russian */
949 return 15;
950 case 0x28:
951 /* lines */
952 return 16;
953 default:
954 /* kanji */
955 return 17;
959 case DBCS_KORU: /* ? */
960 case DBCS_KOR:
962 /* KS code classification */
963 unsigned char c1 = lead;
964 unsigned char c2 = trail;
967 * 20 : Hangul
968 * 21 : Hanja
969 * 22 : Symbols
970 * 23 : Alpha-numeric/Roman Letter (Full width)
971 * 24 : Hangul Letter(Alphabet)
972 * 25 : Roman Numeral/Greek Letter
973 * 26 : Box Drawings
974 * 27 : Unit Symbols
975 * 28 : Circled/Parenthesized Letter
976 * 29 : Hirigana/Katakana
977 * 30 : Cyrillic Letter
980 if (c1 >= 0xB0 && c1 <= 0xC8)
981 /* Hangul */
982 return 20;
983 #if defined(WIN3264) || defined(WIN32UNIX)
984 else if (c1 <= 0xA0 || c2 <= 0xA0)
985 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
986 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
987 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
989 return 20;
990 #endif
992 else if (c1 >= 0xCA && c1 <= 0xFD)
993 /* Hanja */
994 return 21;
995 else switch (c1)
997 case 0xA1:
998 case 0xA2:
999 /* Symbols */
1000 return 22;
1001 case 0xA3:
1002 /* Alpha-numeric */
1003 return 23;
1004 case 0xA4:
1005 /* Hangul Letter(Alphabet) */
1006 return 24;
1007 case 0xA5:
1008 /* Roman Numeral/Greek Letter */
1009 return 25;
1010 case 0xA6:
1011 /* Box Drawings */
1012 return 26;
1013 case 0xA7:
1014 /* Unit Symbols */
1015 return 27;
1016 case 0xA8:
1017 case 0xA9:
1018 if (c2 <= 0xAF)
1019 return 25; /* Roman Letter */
1020 else if (c2 >= 0xF6)
1021 return 22; /* Symbols */
1022 else
1023 /* Circled/Parenthesized Letter */
1024 return 28;
1025 case 0xAA:
1026 case 0xAB:
1027 /* Hirigana/Katakana */
1028 return 29;
1029 case 0xAC:
1030 /* Cyrillic Letter */
1031 return 30;
1034 default:
1035 break;
1037 return 3;
1041 * mb_char2len() function pointer.
1042 * Return length in bytes of character "c".
1043 * Returns 1 for a single-byte character.
1046 latin_char2len(c)
1047 int c UNUSED;
1049 return 1;
1052 static int
1053 dbcs_char2len(c)
1054 int c;
1056 if (c >= 0x100)
1057 return 2;
1058 return 1;
1062 * mb_char2bytes() function pointer.
1063 * Convert a character to its bytes.
1064 * Returns the length in bytes.
1067 latin_char2bytes(c, buf)
1068 int c;
1069 char_u *buf;
1071 buf[0] = c;
1072 return 1;
1075 static int
1076 dbcs_char2bytes(c, buf)
1077 int c;
1078 char_u *buf;
1080 if (c >= 0x100)
1082 buf[0] = (unsigned)c >> 8;
1083 buf[1] = c;
1084 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1085 * character anyway. */
1086 if (buf[1] == NUL)
1087 buf[1] = '\n';
1088 return 2;
1090 buf[0] = c;
1091 return 1;
1095 * mb_ptr2len() function pointer.
1096 * Get byte length of character at "*p" but stop at a NUL.
1097 * For UTF-8 this includes following composing characters.
1098 * Returns 0 when *p is NUL.
1101 latin_ptr2len(p)
1102 char_u *p;
1104 return MB_BYTE2LEN(*p);
1107 static int
1108 dbcs_ptr2len(p)
1109 char_u *p;
1111 int len;
1113 /* Check if second byte is not missing. */
1114 len = MB_BYTE2LEN(*p);
1115 if (len == 2 && p[1] == NUL)
1116 len = 1;
1117 return len;
1121 * mb_ptr2len_len() function pointer.
1122 * Like mb_ptr2len(), but limit to read "size" bytes.
1123 * Returns 0 for an empty string.
1124 * Returns 1 for an illegal char or an incomplete byte sequence.
1127 latin_ptr2len_len(p, size)
1128 char_u *p;
1129 int size;
1131 if (size < 1 || *p == NUL)
1132 return 0;
1133 return 1;
1136 static int
1137 dbcs_ptr2len_len(p, size)
1138 char_u *p;
1139 int size;
1141 int len;
1143 if (size < 1 || *p == NUL)
1144 return 0;
1145 if (size == 1)
1146 return 1;
1147 /* Check that second byte is not missing. */
1148 len = MB_BYTE2LEN(*p);
1149 if (len == 2 && p[1] == NUL)
1150 len = 1;
1151 return len;
1154 struct interval
1156 unsigned short first;
1157 unsigned short last;
1159 static int intable __ARGS((struct interval *table, size_t size, int c));
1162 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1164 static int
1165 intable(table, size, c)
1166 struct interval *table;
1167 size_t size;
1168 int c;
1170 int mid, bot, top;
1172 /* first quick check for Latin1 etc. characters */
1173 if (c < table[0].first)
1174 return FALSE;
1176 /* binary search in table */
1177 bot = 0;
1178 top = (int)(size / sizeof(struct interval) - 1);
1179 while (top >= bot)
1181 mid = (bot + top) / 2;
1182 if (table[mid].last < c)
1183 bot = mid + 1;
1184 else if (table[mid].first > c)
1185 top = mid - 1;
1186 else
1187 return TRUE;
1189 return FALSE;
1193 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1194 * Returns 4 or 6 for an unprintable character.
1195 * Is only correct for characters >= 0x80.
1196 * When p_ambw is "double", return 2 for a character with East Asian Width
1197 * class 'A'(mbiguous).
1200 utf_char2cells(c)
1201 int c;
1203 /* sorted list of non-overlapping intervals of East Asian Ambiguous
1204 * characters, generated with:
1205 * "uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c" */
1206 static struct interval ambiguous[] = {
1207 {0x00A1, 0x00A1}, {0x00A4, 0x00A4}, {0x00A7, 0x00A8},
1208 {0x00AA, 0x00AA}, {0x00AE, 0x00AE}, {0x00B0, 0x00B4},
1209 {0x00B6, 0x00BA}, {0x00BC, 0x00BF}, {0x00C6, 0x00C6},
1210 {0x00D0, 0x00D0}, {0x00D7, 0x00D8}, {0x00DE, 0x00E1},
1211 {0x00E6, 0x00E6}, {0x00E8, 0x00EA}, {0x00EC, 0x00ED},
1212 {0x00F0, 0x00F0}, {0x00F2, 0x00F3}, {0x00F7, 0x00FA},
1213 {0x00FC, 0x00FC}, {0x00FE, 0x00FE}, {0x0101, 0x0101},
1214 {0x0111, 0x0111}, {0x0113, 0x0113}, {0x011B, 0x011B},
1215 {0x0126, 0x0127}, {0x012B, 0x012B}, {0x0131, 0x0133},
1216 {0x0138, 0x0138}, {0x013F, 0x0142}, {0x0144, 0x0144},
1217 {0x0148, 0x014B}, {0x014D, 0x014D}, {0x0152, 0x0153},
1218 {0x0166, 0x0167}, {0x016B, 0x016B}, {0x01CE, 0x01CE},
1219 {0x01D0, 0x01D0}, {0x01D2, 0x01D2}, {0x01D4, 0x01D4},
1220 {0x01D6, 0x01D6}, {0x01D8, 0x01D8}, {0x01DA, 0x01DA},
1221 {0x01DC, 0x01DC}, {0x0251, 0x0251}, {0x0261, 0x0261},
1222 {0x02C4, 0x02C4}, {0x02C7, 0x02C7}, {0x02C9, 0x02CB},
1223 {0x02CD, 0x02CD}, {0x02D0, 0x02D0}, {0x02D8, 0x02DB},
1224 {0x02DD, 0x02DD}, {0x02DF, 0x02DF}, {0x0391, 0x03A1},
1225 {0x03A3, 0x03A9}, {0x03B1, 0x03C1}, {0x03C3, 0x03C9},
1226 {0x0401, 0x0401}, {0x0410, 0x044F}, {0x0451, 0x0451},
1227 {0x2010, 0x2010}, {0x2013, 0x2016}, {0x2018, 0x2019},
1228 {0x201C, 0x201D}, {0x2020, 0x2022}, {0x2024, 0x2027},
1229 {0x2030, 0x2030}, {0x2032, 0x2033}, {0x2035, 0x2035},
1230 {0x203B, 0x203B}, {0x203E, 0x203E}, {0x2074, 0x2074},
1231 {0x207F, 0x207F}, {0x2081, 0x2084}, {0x20AC, 0x20AC},
1232 {0x2103, 0x2103}, {0x2105, 0x2105}, {0x2109, 0x2109},
1233 {0x2113, 0x2113}, {0x2116, 0x2116}, {0x2121, 0x2122},
1234 {0x2126, 0x2126}, {0x212B, 0x212B}, {0x2153, 0x2154},
1235 {0x215B, 0x215E}, {0x2160, 0x216B}, {0x2170, 0x2179},
1236 {0x2190, 0x2199}, {0x21B8, 0x21B9}, {0x21D2, 0x21D2},
1237 {0x21D4, 0x21D4}, {0x21E7, 0x21E7}, {0x2200, 0x2200},
1238 {0x2202, 0x2203}, {0x2207, 0x2208}, {0x220B, 0x220B},
1239 {0x220F, 0x220F}, {0x2211, 0x2211}, {0x2215, 0x2215},
1240 {0x221A, 0x221A}, {0x221D, 0x2220}, {0x2223, 0x2223},
1241 {0x2225, 0x2225}, {0x2227, 0x222C}, {0x222E, 0x222E},
1242 {0x2234, 0x2237}, {0x223C, 0x223D}, {0x2248, 0x2248},
1243 {0x224C, 0x224C}, {0x2252, 0x2252}, {0x2260, 0x2261},
1244 {0x2264, 0x2267}, {0x226A, 0x226B}, {0x226E, 0x226F},
1245 {0x2282, 0x2283}, {0x2286, 0x2287}, {0x2295, 0x2295},
1246 {0x2299, 0x2299}, {0x22A5, 0x22A5}, {0x22BF, 0x22BF},
1247 {0x2312, 0x2312}, {0x2460, 0x24E9}, {0x24EB, 0x254B},
1248 {0x2550, 0x2573}, {0x2580, 0x258F}, {0x2592, 0x2595},
1249 {0x25A0, 0x25A1}, {0x25A3, 0x25A9}, {0x25B2, 0x25B3},
1250 {0x25B6, 0x25B7}, {0x25BC, 0x25BD}, {0x25C0, 0x25C1},
1251 {0x25C6, 0x25C8}, {0x25CB, 0x25CB}, {0x25CE, 0x25D1},
1252 {0x25E2, 0x25E5}, {0x25EF, 0x25EF}, {0x2605, 0x2606},
1253 {0x2609, 0x2609}, {0x260E, 0x260F}, {0x2614, 0x2615},
1254 {0x261C, 0x261C}, {0x261E, 0x261E}, {0x2640, 0x2640},
1255 {0x2642, 0x2642}, {0x2660, 0x2661}, {0x2663, 0x2665},
1256 {0x2667, 0x266A}, {0x266C, 0x266D}, {0x266F, 0x266F},
1257 {0x273D, 0x273D}, {0x2776, 0x277F}, {0xE000, 0xF8FF},
1258 {0xFFFD, 0xFFFD}, /* {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} */
1261 if (c >= 0x100)
1263 #ifdef USE_WCHAR_FUNCTIONS
1265 * Assume the library function wcwidth() works better than our own
1266 * stuff. It should return 1 for ambiguous width chars!
1268 int n = wcwidth(c);
1270 if (n < 0)
1271 return 6; /* unprintable, displays <xxxx> */
1272 if (n > 1)
1273 return n;
1274 #else
1275 if (!utf_printable(c))
1276 return 6; /* unprintable, displays <xxxx> */
1277 if (c >= 0x1100
1278 && (c <= 0x115f /* Hangul Jamo */
1279 || c == 0x2329
1280 || c == 0x232a
1281 || (c >= 0x2e80 && c <= 0xa4cf
1282 && c != 0x303f) /* CJK ... Yi */
1283 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
1284 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility
1285 Ideographs */
1286 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
1287 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
1288 || (c >= 0xffe0 && c <= 0xffe6)
1289 || (c >= 0x20000 && c <= 0x2fffd)
1290 || (c >= 0x30000 && c <= 0x3fffd)))
1291 return 2;
1292 #endif
1295 /* Characters below 0x100 are influenced by 'isprint' option */
1296 else if (c >= 0x80 && !vim_isprintc(c))
1297 return 4; /* unprintable, displays <xx> */
1299 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1300 return 2;
1302 return 1;
1306 * mb_ptr2cells() function pointer.
1307 * Return the number of display cells character at "*p" occupies.
1308 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1311 latin_ptr2cells(p)
1312 char_u *p UNUSED;
1314 return 1;
1318 utf_ptr2cells(p)
1319 char_u *p;
1321 int c;
1323 /* Need to convert to a wide character. */
1324 if (*p >= 0x80)
1326 c = utf_ptr2char(p);
1327 /* An illegal byte is displayed as <xx>. */
1328 if (utf_ptr2len(p) == 1 || c == NUL)
1329 return 4;
1330 /* If the char is ASCII it must be an overlong sequence. */
1331 if (c < 0x80)
1332 return char2cells(c);
1333 return utf_char2cells(c);
1335 return 1;
1339 dbcs_ptr2cells(p)
1340 char_u *p;
1342 /* Number of cells is equal to number of bytes, except for euc-jp when
1343 * the first byte is 0x8e. */
1344 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1345 return 1;
1346 return MB_BYTE2LEN(*p);
1350 * mb_ptr2cells_len() function pointer.
1351 * Like mb_ptr2cells(), but limit string length to "size".
1352 * For an empty string or truncated character returns 1.
1355 latin_ptr2cells_len(p, size)
1356 char_u *p UNUSED;
1357 int size UNUSED;
1359 return 1;
1362 static int
1363 utf_ptr2cells_len(p, size)
1364 char_u *p;
1365 int size;
1367 int c;
1369 /* Need to convert to a wide character. */
1370 if (size > 0 && *p >= 0x80)
1372 if (utf_ptr2len_len(p, size) < utf8len_tab[*p])
1373 return 1; /* truncated */
1374 c = utf_ptr2char(p);
1375 /* An illegal byte is displayed as <xx>. */
1376 if (utf_ptr2len(p) == 1 || c == NUL)
1377 return 4;
1378 /* If the char is ASCII it must be an overlong sequence. */
1379 if (c < 0x80)
1380 return char2cells(c);
1381 return utf_char2cells(c);
1383 return 1;
1386 static int
1387 dbcs_ptr2cells_len(p, size)
1388 char_u *p;
1389 int size;
1391 /* Number of cells is equal to number of bytes, except for euc-jp when
1392 * the first byte is 0x8e. */
1393 if (size <= 1 || (enc_dbcs == DBCS_JPNU && *p == 0x8e))
1394 return 1;
1395 return MB_BYTE2LEN(*p);
1399 * mb_char2cells() function pointer.
1400 * Return the number of display cells character "c" occupies.
1401 * Only takes care of multi-byte chars, not "^C" and such.
1404 latin_char2cells(c)
1405 int c UNUSED;
1407 return 1;
1410 static int
1411 dbcs_char2cells(c)
1412 int c;
1414 /* Number of cells is equal to number of bytes, except for euc-jp when
1415 * the first byte is 0x8e. */
1416 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1417 return 1;
1418 /* use the first byte */
1419 return MB_BYTE2LEN((unsigned)c >> 8);
1423 * mb_off2cells() function pointer.
1424 * Return number of display cells for char at ScreenLines[off].
1425 * We make sure that the offset used is less than "max_off".
1428 latin_off2cells(off, max_off)
1429 unsigned off UNUSED;
1430 unsigned max_off UNUSED;
1432 return 1;
1436 dbcs_off2cells(off, max_off)
1437 unsigned off;
1438 unsigned max_off;
1440 /* never check beyond end of the line */
1441 if (off >= max_off)
1442 return 1;
1444 /* Number of cells is equal to number of bytes, except for euc-jp when
1445 * the first byte is 0x8e. */
1446 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1447 return 1;
1448 return MB_BYTE2LEN(ScreenLines[off]);
1452 utf_off2cells(off, max_off)
1453 unsigned off;
1454 unsigned max_off;
1456 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1;
1460 * mb_ptr2char() function pointer.
1461 * Convert a byte sequence into a character.
1464 latin_ptr2char(p)
1465 char_u *p;
1467 return *p;
1470 static int
1471 dbcs_ptr2char(p)
1472 char_u *p;
1474 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1475 return (p[0] << 8) + p[1];
1476 return *p;
1480 * Convert a UTF-8 byte sequence to a wide character.
1481 * If the sequence is illegal or truncated by a NUL the first byte is
1482 * returned.
1483 * Does not include composing characters, of course.
1486 utf_ptr2char(p)
1487 char_u *p;
1489 int len;
1491 if (p[0] < 0x80) /* be quick for ASCII */
1492 return p[0];
1494 len = utf8len_tab_zero[p[0]];
1495 if (len > 1 && (p[1] & 0xc0) == 0x80)
1497 if (len == 2)
1498 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1499 if ((p[2] & 0xc0) == 0x80)
1501 if (len == 3)
1502 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1503 + (p[2] & 0x3f);
1504 if ((p[3] & 0xc0) == 0x80)
1506 if (len == 4)
1507 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1508 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1509 if ((p[4] & 0xc0) == 0x80)
1511 if (len == 5)
1512 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1513 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1514 + (p[4] & 0x3f);
1515 if ((p[5] & 0xc0) == 0x80 && len == 6)
1516 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1517 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1518 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1523 /* Illegal value, just return the first byte */
1524 return p[0];
1528 * Get character at **pp and advance *pp to the next character.
1529 * Note: composing characters are skipped!
1532 mb_ptr2char_adv(pp)
1533 char_u **pp;
1535 int c;
1537 c = (*mb_ptr2char)(*pp);
1538 *pp += (*mb_ptr2len)(*pp);
1539 return c;
1543 * Get character at **pp and advance *pp to the next character.
1544 * Note: composing characters are returned as separate characters.
1547 mb_cptr2char_adv(pp)
1548 char_u **pp;
1550 int c;
1552 c = (*mb_ptr2char)(*pp);
1553 if (enc_utf8)
1554 *pp += utf_ptr2len(*pp);
1555 else
1556 *pp += (*mb_ptr2len)(*pp);
1557 return c;
1560 #if defined(FEAT_ARABIC) || defined(PROTO)
1562 * Check whether we are dealing with Arabic combining characters.
1563 * Note: these are NOT really composing characters!
1566 arabic_combine(one, two)
1567 int one; /* first character */
1568 int two; /* character just after "one" */
1570 if (one == a_LAM)
1571 return arabic_maycombine(two);
1572 return FALSE;
1576 * Check whether we are dealing with a character that could be regarded as an
1577 * Arabic combining character, need to check the character before this.
1580 arabic_maycombine(two)
1581 int two;
1583 if (p_arshape && !p_tbidi)
1584 return (two == a_ALEF_MADDA
1585 || two == a_ALEF_HAMZA_ABOVE
1586 || two == a_ALEF_HAMZA_BELOW
1587 || two == a_ALEF);
1588 return FALSE;
1592 * Check if the character pointed to by "p2" is a composing character when it
1593 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1594 * behaves like a composing character.
1597 utf_composinglike(p1, p2)
1598 char_u *p1;
1599 char_u *p2;
1601 int c2;
1603 c2 = utf_ptr2char(p2);
1604 if (utf_iscomposing(c2))
1605 return TRUE;
1606 if (!arabic_maycombine(c2))
1607 return FALSE;
1608 return arabic_combine(utf_ptr2char(p1), c2);
1610 #endif
1613 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1614 * composing characters.
1617 utfc_ptr2char(p, pcc)
1618 char_u *p;
1619 int *pcc; /* return: composing chars, last one is 0 */
1621 int len;
1622 int c;
1623 int cc;
1624 int i = 0;
1626 c = utf_ptr2char(p);
1627 len = utf_ptr2len(p);
1629 /* Only accept a composing char when the first char isn't illegal. */
1630 if ((len > 1 || *p < 0x80)
1631 && p[len] >= 0x80
1632 && UTF_COMPOSINGLIKE(p, p + len))
1634 cc = utf_ptr2char(p + len);
1635 for (;;)
1637 pcc[i++] = cc;
1638 if (i == MAX_MCO)
1639 break;
1640 len += utf_ptr2len(p + len);
1641 if (p[len] < 0x80 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1642 break;
1646 if (i < MAX_MCO) /* last composing char must be 0 */
1647 pcc[i] = 0;
1649 return c;
1653 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1654 * composing characters. Use no more than p[maxlen].
1657 utfc_ptr2char_len(p, pcc, maxlen)
1658 char_u *p;
1659 int *pcc; /* return: composing chars, last one is 0 */
1660 int maxlen;
1662 int len;
1663 int c;
1664 int cc;
1665 int i = 0;
1667 c = utf_ptr2char(p);
1668 len = utf_ptr2len_len(p, maxlen);
1669 /* Only accept a composing char when the first char isn't illegal. */
1670 if ((len > 1 || *p < 0x80)
1671 && len < maxlen
1672 && p[len] >= 0x80
1673 && UTF_COMPOSINGLIKE(p, p + len))
1675 cc = utf_ptr2char(p + len);
1676 for (;;)
1678 pcc[i++] = cc;
1679 if (i == MAX_MCO)
1680 break;
1681 len += utf_ptr2len_len(p + len, maxlen - len);
1682 if (len >= maxlen
1683 || p[len] < 0x80
1684 || !utf_iscomposing(cc = utf_ptr2char(p + len)))
1685 break;
1689 if (i < MAX_MCO) /* last composing char must be 0 */
1690 pcc[i] = 0;
1692 return c;
1696 * Convert the character at screen position "off" to a sequence of bytes.
1697 * Includes the composing characters.
1698 * "buf" must at least have the length MB_MAXBYTES.
1699 * Returns the produced number of bytes.
1702 utfc_char2bytes(off, buf)
1703 int off;
1704 char_u *buf;
1706 int len;
1707 int i;
1709 len = utf_char2bytes(ScreenLinesUC[off], buf);
1710 for (i = 0; i < Screen_mco; ++i)
1712 if (ScreenLinesC[i][off] == 0)
1713 break;
1714 len += utf_char2bytes(ScreenLinesC[i][off], buf + len);
1716 return len;
1720 * Get the length of a UTF-8 byte sequence, not including any following
1721 * composing characters.
1722 * Returns 0 for "".
1723 * Returns 1 for an illegal byte sequence.
1726 utf_ptr2len(p)
1727 char_u *p;
1729 int len;
1730 int i;
1732 if (*p == NUL)
1733 return 0;
1734 len = utf8len_tab[*p];
1735 for (i = 1; i < len; ++i)
1736 if ((p[i] & 0xc0) != 0x80)
1737 return 1;
1738 return len;
1742 * Return length of UTF-8 character, obtained from the first byte.
1743 * "b" must be between 0 and 255!
1744 * Returns 1 for an invalid first byte value.
1747 utf_byte2len(b)
1748 int b;
1750 return utf8len_tab[b];
1754 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1755 * following composing characters.
1756 * Returns 1 for "".
1757 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
1758 * Returns number > "size" for an incomplete byte sequence.
1759 * Never returns zero.
1762 utf_ptr2len_len(p, size)
1763 char_u *p;
1764 int size;
1766 int len;
1767 int i;
1768 int m;
1770 len = utf8len_tab[*p];
1771 if (len == 1)
1772 return 1; /* NUL, ascii or illegal lead byte */
1773 if (len > size)
1774 m = size; /* incomplete byte sequence. */
1775 else
1776 m = len;
1777 for (i = 1; i < m; ++i)
1778 if ((p[i] & 0xc0) != 0x80)
1779 return 1;
1780 return len;
1784 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1785 * This includes following composing characters.
1788 utfc_ptr2len(p)
1789 char_u *p;
1791 int len;
1792 int b0 = *p;
1793 #ifdef FEAT_ARABIC
1794 int prevlen;
1795 #endif
1797 if (b0 == NUL)
1798 return 0;
1799 if (b0 < 0x80 && p[1] < 0x80) /* be quick for ASCII */
1800 return 1;
1802 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1803 len = utf_ptr2len(p);
1805 /* Check for illegal byte. */
1806 if (len == 1 && b0 >= 0x80)
1807 return 1;
1810 * Check for composing characters. We can handle only the first two, but
1811 * skip all of them (otherwise the cursor would get stuck).
1813 #ifdef FEAT_ARABIC
1814 prevlen = 0;
1815 #endif
1816 for (;;)
1818 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1819 return len;
1821 /* Skip over composing char */
1822 #ifdef FEAT_ARABIC
1823 prevlen = len;
1824 #endif
1825 len += utf_ptr2len(p + len);
1830 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1831 * takes. This includes following composing characters.
1832 * Returns 0 for an empty string.
1833 * Returns 1 for an illegal char or an incomplete byte sequence.
1836 utfc_ptr2len_len(p, size)
1837 char_u *p;
1838 int size;
1840 int len;
1841 #ifdef FEAT_ARABIC
1842 int prevlen;
1843 #endif
1845 if (size < 1 || *p == NUL)
1846 return 0;
1847 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
1848 return 1;
1850 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1851 len = utf_ptr2len_len(p, size);
1853 /* Check for illegal byte and incomplete byte sequence. */
1854 if ((len == 1 && p[0] >= 0x80) || len > size)
1855 return 1;
1858 * Check for composing characters. We can handle only the first two, but
1859 * skip all of them (otherwise the cursor would get stuck).
1861 #ifdef FEAT_ARABIC
1862 prevlen = 0;
1863 #endif
1864 while (len < size)
1866 int len_next_char;
1868 if (p[len] < 0x80)
1869 break;
1872 * Next character length should not go beyond size to ensure that
1873 * UTF_COMPOSINGLIKE(...) does not read beyond size.
1875 len_next_char = utf_ptr2len_len(p + len, size - len);
1876 if (len_next_char > size - len)
1877 break;
1879 if (!UTF_COMPOSINGLIKE(p + prevlen, p + len))
1880 break;
1882 /* Skip over composing char */
1883 #ifdef FEAT_ARABIC
1884 prevlen = len;
1885 #endif
1886 len += len_next_char;
1888 return len;
1892 * Return the number of bytes the UTF-8 encoding of character "c" takes.
1893 * This does not include composing characters.
1896 utf_char2len(c)
1897 int c;
1899 if (c < 0x80)
1900 return 1;
1901 if (c < 0x800)
1902 return 2;
1903 if (c < 0x10000)
1904 return 3;
1905 if (c < 0x200000)
1906 return 4;
1907 if (c < 0x4000000)
1908 return 5;
1909 return 6;
1913 * Convert Unicode character "c" to UTF-8 string in "buf[]".
1914 * Returns the number of bytes.
1915 * This does not include composing characters.
1918 utf_char2bytes(c, buf)
1919 int c;
1920 char_u *buf;
1922 if (c < 0x80) /* 7 bits */
1924 buf[0] = c;
1925 return 1;
1927 if (c < 0x800) /* 11 bits */
1929 buf[0] = 0xc0 + ((unsigned)c >> 6);
1930 buf[1] = 0x80 + (c & 0x3f);
1931 return 2;
1933 if (c < 0x10000) /* 16 bits */
1935 buf[0] = 0xe0 + ((unsigned)c >> 12);
1936 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1937 buf[2] = 0x80 + (c & 0x3f);
1938 return 3;
1940 if (c < 0x200000) /* 21 bits */
1942 buf[0] = 0xf0 + ((unsigned)c >> 18);
1943 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1944 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1945 buf[3] = 0x80 + (c & 0x3f);
1946 return 4;
1948 if (c < 0x4000000) /* 26 bits */
1950 buf[0] = 0xf8 + ((unsigned)c >> 24);
1951 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1952 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1953 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1954 buf[4] = 0x80 + (c & 0x3f);
1955 return 5;
1957 /* 31 bits */
1958 buf[0] = 0xfc + ((unsigned)c >> 30);
1959 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
1960 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1961 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1962 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1963 buf[5] = 0x80 + (c & 0x3f);
1964 return 6;
1968 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
1969 * drawn on top of the preceding character.
1970 * Based on code from Markus Kuhn.
1973 utf_iscomposing(c)
1974 int c;
1976 /* sorted list of non-overlapping intervals */
1977 static struct interval combining[] =
1979 {0x0300, 0x034f}, {0x0360, 0x036f}, {0x0483, 0x0486}, {0x0488, 0x0489},
1980 {0x0591, 0x05a1}, {0x05a3, 0x05b9}, {0x05bb, 0x05bd}, {0x05bf, 0x05bf},
1981 {0x05c1, 0x05c2}, {0x05c4, 0x05c4}, {0x0610, 0x0615}, {0x064b, 0x0658},
1982 {0x0670, 0x0670}, {0x06d6, 0x06dc}, {0x06de, 0x06e4}, {0x06e7, 0x06e8},
1983 {0x06ea, 0x06ed}, {0x0711, 0x0711}, {0x0730, 0x074a}, {0x07a6, 0x07b0},
1984 {0x0901, 0x0903}, {0x093c, 0x093c}, {0x093e, 0x094d}, {0x0951, 0x0954},
1985 {0x0962, 0x0963}, {0x0981, 0x0983}, {0x09bc, 0x09bc}, {0x09be, 0x09c4},
1986 {0x09c7, 0x09c8}, {0x09cb, 0x09cd}, {0x09d7, 0x09d7}, {0x09e2, 0x09e3},
1987 {0x0a01, 0x0a03}, {0x0a3c, 0x0a3c}, {0x0a3e, 0x0a42}, {0x0a47, 0x0a48},
1988 {0x0a4b, 0x0a4d}, {0x0a70, 0x0a71}, {0x0a81, 0x0a83}, {0x0abc, 0x0abc},
1989 {0x0abe, 0x0ac5}, {0x0ac7, 0x0ac9}, {0x0acb, 0x0acd}, {0x0ae2, 0x0ae3},
1990 {0x0b01, 0x0b03}, {0x0b3c, 0x0b3c}, {0x0b3e, 0x0b43}, {0x0b47, 0x0b48},
1991 {0x0b4b, 0x0b4d}, {0x0b56, 0x0b57}, {0x0b82, 0x0b82}, {0x0bbe, 0x0bc2},
1992 {0x0bc6, 0x0bc8}, {0x0bca, 0x0bcd}, {0x0bd7, 0x0bd7}, {0x0c01, 0x0c03},
1993 {0x0c3e, 0x0c44}, {0x0c46, 0x0c48}, {0x0c4a, 0x0c4d}, {0x0c55, 0x0c56},
1994 {0x0c82, 0x0c83}, {0x0cbc, 0x0cbc}, {0x0cbe, 0x0cc4}, {0x0cc6, 0x0cc8},
1995 {0x0cca, 0x0ccd}, {0x0cd5, 0x0cd6}, {0x0d02, 0x0d03}, {0x0d3e, 0x0d43},
1996 {0x0d46, 0x0d48}, {0x0d4a, 0x0d4d}, {0x0d57, 0x0d57}, {0x0d82, 0x0d83},
1997 {0x0dca, 0x0dca}, {0x0dcf, 0x0dd4}, {0x0dd6, 0x0dd6}, {0x0dd8, 0x0ddf},
1998 {0x0df2, 0x0df3}, {0x0e31, 0x0e31}, {0x0e34, 0x0e3a}, {0x0e47, 0x0e4e},
1999 {0x0eb1, 0x0eb1}, {0x0eb4, 0x0eb9}, {0x0ebb, 0x0ebc}, {0x0ec8, 0x0ecd},
2000 {0x0f18, 0x0f19}, {0x0f35, 0x0f35}, {0x0f37, 0x0f37}, {0x0f39, 0x0f39},
2001 {0x0f3e, 0x0f3f}, {0x0f71, 0x0f84}, {0x0f86, 0x0f87}, {0x0f90, 0x0f97},
2002 {0x0f99, 0x0fbc}, {0x0fc6, 0x0fc6}, {0x102c, 0x1032}, {0x1036, 0x1039},
2003 {0x1056, 0x1059}, {0x1712, 0x1714}, {0x1732, 0x1734}, {0x1752, 0x1753},
2004 {0x1772, 0x1773}, {0x17b6, 0x17d3}, {0x17dd, 0x17dd}, {0x180b, 0x180d},
2005 {0x18a9, 0x18a9}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x20d0, 0x20ea},
2006 {0x302a, 0x302f}, {0x3099, 0x309a}, {0xfb1e, 0xfb1e}, {0xfe00, 0xfe0f},
2007 {0xfe20, 0xfe23},
2010 return intable(combining, sizeof(combining), c);
2014 * Return TRUE for characters that can be displayed in a normal way.
2015 * Only for characters of 0x100 and above!
2018 utf_printable(c)
2019 int c;
2021 #ifdef USE_WCHAR_FUNCTIONS
2023 * Assume the iswprint() library function works better than our own stuff.
2025 return iswprint(c);
2026 #else
2027 /* Sorted list of non-overlapping intervals.
2028 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2029 static struct interval nonprint[] =
2031 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2032 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2033 {0xfffe, 0xffff}
2036 return !intable(nonprint, sizeof(nonprint), c);
2037 #endif
2041 * Get class of a Unicode character.
2042 * 0: white space
2043 * 1: punctuation
2044 * 2 or bigger: some class of word character.
2047 utf_class(c)
2048 int c;
2050 /* sorted list of non-overlapping intervals */
2051 static struct clinterval
2053 unsigned short first;
2054 unsigned short last;
2055 unsigned short class;
2056 } classes[] =
2058 {0x037e, 0x037e, 1}, /* Greek question mark */
2059 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2060 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2061 {0x0589, 0x0589, 1}, /* Armenian full stop */
2062 {0x05be, 0x05be, 1},
2063 {0x05c0, 0x05c0, 1},
2064 {0x05c3, 0x05c3, 1},
2065 {0x05f3, 0x05f4, 1},
2066 {0x060c, 0x060c, 1},
2067 {0x061b, 0x061b, 1},
2068 {0x061f, 0x061f, 1},
2069 {0x066a, 0x066d, 1},
2070 {0x06d4, 0x06d4, 1},
2071 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2072 {0x0964, 0x0965, 1},
2073 {0x0970, 0x0970, 1},
2074 {0x0df4, 0x0df4, 1},
2075 {0x0e4f, 0x0e4f, 1},
2076 {0x0e5a, 0x0e5b, 1},
2077 {0x0f04, 0x0f12, 1},
2078 {0x0f3a, 0x0f3d, 1},
2079 {0x0f85, 0x0f85, 1},
2080 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2081 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2082 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2083 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2084 {0x1680, 0x1680, 0},
2085 {0x169b, 0x169c, 1},
2086 {0x16eb, 0x16ed, 1},
2087 {0x1735, 0x1736, 1},
2088 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2089 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2090 {0x2000, 0x200b, 0}, /* spaces */
2091 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2092 {0x2028, 0x2029, 0},
2093 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2094 {0x202f, 0x202f, 0},
2095 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2096 {0x205f, 0x205f, 0},
2097 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2098 {0x2070, 0x207f, 0x2070}, /* superscript */
2099 {0x2080, 0x2094, 0x2080}, /* subscript */
2100 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2101 {0x2800, 0x28ff, 0x2800}, /* braille */
2102 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
2103 {0x29d8, 0x29db, 1},
2104 {0x29fc, 0x29fd, 1},
2105 {0x3000, 0x3000, 0}, /* ideographic space */
2106 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2107 {0x3030, 0x3030, 1},
2108 {0x303d, 0x303d, 1},
2109 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2110 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2111 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2112 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2113 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2114 {0xfd3e, 0xfd3f, 1},
2115 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2116 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2117 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2118 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2119 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
2121 int bot = 0;
2122 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
2123 int mid;
2125 /* First quick check for Latin1 characters, use 'iskeyword'. */
2126 if (c < 0x100)
2128 if (c == ' ' || c == '\t' || c == NUL || c == 0xa0)
2129 return 0; /* blank */
2130 if (vim_iswordc(c))
2131 return 2; /* word character */
2132 return 1; /* punctuation */
2135 /* binary search in table */
2136 while (top >= bot)
2138 mid = (bot + top) / 2;
2139 if (classes[mid].last < c)
2140 bot = mid + 1;
2141 else if (classes[mid].first > c)
2142 top = mid - 1;
2143 else
2144 return (int)classes[mid].class;
2147 /* most other characters are "word" characters */
2148 return 2;
2152 * Code for Unicode case-dependent operations. Based on notes in
2153 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2154 * This code uses simple case folding, not full case folding.
2158 * The following table is built by foldExtract.pl < CaseFolding.txt .
2159 * It must be in numeric order, because we use binary search on it.
2160 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
2161 * from 0x41 to 0x5a inclusive, stepping by 1, are folded by adding 32.
2164 typedef struct
2166 int rangeStart;
2167 int rangeEnd;
2168 int step;
2169 int offset;
2170 } convertStruct;
2172 static convertStruct foldCase[] =
2174 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
2175 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
2176 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
2177 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
2178 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
2179 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
2180 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
2181 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
2182 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
2183 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
2184 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
2185 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
2186 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
2187 {0x1c4,0x1c4,-1,2}, {0x1c5,0x1c5,-1,1}, {0x1c7,0x1c7,-1,2},
2188 {0x1c8,0x1c8,-1,1}, {0x1ca,0x1ca,-1,2}, {0x1cb,0x1db,2,1},
2189 {0x1de,0x1ee,2,1}, {0x1f1,0x1f1,-1,2}, {0x1f2,0x1f4,2,1},
2190 {0x1f6,0x1f6,-1,-97}, {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1},
2191 {0x220,0x220,-1,-130}, {0x222,0x232,2,1}, {0x386,0x386,-1,38},
2192 {0x388,0x38a,1,37}, {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63},
2193 {0x391,0x3a1,1,32}, {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1},
2194 {0x3f4,0x3f4,-1,-60}, {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7},
2195 {0x3fa,0x3fa,-1,1}, {0x400,0x40f,1,80}, {0x410,0x42f,1,32},
2196 {0x460,0x480,2,1}, {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1},
2197 {0x4d0,0x4f4,2,1}, {0x4f8,0x500,8,1}, {0x502,0x50e,2,1},
2198 {0x531,0x556,1,48}, {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1},
2199 {0x1f08,0x1f0f,1,-8}, {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8},
2200 {0x1f38,0x1f3f,1,-8}, {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8},
2201 {0x1f68,0x1f6f,1,-8}, {0x1f88,0x1f8f,1,-8}, {0x1f98,0x1f9f,1,-8},
2202 {0x1fa8,0x1faf,1,-8}, {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74},
2203 {0x1fbc,0x1fbc,-1,-9}, {0x1fc8,0x1fcb,1,-86}, {0x1fcc,0x1fcc,-1,-9},
2204 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
2205 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
2206 {0x1ffa,0x1ffb,1,-126}, {0x1ffc,0x1ffc,-1,-9}, {0x2126,0x2126,-1,-7517},
2207 {0x212a,0x212a,-1,-8383}, {0x212b,0x212b,-1,-8262},
2208 {0x2160,0x216f,1,16}, {0x24b6,0x24cf,1,26}, {0xff21,0xff3a,1,32},
2209 {0x10400,0x10427,1,40}
2212 static int utf_convert(int a, convertStruct table[], int tableSize);
2215 * Generic conversion function for case operations.
2216 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2217 * the given conversion "table". Uses binary search on "table".
2219 static int
2220 utf_convert(a, table, tableSize)
2221 int a;
2222 convertStruct table[];
2223 int tableSize;
2225 int start, mid, end; /* indices into table */
2227 start = 0;
2228 end = tableSize / sizeof(convertStruct);
2229 while (start < end)
2231 /* need to search further */
2232 mid = (end + start) /2;
2233 if (table[mid].rangeEnd < a)
2234 start = mid + 1;
2235 else
2236 end = mid;
2238 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
2239 && (a - table[start].rangeStart) % table[start].step == 0)
2240 return (a + table[start].offset);
2241 else
2242 return a;
2246 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2247 * simple case folding.
2250 utf_fold(a)
2251 int a;
2253 return utf_convert(a, foldCase, sizeof(foldCase));
2257 * The following tables are built by upperLowerExtract.pl < UnicodeData.txt .
2258 * They must be in numeric order, because we use binary search on them.
2259 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
2260 * from 0x41 to 0x5a inclusive, stepping by 1, are switched to lower (for
2261 * example) by adding 32.
2263 static convertStruct toLower[] =
2265 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
2266 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
2267 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
2268 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
2269 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
2270 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
2271 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
2272 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
2273 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
2274 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
2275 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
2276 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
2277 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
2278 {0x1c4,0x1ca,3,2}, {0x1cd,0x1db,2,1}, {0x1de,0x1ee,2,1},
2279 {0x1f1,0x1f1,-1,2}, {0x1f4,0x1f4,-1,1}, {0x1f6,0x1f6,-1,-97},
2280 {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1}, {0x220,0x220,-1,-130},
2281 {0x222,0x232,2,1}, {0x386,0x386,-1,38}, {0x388,0x38a,1,37},
2282 {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63}, {0x391,0x3a1,1,32},
2283 {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1}, {0x3f4,0x3f4,-1,-60},
2284 {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7}, {0x3fa,0x3fa,-1,1},
2285 {0x400,0x40f,1,80}, {0x410,0x42f,1,32}, {0x460,0x480,2,1},
2286 {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1}, {0x4d0,0x4f4,2,1},
2287 {0x4f8,0x500,8,1}, {0x502,0x50e,2,1}, {0x531,0x556,1,48},
2288 {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1}, {0x1f08,0x1f0f,1,-8},
2289 {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8}, {0x1f38,0x1f3f,1,-8},
2290 {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8}, {0x1f68,0x1f6f,1,-8},
2291 {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74}, {0x1fc8,0x1fcb,1,-86},
2292 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
2293 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
2294 {0x1ffa,0x1ffb,1,-126}, {0x2126,0x2126,-1,-7517}, {0x212a,0x212a,-1,-8383},
2295 {0x212b,0x212b,-1,-8262}, {0xff21,0xff3a,1,32}, {0x10400,0x10427,1,40}
2298 static convertStruct toUpper[] =
2300 {0x61,0x7a,1,-32}, {0xb5,0xb5,-1,743}, {0xe0,0xf6,1,-32},
2301 {0xf8,0xfe,1,-32}, {0xff,0xff,-1,121}, {0x101,0x12f,2,-1},
2302 {0x131,0x131,-1,-232}, {0x133,0x137,2,-1}, {0x13a,0x148,2,-1},
2303 {0x14b,0x177,2,-1}, {0x17a,0x17e,2,-1}, {0x17f,0x17f,-1,-300},
2304 {0x183,0x185,2,-1}, {0x188,0x18c,4,-1}, {0x192,0x192,-1,-1},
2305 {0x195,0x195,-1,97}, {0x199,0x199,-1,-1}, {0x19e,0x19e,-1,130},
2306 {0x1a1,0x1a5,2,-1}, {0x1a8,0x1ad,5,-1}, {0x1b0,0x1b4,4,-1},
2307 {0x1b6,0x1b9,3,-1}, {0x1bd,0x1bd,-1,-1}, {0x1bf,0x1bf,-1,56},
2308 {0x1c5,0x1c6,1,-1}, {0x1c8,0x1c9,1,-1}, {0x1cb,0x1cc,1,-1},
2309 {0x1ce,0x1dc,2,-1}, {0x1dd,0x1dd,-1,-79}, {0x1df,0x1ef,2,-1},
2310 {0x1f2,0x1f3,1,-1}, {0x1f5,0x1f9,4,-1}, {0x1fb,0x21f,2,-1},
2311 {0x223,0x233,2,-1}, {0x253,0x253,-1,-210}, {0x254,0x254,-1,-206},
2312 {0x256,0x257,1,-205}, {0x259,0x259,-1,-202}, {0x25b,0x25b,-1,-203},
2313 {0x260,0x260,-1,-205}, {0x263,0x263,-1,-207}, {0x268,0x268,-1,-209},
2314 {0x269,0x26f,6,-211}, {0x272,0x272,-1,-213}, {0x275,0x275,-1,-214},
2315 {0x280,0x283,3,-218}, {0x288,0x288,-1,-218}, {0x28a,0x28b,1,-217},
2316 {0x292,0x292,-1,-219}, {0x3ac,0x3ac,-1,-38}, {0x3ad,0x3af,1,-37},
2317 {0x3b1,0x3c1,1,-32}, {0x3c2,0x3c2,-1,-31}, {0x3c3,0x3cb,1,-32},
2318 {0x3cc,0x3cc,-1,-64}, {0x3cd,0x3ce,1,-63}, {0x3d0,0x3d0,-1,-62},
2319 {0x3d1,0x3d1,-1,-57}, {0x3d5,0x3d5,-1,-47}, {0x3d6,0x3d6,-1,-54},
2320 {0x3d9,0x3ef,2,-1}, {0x3f0,0x3f0,-1,-86}, {0x3f1,0x3f1,-1,-80},
2321 {0x3f2,0x3f2,-1,7}, {0x3f5,0x3f5,-1,-96}, {0x3f8,0x3fb,3,-1},
2322 {0x430,0x44f,1,-32}, {0x450,0x45f,1,-80}, {0x461,0x481,2,-1},
2323 {0x48b,0x4bf,2,-1}, {0x4c2,0x4ce,2,-1}, {0x4d1,0x4f5,2,-1},
2324 {0x4f9,0x501,8,-1}, {0x503,0x50f,2,-1}, {0x561,0x586,1,-48},
2325 {0x1e01,0x1e95,2,-1}, {0x1e9b,0x1e9b,-1,-59}, {0x1ea1,0x1ef9,2,-1},
2326 {0x1f00,0x1f07,1,8}, {0x1f10,0x1f15,1,8}, {0x1f20,0x1f27,1,8},
2327 {0x1f30,0x1f37,1,8}, {0x1f40,0x1f45,1,8}, {0x1f51,0x1f57,2,8},
2328 {0x1f60,0x1f67,1,8}, {0x1f70,0x1f71,1,74}, {0x1f72,0x1f75,1,86},
2329 {0x1f76,0x1f77,1,100}, {0x1f78,0x1f79,1,128}, {0x1f7a,0x1f7b,1,112},
2330 {0x1f7c,0x1f7d,1,126}, {0x1f80,0x1f87,1,8}, {0x1f90,0x1f97,1,8},
2331 {0x1fa0,0x1fa7,1,8}, {0x1fb0,0x1fb1,1,8}, {0x1fb3,0x1fb3,-1,9},
2332 {0x1fbe,0x1fbe,-1,-7205}, {0x1fc3,0x1fc3,-1,9}, {0x1fd0,0x1fd1,1,8},
2333 {0x1fe0,0x1fe1,1,8}, {0x1fe5,0x1fe5,-1,7}, {0x1ff3,0x1ff3,-1,9},
2334 {0xff41,0xff5a,1,-32}, {0x10428,0x1044f,1,-40}
2338 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
2339 * simple case folding.
2342 utf_toupper(a)
2343 int a;
2345 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
2346 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2347 return TOUPPER_ASC(a);
2349 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
2350 /* If towupper() is available and handles Unicode, use it. */
2351 if (!(cmp_flags & CMP_INTERNAL))
2352 return towupper(a);
2353 #endif
2355 /* For characters below 128 use locale sensitive toupper(). */
2356 if (a < 128)
2357 return TOUPPER_LOC(a);
2359 /* For any other characters use the above mapping table. */
2360 return utf_convert(a, toUpper, sizeof(toUpper));
2364 utf_islower(a)
2365 int a;
2367 return (utf_toupper(a) != a);
2371 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
2372 * simple case folding.
2375 utf_tolower(a)
2376 int a;
2378 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
2379 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2380 return TOLOWER_ASC(a);
2382 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
2383 /* If towlower() is available and handles Unicode, use it. */
2384 if (!(cmp_flags & CMP_INTERNAL))
2385 return towlower(a);
2386 #endif
2388 /* For characters below 128 use locale sensitive tolower(). */
2389 if (a < 128)
2390 return TOLOWER_LOC(a);
2392 /* For any other characters use the above mapping table. */
2393 return utf_convert(a, toLower, sizeof(toLower));
2397 utf_isupper(a)
2398 int a;
2400 return (utf_tolower(a) != a);
2404 * Version of strnicmp() that handles multi-byte characters.
2405 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
2406 * probably use strnicmp(), because there are no ASCII characters in the
2407 * second byte.
2408 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
2409 * two characters otherwise.
2412 mb_strnicmp(s1, s2, nn)
2413 char_u *s1, *s2;
2414 size_t nn;
2416 int i, j, l;
2417 int cdiff;
2418 int incomplete = FALSE;
2419 int n = (int)nn;
2421 for (i = 0; i < n; i += l)
2423 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
2424 return 0;
2425 if (enc_utf8)
2427 l = utf_byte2len(s1[i]);
2428 if (l > n - i)
2430 l = n - i; /* incomplete character */
2431 incomplete = TRUE;
2433 /* Check directly first, it's faster. */
2434 for (j = 0; j < l; ++j)
2436 if (s1[i + j] != s2[i + j])
2437 break;
2438 if (s1[i + j] == 0)
2439 /* Both stings have the same bytes but are incomplete or
2440 * have illegal bytes, accept them as equal. */
2441 l = j;
2443 if (j < l)
2445 /* If one of the two characters is incomplete return -1. */
2446 if (incomplete || i + utf_byte2len(s2[i]) > n)
2447 return -1;
2448 cdiff = utf_fold(utf_ptr2char(s1 + i))
2449 - utf_fold(utf_ptr2char(s2 + i));
2450 if (cdiff != 0)
2451 return cdiff;
2454 else
2456 l = (*mb_ptr2len)(s1 + i);
2457 if (l <= 1)
2459 /* Single byte: first check normally, then with ignore case. */
2460 if (s1[i] != s2[i])
2462 cdiff = MB_TOLOWER(s1[i]) - MB_TOLOWER(s2[i]);
2463 if (cdiff != 0)
2464 return cdiff;
2467 else
2469 /* For non-Unicode multi-byte don't ignore case. */
2470 if (l > n - i)
2471 l = n - i;
2472 cdiff = STRNCMP(s1 + i, s2 + i, l);
2473 if (cdiff != 0)
2474 return cdiff;
2478 return 0;
2482 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
2483 * 'encoding' has been set to.
2485 void
2486 show_utf8()
2488 int len;
2489 int rlen = 0;
2490 char_u *line;
2491 int clen;
2492 int i;
2494 /* Get the byte length of the char under the cursor, including composing
2495 * characters. */
2496 line = ml_get_cursor();
2497 len = utfc_ptr2len(line);
2498 if (len == 0)
2500 MSG("NUL");
2501 return;
2504 clen = 0;
2505 for (i = 0; i < len; ++i)
2507 if (clen == 0)
2509 /* start of (composing) character, get its length */
2510 if (i > 0)
2512 STRCPY(IObuff + rlen, "+ ");
2513 rlen += 2;
2515 clen = utf_ptr2len(line + i);
2517 sprintf((char *)IObuff + rlen, "%02x ", line[i]);
2518 --clen;
2519 rlen += (int)STRLEN(IObuff + rlen);
2520 if (rlen > IOSIZE - 20)
2521 break;
2524 msg(IObuff);
2528 * mb_head_off() function pointer.
2529 * Return offset from "p" to the first byte of the character it points into.
2530 * If "p" points to the NUL at the end of the string return 0.
2531 * Returns 0 when already at the first byte of a character.
2534 latin_head_off(base, p)
2535 char_u *base UNUSED;
2536 char_u *p UNUSED;
2538 return 0;
2542 dbcs_head_off(base, p)
2543 char_u *base;
2544 char_u *p;
2546 char_u *q;
2548 /* It can't be a trailing byte when not using DBCS, at the start of the
2549 * string or the previous byte can't start a double-byte. */
2550 if (p <= base || MB_BYTE2LEN(p[-1]) == 1 || *p == NUL)
2551 return 0;
2553 /* This is slow: need to start at the base and go forward until the
2554 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
2555 q = base;
2556 while (q < p)
2557 q += dbcs_ptr2len(q);
2558 return (q == p) ? 0 : 1;
2562 * Special version of dbcs_head_off() that works for ScreenLines[], where
2563 * single-width DBCS_JPNU characters are stored separately.
2566 dbcs_screen_head_off(base, p)
2567 char_u *base;
2568 char_u *p;
2570 char_u *q;
2572 /* It can't be a trailing byte when not using DBCS, at the start of the
2573 * string or the previous byte can't start a double-byte.
2574 * For euc-jp an 0x8e byte in the previous cell always means we have a
2575 * lead byte in the current cell. */
2576 if (p <= base
2577 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
2578 || MB_BYTE2LEN(p[-1]) == 1
2579 || *p == NUL)
2580 return 0;
2582 /* This is slow: need to start at the base and go forward until the
2583 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
2584 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
2585 * stored as the next byte. */
2586 q = base;
2587 while (q < p)
2589 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
2590 ++q;
2591 else
2592 q += dbcs_ptr2len(q);
2594 return (q == p) ? 0 : 1;
2598 utf_head_off(base, p)
2599 char_u *base;
2600 char_u *p;
2602 char_u *q;
2603 char_u *s;
2604 int c;
2605 int len;
2606 #ifdef FEAT_ARABIC
2607 char_u *j;
2608 #endif
2610 if (*p < 0x80) /* be quick for ASCII */
2611 return 0;
2613 /* Skip backwards over trailing bytes: 10xx.xxxx
2614 * Skip backwards again if on a composing char. */
2615 for (q = p; ; --q)
2617 /* Move s to the last byte of this char. */
2618 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
2620 /* Move q to the first byte of this char. */
2621 while (q > base && (*q & 0xc0) == 0x80)
2622 --q;
2623 /* Check for illegal sequence. Do allow an illegal byte after where we
2624 * started. */
2625 len = utf8len_tab[*q];
2626 if (len != (int)(s - q + 1) && len != (int)(p - q + 1))
2627 return 0;
2629 if (q <= base)
2630 break;
2632 c = utf_ptr2char(q);
2633 if (utf_iscomposing(c))
2634 continue;
2636 #ifdef FEAT_ARABIC
2637 if (arabic_maycombine(c))
2639 /* Advance to get a sneak-peak at the next char */
2640 j = q;
2641 --j;
2642 /* Move j to the first byte of this char. */
2643 while (j > base && (*j & 0xc0) == 0x80)
2644 --j;
2645 if (arabic_combine(utf_ptr2char(j), c))
2646 continue;
2648 #endif
2649 break;
2652 return (int)(p - q);
2656 * Copy a character from "*fp" to "*tp" and advance the pointers.
2658 void
2659 mb_copy_char(fp, tp)
2660 char_u **fp;
2661 char_u **tp;
2663 int l = (*mb_ptr2len)(*fp);
2665 mch_memmove(*tp, *fp, (size_t)l);
2666 *tp += l;
2667 *fp += l;
2671 * Return the offset from "p" to the first byte of a character. When "p" is
2672 * at the start of a character 0 is returned, otherwise the offset to the next
2673 * character. Can start anywhere in a stream of bytes.
2676 mb_off_next(base, p)
2677 char_u *base;
2678 char_u *p;
2680 int i;
2681 int j;
2683 if (enc_utf8)
2685 if (*p < 0x80) /* be quick for ASCII */
2686 return 0;
2688 /* Find the next character that isn't 10xx.xxxx */
2689 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
2691 if (i > 0)
2693 /* Check for illegal sequence. */
2694 for (j = 0; p - j > base; ++j)
2695 if ((p[-j] & 0xc0) != 0x80)
2696 break;
2697 if (utf8len_tab[p[-j]] != i + j)
2698 return 0;
2700 return i;
2703 /* Only need to check if we're on a trail byte, it doesn't matter if we
2704 * want the offset to the next or current character. */
2705 return (*mb_head_off)(base, p);
2709 * Return the offset from "p" to the last byte of the character it points
2710 * into. Can start anywhere in a stream of bytes.
2713 mb_tail_off(base, p)
2714 char_u *base;
2715 char_u *p;
2717 int i;
2718 int j;
2720 if (*p == NUL)
2721 return 0;
2723 if (enc_utf8)
2725 /* Find the last character that is 10xx.xxxx */
2726 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
2728 /* Check for illegal sequence. */
2729 for (j = 0; p - j > base; ++j)
2730 if ((p[-j] & 0xc0) != 0x80)
2731 break;
2732 if (utf8len_tab[p[-j]] != i + j + 1)
2733 return 0;
2734 return i;
2737 /* It can't be the first byte if a double-byte when not using DBCS, at the
2738 * end of the string or the byte can't start a double-byte. */
2739 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
2740 return 0;
2742 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2743 return 1 - dbcs_head_off(base, p);
2747 * Find the next illegal byte sequence.
2749 void
2750 utf_find_illegal()
2752 pos_T pos = curwin->w_cursor;
2753 char_u *p;
2754 int len;
2755 vimconv_T vimconv;
2756 char_u *tofree = NULL;
2758 vimconv.vc_type = CONV_NONE;
2759 if (enc_utf8 && (enc_canon_props(curbuf->b_p_fenc) & ENC_8BIT))
2761 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
2762 * possibly a utf-8 file with illegal bytes. Setup for conversion
2763 * from utf-8 to 'fileencoding'. */
2764 convert_setup(&vimconv, p_enc, curbuf->b_p_fenc);
2767 #ifdef FEAT_VIRTUALEDIT
2768 curwin->w_cursor.coladd = 0;
2769 #endif
2770 for (;;)
2772 p = ml_get_cursor();
2773 if (vimconv.vc_type != CONV_NONE)
2775 vim_free(tofree);
2776 tofree = string_convert(&vimconv, p, NULL);
2777 if (tofree == NULL)
2778 break;
2779 p = tofree;
2782 while (*p != NUL)
2784 /* Illegal means that there are not enough trail bytes (checked by
2785 * utf_ptr2len()) or too many of them (overlong sequence). */
2786 len = utf_ptr2len(p);
2787 if (*p >= 0x80 && (len == 1
2788 || utf_char2len(utf_ptr2char(p)) != len))
2790 if (vimconv.vc_type == CONV_NONE)
2791 curwin->w_cursor.col += (colnr_T)(p - ml_get_cursor());
2792 else
2794 int l;
2796 len = (int)(p - tofree);
2797 for (p = ml_get_cursor(); *p != NUL && len-- > 0; p += l)
2799 l = utf_ptr2len(p);
2800 curwin->w_cursor.col += l;
2803 goto theend;
2805 p += len;
2807 if (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count)
2808 break;
2809 ++curwin->w_cursor.lnum;
2810 curwin->w_cursor.col = 0;
2813 /* didn't find it: don't move and beep */
2814 curwin->w_cursor = pos;
2815 beep_flush();
2817 theend:
2818 vim_free(tofree);
2819 convert_setup(&vimconv, NULL, NULL);
2822 #if defined(HAVE_GTK2) || defined(PROTO)
2824 * Return TRUE if string "s" is a valid utf-8 string.
2825 * When "end" is NULL stop at the first NUL.
2826 * When "end" is positive stop there.
2829 utf_valid_string(s, end)
2830 char_u *s;
2831 char_u *end;
2833 int l;
2834 char_u *p = s;
2836 while (end == NULL ? *p != NUL : p < end)
2838 l = utf8len_tab_zero[*p];
2839 if (l == 0)
2840 return FALSE; /* invalid lead byte */
2841 if (end != NULL && p + l > end)
2842 return FALSE; /* incomplete byte sequence */
2843 ++p;
2844 while (--l > 0)
2845 if ((*p++ & 0xc0) != 0x80)
2846 return FALSE; /* invalid trail byte */
2848 return TRUE;
2850 #endif
2852 #if defined(FEAT_GUI) || defined(PROTO)
2854 * Special version of mb_tail_off() for use in ScreenLines[].
2857 dbcs_screen_tail_off(base, p)
2858 char_u *base;
2859 char_u *p;
2861 /* It can't be the first byte if a double-byte when not using DBCS, at the
2862 * end of the string or the byte can't start a double-byte.
2863 * For euc-jp an 0x8e byte always means we have a lead byte in the current
2864 * cell. */
2865 if (*p == NUL || p[1] == NUL
2866 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
2867 || MB_BYTE2LEN(*p) == 1)
2868 return 0;
2870 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2871 return 1 - dbcs_screen_head_off(base, p);
2873 #endif
2876 * If the cursor moves on an trail byte, set the cursor on the lead byte.
2877 * Thus it moves left if necessary.
2878 * Return TRUE when the cursor was adjusted.
2880 void
2881 mb_adjust_cursor()
2883 mb_adjustpos(&curwin->w_cursor);
2887 * Adjust position "*lp" to point to the first byte of a multi-byte character.
2888 * If it points to a tail byte it's moved backwards to the head byte.
2890 void
2891 mb_adjustpos(lp)
2892 pos_T *lp;
2894 char_u *p;
2896 if (lp->col > 0
2897 #ifdef FEAT_VIRTUALEDIT
2898 || lp->coladd > 1
2899 #endif
2902 p = ml_get(lp->lnum);
2903 lp->col -= (*mb_head_off)(p, p + lp->col);
2904 #ifdef FEAT_VIRTUALEDIT
2905 /* Reset "coladd" when the cursor would be on the right half of a
2906 * double-wide character. */
2907 if (lp->coladd == 1
2908 && p[lp->col] != TAB
2909 && vim_isprintc((*mb_ptr2char)(p + lp->col))
2910 && ptr2cells(p + lp->col) > 1)
2911 lp->coladd = 0;
2912 #endif
2917 * Return a pointer to the character before "*p", if there is one.
2919 char_u *
2920 mb_prevptr(line, p)
2921 char_u *line; /* start of the string */
2922 char_u *p;
2924 if (p > line)
2925 mb_ptr_back(line, p);
2926 return p;
2930 * Return the character length of "str". Each multi-byte character (with
2931 * following composing characters) counts as one.
2934 mb_charlen(str)
2935 char_u *str;
2937 char_u *p = str;
2938 int count;
2940 if (p == NULL)
2941 return 0;
2943 for (count = 0; *p != NUL; count++)
2944 p += (*mb_ptr2len)(p);
2946 return count;
2949 #if defined(FEAT_SPELL) || defined(PROTO)
2951 * Like mb_charlen() but for a string with specified length.
2954 mb_charlen_len(str, len)
2955 char_u *str;
2956 int len;
2958 char_u *p = str;
2959 int count;
2961 for (count = 0; *p != NUL && p < str + len; count++)
2962 p += (*mb_ptr2len)(p);
2964 return count;
2966 #endif
2969 * Try to un-escape a multi-byte character.
2970 * Used for the "to" and "from" part of a mapping.
2971 * Return the un-escaped string if it is a multi-byte character, and advance
2972 * "pp" to just after the bytes that formed it.
2973 * Return NULL if no multi-byte char was found.
2975 char_u *
2976 mb_unescape(pp)
2977 char_u **pp;
2979 static char_u buf[MB_MAXBYTES + 1];
2980 int n, m = 0;
2981 char_u *str = *pp;
2983 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
2984 * KS_EXTRA KE_CSI to CSI. */
2985 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
2987 if (str[n] == K_SPECIAL
2988 && str[n + 1] == KS_SPECIAL
2989 && str[n + 2] == KE_FILLER)
2991 buf[m++] = K_SPECIAL;
2992 n += 2;
2994 else if ((str[n] == K_SPECIAL
2995 # ifdef FEAT_GUI
2996 || str[n] == CSI
2997 # endif
2999 && str[n + 1] == KS_EXTRA
3000 && str[n + 2] == (int)KE_CSI)
3002 buf[m++] = CSI;
3003 n += 2;
3005 else if (str[n] == K_SPECIAL
3006 # ifdef FEAT_GUI
3007 || str[n] == CSI
3008 # endif
3010 break; /* a special key can't be a multibyte char */
3011 else
3012 buf[m++] = str[n];
3013 buf[m] = NUL;
3015 /* Return a multi-byte character if it's found. An illegal sequence
3016 * will result in a 1 here. */
3017 if ((*mb_ptr2len)(buf) > 1)
3019 *pp = str + n + 1;
3020 return buf;
3023 return NULL;
3027 * Return TRUE if the character at "row"/"col" on the screen is the left side
3028 * of a double-width character.
3029 * Caller must make sure "row" and "col" are not invalid!
3032 mb_lefthalve(row, col)
3033 int row;
3034 int col;
3036 #ifdef FEAT_HANGULIN
3037 if (composing_hangul)
3038 return TRUE;
3039 #endif
3040 return (*mb_off2cells)(LineOffset[row] + col,
3041 LineOffset[row] + screen_Columns) > 1;
3045 * Correct a position on the screen, if it's the right half of a double-wide
3046 * char move it to the left half. Returns the corrected column.
3049 mb_fix_col(col, row)
3050 int col;
3051 int row;
3053 col = check_col(col);
3054 row = check_row(row);
3055 if (has_mbyte && ScreenLines != NULL && col > 0
3056 && ((enc_dbcs
3057 && ScreenLines[LineOffset[row] + col] != NUL
3058 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
3059 ScreenLines + LineOffset[row] + col))
3060 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
3061 return col - 1;
3062 return col;
3064 #endif
3066 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3067 static int enc_alias_search __ARGS((char_u *name));
3070 * Skip the Vim specific head of a 'encoding' name.
3072 char_u *
3073 enc_skip(p)
3074 char_u *p;
3076 if (STRNCMP(p, "2byte-", 6) == 0)
3077 return p + 6;
3078 if (STRNCMP(p, "8bit-", 5) == 0)
3079 return p + 5;
3080 return p;
3084 * Find the canonical name for encoding "enc".
3085 * When the name isn't recognized, returns "enc" itself, but with all lower
3086 * case characters and '_' replaced with '-'.
3087 * Returns an allocated string. NULL for out-of-memory.
3089 char_u *
3090 enc_canonize(enc)
3091 char_u *enc;
3093 char_u *r;
3094 char_u *p, *s;
3095 int i;
3097 # ifdef FEAT_MBYTE
3098 if (STRCMP(enc, "default") == 0)
3100 /* Use the default encoding as it's found by set_init_1(). */
3101 r = get_encoding_default();
3102 if (r == NULL)
3103 r = (char_u *)"latin1";
3104 return vim_strsave(r);
3106 # endif
3108 /* copy "enc" to allocated memory, with room for two '-' */
3109 r = alloc((unsigned)(STRLEN(enc) + 3));
3110 if (r != NULL)
3112 /* Make it all lower case and replace '_' with '-'. */
3113 p = r;
3114 for (s = enc; *s != NUL; ++s)
3116 if (*s == '_')
3117 *p++ = '-';
3118 else
3119 *p++ = TOLOWER_ASC(*s);
3121 *p = NUL;
3123 /* Skip "2byte-" and "8bit-". */
3124 p = enc_skip(r);
3126 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3127 if (STRNCMP(p, "microsoft-cp", 12) == 0)
3128 STRMOVE(p, p + 10);
3130 /* "iso8859" -> "iso-8859" */
3131 if (STRNCMP(p, "iso8859", 7) == 0)
3133 STRMOVE(p + 4, p + 3);
3134 p[3] = '-';
3137 /* "iso-8859n" -> "iso-8859-n" */
3138 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
3140 STRMOVE(p + 9, p + 8);
3141 p[8] = '-';
3144 /* "latin-N" -> "latinN" */
3145 if (STRNCMP(p, "latin-", 6) == 0)
3146 STRMOVE(p + 5, p + 6);
3148 if (enc_canon_search(p) >= 0)
3150 /* canonical name can be used unmodified */
3151 if (p != r)
3152 STRMOVE(r, p);
3154 else if ((i = enc_alias_search(p)) >= 0)
3156 /* alias recognized, get canonical name */
3157 vim_free(r);
3158 r = vim_strsave((char_u *)enc_canon_table[i].name);
3161 return r;
3165 * Search for an encoding alias of "name".
3166 * Returns -1 when not found.
3168 static int
3169 enc_alias_search(name)
3170 char_u *name;
3172 int i;
3174 for (i = 0; enc_alias_table[i].name != NULL; ++i)
3175 if (STRCMP(name, enc_alias_table[i].name) == 0)
3176 return enc_alias_table[i].canon;
3177 return -1;
3179 #endif
3181 #if defined(FEAT_MBYTE) || defined(PROTO)
3183 #ifdef HAVE_LANGINFO_H
3184 # include <langinfo.h>
3185 #endif
3188 * Get the canonicalized encoding of the current locale.
3189 * Returns an allocated string when successful, NULL when not.
3191 char_u *
3192 enc_locale()
3194 #ifndef WIN3264
3195 char *s;
3196 char *p;
3197 int i;
3198 #endif
3199 char buf[50];
3200 #ifdef WIN3264
3201 long acp = GetACP();
3203 if (acp == 1200)
3204 STRCPY(buf, "ucs-2le");
3205 else if (acp == 1252) /* cp1252 is used as latin1 */
3206 STRCPY(buf, "latin1");
3207 else
3208 sprintf(buf, "cp%ld", acp);
3209 #else
3210 # ifdef HAVE_NL_LANGINFO_CODESET
3211 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
3212 # endif
3213 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
3214 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
3215 # endif
3216 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
3217 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
3218 s = getenv("LANG");
3220 if (s == NULL || *s == NUL)
3221 return FAIL;
3223 /* The most generic locale format is:
3224 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
3225 * If there is a '.' remove the part before it.
3226 * if there is something after the codeset, remove it.
3227 * Make the name lowercase and replace '_' with '-'.
3228 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
3229 * "ko_KR.EUC" == "euc-kr"
3231 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
3233 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
3234 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
3236 /* copy "XY.EUC" to "euc-XY" to buf[10] */
3237 STRCPY(buf + 10, "euc-");
3238 buf[14] = p[-2];
3239 buf[15] = p[-1];
3240 buf[16] = 0;
3241 s = buf + 10;
3243 else
3244 s = p + 1;
3246 for (i = 0; s[i] != NUL && i < (int)sizeof(buf) - 1; ++i)
3248 if (s[i] == '_' || s[i] == '-')
3249 buf[i] = '-';
3250 else if (isalnum((int)s[i]))
3251 buf[i] = TOLOWER_ASC(s[i]);
3252 else
3253 break;
3255 buf[i] = NUL;
3256 #endif
3258 return enc_canonize((char_u *)buf);
3261 #if defined(WIN3264) || defined(PROTO)
3263 * Convert an encoding name to an MS-Windows codepage.
3264 * Returns zero if no codepage can be figured out.
3267 encname2codepage(name)
3268 char_u *name;
3270 int cp;
3271 char_u *p = name;
3272 int idx;
3274 if (STRNCMP(p, "8bit-", 5) == 0)
3275 p += 5;
3276 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
3277 p += 6;
3279 if (p[0] == 'c' && p[1] == 'p')
3280 cp = atoi(p + 2);
3281 else if ((idx = enc_canon_search(p)) >= 0)
3282 cp = enc_canon_table[idx].codepage;
3283 else
3284 return 0;
3285 if (IsValidCodePage(cp))
3286 return cp;
3287 return 0;
3289 #endif
3291 # if defined(USE_ICONV) || defined(PROTO)
3293 static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp, int *resultlenp));
3296 * Call iconv_open() with a check if iconv() works properly (there are broken
3297 * versions).
3298 * Returns (void *)-1 if failed.
3299 * (should return iconv_t, but that causes problems with prototypes).
3301 void *
3302 my_iconv_open(to, from)
3303 char_u *to;
3304 char_u *from;
3306 iconv_t fd;
3307 #define ICONV_TESTLEN 400
3308 char_u tobuf[ICONV_TESTLEN];
3309 char *p;
3310 size_t tolen;
3311 static int iconv_ok = -1;
3313 if (iconv_ok == FALSE)
3314 return (void *)-1; /* detected a broken iconv() previously */
3316 #ifdef DYNAMIC_ICONV
3317 /* Check if the iconv.dll can be found. */
3318 if (!iconv_enabled(TRUE))
3319 return (void *)-1;
3320 #endif
3322 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
3324 if (fd != (iconv_t)-1 && iconv_ok == -1)
3327 * Do a dummy iconv() call to check if it actually works. There is a
3328 * version of iconv() on Linux that is broken. We can't ignore it,
3329 * because it's wide-spread. The symptoms are that after outputting
3330 * the initial shift state the "to" pointer is NULL and conversion
3331 * stops for no apparent reason after about 8160 characters.
3333 p = (char *)tobuf;
3334 tolen = ICONV_TESTLEN;
3335 (void)iconv(fd, NULL, NULL, &p, &tolen);
3336 if (p == NULL)
3338 iconv_ok = FALSE;
3339 iconv_close(fd);
3340 fd = (iconv_t)-1;
3342 else
3343 iconv_ok = TRUE;
3346 return (void *)fd;
3350 * Convert the string "str[slen]" with iconv().
3351 * If "unconvlenp" is not NULL handle the string ending in an incomplete
3352 * sequence and set "*unconvlenp" to the length of it.
3353 * Returns the converted string in allocated memory. NULL for an error.
3354 * If resultlenp is not NULL, sets it to the result length in bytes.
3356 static char_u *
3357 iconv_string(vcp, str, slen, unconvlenp, resultlenp)
3358 vimconv_T *vcp;
3359 char_u *str;
3360 int slen;
3361 int *unconvlenp;
3362 int *resultlenp;
3364 const char *from;
3365 size_t fromlen;
3366 char *to;
3367 size_t tolen;
3368 size_t len = 0;
3369 size_t done = 0;
3370 char_u *result = NULL;
3371 char_u *p;
3372 int l;
3374 from = (char *)str;
3375 fromlen = slen;
3376 for (;;)
3378 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
3380 /* Allocate enough room for most conversions. When re-allocating
3381 * increase the buffer size. */
3382 len = len + fromlen * 2 + 40;
3383 p = alloc((unsigned)len);
3384 if (p != NULL && done > 0)
3385 mch_memmove(p, result, done);
3386 vim_free(result);
3387 result = p;
3388 if (result == NULL) /* out of memory */
3389 break;
3392 to = (char *)result + done;
3393 tolen = len - done - 2;
3394 /* Avoid a warning for systems with a wrong iconv() prototype by
3395 * casting the second argument to void *. */
3396 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
3397 != (size_t)-1)
3399 /* Finished, append a NUL. */
3400 *to = NUL;
3401 break;
3404 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
3405 * iconv library may use one of them. */
3406 if (!vcp->vc_fail && unconvlenp != NULL
3407 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3409 /* Handle an incomplete sequence at the end. */
3410 *to = NUL;
3411 *unconvlenp = (int)fromlen;
3412 break;
3415 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
3416 * iconv library may use one of them. */
3417 else if (!vcp->vc_fail
3418 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
3419 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3421 /* Can't convert: insert a '?' and skip a character. This assumes
3422 * conversion from 'encoding' to something else. In other
3423 * situations we don't know what to skip anyway. */
3424 *to++ = '?';
3425 if ((*mb_ptr2cells)((char_u *)from) > 1)
3426 *to++ = '?';
3427 if (enc_utf8)
3428 l = utfc_ptr2len_len((char_u *)from, (int)fromlen);
3429 else
3431 l = (*mb_ptr2len)((char_u *)from);
3432 if (l > (int)fromlen)
3433 l = (int)fromlen;
3435 from += l;
3436 fromlen -= l;
3438 else if (ICONV_ERRNO != ICONV_E2BIG)
3440 /* conversion failed */
3441 vim_free(result);
3442 result = NULL;
3443 break;
3445 /* Not enough room or skipping illegal sequence. */
3446 done = to - (char *)result;
3449 if (resultlenp != NULL)
3450 *resultlenp = (int)(to - (char *)result);
3451 return result;
3454 # if defined(DYNAMIC_ICONV) || defined(PROTO)
3456 * Dynamically load the "iconv.dll" on Win32.
3459 #ifndef DYNAMIC_ICONV /* just generating prototypes */
3460 # define HINSTANCE int
3461 #endif
3462 static HINSTANCE hIconvDLL = 0;
3463 static HINSTANCE hMsvcrtDLL = 0;
3465 # ifndef DYNAMIC_ICONV_DLL
3466 # define DYNAMIC_ICONV_DLL "iconv.dll"
3467 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
3468 # endif
3469 # ifndef DYNAMIC_MSVCRT_DLL
3470 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
3471 # endif
3474 * Try opening the iconv.dll and return TRUE if iconv() can be used.
3477 iconv_enabled(verbose)
3478 int verbose;
3480 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
3481 return TRUE;
3482 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
3483 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
3484 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
3485 if (hIconvDLL != 0)
3486 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
3487 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
3489 /* Only give the message when 'verbose' is set, otherwise it might be
3490 * done whenever a conversion is attempted. */
3491 if (verbose && p_verbose > 0)
3493 verbose_enter();
3494 EMSG2(_(e_loadlib),
3495 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
3496 verbose_leave();
3498 iconv_end();
3499 return FALSE;
3502 iconv = (void *)GetProcAddress(hIconvDLL, "libiconv");
3503 iconv_open = (void *)GetProcAddress(hIconvDLL, "libiconv_open");
3504 iconv_close = (void *)GetProcAddress(hIconvDLL, "libiconv_close");
3505 iconvctl = (void *)GetProcAddress(hIconvDLL, "libiconvctl");
3506 iconv_errno = (void *)GetProcAddress(hMsvcrtDLL, "_errno");
3507 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
3508 || iconvctl == NULL || iconv_errno == NULL)
3510 iconv_end();
3511 if (verbose && p_verbose > 0)
3513 verbose_enter();
3514 EMSG2(_(e_loadfunc), "for libiconv");
3515 verbose_leave();
3517 return FALSE;
3519 return TRUE;
3522 void
3523 iconv_end()
3525 /* Don't use iconv() when inputting or outputting characters. */
3526 if (input_conv.vc_type == CONV_ICONV)
3527 convert_setup(&input_conv, NULL, NULL);
3528 if (output_conv.vc_type == CONV_ICONV)
3529 convert_setup(&output_conv, NULL, NULL);
3531 if (hIconvDLL != 0)
3532 FreeLibrary(hIconvDLL);
3533 if (hMsvcrtDLL != 0)
3534 FreeLibrary(hMsvcrtDLL);
3535 hIconvDLL = 0;
3536 hMsvcrtDLL = 0;
3538 # endif /* DYNAMIC_ICONV */
3539 # endif /* USE_ICONV */
3541 #endif /* FEAT_MBYTE */
3543 #if defined(FEAT_XIM) || defined(PROTO)
3545 # ifdef FEAT_GUI_MACVIM
3546 typedef int GtkIMContext;
3547 typedef int * gpointer;
3548 typedef char gchar;
3549 # define g_return_if_fail(x) if (!(x)) return;
3550 # endif
3552 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)
3553 static int xim_has_preediting INIT(= FALSE); /* IM current status */
3556 * Set preedit_start_col to the current cursor position.
3558 static void
3559 init_preedit_start_col(void)
3561 if (State & CMDLINE)
3562 preedit_start_col = cmdline_getvcol_cursor();
3563 else if (curwin != NULL)
3564 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
3565 /* Prevent that preediting marks the buffer as changed. */
3566 xim_changed_while_preediting = curbuf->b_changed;
3568 # endif
3570 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) && !defined(PROTO)
3572 static int im_is_active = FALSE; /* IM is enabled for current mode */
3573 static int preedit_is_active = FALSE;
3574 static int im_preedit_cursor = 0; /* cursor offset in characters */
3575 static int im_preedit_trailing = 0; /* number of characters after cursor */
3577 static unsigned long im_commit_handler_id = 0;
3578 # ifndef FEAT_GUI_MACVIM
3579 static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
3580 static unsigned int im_activatekey_state = 0;
3581 # endif
3583 # ifndef FEAT_GUI_MACVIM
3584 void
3585 im_set_active(int active)
3587 int was_active;
3589 was_active = !!im_is_active;
3590 im_is_active = (active && !p_imdisable);
3592 if (im_is_active != was_active)
3593 xim_reset();
3595 # endif
3597 void
3598 xim_set_focus(int focus)
3600 # ifndef FEAT_GUI_MACVIM
3601 if (xic != NULL)
3603 if (focus)
3604 gtk_im_context_focus_in(xic);
3605 else
3606 gtk_im_context_focus_out(xic);
3608 # endif
3611 # ifndef FEAT_GUI_MACVIM
3612 void
3613 im_set_position(int row, int col)
3615 if (xic != NULL)
3617 GdkRectangle area;
3619 area.x = FILL_X(col);
3620 area.y = FILL_Y(row);
3621 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
3622 area.height = gui.char_height;
3624 gtk_im_context_set_cursor_location(xic, &area);
3627 # endif
3629 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
3630 void
3631 xim_set_preedit(void)
3633 im_set_position(gui.row, gui.col);
3635 # endif
3637 static void
3638 im_add_to_input(char_u *str, int len)
3640 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
3641 if (input_conv.vc_type != CONV_NONE)
3643 str = string_convert(&input_conv, str, &len);
3644 g_return_if_fail(str != NULL);
3647 add_to_input_buf_csi(str, len);
3649 if (input_conv.vc_type != CONV_NONE)
3650 vim_free(str);
3652 # ifndef FEAT_GUI_MACVIM
3653 if (p_mh) /* blank out the pointer if necessary */
3654 gui_mch_mousehide(TRUE);
3655 # endif
3658 static void
3659 im_delete_preedit(void)
3661 char_u bskey[] = {CSI, 'k', 'b'};
3662 char_u delkey[] = {CSI, 'k', 'D'};
3664 if (State & NORMAL)
3666 im_preedit_cursor = 0;
3667 return;
3669 for (; im_preedit_cursor > 0; --im_preedit_cursor)
3670 add_to_input_buf(bskey, (int)sizeof(bskey));
3672 for (; im_preedit_trailing > 0; --im_preedit_trailing)
3673 add_to_input_buf(delkey, (int)sizeof(delkey));
3677 * Move the cursor left by "num_move_back" characters.
3678 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
3679 * these K_LEFT keys.
3681 static void
3682 im_correct_cursor(int num_move_back)
3684 char_u backkey[] = {CSI, 'k', 'l'};
3686 if (State & NORMAL)
3687 return;
3688 # ifdef FEAT_RIGHTLEFT
3689 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
3690 backkey[2] = 'r';
3691 # endif
3692 for (; num_move_back > 0; --num_move_back)
3693 add_to_input_buf(backkey, (int)sizeof(backkey));
3696 # ifndef FEAT_GUI_MACVIM
3697 static int xim_expected_char = NUL;
3698 static int xim_ignored_char = FALSE;
3699 # endif
3702 * Update the mode and cursor while in an IM callback.
3704 static void
3705 im_show_info(void)
3707 int old_vgetc_busy;
3709 old_vgetc_busy = vgetc_busy;
3710 vgetc_busy = TRUE;
3711 showmode();
3712 vgetc_busy = old_vgetc_busy;
3713 setcursor();
3714 out_flush();
3717 # ifndef FEAT_GUI_MACVIM
3719 * Callback invoked when the user finished preediting.
3720 * Put the final string into the input buffer.
3722 static void
3723 im_commit_cb(GtkIMContext *context UNUSED,
3724 const gchar *str,
3725 gpointer data UNUSED)
3727 int slen = (int)STRLEN(str);
3728 int add_to_input = TRUE;
3729 int clen;
3730 int len = slen;
3731 int commit_with_preedit = TRUE;
3732 char_u *im_str, *p;
3734 #ifdef XIM_DEBUG
3735 xim_log("im_commit_cb(): %s\n", str);
3736 #endif
3738 /* The imhangul module doesn't reset the preedit string before
3739 * committing. Call im_delete_preedit() to work around that. */
3740 im_delete_preedit();
3742 /* Indicate that preediting has finished. */
3743 if (preedit_start_col == MAXCOL)
3745 init_preedit_start_col();
3746 commit_with_preedit = FALSE;
3749 /* The thing which setting "preedit_start_col" to MAXCOL means that
3750 * "preedit_start_col" will be set forcely when calling
3751 * preedit_changed_cb() next time.
3752 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
3753 * is simulating the preediting by using add_to_input_str(). when
3754 * preedit begin immediately before committed, the typebuf is not
3755 * flushed to screen, then it can't get correct "preedit_start_col".
3756 * Thus, it should calculate the cells by adding cells of the committed
3757 * string. */
3758 if (input_conv.vc_type != CONV_NONE)
3760 im_str = string_convert(&input_conv, (char_u *)str, &len);
3761 g_return_if_fail(im_str != NULL);
3763 else
3764 im_str = (char_u *)str;
3765 clen = 0;
3766 for (p = im_str; p < im_str + len; p += (*mb_ptr2len)(p))
3767 clen += (*mb_ptr2cells)(p);
3768 if (input_conv.vc_type != CONV_NONE)
3769 vim_free(im_str);
3770 preedit_start_col += clen;
3772 /* Is this a single character that matches a keypad key that's just
3773 * been pressed? If so, we don't want it to be entered as such - let
3774 * us carry on processing the raw keycode so that it may be used in
3775 * mappings as <kSomething>. */
3776 if (xim_expected_char != NUL)
3778 /* We're currently processing a keypad or other special key */
3779 if (slen == 1 && str[0] == xim_expected_char)
3781 /* It's a match - don't do it here */
3782 xim_ignored_char = TRUE;
3783 add_to_input = FALSE;
3785 else
3787 /* Not a match */
3788 xim_ignored_char = FALSE;
3792 if (add_to_input)
3793 im_add_to_input((char_u *)str, slen);
3795 /* Inserting chars while "im_is_active" is set does not cause a change of
3796 * buffer. When the chars are committed the buffer must be marked as
3797 * changed. */
3798 if (!commit_with_preedit)
3799 preedit_start_col = MAXCOL;
3801 /* This flag is used in changed() at next call. */
3802 xim_changed_while_preediting = TRUE;
3804 if (gtk_main_level() > 0)
3805 gtk_main_quit();
3807 # endif
3810 * Callback invoked after start to the preedit.
3812 # ifndef FEAT_GUI_MACVIM
3813 static void
3814 im_preedit_start_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
3815 # else
3816 void
3817 im_preedit_start_macvim()
3818 # endif
3820 #ifdef XIM_DEBUG
3821 xim_log("im_preedit_start_cb()\n");
3822 #endif
3824 im_is_active = TRUE;
3825 preedit_is_active = TRUE;
3826 gui_update_cursor(TRUE, FALSE);
3827 im_show_info();
3831 * Callback invoked after end to the preedit.
3833 # ifndef FEAT_GUI_MACVIM
3834 static void
3835 im_preedit_end_cb(GtkIMContext *context UNUSED, gpointer data UNUSED)
3836 # else
3837 void
3838 im_preedit_end_macvim()
3839 # endif
3841 #ifdef XIM_DEBUG
3842 xim_log("im_preedit_end_cb()\n");
3843 #endif
3844 im_delete_preedit();
3846 /* Indicate that preediting has finished */
3847 preedit_start_col = MAXCOL;
3848 xim_has_preediting = FALSE;
3850 #if 0
3851 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
3852 * switched off unintentionally. We now use preedit_is_active (added by
3853 * SungHyun Nam). */
3854 im_is_active = FALSE;
3855 #endif
3856 preedit_is_active = FALSE;
3857 gui_update_cursor(TRUE, FALSE);
3858 im_show_info();
3862 * Callback invoked after changes to the preedit string. If the preedit
3863 * string was empty before, remember the preedit start column so we know
3864 * where to apply feedback attributes. Delete the previous preedit string
3865 * if there was one, save the new preedit cursor offset, and put the new
3866 * string into the input buffer.
3868 * TODO: The pragmatic "put into input buffer" approach used here has
3869 * several fundamental problems:
3871 * - The characters in the preedit string are subject to remapping.
3872 * That's broken, only the finally committed string should be remapped.
3874 * - There is a race condition involved: The retrieved value for the
3875 * current cursor position will be wrong if any unprocessed characters
3876 * are still queued in the input buffer.
3878 * - Due to the lack of synchronization between the file buffer in memory
3879 * and any typed characters, it's practically impossible to implement the
3880 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
3881 * modules for languages such as Thai are likely to rely on this feature
3882 * for proper operation.
3884 * Conclusions: I think support for preediting needs to be moved to the
3885 * core parts of Vim. Ideally, until it has been committed, the preediting
3886 * string should only be displayed and not affect the buffer content at all.
3887 * The question how to deal with the synchronization issue still remains.
3888 * Circumventing the input buffer is probably not desirable. Anyway, I think
3889 * implementing "retrieve_surrounding" is the only hard problem.
3891 * One way to solve all of this in a clean manner would be to queue all key
3892 * press/release events "as is" in the input buffer, and apply the IM filtering
3893 * at the receiving end of the queue. This, however, would have a rather large
3894 * impact on the code base. If there is an easy way to force processing of all
3895 * remaining input from within the "retrieve_surrounding" signal handler, this
3896 * might not be necessary. Gotta ask on vim-dev for opinions.
3898 # ifndef FEAT_GUI_MACVIM
3899 static void
3900 im_preedit_changed_cb(GtkIMContext *context, gpointer data UNUSED)
3901 # else
3902 void
3903 im_preedit_changed_macvim(char *preedit_string, int cursor_index)
3904 # endif
3906 # ifndef FEAT_GUI_MACVIM
3907 char *preedit_string = NULL;
3908 int cursor_index = 0;
3909 # endif
3910 int num_move_back = 0;
3911 char_u *str;
3912 char_u *p;
3913 int i;
3915 # ifndef FEAT_GUI_MACVIM
3916 gtk_im_context_get_preedit_string(context,
3917 &preedit_string, NULL,
3918 &cursor_index);
3919 # endif
3921 #ifdef XIM_DEBUG
3922 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
3923 #endif
3925 g_return_if_fail(preedit_string != NULL); /* just in case */
3927 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
3928 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
3930 xim_has_preediting = TRUE;
3932 /* Urgh, this breaks if the input buffer isn't empty now */
3933 init_preedit_start_col();
3935 else if (cursor_index == 0 && preedit_string[0] == '\0')
3937 xim_has_preediting = FALSE;
3939 /* If at the start position (after typing backspace)
3940 * preedit_start_col must be reset. */
3941 preedit_start_col = MAXCOL;
3944 im_delete_preedit();
3947 * Compute the end of the preediting area: "preedit_end_col".
3948 * According to the documentation of gtk_im_context_get_preedit_string(),
3949 * the cursor_pos output argument returns the offset in bytes. This is
3950 * unfortunately not true -- real life shows the offset is in characters,
3951 * and the GTK+ source code agrees with me. Will file a bug later.
3953 if (preedit_start_col != MAXCOL)
3954 preedit_end_col = preedit_start_col;
3955 str = (char_u *)preedit_string;
3956 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
3958 int is_composing;
3960 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
3962 * These offsets are used as counters when generating <BS> and <Del>
3963 * to delete the preedit string. So don't count composing characters
3964 * unless 'delcombine' is enabled.
3966 if (!is_composing || p_deco)
3968 if (i < cursor_index)
3969 ++im_preedit_cursor;
3970 else
3971 ++im_preedit_trailing;
3973 if (!is_composing && i >= cursor_index)
3975 /* This is essentially the same as im_preedit_trailing, except
3976 * composing characters are not counted even if p_deco is set. */
3977 ++num_move_back;
3979 if (preedit_start_col != MAXCOL)
3980 preedit_end_col += utf_ptr2cells(p);
3983 if (p > str)
3985 im_add_to_input(str, (int)(p - str));
3986 im_correct_cursor(num_move_back);
3989 # ifndef FEAT_GUI_MACVIM
3990 g_free(preedit_string);
3992 if (gtk_main_level() > 0)
3993 gtk_main_quit();
3994 # endif
3997 # ifndef FEAT_GUI_MACVIM
3999 * Translate the Pango attributes at iter to Vim highlighting attributes.
4000 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4001 * too much impact -- right now we handle even more attributes than necessary
4002 * for the IM modules I tested with.
4004 static int
4005 translate_pango_attributes(PangoAttrIterator *iter)
4007 PangoAttribute *attr;
4008 int char_attr = HL_NORMAL;
4010 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
4011 if (attr != NULL && ((PangoAttrInt *)attr)->value
4012 != (int)PANGO_UNDERLINE_NONE)
4013 char_attr |= HL_UNDERLINE;
4015 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
4016 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
4017 char_attr |= HL_BOLD;
4019 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
4020 if (attr != NULL && ((PangoAttrInt *)attr)->value
4021 != (int)PANGO_STYLE_NORMAL)
4022 char_attr |= HL_ITALIC;
4024 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
4025 if (attr != NULL)
4027 const PangoColor *color = &((PangoAttrColor *)attr)->color;
4029 /* Assume inverse if black background is requested */
4030 if ((color->red | color->green | color->blue) == 0)
4031 char_attr |= HL_INVERSE;
4034 return char_attr;
4036 # endif
4039 * Retrieve the highlighting attributes at column col in the preedit string.
4040 * Return -1 if not in preediting mode or if col is out of range.
4043 im_get_feedback_attr(int col)
4045 # ifndef FEAT_GUI_MACVIM
4046 char *preedit_string = NULL;
4047 PangoAttrList *attr_list = NULL;
4048 int char_attr = -1;
4050 if (xic == NULL)
4051 return char_attr;
4053 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
4055 if (preedit_string != NULL && attr_list != NULL)
4057 int idx;
4059 /* Get the byte index as used by PangoAttrIterator */
4060 for (idx = 0; col > 0 && preedit_string[idx] != '\0'; --col)
4061 idx += utfc_ptr2len((char_u *)preedit_string + idx);
4063 if (preedit_string[idx] != '\0')
4065 PangoAttrIterator *iter;
4066 int start, end;
4068 char_attr = HL_NORMAL;
4069 iter = pango_attr_list_get_iterator(attr_list);
4071 /* Extract all relevant attributes from the list. */
4074 pango_attr_iterator_range(iter, &start, &end);
4076 if (idx >= start && idx < end)
4077 char_attr |= translate_pango_attributes(iter);
4079 while (pango_attr_iterator_next(iter));
4081 pango_attr_iterator_destroy(iter);
4085 if (attr_list != NULL)
4086 pango_attr_list_unref(attr_list);
4087 g_free(preedit_string);
4089 return char_attr;
4090 # else
4091 return HL_UNDERLINE;
4092 # endif
4095 void
4096 xim_init(void)
4098 #ifdef XIM_DEBUG
4099 xim_log("xim_init()\n");
4100 #endif
4102 # ifndef FEAT_GUI_MACVIM
4103 g_return_if_fail(gui.drawarea != NULL);
4104 g_return_if_fail(gui.drawarea->window != NULL);
4106 xic = gtk_im_multicontext_new();
4107 g_object_ref(xic);
4109 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
4110 G_CALLBACK(&im_commit_cb), NULL);
4111 g_signal_connect(G_OBJECT(xic), "preedit_changed",
4112 G_CALLBACK(&im_preedit_changed_cb), NULL);
4113 g_signal_connect(G_OBJECT(xic), "preedit_start",
4114 G_CALLBACK(&im_preedit_start_cb), NULL);
4115 g_signal_connect(G_OBJECT(xic), "preedit_end",
4116 G_CALLBACK(&im_preedit_end_cb), NULL);
4118 gtk_im_context_set_client_window(xic, gui.drawarea->window);
4119 # endif
4122 void
4123 im_shutdown(void)
4125 #ifdef XIM_DEBUG
4126 xim_log("im_shutdown()\n");
4127 #endif
4129 # ifndef FEAT_GUI_MACVIM
4130 if (xic != NULL)
4132 gtk_im_context_focus_out(xic);
4133 g_object_unref(xic);
4134 xic = NULL;
4136 # endif
4137 im_is_active = FALSE;
4138 im_commit_handler_id = 0;
4139 preedit_start_col = MAXCOL;
4140 xim_has_preediting = FALSE;
4143 # ifndef FEAT_GUI_MACVIM
4145 * Convert the string argument to keyval and state for GdkEventKey.
4146 * If str is valid return TRUE, otherwise FALSE.
4148 * See 'imactivatekey' for documentation of the format.
4150 static int
4151 im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
4153 const char *mods_end;
4154 unsigned tmp_keyval;
4155 unsigned tmp_state = 0;
4157 mods_end = strrchr(str, '-');
4158 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
4160 /* Parse modifier keys */
4161 while (str < mods_end)
4162 switch (*str++)
4164 case '-': break;
4165 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
4166 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
4167 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
4168 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
4169 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
4170 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
4171 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
4172 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
4173 default:
4174 return FALSE;
4177 tmp_keyval = gdk_keyval_from_name(str);
4179 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
4180 return FALSE;
4182 if (keyval != NULL)
4183 *keyval = tmp_keyval;
4184 if (state != NULL)
4185 *state = tmp_state;
4187 return TRUE;
4191 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
4192 * empty string is also regarded as valid.
4194 * Note: The numerical key value of p_imak is cached if it was valid; thus
4195 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
4196 * 'imak' changes. This is currently the case but not obvious -- should
4197 * probably rename the function for clarity.
4200 im_xim_isvalid_imactivate(void)
4202 if (p_imak[0] == NUL)
4204 im_activatekey_keyval = GDK_VoidSymbol;
4205 im_activatekey_state = 0;
4206 return TRUE;
4209 return im_string_to_keyval((const char *)p_imak,
4210 &im_activatekey_keyval,
4211 &im_activatekey_state);
4214 static void
4215 im_synthesize_keypress(unsigned int keyval, unsigned int state)
4217 GdkEventKey *event;
4219 # ifdef HAVE_GTK_MULTIHEAD
4220 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
4221 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
4222 # else
4223 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
4224 event->type = GDK_KEY_PRESS;
4225 # endif
4226 event->window = gui.drawarea->window;
4227 event->send_event = TRUE;
4228 event->time = GDK_CURRENT_TIME;
4229 event->state = state;
4230 event->keyval = keyval;
4231 event->hardware_keycode = /* needed for XIM */
4232 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
4233 event->length = 0;
4234 event->string = NULL;
4236 gtk_im_context_filter_keypress(xic, event);
4238 /* For consistency, also send the corresponding release event. */
4239 event->type = GDK_KEY_RELEASE;
4240 event->send_event = FALSE;
4241 gtk_im_context_filter_keypress(xic, event);
4243 # ifdef HAVE_GTK_MULTIHEAD
4244 gdk_event_free((GdkEvent *)event);
4245 # else
4246 g_free(event);
4247 # endif
4249 # endif // FEAT_GUI_MACVIM
4251 void
4252 xim_reset(void)
4254 # ifndef FEAT_GUI_MACVIM
4255 if (xic != NULL)
4258 * The third-party imhangul module (and maybe others too) ignores
4259 * gtk_im_context_reset() or at least doesn't reset the active state.
4260 * Thus sending imactivatekey would turn it off if it was on before,
4261 * which is clearly not what we want. Fortunately we can work around
4262 * that for imhangul by sending GDK_Escape, but I don't know if it
4263 * works with all IM modules that support an activation key :/
4265 * An alternative approach would be to destroy the IM context and
4266 * recreate it. But that means loading/unloading the IM module on
4267 * every mode switch, which causes a quite noticable delay even on
4268 * my rather fast box...
4270 * Moreover, there are some XIM which cannot respond to
4271 * im_synthesize_keypress(). we hope that they reset by
4272 * xim_shutdown().
4274 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
4275 im_synthesize_keypress(GDK_Escape, 0U);
4277 gtk_im_context_reset(xic);
4280 * HACK for Ami: This sequence of function calls makes Ami handle
4281 * the IM reset graciously, without breaking loads of other stuff.
4282 * It seems to force English mode as well, which is exactly what we
4283 * want because it makes the Ami status display work reliably.
4285 gtk_im_context_set_use_preedit(xic, FALSE);
4287 if (p_imdisable)
4288 im_shutdown();
4289 else
4291 gtk_im_context_set_use_preedit(xic, TRUE);
4292 xim_set_focus(gui.in_focus);
4294 if (im_activatekey_keyval != GDK_VoidSymbol)
4296 if (im_is_active)
4298 g_signal_handler_block(xic, im_commit_handler_id);
4299 im_synthesize_keypress(im_activatekey_keyval,
4300 im_activatekey_state);
4301 g_signal_handler_unblock(xic, im_commit_handler_id);
4304 else
4306 im_shutdown();
4307 xim_init();
4308 xim_set_focus(gui.in_focus);
4312 # endif
4314 preedit_start_col = MAXCOL;
4315 xim_has_preediting = FALSE;
4318 # ifndef FEAT_GUI_MACVIM
4320 xim_queue_key_press_event(GdkEventKey *event, int down)
4322 if (down)
4325 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
4326 * chars., even when not part of an IM sequence (ref. feature of
4327 * gdk/gdkkeyuni.c).
4328 * Flag any keypad keys that might represent a single char.
4329 * If this (on its own - i.e., not part of an IM sequence) is
4330 * committed while we're processing one of these keys, we can ignore
4331 * that commit and go ahead & process it ourselves. That way we can
4332 * still distinguish keypad keys for use in mappings.
4333 * Also add GDK_space to make <S-Space> work.
4335 switch (event->keyval)
4337 case GDK_KP_Add: xim_expected_char = '+'; break;
4338 case GDK_KP_Subtract: xim_expected_char = '-'; break;
4339 case GDK_KP_Divide: xim_expected_char = '/'; break;
4340 case GDK_KP_Multiply: xim_expected_char = '*'; break;
4341 case GDK_KP_Decimal: xim_expected_char = '.'; break;
4342 case GDK_KP_Equal: xim_expected_char = '='; break;
4343 case GDK_KP_0: xim_expected_char = '0'; break;
4344 case GDK_KP_1: xim_expected_char = '1'; break;
4345 case GDK_KP_2: xim_expected_char = '2'; break;
4346 case GDK_KP_3: xim_expected_char = '3'; break;
4347 case GDK_KP_4: xim_expected_char = '4'; break;
4348 case GDK_KP_5: xim_expected_char = '5'; break;
4349 case GDK_KP_6: xim_expected_char = '6'; break;
4350 case GDK_KP_7: xim_expected_char = '7'; break;
4351 case GDK_KP_8: xim_expected_char = '8'; break;
4352 case GDK_KP_9: xim_expected_char = '9'; break;
4353 case GDK_space: xim_expected_char = ' '; break;
4354 default: xim_expected_char = NUL;
4356 xim_ignored_char = FALSE;
4360 * When typing fFtT, XIM may be activated. Thus it must pass
4361 * gtk_im_context_filter_keypress() in Normal mode.
4362 * And while doing :sh too.
4364 if (xic != NULL && !p_imdisable
4365 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
4368 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
4369 * always aware of the current status of IM, and can even emulate
4370 * the activation key for modules that don't support one.
4372 if (event->keyval == im_activatekey_keyval
4373 && (event->state & im_activatekey_state) == im_activatekey_state)
4375 unsigned int state_mask;
4377 /* Require the state of the 3 most used modifiers to match exactly.
4378 * Otherwise e.g. <S-C-space> would be unusable for other purposes
4379 * if the IM activate key is <S-space>. */
4380 state_mask = im_activatekey_state;
4381 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
4382 | (int)GDK_MOD1_MASK);
4384 if ((event->state & state_mask) != im_activatekey_state)
4385 return FALSE;
4387 /* Don't send it a second time on GDK_KEY_RELEASE. */
4388 if (event->type != GDK_KEY_PRESS)
4389 return TRUE;
4391 if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE))
4393 im_set_active(FALSE);
4395 /* ":lmap" mappings exists, toggle use of mappings. */
4396 State ^= LANGMAP;
4397 if (State & LANGMAP)
4399 curbuf->b_p_iminsert = B_IMODE_NONE;
4400 State &= ~LANGMAP;
4402 else
4404 curbuf->b_p_iminsert = B_IMODE_LMAP;
4405 State |= LANGMAP;
4407 return TRUE;
4410 return gtk_im_context_filter_keypress(xic, event);
4413 /* Don't filter events through the IM context if IM isn't active
4414 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
4415 * not doing anything before the activation key was sent. */
4416 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
4418 int imresult = gtk_im_context_filter_keypress(xic, event);
4420 /* Some XIM send following sequence:
4421 * 1. preedited string.
4422 * 2. committed string.
4423 * 3. line changed key.
4424 * 4. preedited string.
4425 * 5. remove preedited string.
4426 * if 3, Vim can't move back the above line for 5.
4427 * thus, this part should not parse the key. */
4428 if (!imresult && preedit_start_col != MAXCOL
4429 && event->keyval == GDK_Return)
4431 im_synthesize_keypress(GDK_Return, 0U);
4432 return FALSE;
4435 /* If XIM tried to commit a keypad key as a single char.,
4436 * ignore it so we can use the keypad key 'raw', for mappings. */
4437 if (xim_expected_char != NUL && xim_ignored_char)
4438 /* We had a keypad key, and XIM tried to thieve it */
4439 return FALSE;
4441 /* Normal processing */
4442 return imresult;
4446 return FALSE;
4448 # endif
4450 # ifndef FEAT_GUI_MACVIM
4452 im_get_status(void)
4454 return im_is_active;
4456 # endif
4458 # else /* !HAVE_GTK2 */
4460 static int xim_is_active = FALSE; /* XIM should be active in the current
4461 mode */
4462 static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
4463 #ifdef FEAT_GUI_X11
4464 static XIMStyle input_style;
4465 static int status_area_enabled = TRUE;
4466 #endif
4468 #ifdef FEAT_GUI_GTK
4469 # ifdef WIN3264
4470 # include <gdk/gdkwin32.h>
4471 # else
4472 # include <gdk/gdkx.h>
4473 # endif
4474 #else
4475 # ifdef PROTO
4476 /* Define a few things to be able to generate prototypes while not configured
4477 * for GTK. */
4478 # define GSList int
4479 # define gboolean int
4480 typedef int GdkEvent;
4481 typedef int GdkEventKey;
4482 # define GdkIC int
4483 # endif
4484 #endif
4486 #if defined(FEAT_GUI_GTK) || defined(PROTO)
4487 static int preedit_buf_len = 0;
4488 static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
4489 static int xim_input_style;
4490 #ifndef FEAT_GUI_GTK
4491 # define gboolean int
4492 #endif
4493 static gboolean use_status_area = 0;
4495 static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
4496 static void im_xim_send_event_imactivate __ARGS((void));
4499 * Convert string to keycode and state for XKeyEvent.
4500 * When string is valid return OK, when invalid return FAIL.
4502 * See 'imactivatekey' documentation for the format.
4504 static int
4505 im_xim_str2keycode(code, state)
4506 unsigned int *code;
4507 unsigned int *state;
4509 int retval = OK;
4510 int len;
4511 unsigned keycode = 0, keystate = 0;
4512 Window window;
4513 Display *display;
4514 char_u *flag_end;
4515 char_u *str;
4517 if (*p_imak != NUL)
4519 len = STRLEN(p_imak);
4520 for (flag_end = p_imak + len - 1;
4521 flag_end > p_imak && *flag_end != '-'; --flag_end)
4524 /* Parse modifier keys */
4525 for (str = p_imak; str < flag_end; ++str)
4527 switch (*str)
4529 case 's': case 'S':
4530 keystate |= ShiftMask;
4531 break;
4532 case 'l': case 'L':
4533 keystate |= LockMask;
4534 break;
4535 case 'c': case 'C':
4536 keystate |= ControlMask;
4537 break;
4538 case '1':
4539 keystate |= Mod1Mask;
4540 break;
4541 case '2':
4542 keystate |= Mod2Mask;
4543 break;
4544 case '3':
4545 keystate |= Mod3Mask;
4546 break;
4547 case '4':
4548 keystate |= Mod4Mask;
4549 break;
4550 case '5':
4551 keystate |= Mod5Mask;
4552 break;
4553 case '-':
4554 break;
4555 default:
4556 retval = FAIL;
4559 if (*str == '-')
4560 ++str;
4562 /* Get keycode from string. */
4563 gui_get_x11_windis(&window, &display);
4564 if (display)
4565 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
4566 if (keycode == 0)
4567 retval = FAIL;
4569 if (code != NULL)
4570 *code = keycode;
4571 if (state != NULL)
4572 *state = keystate;
4574 return retval;
4577 static void
4578 im_xim_send_event_imactivate()
4580 /* Force turn on preedit state by symulate keypress event.
4581 * Keycode and state is specified by 'imactivatekey'.
4583 XKeyEvent ev;
4585 gui_get_x11_windis(&ev.window, &ev.display);
4586 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
4587 ev.subwindow = None;
4588 ev.time = CurrentTime;
4589 ev.x = 1;
4590 ev.y = 1;
4591 ev.x_root = 1;
4592 ev.y_root = 1;
4593 ev.same_screen = 1;
4594 ev.type = KeyPress;
4595 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
4596 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
4600 * Return TRUE if 'imactivatekey' has a valid value.
4603 im_xim_isvalid_imactivate()
4605 return im_xim_str2keycode(NULL, NULL) == OK;
4607 #endif /* FEAT_GUI_GTK */
4610 * Switch using XIM on/off. This is used by the code that changes "State".
4612 void
4613 im_set_active(active)
4614 int active;
4616 if (xic == NULL)
4617 return;
4619 /* If 'imdisable' is set, XIM is never active. */
4620 if (p_imdisable)
4621 active = FALSE;
4622 #if !defined (FEAT_GUI_GTK)
4623 else if (input_style & XIMPreeditPosition)
4624 /* There is a problem in switching XIM off when preediting is used,
4625 * and it is not clear how this can be solved. For now, keep XIM on
4626 * all the time, like it was done in Vim 5.8. */
4627 active = TRUE;
4628 #endif
4630 /* Remember the active state, it is needed when Vim gets keyboard focus. */
4631 xim_is_active = active;
4633 #ifdef FEAT_GUI_GTK
4634 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
4635 * state. When 'imactivatekey' has no or invalid string, try old XIM
4636 * focus control.
4638 if (*p_imak != NUL)
4640 /* BASIC STRATEGY:
4641 * Destroy old Input Context (XIC), and create new one. New XIC
4642 * would have a state of preedit that is off. When argument:active
4643 * is false, that's all. Else argument:active is true, send a key
4644 * event specified by 'imactivatekey' to activate XIM preedit state.
4647 xim_is_active = TRUE; /* Disable old XIM focus control */
4648 /* If we can monitor preedit state with preedit callback functions,
4649 * try least creation of new XIC.
4651 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
4653 if (xim_can_preediting && !active)
4655 /* Force turn off preedit state. With some IM
4656 * implementations, we cannot turn off preedit state by
4657 * symulate keypress event. It is why using such a method
4658 * that destroy old IC (input context), and create new one.
4659 * When create new IC, its preedit state is usually off.
4661 xim_reset();
4662 xim_set_focus(FALSE);
4663 gdk_ic_destroy(xic);
4664 xim_init();
4665 xim_can_preediting = FALSE;
4667 else if (!xim_can_preediting && active)
4668 im_xim_send_event_imactivate();
4670 else
4672 /* First, force destroy old IC, and create new one. It
4673 * symulates "turning off preedit state".
4675 xim_set_focus(FALSE);
4676 gdk_ic_destroy(xic);
4677 xim_init();
4678 xim_can_preediting = FALSE;
4680 /* 2nd, when requested to activate IM, symulate this by sending
4681 * the event.
4683 if (active)
4685 im_xim_send_event_imactivate();
4686 xim_can_preediting = TRUE;
4690 else
4692 # ifndef XIMPreeditUnKnown
4693 /* X11R5 doesn't have these, it looks safe enough to define here. */
4694 typedef unsigned long XIMPreeditState;
4695 # define XIMPreeditUnKnown 0L
4696 # define XIMPreeditEnable 1L
4697 # define XIMPreeditDisable (1L<<1)
4698 # define XNPreeditState "preeditState"
4699 # endif
4700 XIMPreeditState preedit_state = XIMPreeditUnKnown;
4701 XVaNestedList preedit_attr;
4702 XIC pxic;
4704 preedit_attr = XVaCreateNestedList(0,
4705 XNPreeditState, &preedit_state,
4706 NULL);
4707 pxic = ((GdkICPrivate *)xic)->xic;
4709 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
4711 XFree(preedit_attr);
4712 preedit_attr = XVaCreateNestedList(0,
4713 XNPreeditState,
4714 active ? XIMPreeditEnable : XIMPreeditDisable,
4715 NULL);
4716 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
4717 xim_can_preediting = active;
4718 xim_is_active = active;
4720 XFree(preedit_attr);
4722 if (xim_input_style & XIMPreeditCallbacks)
4724 preedit_buf_len = 0;
4725 init_preedit_start_col();
4727 #else
4728 # if 0
4729 /* When had tested kinput2 + canna + Athena GUI version with
4730 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
4731 * work correctly. It just inserted one space. I don't know why we
4732 * couldn't switch state of XIM preediting. This is reason why these
4733 * codes are commented out.
4735 /* First, force destroy old IC, and create new one. It symulates
4736 * "turning off preedit state".
4738 xim_set_focus(FALSE);
4739 XDestroyIC(xic);
4740 xic = NULL;
4741 xim_init();
4743 /* 2nd, when requested to activate IM, symulate this by sending the
4744 * event.
4746 if (active)
4747 im_xim_send_event_imactivate();
4748 # endif
4749 #endif
4750 xim_set_preedit();
4754 * Adjust using XIM for gaining or losing keyboard focus. Also called when
4755 * "xim_is_active" changes.
4757 void
4758 xim_set_focus(focus)
4759 int focus;
4761 if (xic == NULL)
4762 return;
4765 * XIM only gets focus when the Vim window has keyboard focus and XIM has
4766 * been set active for the current mode.
4768 if (focus && xim_is_active)
4770 if (!xim_has_focus)
4772 xim_has_focus = TRUE;
4773 #ifdef FEAT_GUI_GTK
4774 gdk_im_begin(xic, gui.drawarea->window);
4775 #else
4776 XSetICFocus(xic);
4777 #endif
4780 else
4782 if (xim_has_focus)
4784 xim_has_focus = FALSE;
4785 #ifdef FEAT_GUI_GTK
4786 gdk_im_end();
4787 #else
4788 XUnsetICFocus(xic);
4789 #endif
4794 void
4795 im_set_position(row, col)
4796 int row UNUSED;
4797 int col UNUSED;
4799 xim_set_preedit();
4803 * Set the XIM to the current cursor position.
4805 void
4806 xim_set_preedit()
4808 if (xic == NULL)
4809 return;
4811 xim_set_focus(TRUE);
4813 #ifdef FEAT_GUI_GTK
4814 if (gdk_im_ready())
4816 int attrmask;
4817 GdkICAttr *attr;
4819 if (!xic_attr)
4820 return;
4822 attr = xic_attr;
4823 attrmask = 0;
4825 # ifdef FEAT_XFONTSET
4826 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
4827 && gui.fontset != NOFONTSET
4828 && gui.fontset->type == GDK_FONT_FONTSET)
4830 if (!xim_has_focus)
4832 if (attr->spot_location.y >= 0)
4834 attr->spot_location.x = 0;
4835 attr->spot_location.y = -100;
4836 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4839 else
4841 gint width, height;
4843 if (attr->spot_location.x != TEXT_X(gui.col)
4844 || attr->spot_location.y != TEXT_Y(gui.row))
4846 attr->spot_location.x = TEXT_X(gui.col);
4847 attr->spot_location.y = TEXT_Y(gui.row);
4848 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4851 gdk_window_get_size(gui.drawarea->window, &width, &height);
4852 width -= 2 * gui.border_offset;
4853 height -= 2 * gui.border_offset;
4854 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
4855 height -= gui.char_height;
4856 if (attr->preedit_area.width != width
4857 || attr->preedit_area.height != height)
4859 attr->preedit_area.x = gui.border_offset;
4860 attr->preedit_area.y = gui.border_offset;
4861 attr->preedit_area.width = width;
4862 attr->preedit_area.height = height;
4863 attrmask |= (int)GDK_IC_PREEDIT_AREA;
4866 if (attr->preedit_fontset != gui.current_font)
4868 attr->preedit_fontset = gui.current_font;
4869 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
4873 # endif /* FEAT_XFONTSET */
4875 if (xim_fg_color == INVALCOLOR)
4877 xim_fg_color = gui.def_norm_pixel;
4878 xim_bg_color = gui.def_back_pixel;
4880 if (attr->preedit_foreground.pixel != xim_fg_color)
4882 attr->preedit_foreground.pixel = xim_fg_color;
4883 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
4885 if (attr->preedit_background.pixel != xim_bg_color)
4887 attr->preedit_background.pixel = xim_bg_color;
4888 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
4891 if (attrmask != 0)
4892 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
4894 #else /* FEAT_GUI_GTK */
4896 XVaNestedList attr_list;
4897 XRectangle spot_area;
4898 XPoint over_spot;
4899 int line_space;
4901 if (!xim_has_focus)
4903 /* hide XIM cursor */
4904 over_spot.x = 0;
4905 over_spot.y = -100; /* arbitrary invisible position */
4906 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4907 XNSpotLocation,
4908 &over_spot,
4909 NULL);
4910 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
4911 XFree(attr_list);
4912 return;
4915 if (input_style & XIMPreeditPosition)
4917 if (xim_fg_color == INVALCOLOR)
4919 xim_fg_color = gui.def_norm_pixel;
4920 xim_bg_color = gui.def_back_pixel;
4922 over_spot.x = TEXT_X(gui.col);
4923 over_spot.y = TEXT_Y(gui.row);
4924 spot_area.x = 0;
4925 spot_area.y = 0;
4926 spot_area.height = gui.char_height * Rows;
4927 spot_area.width = gui.char_width * Columns;
4928 line_space = gui.char_height;
4929 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4930 XNSpotLocation, &over_spot,
4931 XNForeground, (Pixel) xim_fg_color,
4932 XNBackground, (Pixel) xim_bg_color,
4933 XNArea, &spot_area,
4934 XNLineSpace, line_space,
4935 NULL);
4936 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
4937 EMSG(_("E284: Cannot set IC values"));
4938 XFree(attr_list);
4941 #endif /* FEAT_GUI_GTK */
4945 * Set up the status area.
4947 * This should use a separate Widget, but that seems not possible, because
4948 * preedit_area and status_area should be set to the same window as for the
4949 * text input. Unfortunately this means the status area pollutes the text
4950 * window...
4952 void
4953 xim_set_status_area()
4955 if (xic == NULL)
4956 return;
4958 #ifdef FEAT_GUI_GTK
4959 # if defined(FEAT_XFONTSET)
4960 if (use_status_area)
4962 GdkICAttr *attr;
4963 int style;
4964 gint width, height;
4965 GtkWidget *widget;
4966 int attrmask;
4968 if (!xic_attr)
4969 return;
4971 attr = xic_attr;
4972 attrmask = 0;
4973 style = (int)gdk_ic_get_style(xic);
4974 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
4976 if (gui.fontset != NOFONTSET
4977 && gui.fontset->type == GDK_FONT_FONTSET)
4979 widget = gui.mainwin;
4980 gdk_window_get_size(widget->window, &width, &height);
4982 attrmask |= (int)GDK_IC_STATUS_AREA;
4983 attr->status_area.x = 0;
4984 attr->status_area.y = height - gui.char_height - 1;
4985 attr->status_area.width = width;
4986 attr->status_area.height = gui.char_height;
4989 if (attrmask != 0)
4990 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
4992 # endif
4993 #else
4995 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
4996 XRectangle pre_area, status_area;
4998 if (input_style & XIMStatusArea)
5000 if (input_style & XIMPreeditArea)
5002 XRectangle *needed_rect;
5004 /* to get status_area width */
5005 status_list = XVaCreateNestedList(0, XNAreaNeeded,
5006 &needed_rect, NULL);
5007 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
5008 XFree(status_list);
5010 status_area.width = needed_rect->width;
5012 else
5013 status_area.width = gui.char_width * Columns;
5015 status_area.x = 0;
5016 status_area.y = gui.char_height * Rows + gui.border_offset;
5017 if (gui.which_scrollbars[SBAR_BOTTOM])
5018 status_area.y += gui.scrollbar_height;
5019 #ifdef FEAT_MENU
5020 if (gui.menu_is_active)
5021 status_area.y += gui.menu_height;
5022 #endif
5023 status_area.height = gui.char_height;
5024 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
5026 else
5028 status_area.x = 0;
5029 status_area.y = gui.char_height * Rows + gui.border_offset;
5030 if (gui.which_scrollbars[SBAR_BOTTOM])
5031 status_area.y += gui.scrollbar_height;
5032 #ifdef FEAT_MENU
5033 if (gui.menu_is_active)
5034 status_area.y += gui.menu_height;
5035 #endif
5036 status_area.width = 0;
5037 status_area.height = gui.char_height;
5040 if (input_style & XIMPreeditArea) /* off-the-spot */
5042 pre_area.x = status_area.x + status_area.width;
5043 pre_area.y = gui.char_height * Rows + gui.border_offset;
5044 pre_area.width = gui.char_width * Columns - pre_area.x;
5045 if (gui.which_scrollbars[SBAR_BOTTOM])
5046 pre_area.y += gui.scrollbar_height;
5047 #ifdef FEAT_MENU
5048 if (gui.menu_is_active)
5049 pre_area.y += gui.menu_height;
5050 #endif
5051 pre_area.height = gui.char_height;
5052 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5054 else if (input_style & XIMPreeditPosition) /* over-the-spot */
5056 pre_area.x = 0;
5057 pre_area.y = 0;
5058 pre_area.height = gui.char_height * Rows;
5059 pre_area.width = gui.char_width * Columns;
5060 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
5063 if (preedit_list && status_list)
5064 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5065 XNStatusAttributes, status_list, NULL);
5066 else if (preedit_list)
5067 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
5068 NULL);
5069 else if (status_list)
5070 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
5071 NULL);
5072 else
5073 list = NULL;
5075 if (list)
5077 XSetICValues(xic, XNVaNestedList, list, NULL);
5078 XFree(list);
5080 if (status_list)
5081 XFree(status_list);
5082 if (preedit_list)
5083 XFree(preedit_list);
5085 #endif
5088 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
5089 static char e_xim[] = N_("E285: Failed to create input context");
5090 #endif
5092 #if defined(FEAT_GUI_X11) || defined(PROTO)
5093 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5094 # define USE_X11R6_XIM
5095 # endif
5097 static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
5100 #ifdef USE_X11R6_XIM
5101 static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
5102 static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
5104 static void
5105 xim_instantiate_cb(display, client_data, call_data)
5106 Display *display;
5107 XPointer client_data UNUSED;
5108 XPointer call_data UNUSED;
5110 Window x11_window;
5111 Display *x11_display;
5113 #ifdef XIM_DEBUG
5114 xim_log("xim_instantiate_cb()\n");
5115 #endif
5117 gui_get_x11_windis(&x11_window, &x11_display);
5118 if (display != x11_display)
5119 return;
5121 xim_real_init(x11_window, x11_display);
5122 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5123 if (xic != NULL)
5124 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5125 xim_instantiate_cb, NULL);
5128 static void
5129 xim_destroy_cb(im, client_data, call_data)
5130 XIM im UNUSED;
5131 XPointer client_data UNUSED;
5132 XPointer call_data UNUSED;
5134 Window x11_window;
5135 Display *x11_display;
5137 #ifdef XIM_DEBUG
5138 xim_log("xim_destroy_cb()\n");
5139 #endif
5140 gui_get_x11_windis(&x11_window, &x11_display);
5142 xic = NULL;
5143 status_area_enabled = FALSE;
5145 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5147 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5148 xim_instantiate_cb, NULL);
5150 #endif
5152 void
5153 xim_init()
5155 Window x11_window;
5156 Display *x11_display;
5158 #ifdef XIM_DEBUG
5159 xim_log("xim_init()\n");
5160 #endif
5162 gui_get_x11_windis(&x11_window, &x11_display);
5164 xic = NULL;
5166 if (xim_real_init(x11_window, x11_display))
5167 return;
5169 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5171 #ifdef USE_X11R6_XIM
5172 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
5173 xim_instantiate_cb, NULL);
5174 #endif
5177 static int
5178 xim_real_init(x11_window, x11_display)
5179 Window x11_window;
5180 Display *x11_display;
5182 int i;
5183 char *p,
5185 *ns,
5186 *end,
5187 tmp[1024];
5188 #define IMLEN_MAX 40
5189 char buf[IMLEN_MAX + 7];
5190 XIM xim = NULL;
5191 XIMStyles *xim_styles;
5192 XIMStyle this_input_style = 0;
5193 Boolean found;
5194 XPoint over_spot;
5195 XVaNestedList preedit_list, status_list;
5197 input_style = 0;
5198 status_area_enabled = FALSE;
5200 if (xic != NULL)
5201 return FALSE;
5203 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
5205 strcpy(tmp, gui.rsrc_input_method);
5206 for (ns = s = tmp; ns != NULL && *s != NUL;)
5208 s = (char *)skipwhite((char_u *)s);
5209 if (*s == NUL)
5210 break;
5211 if ((ns = end = strchr(s, ',')) == NULL)
5212 end = s + strlen(s);
5213 while (isspace(((char_u *)end)[-1]))
5214 end--;
5215 *end = NUL;
5217 if (strlen(s) <= IMLEN_MAX)
5219 strcpy(buf, "@im=");
5220 strcat(buf, s);
5221 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
5222 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
5223 != NULL)
5224 break;
5227 s = ns + 1;
5231 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
5232 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5234 /* This is supposed to be useful to obtain characters through
5235 * XmbLookupString() without really using a XIM. */
5236 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
5237 && *p != NUL)
5238 xim = XOpenIM(x11_display, NULL, NULL, NULL);
5240 if (xim == NULL)
5242 /* Only give this message when verbose is set, because too many people
5243 * got this message when they didn't want to use a XIM. */
5244 if (p_verbose > 0)
5246 verbose_enter();
5247 EMSG(_("E286: Failed to open input method"));
5248 verbose_leave();
5250 return FALSE;
5253 #ifdef USE_X11R6_XIM
5255 XIMCallback destroy_cb;
5257 destroy_cb.callback = xim_destroy_cb;
5258 destroy_cb.client_data = NULL;
5259 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
5260 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5262 #endif
5264 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
5266 EMSG(_("E288: input method doesn't support any style"));
5267 XCloseIM(xim);
5268 return FALSE;
5271 found = False;
5272 strcpy(tmp, gui.rsrc_preedit_type_name);
5273 for (s = tmp; s && !found; )
5275 while (*s && isspace((unsigned char)*s))
5276 s++;
5277 if (!*s)
5278 break;
5279 if ((ns = end = strchr(s, ',')) != 0)
5280 ns++;
5281 else
5282 end = s + strlen(s);
5283 while (isspace((unsigned char)*end))
5284 end--;
5285 *end = '\0';
5287 if (!strcmp(s, "OverTheSpot"))
5288 this_input_style = (XIMPreeditPosition | XIMStatusArea);
5289 else if (!strcmp(s, "OffTheSpot"))
5290 this_input_style = (XIMPreeditArea | XIMStatusArea);
5291 else if (!strcmp(s, "Root"))
5292 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
5294 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5296 if (this_input_style == xim_styles->supported_styles[i])
5298 found = True;
5299 break;
5302 if (!found)
5303 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
5305 if ((xim_styles->supported_styles[i] & this_input_style)
5306 == (this_input_style & ~XIMStatusArea))
5308 this_input_style &= ~XIMStatusArea;
5309 found = True;
5310 break;
5314 s = ns;
5316 XFree(xim_styles);
5318 if (!found)
5320 /* Only give this message when verbose is set, because too many people
5321 * got this message when they didn't want to use a XIM. */
5322 if (p_verbose > 0)
5324 verbose_enter();
5325 EMSG(_("E289: input method doesn't support my preedit type"));
5326 verbose_leave();
5328 XCloseIM(xim);
5329 return FALSE;
5332 over_spot.x = TEXT_X(gui.col);
5333 over_spot.y = TEXT_Y(gui.row);
5334 input_style = this_input_style;
5336 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
5337 * thus that has been removed. Hopefully the default works... */
5338 #ifdef FEAT_XFONTSET
5339 if (gui.fontset != NOFONTSET)
5341 preedit_list = XVaCreateNestedList(0,
5342 XNSpotLocation, &over_spot,
5343 XNForeground, (Pixel)gui.def_norm_pixel,
5344 XNBackground, (Pixel)gui.def_back_pixel,
5345 XNFontSet, (XFontSet)gui.fontset,
5346 NULL);
5347 status_list = XVaCreateNestedList(0,
5348 XNForeground, (Pixel)gui.def_norm_pixel,
5349 XNBackground, (Pixel)gui.def_back_pixel,
5350 XNFontSet, (XFontSet)gui.fontset,
5351 NULL);
5353 else
5354 #endif
5356 preedit_list = XVaCreateNestedList(0,
5357 XNSpotLocation, &over_spot,
5358 XNForeground, (Pixel)gui.def_norm_pixel,
5359 XNBackground, (Pixel)gui.def_back_pixel,
5360 NULL);
5361 status_list = XVaCreateNestedList(0,
5362 XNForeground, (Pixel)gui.def_norm_pixel,
5363 XNBackground, (Pixel)gui.def_back_pixel,
5364 NULL);
5367 xic = XCreateIC(xim,
5368 XNInputStyle, input_style,
5369 XNClientWindow, x11_window,
5370 XNFocusWindow, gui.wid,
5371 XNPreeditAttributes, preedit_list,
5372 XNStatusAttributes, status_list,
5373 NULL);
5374 XFree(status_list);
5375 XFree(preedit_list);
5376 if (xic != NULL)
5378 if (input_style & XIMStatusArea)
5380 xim_set_status_area();
5381 status_area_enabled = TRUE;
5383 else
5384 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
5386 else
5388 EMSG(_(e_xim));
5389 XCloseIM(xim);
5390 return FALSE;
5393 return TRUE;
5396 #endif /* FEAT_GUI_X11 */
5398 #if defined(FEAT_GUI_GTK) || defined(PROTO)
5400 # ifdef FEAT_XFONTSET
5401 static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
5402 # endif
5404 # ifdef PROTO
5405 typedef int GdkIC;
5406 # endif
5408 void
5409 xim_decide_input_style()
5411 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
5412 * OverTheSpot. */
5413 int supported_style = (int)GDK_IM_PREEDIT_NONE |
5414 (int)GDK_IM_PREEDIT_NOTHING |
5415 (int)GDK_IM_PREEDIT_POSITION |
5416 (int)GDK_IM_PREEDIT_CALLBACKS |
5417 (int)GDK_IM_STATUS_CALLBACKS |
5418 (int)GDK_IM_STATUS_AREA |
5419 (int)GDK_IM_STATUS_NONE |
5420 (int)GDK_IM_STATUS_NOTHING;
5422 #ifdef XIM_DEBUG
5423 xim_log("xim_decide_input_style()\n");
5424 #endif
5426 if (!gdk_im_ready())
5427 xim_input_style = 0;
5428 else
5430 if (gtk_major_version > 1
5431 || (gtk_major_version == 1
5432 && (gtk_minor_version > 2
5433 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
5434 use_status_area = TRUE;
5435 else
5437 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
5438 use_status_area = FALSE;
5440 #ifdef FEAT_XFONTSET
5441 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
5442 #endif
5443 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
5444 | (int)GDK_IM_STATUS_AREA);
5445 if (!use_status_area)
5446 supported_style &= ~(int)GDK_IM_STATUS_AREA;
5447 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
5451 static void
5452 preedit_start_cbproc(XIC thexic UNUSED,
5453 XPointer client_data UNUSED,
5454 XPointer call_data UNUSED)
5456 #ifdef XIM_DEBUG
5457 xim_log("xim_decide_input_style()\n");
5458 #endif
5460 draw_feedback = NULL;
5461 xim_can_preediting = TRUE;
5462 xim_has_preediting = TRUE;
5463 gui_update_cursor(TRUE, FALSE);
5464 if (showmode() > 0)
5466 setcursor();
5467 out_flush();
5471 static void
5472 xim_back_delete(int n)
5474 char_u str[3];
5476 str[0] = CSI;
5477 str[1] = 'k';
5478 str[2] = 'b';
5479 while (n-- > 0)
5480 add_to_input_buf(str, 3);
5483 static GSList *key_press_event_queue = NULL;
5484 static gboolean processing_queued_event = FALSE;
5486 static void
5487 preedit_draw_cbproc(XIC thexic UNUSED,
5488 XPointer client_data UNUSED,
5489 XPointer call_data)
5491 XIMPreeditDrawCallbackStruct *draw_data;
5492 XIMText *text;
5493 char *src;
5494 GSList *event_queue;
5496 #ifdef XIM_DEBUG
5497 xim_log("preedit_draw_cbproc()\n");
5498 #endif
5500 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
5501 text = (XIMText *) draw_data->text;
5503 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
5504 || preedit_buf_len == 0)
5506 init_preedit_start_col();
5507 vim_free(draw_feedback);
5508 draw_feedback = NULL;
5510 if (draw_data->chg_length > 0)
5512 int bs_cnt;
5514 if (draw_data->chg_length > preedit_buf_len)
5515 bs_cnt = preedit_buf_len;
5516 else
5517 bs_cnt = draw_data->chg_length;
5518 xim_back_delete(bs_cnt);
5519 preedit_buf_len -= bs_cnt;
5521 if (text != NULL)
5523 int len;
5524 #ifdef FEAT_MBYTE
5525 char_u *buf = NULL;
5526 unsigned int nfeedback = 0;
5527 #endif
5528 char_u *ptr;
5530 src = text->string.multi_byte;
5531 if (src != NULL && !text->encoding_is_wchar)
5533 len = strlen(src);
5534 ptr = (char_u *)src;
5535 /* Avoid the enter for decision */
5536 if (*ptr == '\n')
5537 return;
5539 #ifdef FEAT_MBYTE
5540 if (input_conv.vc_type != CONV_NONE
5541 && (buf = string_convert(&input_conv,
5542 (char_u *)src, &len)) != NULL)
5544 /* Converted from 'termencoding' to 'encoding'. */
5545 add_to_input_buf_csi(buf, len);
5546 ptr = buf;
5548 else
5549 #endif
5550 add_to_input_buf_csi((char_u *)src, len);
5551 /* Add count of character to preedit_buf_len */
5552 while (*ptr != NUL)
5554 #ifdef FEAT_MBYTE
5555 if (draw_data->text->feedback != NULL)
5557 if (draw_feedback == NULL)
5558 draw_feedback = (char *)alloc(draw_data->chg_first
5559 + text->length);
5560 else
5561 draw_feedback = vim_realloc(draw_feedback,
5562 draw_data->chg_first + text->length);
5563 if (draw_feedback != NULL)
5565 draw_feedback[nfeedback + draw_data->chg_first]
5566 = draw_data->text->feedback[nfeedback];
5567 nfeedback++;
5570 if (has_mbyte)
5571 ptr += (*mb_ptr2len)(ptr);
5572 else
5573 #endif
5574 ptr++;
5575 preedit_buf_len++;
5577 #ifdef FEAT_MBYTE
5578 vim_free(buf);
5579 #endif
5580 preedit_end_col = MAXCOL;
5583 if (text != NULL || draw_data->chg_length > 0)
5585 event_queue = key_press_event_queue;
5586 processing_queued_event = TRUE;
5587 while (event_queue != NULL && processing_queued_event)
5589 GdkEvent *ev = event_queue->data;
5591 gboolean *ret;
5592 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
5593 ev, &ret);
5594 gdk_event_free(ev);
5595 event_queue = event_queue->next;
5597 processing_queued_event = FALSE;
5598 if (key_press_event_queue)
5600 g_slist_free(key_press_event_queue);
5601 key_press_event_queue = NULL;
5604 if (gtk_main_level() > 0)
5605 gtk_main_quit();
5609 * Retrieve the highlighting attributes at column col in the preedit string.
5610 * Return -1 if not in preediting mode or if col is out of range.
5613 im_get_feedback_attr(int col)
5615 if (draw_feedback != NULL && col < preedit_buf_len)
5617 if (draw_feedback[col] & XIMReverse)
5618 return HL_INVERSE;
5619 else if (draw_feedback[col] & XIMUnderline)
5620 return HL_UNDERLINE;
5621 else
5622 return hl_attr(HLF_V);
5625 return -1;
5628 static void
5629 preedit_caret_cbproc(XIC thexic UNUSED,
5630 XPointer client_data UNUSED,
5631 XPointer call_data UNUSED)
5633 #ifdef XIM_DEBUG
5634 xim_log("preedit_caret_cbproc()\n");
5635 #endif
5638 static void
5639 preedit_done_cbproc(XIC thexic UNUSED,
5640 XPointer client_data UNUSED,
5641 XPointer call_data UNUSED)
5643 #ifdef XIM_DEBUG
5644 xim_log("preedit_done_cbproc()\n");
5645 #endif
5647 vim_free(draw_feedback);
5648 draw_feedback = NULL;
5649 xim_can_preediting = FALSE;
5650 xim_has_preediting = FALSE;
5651 gui_update_cursor(TRUE, FALSE);
5652 if (showmode() > 0)
5654 setcursor();
5655 out_flush();
5659 void
5660 xim_reset(void)
5662 char *text;
5664 #ifdef XIM_DEBUG
5665 xim_log("xim_reset()\n");
5666 #endif
5668 if (xic != NULL)
5670 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
5671 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
5672 add_to_input_buf_csi((char_u *)text, strlen(text));
5673 else
5674 preedit_buf_len = 0;
5675 if (text != NULL)
5676 XFree(text);
5681 xim_queue_key_press_event(GdkEventKey *event, int down UNUSED)
5683 #ifdef XIM_DEBUG
5684 xim_log("xim_queue_key_press_event()\n");
5685 #endif
5687 if (preedit_buf_len <= 0)
5688 return FALSE;
5689 if (processing_queued_event)
5690 processing_queued_event = FALSE;
5692 key_press_event_queue = g_slist_append(key_press_event_queue,
5693 gdk_event_copy((GdkEvent *)event));
5694 return TRUE;
5697 static void
5698 preedit_callback_setup(GdkIC *ic UNUSED)
5700 XIC xxic;
5701 XVaNestedList preedit_attr;
5702 XIMCallback preedit_start_cb;
5703 XIMCallback preedit_draw_cb;
5704 XIMCallback preedit_caret_cb;
5705 XIMCallback preedit_done_cb;
5707 xxic = ((GdkICPrivate*)xic)->xic;
5708 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
5709 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
5710 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
5711 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
5712 preedit_attr
5713 = XVaCreateNestedList(0,
5714 XNPreeditStartCallback, &preedit_start_cb,
5715 XNPreeditDrawCallback, &preedit_draw_cb,
5716 XNPreeditCaretCallback, &preedit_caret_cb,
5717 XNPreeditDoneCallback, &preedit_done_cb,
5718 NULL);
5719 XSetICValues(xxic, XNPreeditAttributes, preedit_attr, NULL);
5720 XFree(preedit_attr);
5723 static void
5724 reset_state_setup(GdkIC *ic UNUSED)
5726 #ifdef USE_X11R6_XIM
5727 /* don't change the input context when we call reset */
5728 XSetICValues(((GdkICPrivate *)ic)->xic, XNResetState, XIMPreserveState,
5729 NULL);
5730 #endif
5733 void
5734 xim_init(void)
5736 #ifdef XIM_DEBUG
5737 xim_log("xim_init()\n");
5738 #endif
5740 xic = NULL;
5741 xic_attr = NULL;
5743 if (!gdk_im_ready())
5745 if (p_verbose > 0)
5747 verbose_enter();
5748 EMSG(_("E292: Input Method Server is not running"));
5749 verbose_leave();
5751 return;
5753 if ((xic_attr = gdk_ic_attr_new()) != NULL)
5755 #ifdef FEAT_XFONTSET
5756 gint width, height;
5757 #endif
5758 int mask;
5759 GdkColormap *colormap;
5760 GdkICAttr *attr = xic_attr;
5761 int attrmask = (int)GDK_IC_ALL_REQ;
5762 GtkWidget *widget = gui.drawarea;
5764 attr->style = (GdkIMStyle)xim_input_style;
5765 attr->client_window = gui.mainwin->window;
5767 if ((colormap = gtk_widget_get_colormap(widget)) !=
5768 gtk_widget_get_default_colormap())
5770 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
5771 attr->preedit_colormap = colormap;
5773 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
5774 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
5775 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
5776 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
5778 #ifdef FEAT_XFONTSET
5779 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
5780 == (int)GDK_IM_PREEDIT_POSITION)
5782 if (gui.fontset == NOFONTSET
5783 || gui.fontset->type != GDK_FONT_FONTSET)
5785 EMSG(_(e_overthespot));
5787 else
5789 gdk_window_get_size(widget->window, &width, &height);
5791 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
5792 attr->spot_location.x = TEXT_X(0);
5793 attr->spot_location.y = TEXT_Y(0);
5794 attr->preedit_area.x = gui.border_offset;
5795 attr->preedit_area.y = gui.border_offset;
5796 attr->preedit_area.width = width - 2*gui.border_offset;
5797 attr->preedit_area.height = height - 2*gui.border_offset;
5798 attr->preedit_fontset = gui.fontset;
5802 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5803 == (int)GDK_IM_STATUS_AREA)
5805 if (gui.fontset == NOFONTSET
5806 || gui.fontset->type != GDK_FONT_FONTSET)
5808 EMSG(_(e_overthespot));
5810 else
5812 gdk_window_get_size(gui.mainwin->window, &width, &height);
5813 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
5814 attr->status_area.x = 0;
5815 attr->status_area.y = height - gui.char_height - 1;
5816 attr->status_area.width = width;
5817 attr->status_area.height = gui.char_height;
5818 attr->status_fontset = gui.fontset;
5821 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5822 == (int)GDK_IM_STATUS_CALLBACKS)
5824 /* FIXME */
5826 #endif
5828 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
5830 if (xic == NULL)
5831 EMSG(_(e_xim));
5832 else
5834 mask = (int)gdk_window_get_events(widget->window);
5835 mask |= (int)gdk_ic_get_events(xic);
5836 gdk_window_set_events(widget->window, (GdkEventMask)mask);
5837 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5838 preedit_callback_setup(xic);
5839 reset_state_setup(xic);
5844 void
5845 im_shutdown(void)
5847 #ifdef XIM_DEBUG
5848 xim_log("im_shutdown()\n");
5849 #endif
5851 if (xic != NULL)
5853 gdk_im_end();
5854 gdk_ic_destroy(xic);
5855 xic = NULL;
5857 xim_is_active = FALSE;
5858 xim_can_preediting = FALSE;
5859 preedit_start_col = MAXCOL;
5860 xim_has_preediting = FALSE;
5863 #endif /* FEAT_GUI_GTK */
5866 xim_get_status_area_height()
5868 #ifdef FEAT_GUI_GTK
5869 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
5870 return gui.char_height;
5871 #else
5872 if (status_area_enabled)
5873 return gui.char_height;
5874 #endif
5875 return 0;
5879 * Get IM status. When IM is on, return TRUE. Else return FALSE.
5880 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
5881 * active, when not having focus XIM may still be active (e.g., when using a
5882 * tear-off menu item).
5885 im_get_status()
5887 # ifdef FEAT_GUI_GTK
5888 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5889 return xim_can_preediting;
5890 # endif
5891 return xim_has_focus;
5894 # endif /* !HAVE_GTK2 */
5896 # if (defined(HAVE_GTK2) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
5898 preedit_get_status(void)
5900 return preedit_is_active;
5902 # endif
5904 # if (defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MACVIM)) || defined(PROTO)
5906 im_is_preediting()
5908 return xim_has_preediting;
5910 # endif
5911 #endif /* FEAT_XIM */
5913 #if defined(FEAT_MBYTE) || defined(PROTO)
5916 * Setup "vcp" for conversion from "from" to "to".
5917 * The names must have been made canonical with enc_canonize().
5918 * vcp->vc_type must have been initialized to CONV_NONE.
5919 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5920 * instead).
5921 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5922 * Return FAIL when conversion is not supported, OK otherwise.
5925 convert_setup(vcp, from, to)
5926 vimconv_T *vcp;
5927 char_u *from;
5928 char_u *to;
5930 return convert_setup_ext(vcp, from, TRUE, to, TRUE);
5934 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
5935 * "from" unicode charsets be considered utf-8. Same for "to".
5938 convert_setup_ext(vcp, from, from_unicode_is_utf8, to, to_unicode_is_utf8)
5939 vimconv_T *vcp;
5940 char_u *from;
5941 int from_unicode_is_utf8;
5942 char_u *to;
5943 int to_unicode_is_utf8;
5945 int from_prop;
5946 int to_prop;
5947 int from_is_utf8;
5948 int to_is_utf8;
5950 /* Reset to no conversion. */
5951 # ifdef USE_ICONV
5952 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5953 iconv_close(vcp->vc_fd);
5954 # endif
5955 vcp->vc_type = CONV_NONE;
5956 vcp->vc_factor = 1;
5957 vcp->vc_fail = FALSE;
5959 /* No conversion when one of the names is empty or they are equal. */
5960 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5961 || STRCMP(from, to) == 0)
5962 return OK;
5964 from_prop = enc_canon_props(from);
5965 to_prop = enc_canon_props(to);
5966 if (from_unicode_is_utf8)
5967 from_is_utf8 = from_prop & ENC_UNICODE;
5968 else
5969 from_is_utf8 = from_prop == ENC_UNICODE;
5970 if (to_unicode_is_utf8)
5971 to_is_utf8 = to_prop & ENC_UNICODE;
5972 else
5973 to_is_utf8 = to_prop == ENC_UNICODE;
5975 if ((from_prop & ENC_LATIN1) && to_is_utf8)
5977 /* Internal latin1 -> utf-8 conversion. */
5978 vcp->vc_type = CONV_TO_UTF8;
5979 vcp->vc_factor = 2; /* up to twice as long */
5981 else if ((from_prop & ENC_LATIN9) && to_is_utf8)
5983 /* Internal latin9 -> utf-8 conversion. */
5984 vcp->vc_type = CONV_9_TO_UTF8;
5985 vcp->vc_factor = 3; /* up to three as long (euro sign) */
5987 else if (from_is_utf8 && (to_prop & ENC_LATIN1))
5989 /* Internal utf-8 -> latin1 conversion. */
5990 vcp->vc_type = CONV_TO_LATIN1;
5992 else if (from_is_utf8 && (to_prop & ENC_LATIN9))
5994 /* Internal utf-8 -> latin9 conversion. */
5995 vcp->vc_type = CONV_TO_LATIN9;
5997 #ifdef WIN3264
5998 /* Win32-specific codepage <-> codepage conversion without iconv. */
5999 else if ((from_is_utf8 || encname2codepage(from) > 0)
6000 && (to_is_utf8 || encname2codepage(to) > 0))
6002 vcp->vc_type = CONV_CODEPAGE;
6003 vcp->vc_factor = 2; /* up to twice as long */
6004 vcp->vc_cpfrom = from_is_utf8 ? 0 : encname2codepage(from);
6005 vcp->vc_cpto = to_is_utf8 ? 0 : encname2codepage(to);
6007 #endif
6008 #ifdef MACOS_X
6009 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
6011 vcp->vc_type = CONV_MAC_LATIN1;
6013 else if ((from_prop & ENC_MACROMAN) && to_is_utf8)
6015 vcp->vc_type = CONV_MAC_UTF8;
6016 vcp->vc_factor = 2; /* up to twice as long */
6018 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
6020 vcp->vc_type = CONV_LATIN1_MAC;
6022 else if (from_is_utf8 && (to_prop & ENC_MACROMAN))
6024 vcp->vc_type = CONV_UTF8_MAC;
6026 #endif
6027 # ifdef USE_ICONV
6028 else
6030 /* Use iconv() for conversion. */
6031 vcp->vc_fd = (iconv_t)my_iconv_open(
6032 to_is_utf8 ? (char_u *)"utf-8" : to,
6033 from_is_utf8 ? (char_u *)"utf-8" : from);
6034 if (vcp->vc_fd != (iconv_t)-1)
6036 vcp->vc_type = CONV_ICONV;
6037 vcp->vc_factor = 4; /* could be longer too... */
6040 # endif
6041 if (vcp->vc_type == CONV_NONE)
6042 return FAIL;
6044 return OK;
6047 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6048 || defined(MSDOS) || defined(PROTO)
6050 * Do conversion on typed input characters in-place.
6051 * The input and output are not NUL terminated!
6052 * Returns the length after conversion.
6055 convert_input(ptr, len, maxlen)
6056 char_u *ptr;
6057 int len;
6058 int maxlen;
6060 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
6062 #endif
6065 * Like convert_input(), but when there is an incomplete byte sequence at the
6066 * end return that as an allocated string in "restp" and set "*restlenp" to
6067 * the length. If "restp" is NULL it is not used.
6070 convert_input_safe(ptr, len, maxlen, restp, restlenp)
6071 char_u *ptr;
6072 int len;
6073 int maxlen;
6074 char_u **restp;
6075 int *restlenp;
6077 char_u *d;
6078 int dlen = len;
6079 int unconvertlen = 0;
6081 d = string_convert_ext(&input_conv, ptr, &dlen,
6082 restp == NULL ? NULL : &unconvertlen);
6083 if (d != NULL)
6085 if (dlen <= maxlen)
6087 if (unconvertlen > 0)
6089 /* Move the unconverted characters to allocated memory. */
6090 *restp = alloc(unconvertlen);
6091 if (*restp != NULL)
6092 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
6093 *restlenp = unconvertlen;
6095 mch_memmove(ptr, d, dlen);
6097 else
6098 /* result is too long, keep the unconverted text (the caller must
6099 * have done something wrong!) */
6100 dlen = len;
6101 vim_free(d);
6103 return dlen;
6107 * Convert text "ptr[*lenp]" according to "vcp".
6108 * Returns the result in allocated memory and sets "*lenp".
6109 * When "lenp" is NULL, use NUL terminated strings.
6110 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6111 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6113 char_u *
6114 string_convert(vcp, ptr, lenp)
6115 vimconv_T *vcp;
6116 char_u *ptr;
6117 int *lenp;
6119 return string_convert_ext(vcp, ptr, lenp, NULL);
6123 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6124 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6125 * set to the number of remaining bytes.
6127 char_u *
6128 string_convert_ext(vcp, ptr, lenp, unconvlenp)
6129 vimconv_T *vcp;
6130 char_u *ptr;
6131 int *lenp;
6132 int *unconvlenp;
6134 char_u *retval = NULL;
6135 char_u *d;
6136 int len;
6137 int i;
6138 int l;
6139 int c;
6141 if (lenp == NULL)
6142 len = (int)STRLEN(ptr);
6143 else
6144 len = *lenp;
6145 if (len == 0)
6146 return vim_strsave((char_u *)"");
6148 switch (vcp->vc_type)
6150 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
6151 retval = alloc(len * 2 + 1);
6152 if (retval == NULL)
6153 break;
6154 d = retval;
6155 for (i = 0; i < len; ++i)
6157 c = ptr[i];
6158 if (c < 0x80)
6159 *d++ = c;
6160 else
6162 *d++ = 0xc0 + ((unsigned)c >> 6);
6163 *d++ = 0x80 + (c & 0x3f);
6166 *d = NUL;
6167 if (lenp != NULL)
6168 *lenp = (int)(d - retval);
6169 break;
6171 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
6172 retval = alloc(len * 3 + 1);
6173 if (retval == NULL)
6174 break;
6175 d = retval;
6176 for (i = 0; i < len; ++i)
6178 c = ptr[i];
6179 switch (c)
6181 case 0xa4: c = 0x20ac; break; /* euro */
6182 case 0xa6: c = 0x0160; break; /* S hat */
6183 case 0xa8: c = 0x0161; break; /* S -hat */
6184 case 0xb4: c = 0x017d; break; /* Z hat */
6185 case 0xb8: c = 0x017e; break; /* Z -hat */
6186 case 0xbc: c = 0x0152; break; /* OE */
6187 case 0xbd: c = 0x0153; break; /* oe */
6188 case 0xbe: c = 0x0178; break; /* Y */
6190 d += utf_char2bytes(c, d);
6192 *d = NUL;
6193 if (lenp != NULL)
6194 *lenp = (int)(d - retval);
6195 break;
6197 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
6198 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
6199 retval = alloc(len + 1);
6200 if (retval == NULL)
6201 break;
6202 d = retval;
6203 for (i = 0; i < len; ++i)
6205 l = utf_ptr2len_len(ptr + i, len - i);
6206 if (l == 0)
6207 *d++ = NUL;
6208 else if (l == 1)
6210 int l_w = utf8len_tab_zero[ptr[i]];
6212 if (l_w == 0)
6214 /* Illegal utf-8 byte cannot be converted */
6215 vim_free(retval);
6216 return NULL;
6218 if (unconvlenp != NULL && l_w > len - i)
6220 /* Incomplete sequence at the end. */
6221 *unconvlenp = len - i;
6222 break;
6224 *d++ = ptr[i];
6226 else
6228 c = utf_ptr2char(ptr + i);
6229 if (vcp->vc_type == CONV_TO_LATIN9)
6230 switch (c)
6232 case 0x20ac: c = 0xa4; break; /* euro */
6233 case 0x0160: c = 0xa6; break; /* S hat */
6234 case 0x0161: c = 0xa8; break; /* S -hat */
6235 case 0x017d: c = 0xb4; break; /* Z hat */
6236 case 0x017e: c = 0xb8; break; /* Z -hat */
6237 case 0x0152: c = 0xbc; break; /* OE */
6238 case 0x0153: c = 0xbd; break; /* oe */
6239 case 0x0178: c = 0xbe; break; /* Y */
6240 case 0xa4:
6241 case 0xa6:
6242 case 0xa8:
6243 case 0xb4:
6244 case 0xb8:
6245 case 0xbc:
6246 case 0xbd:
6247 case 0xbe: c = 0x100; break; /* not in latin9 */
6249 if (!utf_iscomposing(c)) /* skip composing chars */
6251 if (c < 0x100)
6252 *d++ = c;
6253 else if (vcp->vc_fail)
6255 vim_free(retval);
6256 return NULL;
6258 else
6260 *d++ = 0xbf;
6261 if (utf_char2cells(c) > 1)
6262 *d++ = '?';
6265 i += l - 1;
6268 *d = NUL;
6269 if (lenp != NULL)
6270 *lenp = (int)(d - retval);
6271 break;
6273 # ifdef MACOS_CONVERT
6274 case CONV_MAC_LATIN1:
6275 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6276 'm', 'l', unconvlenp);
6277 break;
6279 case CONV_LATIN1_MAC:
6280 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6281 'l', 'm', unconvlenp);
6282 break;
6284 case CONV_MAC_UTF8:
6285 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6286 'm', 'u', unconvlenp);
6287 break;
6289 case CONV_UTF8_MAC:
6290 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
6291 'u', 'm', unconvlenp);
6292 break;
6293 # endif
6295 # ifdef USE_ICONV
6296 case CONV_ICONV: /* conversion with output_conv.vc_fd */
6297 retval = iconv_string(vcp, ptr, len, unconvlenp, lenp);
6298 break;
6299 # endif
6300 # ifdef WIN3264
6301 case CONV_CODEPAGE: /* codepage -> codepage */
6303 int retlen;
6304 int tmp_len;
6305 short_u *tmp;
6307 /* 1. codepage/UTF-8 -> ucs-2. */
6308 if (vcp->vc_cpfrom == 0)
6309 tmp_len = utf8_to_utf16(ptr, len, NULL, NULL);
6310 else
6311 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
6312 ptr, len, 0, 0);
6313 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
6314 if (tmp == NULL)
6315 break;
6316 if (vcp->vc_cpfrom == 0)
6317 utf8_to_utf16(ptr, len, tmp, unconvlenp);
6318 else
6319 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
6321 /* 2. ucs-2 -> codepage/UTF-8. */
6322 if (vcp->vc_cpto == 0)
6323 retlen = utf16_to_utf8(tmp, tmp_len, NULL);
6324 else
6325 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
6326 tmp, tmp_len, 0, 0, 0, 0);
6327 retval = alloc(retlen + 1);
6328 if (retval != NULL)
6330 if (vcp->vc_cpto == 0)
6331 utf16_to_utf8(tmp, tmp_len, retval);
6332 else
6333 WideCharToMultiByte(vcp->vc_cpto, 0,
6334 tmp, tmp_len, retval, retlen, 0, 0);
6335 retval[retlen] = NUL;
6336 if (lenp != NULL)
6337 *lenp = retlen;
6339 vim_free(tmp);
6340 break;
6342 # endif
6345 return retval;
6347 #endif