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.
11 * mbyte.c: Code specifically for handling multi-byte characters.
13 * The encoding used in the core is set with 'encoding'. When 'encoding' is
14 * changed, the following four variables are set (for speed).
15 * Currently these types of character encodings are supported:
17 * "enc_dbcs" When non-zero it tells the type of double byte character
18 * encoding (Chinese, Korean, Japanese, etc.).
19 * The cell width on the display is equal to the number of
20 * bytes. (exception: DBCS_JPNU with first byte 0x8e)
21 * Recognizing the first or second byte is difficult, it
22 * requires checking a byte sequence from the start.
23 * "enc_utf8" When TRUE use Unicode characters in UTF-8 encoding.
24 * The cell width on the display needs to be determined from
25 * the character value.
26 * Recognizing bytes is easy: 0xxx.xxxx is a single-byte
27 * char, 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading
28 * byte of a multi-byte character.
29 * To make things complicated, up to six composing characters
30 * are allowed. These are drawn on top of the first char.
31 * For most editing the sequence of bytes with composing
32 * characters included is considered to be one character.
33 * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16).
34 * When 4 use 32-but Unicode characters.
35 * Internally characters are stored in UTF-8 encoding to
36 * avoid NUL bytes. Conversion happens when doing I/O.
37 * "enc_utf8" will also be TRUE.
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
44 * 'encoding' specifies the encoding used in the core. This is in registers,
45 * text manipulation, buffers, etc. Conversion has to be done when characters
46 * in another encoding are received or send:
54 * keyboard ----->| core |-----> display
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
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"
83 # ifndef WIN32_LEAN_AND_MEAN
84 # define WIN32_LEAN_AND_MEAN
88 # undef WIN32 /* Some windows.h define WIN32, we don't want that here. */
92 #if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
97 # include <X11/Intrinsic.h>
100 #include <X11/Xlocale.h>
103 #if defined(FEAT_GUI_GTK) && defined(FEAT_XIM) && defined(HAVE_GTK2)
104 # include <gdk/gdkkeysyms.h>
106 # include <gdk/gdkwin32.h>
108 # include <gdk/gdkx.h>
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
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 */
176 xim_log(char *s
, ...)
179 static FILE *fd
= NULL
;
181 if (fd
== (FILE *)-1)
185 fd
= mch_fopen("xim.log", "w");
188 EMSG("Cannot open xim.log");
194 va_start(arglist
, s
);
195 vfprintf(fd
, s
, arglist
);
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.
208 { char *name
; int prop
; int codepage
;}
211 #define IDX_LATIN_1 0
212 {"latin1", ENC_8BIT
+ ENC_LATIN1
, 1252},
214 {"iso-8859-2", ENC_8BIT
, 0},
216 {"iso-8859-3", ENC_8BIT
, 0},
218 {"iso-8859-4", ENC_8BIT
, 0},
220 {"iso-8859-5", ENC_8BIT
, 0},
222 {"iso-8859-6", ENC_8BIT
, 0},
224 {"iso-8859-7", ENC_8BIT
, 0},
226 {"iso-8859-8", ENC_8BIT
, 0},
228 {"iso-8859-9", ENC_8BIT
, 0},
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},
244 {"utf-8", ENC_UNICODE
, 0},
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},
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},
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. */
260 {"debug", ENC_DBCS
, DBCS_DEBUG
},
261 #define IDX_EUC_JP 24
262 {"euc-jp", ENC_DBCS
, DBCS_JPNU
},
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
},
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. */
278 {"cp437", ENC_8BIT
, 437}, /* like iso-8859-1 */
280 {"cp737", ENC_8BIT
, 737}, /* like iso-8859-7 */
282 {"cp775", ENC_8BIT
, 775}, /* Baltic */
284 {"cp850", ENC_8BIT
, 850}, /* like iso-8859-4 */
286 {"cp852", ENC_8BIT
, 852}, /* like iso-8859-1 */
288 {"cp855", ENC_8BIT
, 855}, /* like iso-8859-2 */
290 {"cp857", ENC_8BIT
, 857}, /* like iso-8859-5 */
292 {"cp860", ENC_8BIT
, 860}, /* like iso-8859-9 */
294 {"cp861", ENC_8BIT
, 861}, /* like iso-8859-1 */
296 {"cp862", ENC_8BIT
, 862}, /* like iso-8859-1 */
298 {"cp863", ENC_8BIT
, 863}, /* like iso-8859-8 */
300 {"cp865", ENC_8BIT
, 865}, /* like iso-8859-1 */
302 {"cp866", ENC_8BIT
, 866}, /* like iso-8859-5 */
304 {"cp869", ENC_8BIT
, 869}, /* like iso-8859-7 */
306 {"cp874", ENC_8BIT
, 874}, /* Thai */
308 {"cp932", ENC_DBCS
, DBCS_JPN
},
310 {"cp936", ENC_DBCS
, DBCS_CHS
},
312 {"cp949", ENC_DBCS
, DBCS_KOR
},
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 */
343 * Aliases for encoding names.
346 { char *name
; int canon
;}
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
},
358 {"hebrew", IDX_CP1255
},
360 {"hebrew", IDX_ISO_8
},
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
},
371 {"unicode", 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
},
381 {"ucs4be", IDX_UCS4
},
382 {"ucs-4be", IDX_UCS4
},
383 {"ucs4le", IDX_UCS4LE
},
385 {"utf-32", IDX_UCS4
},
386 {"utf32be", IDX_UCS4
},
387 {"utf-32be", IDX_UCS4
},
388 {"utf32le", IDX_UCS4LE
},
389 {"utf-32le", IDX_UCS4LE
},
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
},
408 {"chinese", IDX_CP936
},
409 {"taiwan", IDX_CP950
},
412 {"japan", IDX_EUC_JP
},
413 {"korea", IDX_EUC_KR
},
415 {"chinese", IDX_EUC_CN
},
416 {"taiwan", IDX_EUC_TW
},
420 {"mac", IDX_MACROMAN
},
421 {"mac-roman", IDX_MACROMAN
},
426 # define CP_UTF8 65001 /* magic number from winnls.h */
430 * Find encoding "name" in the list of canonical encoding names.
431 * Returns -1 if not found.
434 enc_canon_search(name
)
439 for (i
= 0; i
< IDX_COUNT
; ++i
)
440 if (STRCMP(name
, enc_canon_table
[i
].name
) == 0)
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
)
459 i
= enc_canon_search(name
);
461 return enc_canon_table
[i
].prop
;
463 if (name
[0] == 'c' && name
[1] == 'p' && VIM_ISDIGIT(name
[2]))
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 */
472 if (cpinfo
.MaxCharSize
== 2
473 && (cpinfo
.LeadByte
[0] != 0 || cpinfo
.LeadByte
[1] != 0))
474 /* must be a DBCS encoding */
480 if (STRNCMP(name
, "2byte-", 6) == 0)
482 if (STRNCMP(name
, "8bit-", 5) == 0 || STRNCMP(name
, "iso-8859-", 9) == 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
505 int enc_dbcs_new
= 0;
506 #if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
508 # define LEN_FROM_CONV
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
;
525 if (p_enc
[0] == 'c' && p_enc
[1] == 'p' && VIM_ISDIGIT(p_enc
[2]))
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 */
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);
545 goto codepage_invalid
;
547 else if (GetLastError() == ERROR_INVALID_PARAMETER
)
550 return (char_u
*)N_("E543: Not a valid codepage");
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. */
561 else if (STRNCMP(p_enc
, "2byte-", 6) == 0)
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)
569 /* Unix: accept any "2byte-" name, assume current locale. */
570 enc_dbcs_new
= DBCS_2BYTE
;
573 else if ((idx
= enc_canon_search(p_enc
)) >= 0)
575 i
= enc_canon_table
[idx
].prop
;
580 if (i
& (ENC_2BYTE
| ENC_2WORD
))
582 else if (i
& ENC_4BYTE
)
587 else if (i
& ENC_DBCS
)
589 /* 2byte, handle below */
590 enc_dbcs_new
= enc_canon_table
[idx
].codepage
;
599 else /* Don't know what encoding this is, reject it. */
602 if (enc_dbcs_new
!= 0)
605 /* Check if the DBCS code page is OK. */
606 if (!IsValidCodePage(enc_dbcs_new
))
607 goto codepage_invalid
;
612 enc_dbcs
= enc_dbcs_new
;
613 has_mbyte
= (enc_dbcs
!= 0 || enc_utf8
);
616 enc_codepage
= encname2codepage(p_enc
);
617 enc_latin9
= (STRCMP(p_enc
, "iso-8859-15") == 0);
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.
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
;
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().
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
;
677 if (p
== NULL
|| STRCMP(p
, p_enc
) != 0)
679 convert_setup(&vimconv
, p_enc
, (char_u
*)"utf-8");
680 vimconv
.vc_fail
= TRUE
;
686 for (i
= 0; i
< 256; ++i
)
688 /* Our own function to reliably check the length of UTF-8 characters,
689 * independent of mblen(). */
692 else if (enc_dbcs
== 0)
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
700 n
= IsDBCSLeadByteEx(enc_dbcs
, (BYTE
)i
) ? 2 : 1;
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;
710 char buf
[MB_MAXBYTES
];
713 # define mblen _Xmblen
716 if (i
== NUL
) /* just in case mblen() can't handle "" */
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
);
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)
758 mb_bytelen_tab
[i
] = n
;
762 convert_setup(&vimconv
, NULL
, NULL
);
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[] */
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
);
784 /* When changing 'encoding' while starting up, then convert the command
785 * line arguments from the active codepage to 'encoding'. */
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
);
797 /* Need to reload spell dictionaries */
805 * Return the size of the BOM for the current buffer:
807 * 2 - UCS-2 or UTF-16 BOM
816 if (curbuf
->b_p_bomb
&& !curbuf
->b_p_bin
)
818 if (*curbuf
->b_p_fenc
== NUL
)
822 if (enc_unicode
!= 0)
828 else if (STRCMP(curbuf
->b_p_fenc
, "utf-8") == 0)
830 else if (STRNCMP(curbuf
->b_p_fenc
, "ucs-2", 5) == 0
831 || STRNCMP(curbuf
->b_p_fenc
, "utf-16", 6) == 0)
833 else if (STRNCMP(curbuf
->b_p_fenc
, "ucs-4", 5) == 0)
840 * Get class of pointer:
843 * 2 for an (ASCII) word character
844 * >2 for other word characters
850 if (MB_BYTE2LEN(p
[0]) == 1)
852 if (p
[0] == NUL
|| vim_iswhite(p
[0]))
854 if (vim_iswordc(p
[0]))
858 if (enc_dbcs
!= 0 && p
[0] != NUL
&& p
[1] != NUL
)
859 return dbcs_class(p
[0], p
[1]);
861 return utf_class(utf_ptr2char(p
));
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
)
876 /* please add classfy routine for your language in here */
878 case DBCS_JPNU
: /* ? */
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 */
889 lb
= (lb
- 0x81) * 2 + 0x21;
891 lb
= (lb
- 0xc1) * 2 + 0x21;
903 * XXX: Code page identification can not use with all
904 * system! So, some other encoding information
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 */
916 switch (lb
<< 8 | tb
)
918 case 0x2121: /* ZENKAKU space */
920 case 0x2122: /* KU-TEN (Japanese comma) */
921 case 0x2123: /* TOU-TEN (Japanese period) */
922 case 0x2124: /* ZENKAKU comma */
923 case 0x2125: /* ZENKAKU period */
925 case 0x213c: /* prolongedsound handled as KATAKANA */
928 /* sieved by KU code */
933 /* special symbols */
959 case DBCS_KORU
: /* ? */
962 /* KS code classification */
963 unsigned char c1
= lead
;
964 unsigned char c2
= trail
;
970 * 23 : Alpha-numeric/Roman Letter (Full width)
971 * 24 : Hangul Letter(Alphabet)
972 * 25 : Roman Numeral/Greek Letter
975 * 28 : Circled/Parenthesized Letter
976 * 29 : Hirigana/Katakana
977 * 30 : Cyrillic Letter
980 if (c1
>= 0xB0 && c1
<= 0xC8)
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
992 else if (c1
>= 0xCA && c1
<= 0xFD)
1005 /* Hangul Letter(Alphabet) */
1008 /* Roman Numeral/Greek Letter */
1019 return 25; /* Roman Letter */
1020 else if (c2
>= 0xF6)
1021 return 22; /* Symbols */
1023 /* Circled/Parenthesized Letter */
1027 /* Hirigana/Katakana */
1030 /* Cyrillic Letter */
1041 * mb_char2len() function pointer.
1042 * Return length in bytes of character "c".
1043 * Returns 1 for a single-byte character.
1062 * mb_char2bytes() function pointer.
1063 * Convert a character to its bytes.
1064 * Returns the length in bytes.
1067 latin_char2bytes(c
, buf
)
1076 dbcs_char2bytes(c
, buf
)
1082 buf
[0] = (unsigned)c
>> 8;
1084 /* Never use a NUL byte, it causes lots of trouble. It's an invalid
1085 * character anyway. */
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.
1104 return MB_BYTE2LEN(*p
);
1113 /* Check if second byte is not missing. */
1114 len
= MB_BYTE2LEN(*p
);
1115 if (len
== 2 && p
[1] == NUL
)
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
)
1131 if (size
< 1 || *p
== NUL
)
1137 dbcs_ptr2len_len(p
, size
)
1143 if (size
< 1 || *p
== NUL
)
1147 /* Check that second byte is not missing. */
1148 len
= MB_BYTE2LEN(*p
);
1149 if (len
== 2 && p
[1] == NUL
)
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)]".
1165 intable(table
, size
, c
)
1166 struct interval
*table
;
1172 /* first quick check for Latin1 etc. characters */
1173 if (c
< table
[0].first
)
1176 /* binary search in table */
1178 top
= (int)(size
/ sizeof(struct interval
) - 1);
1181 mid
= (bot
+ top
) / 2;
1182 if (table
[mid
].last
< c
)
1184 else if (table
[mid
].first
> c
)
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).
1203 /* Sorted list of non-overlapping intervals of East Asian double width
1204 * characters, generated with ../runtime/tools/unicode.vim. */
1205 static struct interval doublewidth
[] =
1246 /* Sorted list of non-overlapping intervals of East Asian Ambiguous
1247 * characters, generated with ../runtime/tools/unicode.vim. */
1248 static struct interval ambiguous
[] =
1430 {0x100000, 0x10fffd}
1435 #ifdef USE_WCHAR_FUNCTIONS
1437 * Assume the library function wcwidth() works better than our own
1438 * stuff. It should return 1 for ambiguous width chars!
1443 return 6; /* unprintable, displays <xxxx> */
1447 if (!utf_printable(c
))
1448 return 6; /* unprintable, displays <xxxx> */
1449 if (intable(doublewidth
, sizeof(doublewidth
), c
))
1454 /* Characters below 0x100 are influenced by 'isprint' option */
1455 else if (c
>= 0x80 && !vim_isprintc(c
))
1456 return 4; /* unprintable, displays <xx> */
1458 if (c
>= 0x80 && *p_ambw
== 'd' && intable(ambiguous
, sizeof(ambiguous
), c
))
1465 * mb_ptr2cells() function pointer.
1466 * Return the number of display cells character at "*p" occupies.
1467 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1482 /* Need to convert to a wide character. */
1485 c
= utf_ptr2char(p
);
1486 /* An illegal byte is displayed as <xx>. */
1487 if (utf_ptr2len(p
) == 1 || c
== NUL
)
1489 /* If the char is ASCII it must be an overlong sequence. */
1491 return char2cells(c
);
1492 return utf_char2cells(c
);
1501 /* Number of cells is equal to number of bytes, except for euc-jp when
1502 * the first byte is 0x8e. */
1503 if (enc_dbcs
== DBCS_JPNU
&& *p
== 0x8e)
1505 return MB_BYTE2LEN(*p
);
1509 * mb_ptr2cells_len() function pointer.
1510 * Like mb_ptr2cells(), but limit string length to "size".
1511 * For an empty string or truncated character returns 1.
1514 latin_ptr2cells_len(p
, size
)
1522 utf_ptr2cells_len(p
, size
)
1528 /* Need to convert to a wide character. */
1529 if (size
> 0 && *p
>= 0x80)
1531 if (utf_ptr2len_len(p
, size
) < utf8len_tab
[*p
])
1532 return 1; /* truncated */
1533 c
= utf_ptr2char(p
);
1534 /* An illegal byte is displayed as <xx>. */
1535 if (utf_ptr2len(p
) == 1 || c
== NUL
)
1537 /* If the char is ASCII it must be an overlong sequence. */
1539 return char2cells(c
);
1540 return utf_char2cells(c
);
1546 dbcs_ptr2cells_len(p
, size
)
1550 /* Number of cells is equal to number of bytes, except for euc-jp when
1551 * the first byte is 0x8e. */
1552 if (size
<= 1 || (enc_dbcs
== DBCS_JPNU
&& *p
== 0x8e))
1554 return MB_BYTE2LEN(*p
);
1558 * mb_char2cells() function pointer.
1559 * Return the number of display cells character "c" occupies.
1560 * Only takes care of multi-byte chars, not "^C" and such.
1573 /* Number of cells is equal to number of bytes, except for euc-jp when
1574 * the first byte is 0x8e. */
1575 if (enc_dbcs
== DBCS_JPNU
&& ((unsigned)c
>> 8) == 0x8e)
1577 /* use the first byte */
1578 return MB_BYTE2LEN((unsigned)c
>> 8);
1582 * mb_off2cells() function pointer.
1583 * Return number of display cells for char at ScreenLines[off].
1584 * We make sure that the offset used is less than "max_off".
1587 latin_off2cells(off
, max_off
)
1588 unsigned off UNUSED
;
1589 unsigned max_off UNUSED
;
1595 dbcs_off2cells(off
, max_off
)
1599 /* never check beyond end of the line */
1603 /* Number of cells is equal to number of bytes, except for euc-jp when
1604 * the first byte is 0x8e. */
1605 if (enc_dbcs
== DBCS_JPNU
&& ScreenLines
[off
] == 0x8e)
1607 return MB_BYTE2LEN(ScreenLines
[off
]);
1611 utf_off2cells(off
, max_off
)
1615 return (off
+ 1 < max_off
&& ScreenLines
[off
+ 1] == 0) ? 2 : 1;
1619 * mb_ptr2char() function pointer.
1620 * Convert a byte sequence into a character.
1633 if (MB_BYTE2LEN(*p
) > 1 && p
[1] != NUL
)
1634 return (p
[0] << 8) + p
[1];
1639 * Convert a UTF-8 byte sequence to a wide character.
1640 * If the sequence is illegal or truncated by a NUL the first byte is
1642 * Does not include composing characters, of course.
1650 if (p
[0] < 0x80) /* be quick for ASCII */
1653 len
= utf8len_tab_zero
[p
[0]];
1654 if (len
> 1 && (p
[1] & 0xc0) == 0x80)
1657 return ((p
[0] & 0x1f) << 6) + (p
[1] & 0x3f);
1658 if ((p
[2] & 0xc0) == 0x80)
1661 return ((p
[0] & 0x0f) << 12) + ((p
[1] & 0x3f) << 6)
1663 if ((p
[3] & 0xc0) == 0x80)
1666 return ((p
[0] & 0x07) << 18) + ((p
[1] & 0x3f) << 12)
1667 + ((p
[2] & 0x3f) << 6) + (p
[3] & 0x3f);
1668 if ((p
[4] & 0xc0) == 0x80)
1671 return ((p
[0] & 0x03) << 24) + ((p
[1] & 0x3f) << 18)
1672 + ((p
[2] & 0x3f) << 12) + ((p
[3] & 0x3f) << 6)
1674 if ((p
[5] & 0xc0) == 0x80 && len
== 6)
1675 return ((p
[0] & 0x01) << 30) + ((p
[1] & 0x3f) << 24)
1676 + ((p
[2] & 0x3f) << 18) + ((p
[3] & 0x3f) << 12)
1677 + ((p
[4] & 0x3f) << 6) + (p
[5] & 0x3f);
1682 /* Illegal value, just return the first byte */
1687 * Get character at **pp and advance *pp to the next character.
1688 * Note: composing characters are skipped!
1696 c
= (*mb_ptr2char
)(*pp
);
1697 *pp
+= (*mb_ptr2len
)(*pp
);
1702 * Get character at **pp and advance *pp to the next character.
1703 * Note: composing characters are returned as separate characters.
1706 mb_cptr2char_adv(pp
)
1711 c
= (*mb_ptr2char
)(*pp
);
1713 *pp
+= utf_ptr2len(*pp
);
1715 *pp
+= (*mb_ptr2len
)(*pp
);
1719 #if defined(FEAT_ARABIC) || defined(PROTO)
1721 * Check whether we are dealing with Arabic combining characters.
1722 * Note: these are NOT really composing characters!
1725 arabic_combine(one
, two
)
1726 int one
; /* first character */
1727 int two
; /* character just after "one" */
1730 return arabic_maycombine(two
);
1735 * Check whether we are dealing with a character that could be regarded as an
1736 * Arabic combining character, need to check the character before this.
1739 arabic_maycombine(two
)
1742 if (p_arshape
&& !p_tbidi
)
1743 return (two
== a_ALEF_MADDA
1744 || two
== a_ALEF_HAMZA_ABOVE
1745 || two
== a_ALEF_HAMZA_BELOW
1751 * Check if the character pointed to by "p2" is a composing character when it
1752 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1753 * behaves like a composing character.
1756 utf_composinglike(p1
, p2
)
1762 c2
= utf_ptr2char(p2
);
1763 if (utf_iscomposing(c2
))
1765 if (!arabic_maycombine(c2
))
1767 return arabic_combine(utf_ptr2char(p1
), c2
);
1772 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1773 * composing characters.
1776 utfc_ptr2char(p
, pcc
)
1778 int *pcc
; /* return: composing chars, last one is 0 */
1785 c
= utf_ptr2char(p
);
1786 len
= utf_ptr2len(p
);
1788 /* Only accept a composing char when the first char isn't illegal. */
1789 if ((len
> 1 || *p
< 0x80)
1791 && UTF_COMPOSINGLIKE(p
, p
+ len
))
1793 cc
= utf_ptr2char(p
+ len
);
1799 len
+= utf_ptr2len(p
+ len
);
1800 if (p
[len
] < 0x80 || !utf_iscomposing(cc
= utf_ptr2char(p
+ len
)))
1805 if (i
< MAX_MCO
) /* last composing char must be 0 */
1812 * Convert a UTF-8 byte string to a wide character. Also get up to MAX_MCO
1813 * composing characters. Use no more than p[maxlen].
1816 utfc_ptr2char_len(p
, pcc
, maxlen
)
1818 int *pcc
; /* return: composing chars, last one is 0 */
1826 c
= utf_ptr2char(p
);
1827 len
= utf_ptr2len_len(p
, maxlen
);
1828 /* Only accept a composing char when the first char isn't illegal. */
1829 if ((len
> 1 || *p
< 0x80)
1832 && UTF_COMPOSINGLIKE(p
, p
+ len
))
1834 cc
= utf_ptr2char(p
+ len
);
1840 len
+= utf_ptr2len_len(p
+ len
, maxlen
- len
);
1843 || !utf_iscomposing(cc
= utf_ptr2char(p
+ len
)))
1848 if (i
< MAX_MCO
) /* last composing char must be 0 */
1855 * Convert the character at screen position "off" to a sequence of bytes.
1856 * Includes the composing characters.
1857 * "buf" must at least have the length MB_MAXBYTES.
1858 * Returns the produced number of bytes.
1861 utfc_char2bytes(off
, buf
)
1868 len
= utf_char2bytes(ScreenLinesUC
[off
], buf
);
1869 for (i
= 0; i
< Screen_mco
; ++i
)
1871 if (ScreenLinesC
[i
][off
] == 0)
1873 len
+= utf_char2bytes(ScreenLinesC
[i
][off
], buf
+ len
);
1879 * Get the length of a UTF-8 byte sequence, not including any following
1880 * composing characters.
1882 * Returns 1 for an illegal byte sequence.
1893 len
= utf8len_tab
[*p
];
1894 for (i
= 1; i
< len
; ++i
)
1895 if ((p
[i
] & 0xc0) != 0x80)
1901 * Return length of UTF-8 character, obtained from the first byte.
1902 * "b" must be between 0 and 255!
1903 * Returns 1 for an invalid first byte value.
1909 return utf8len_tab
[b
];
1913 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1914 * following composing characters.
1916 * Returns 1 for an illegal byte sequence (also in incomplete byte seq.).
1917 * Returns number > "size" for an incomplete byte sequence.
1918 * Never returns zero.
1921 utf_ptr2len_len(p
, size
)
1929 len
= utf8len_tab
[*p
];
1931 return 1; /* NUL, ascii or illegal lead byte */
1933 m
= size
; /* incomplete byte sequence. */
1936 for (i
= 1; i
< m
; ++i
)
1937 if ((p
[i
] & 0xc0) != 0x80)
1943 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1944 * This includes following composing characters.
1958 if (b0
< 0x80 && p
[1] < 0x80) /* be quick for ASCII */
1961 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1962 len
= utf_ptr2len(p
);
1964 /* Check for illegal byte. */
1965 if (len
== 1 && b0
>= 0x80)
1969 * Check for composing characters. We can handle only the first six, but
1970 * skip all of them (otherwise the cursor would get stuck).
1977 if (p
[len
] < 0x80 || !UTF_COMPOSINGLIKE(p
+ prevlen
, p
+ len
))
1980 /* Skip over composing char */
1984 len
+= utf_ptr2len(p
+ len
);
1989 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1990 * takes. This includes following composing characters.
1991 * Returns 0 for an empty string.
1992 * Returns 1 for an illegal char or an incomplete byte sequence.
1995 utfc_ptr2len_len(p
, size
)
2004 if (size
< 1 || *p
== NUL
)
2006 if (p
[0] < 0x80 && (size
== 1 || p
[1] < 0x80)) /* be quick for ASCII */
2009 /* Skip over first UTF-8 char, stopping at a NUL byte. */
2010 len
= utf_ptr2len_len(p
, size
);
2012 /* Check for illegal byte and incomplete byte sequence. */
2013 if ((len
== 1 && p
[0] >= 0x80) || len
> size
)
2017 * Check for composing characters. We can handle only the first six, but
2018 * skip all of them (otherwise the cursor would get stuck).
2031 * Next character length should not go beyond size to ensure that
2032 * UTF_COMPOSINGLIKE(...) does not read beyond size.
2034 len_next_char
= utf_ptr2len_len(p
+ len
, size
- len
);
2035 if (len_next_char
> size
- len
)
2038 if (!UTF_COMPOSINGLIKE(p
+ prevlen
, p
+ len
))
2041 /* Skip over composing char */
2045 len
+= len_next_char
;
2051 * Return the number of bytes the UTF-8 encoding of character "c" takes.
2052 * This does not include composing characters.
2072 * Convert Unicode character "c" to UTF-8 string in "buf[]".
2073 * Returns the number of bytes.
2074 * This does not include composing characters.
2077 utf_char2bytes(c
, buf
)
2081 if (c
< 0x80) /* 7 bits */
2086 if (c
< 0x800) /* 11 bits */
2088 buf
[0] = 0xc0 + ((unsigned)c
>> 6);
2089 buf
[1] = 0x80 + (c
& 0x3f);
2092 if (c
< 0x10000) /* 16 bits */
2094 buf
[0] = 0xe0 + ((unsigned)c
>> 12);
2095 buf
[1] = 0x80 + (((unsigned)c
>> 6) & 0x3f);
2096 buf
[2] = 0x80 + (c
& 0x3f);
2099 if (c
< 0x200000) /* 21 bits */
2101 buf
[0] = 0xf0 + ((unsigned)c
>> 18);
2102 buf
[1] = 0x80 + (((unsigned)c
>> 12) & 0x3f);
2103 buf
[2] = 0x80 + (((unsigned)c
>> 6) & 0x3f);
2104 buf
[3] = 0x80 + (c
& 0x3f);
2107 if (c
< 0x4000000) /* 26 bits */
2109 buf
[0] = 0xf8 + ((unsigned)c
>> 24);
2110 buf
[1] = 0x80 + (((unsigned)c
>> 18) & 0x3f);
2111 buf
[2] = 0x80 + (((unsigned)c
>> 12) & 0x3f);
2112 buf
[3] = 0x80 + (((unsigned)c
>> 6) & 0x3f);
2113 buf
[4] = 0x80 + (c
& 0x3f);
2117 buf
[0] = 0xfc + ((unsigned)c
>> 30);
2118 buf
[1] = 0x80 + (((unsigned)c
>> 24) & 0x3f);
2119 buf
[2] = 0x80 + (((unsigned)c
>> 18) & 0x3f);
2120 buf
[3] = 0x80 + (((unsigned)c
>> 12) & 0x3f);
2121 buf
[4] = 0x80 + (((unsigned)c
>> 6) & 0x3f);
2122 buf
[5] = 0x80 + (c
& 0x3f);
2127 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
2128 * drawn on top of the preceding character.
2129 * Based on code from Markus Kuhn.
2135 /* Sorted list of non-overlapping intervals.
2136 * Generated by ../runtime/tools/unicode.vim. */
2137 static struct interval combining
[] =
2329 return intable(combining
, sizeof(combining
), c
);
2333 * Return TRUE for characters that can be displayed in a normal way.
2334 * Only for characters of 0x100 and above!
2340 #ifdef USE_WCHAR_FUNCTIONS
2342 * Assume the iswprint() library function works better than our own stuff.
2346 /* Sorted list of non-overlapping intervals.
2347 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
2348 static struct interval nonprint
[] =
2350 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
2351 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
2355 return !intable(nonprint
, sizeof(nonprint
), c
);
2360 * Get class of a Unicode character.
2363 * 2 or bigger: some class of word character.
2369 /* sorted list of non-overlapping intervals */
2370 static struct clinterval
2372 unsigned short first
;
2373 unsigned short last
;
2374 unsigned short class;
2377 {0x037e, 0x037e, 1}, /* Greek question mark */
2378 {0x0387, 0x0387, 1}, /* Greek ano teleia */
2379 {0x055a, 0x055f, 1}, /* Armenian punctuation */
2380 {0x0589, 0x0589, 1}, /* Armenian full stop */
2381 {0x05be, 0x05be, 1},
2382 {0x05c0, 0x05c0, 1},
2383 {0x05c3, 0x05c3, 1},
2384 {0x05f3, 0x05f4, 1},
2385 {0x060c, 0x060c, 1},
2386 {0x061b, 0x061b, 1},
2387 {0x061f, 0x061f, 1},
2388 {0x066a, 0x066d, 1},
2389 {0x06d4, 0x06d4, 1},
2390 {0x0700, 0x070d, 1}, /* Syriac punctuation */
2391 {0x0964, 0x0965, 1},
2392 {0x0970, 0x0970, 1},
2393 {0x0df4, 0x0df4, 1},
2394 {0x0e4f, 0x0e4f, 1},
2395 {0x0e5a, 0x0e5b, 1},
2396 {0x0f04, 0x0f12, 1},
2397 {0x0f3a, 0x0f3d, 1},
2398 {0x0f85, 0x0f85, 1},
2399 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
2400 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
2401 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
2402 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
2403 {0x1680, 0x1680, 0},
2404 {0x169b, 0x169c, 1},
2405 {0x16eb, 0x16ed, 1},
2406 {0x1735, 0x1736, 1},
2407 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
2408 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
2409 {0x2000, 0x200b, 0}, /* spaces */
2410 {0x200c, 0x2027, 1}, /* punctuation and symbols */
2411 {0x2028, 0x2029, 0},
2412 {0x202a, 0x202e, 1}, /* punctuation and symbols */
2413 {0x202f, 0x202f, 0},
2414 {0x2030, 0x205e, 1}, /* punctuation and symbols */
2415 {0x205f, 0x205f, 0},
2416 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
2417 {0x2070, 0x207f, 0x2070}, /* superscript */
2418 {0x2080, 0x2094, 0x2080}, /* subscript */
2419 {0x20a0, 0x27ff, 1}, /* all kinds of symbols */
2420 {0x2800, 0x28ff, 0x2800}, /* braille */
2421 {0x2900, 0x2998, 1}, /* arrows, brackets, etc. */
2422 {0x29d8, 0x29db, 1},
2423 {0x29fc, 0x29fd, 1},
2424 {0x3000, 0x3000, 0}, /* ideographic space */
2425 {0x3001, 0x3020, 1}, /* ideographic punctuation */
2426 {0x3030, 0x3030, 1},
2427 {0x303d, 0x303d, 1},
2428 {0x3040, 0x309f, 0x3040}, /* Hiragana */
2429 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
2430 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
2431 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
2432 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
2433 {0xfd3e, 0xfd3f, 1},
2434 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
2435 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
2436 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
2437 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
2438 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
2441 int top
= sizeof(classes
) / sizeof(struct clinterval
) - 1;
2444 /* First quick check for Latin1 characters, use 'iskeyword'. */
2447 if (c
== ' ' || c
== '\t' || c
== NUL
|| c
== 0xa0)
2448 return 0; /* blank */
2450 return 2; /* word character */
2451 return 1; /* punctuation */
2454 /* binary search in table */
2457 mid
= (bot
+ top
) / 2;
2458 if (classes
[mid
].last
< c
)
2460 else if (classes
[mid
].first
> c
)
2463 return (int)classes
[mid
].class;
2466 /* most other characters are "word" characters */
2471 * Code for Unicode case-dependent operations. Based on notes in
2472 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
2473 * This code uses simple case folding, not full case folding.
2474 * Last updated for Unicode 5.2.
2478 * The following tables are built by ../runtime/tools/unicode.vim.
2479 * They must be in numeric order, because we use binary search.
2480 * An entry such as {0x41,0x5a,1,32} means that Unicode characters in the
2481 * range from 0x41 to 0x5a inclusive, stepping by 1, are changed to
2482 * folded/upper/lower by adding 32.
2492 static convertStruct foldCase
[] =
2502 {0x178,0x178,-1,-121},
2504 {0x17f,0x17f,-1,-268},
2505 {0x181,0x181,-1,210},
2507 {0x186,0x186,-1,206},
2509 {0x189,0x18a,1,205},
2511 {0x18e,0x18e,-1,79},
2512 {0x18f,0x18f,-1,202},
2513 {0x190,0x190,-1,203},
2515 {0x193,0x193,-1,205},
2516 {0x194,0x194,-1,207},
2517 {0x196,0x196,-1,211},
2518 {0x197,0x197,-1,209},
2520 {0x19c,0x19c,-1,211},
2521 {0x19d,0x19d,-1,213},
2522 {0x19f,0x19f,-1,214},
2524 {0x1a6,0x1a6,-1,218},
2526 {0x1a9,0x1a9,-1,218},
2528 {0x1ae,0x1ae,-1,218},
2530 {0x1b1,0x1b2,1,217},
2532 {0x1b7,0x1b7,-1,219},
2543 {0x1f6,0x1f6,-1,-97},
2544 {0x1f7,0x1f7,-1,-56},
2546 {0x220,0x220,-1,-130},
2548 {0x23a,0x23a,-1,10795},
2550 {0x23d,0x23d,-1,-163},
2551 {0x23e,0x23e,-1,10792},
2553 {0x243,0x243,-1,-195},
2554 {0x244,0x244,-1,69},
2555 {0x245,0x245,-1,71},
2557 {0x345,0x345,-1,116},
2560 {0x386,0x386,-1,38},
2562 {0x38c,0x38c,-1,64},
2568 {0x3d0,0x3d0,-1,-30},
2569 {0x3d1,0x3d1,-1,-25},
2570 {0x3d5,0x3d5,-1,-15},
2571 {0x3d6,0x3d6,-1,-22},
2573 {0x3f0,0x3f0,-1,-54},
2574 {0x3f1,0x3f1,-1,-48},
2575 {0x3f4,0x3f4,-1,-60},
2576 {0x3f5,0x3f5,-1,-64},
2578 {0x3f9,0x3f9,-1,-7},
2580 {0x3fd,0x3ff,1,-130},
2585 {0x4c0,0x4c0,-1,15},
2589 {0x10a0,0x10c5,1,7264},
2590 {0x1e00,0x1e94,2,1},
2591 {0x1e9b,0x1e9b,-1,-58},
2592 {0x1e9e,0x1e9e,-1,-7615},
2593 {0x1ea0,0x1efe,2,1},
2594 {0x1f08,0x1f0f,1,-8},
2595 {0x1f18,0x1f1d,1,-8},
2596 {0x1f28,0x1f2f,1,-8},
2597 {0x1f38,0x1f3f,1,-8},
2598 {0x1f48,0x1f4d,1,-8},
2599 {0x1f59,0x1f5f,2,-8},
2600 {0x1f68,0x1f6f,1,-8},
2601 {0x1f88,0x1f8f,1,-8},
2602 {0x1f98,0x1f9f,1,-8},
2603 {0x1fa8,0x1faf,1,-8},
2604 {0x1fb8,0x1fb9,1,-8},
2605 {0x1fba,0x1fbb,1,-74},
2606 {0x1fbc,0x1fbc,-1,-9},
2607 {0x1fbe,0x1fbe,-1,-7173},
2608 {0x1fc8,0x1fcb,1,-86},
2609 {0x1fcc,0x1fcc,-1,-9},
2610 {0x1fd8,0x1fd9,1,-8},
2611 {0x1fda,0x1fdb,1,-100},
2612 {0x1fe8,0x1fe9,1,-8},
2613 {0x1fea,0x1feb,1,-112},
2614 {0x1fec,0x1fec,-1,-7},
2615 {0x1ff8,0x1ff9,1,-128},
2616 {0x1ffa,0x1ffb,1,-126},
2617 {0x1ffc,0x1ffc,-1,-9},
2618 {0x2126,0x2126,-1,-7517},
2619 {0x212a,0x212a,-1,-8383},
2620 {0x212b,0x212b,-1,-8262},
2621 {0x2132,0x2132,-1,28},
2622 {0x2160,0x216f,1,16},
2623 {0x2183,0x2183,-1,1},
2624 {0x24b6,0x24cf,1,26},
2625 {0x2c00,0x2c2e,1,48},
2626 {0x2c60,0x2c60,-1,1},
2627 {0x2c62,0x2c62,-1,-10743},
2628 {0x2c63,0x2c63,-1,-3814},
2629 {0x2c64,0x2c64,-1,-10727},
2630 {0x2c67,0x2c6b,2,1},
2631 {0x2c6d,0x2c6d,-1,-10780},
2632 {0x2c6e,0x2c6e,-1,-10749},
2633 {0x2c6f,0x2c6f,-1,-10783},
2634 {0x2c70,0x2c70,-1,-10782},
2635 {0x2c72,0x2c75,3,1},
2636 {0x2c7e,0x2c7f,1,-10815},
2637 {0x2c80,0x2ce2,2,1},
2638 {0x2ceb,0x2ced,2,1},
2639 {0xa640,0xa65e,2,1},
2640 {0xa662,0xa66c,2,1},
2641 {0xa680,0xa696,2,1},
2642 {0xa722,0xa72e,2,1},
2643 {0xa732,0xa76e,2,1},
2644 {0xa779,0xa77b,2,1},
2645 {0xa77d,0xa77d,-1,-35332},
2646 {0xa77e,0xa786,2,1},
2647 {0xa78b,0xa78b,-1,1},
2648 {0xff21,0xff3a,1,32},
2649 {0x10400,0x10427,1,40}
2652 static int utf_convert(int a
, convertStruct table
[], int tableSize
);
2655 * Generic conversion function for case operations.
2656 * Return the converted equivalent of "a", which is a UCS-4 character. Use
2657 * the given conversion "table". Uses binary search on "table".
2660 utf_convert(a
, table
, tableSize
)
2662 convertStruct table
[];
2665 int start
, mid
, end
; /* indices into table */
2668 end
= tableSize
/ sizeof(convertStruct
);
2671 /* need to search further */
2672 mid
= (end
+ start
) /2;
2673 if (table
[mid
].rangeEnd
< a
)
2678 if (table
[start
].rangeStart
<= a
&& a
<= table
[start
].rangeEnd
2679 && (a
- table
[start
].rangeStart
) % table
[start
].step
== 0)
2680 return (a
+ table
[start
].offset
);
2686 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2687 * simple case folding.
2693 return utf_convert(a
, foldCase
, sizeof(foldCase
));
2696 static convertStruct toLower
[] =
2702 {0x130,0x130,-1,-199},
2706 {0x178,0x178,-1,-121},
2708 {0x181,0x181,-1,210},
2710 {0x186,0x186,-1,206},
2712 {0x189,0x18a,1,205},
2714 {0x18e,0x18e,-1,79},
2715 {0x18f,0x18f,-1,202},
2716 {0x190,0x190,-1,203},
2718 {0x193,0x193,-1,205},
2719 {0x194,0x194,-1,207},
2720 {0x196,0x196,-1,211},
2721 {0x197,0x197,-1,209},
2723 {0x19c,0x19c,-1,211},
2724 {0x19d,0x19d,-1,213},
2725 {0x19f,0x19f,-1,214},
2727 {0x1a6,0x1a6,-1,218},
2729 {0x1a9,0x1a9,-1,218},
2731 {0x1ae,0x1ae,-1,218},
2733 {0x1b1,0x1b2,1,217},
2735 {0x1b7,0x1b7,-1,219},
2746 {0x1f6,0x1f6,-1,-97},
2747 {0x1f7,0x1f7,-1,-56},
2749 {0x220,0x220,-1,-130},
2751 {0x23a,0x23a,-1,10795},
2753 {0x23d,0x23d,-1,-163},
2754 {0x23e,0x23e,-1,10792},
2756 {0x243,0x243,-1,-195},
2757 {0x244,0x244,-1,69},
2758 {0x245,0x245,-1,71},
2762 {0x386,0x386,-1,38},
2764 {0x38c,0x38c,-1,64},
2770 {0x3f4,0x3f4,-1,-60},
2772 {0x3f9,0x3f9,-1,-7},
2774 {0x3fd,0x3ff,1,-130},
2779 {0x4c0,0x4c0,-1,15},
2783 {0x10a0,0x10c5,1,7264},
2784 {0x1e00,0x1e94,2,1},
2785 {0x1e9e,0x1e9e,-1,-7615},
2786 {0x1ea0,0x1efe,2,1},
2787 {0x1f08,0x1f0f,1,-8},
2788 {0x1f18,0x1f1d,1,-8},
2789 {0x1f28,0x1f2f,1,-8},
2790 {0x1f38,0x1f3f,1,-8},
2791 {0x1f48,0x1f4d,1,-8},
2792 {0x1f59,0x1f5f,2,-8},
2793 {0x1f68,0x1f6f,1,-8},
2794 {0x1f88,0x1f8f,1,-8},
2795 {0x1f98,0x1f9f,1,-8},
2796 {0x1fa8,0x1faf,1,-8},
2797 {0x1fb8,0x1fb9,1,-8},
2798 {0x1fba,0x1fbb,1,-74},
2799 {0x1fbc,0x1fbc,-1,-9},
2800 {0x1fc8,0x1fcb,1,-86},
2801 {0x1fcc,0x1fcc,-1,-9},
2802 {0x1fd8,0x1fd9,1,-8},
2803 {0x1fda,0x1fdb,1,-100},
2804 {0x1fe8,0x1fe9,1,-8},
2805 {0x1fea,0x1feb,1,-112},
2806 {0x1fec,0x1fec,-1,-7},
2807 {0x1ff8,0x1ff9,1,-128},
2808 {0x1ffa,0x1ffb,1,-126},
2809 {0x1ffc,0x1ffc,-1,-9},
2810 {0x2126,0x2126,-1,-7517},
2811 {0x212a,0x212a,-1,-8383},
2812 {0x212b,0x212b,-1,-8262},
2813 {0x2132,0x2132,-1,28},
2814 {0x2160,0x216f,1,16},
2815 {0x2183,0x2183,-1,1},
2816 {0x24b6,0x24cf,1,26},
2817 {0x2c00,0x2c2e,1,48},
2818 {0x2c60,0x2c60,-1,1},
2819 {0x2c62,0x2c62,-1,-10743},
2820 {0x2c63,0x2c63,-1,-3814},
2821 {0x2c64,0x2c64,-1,-10727},
2822 {0x2c67,0x2c6b,2,1},
2823 {0x2c6d,0x2c6d,-1,-10780},
2824 {0x2c6e,0x2c6e,-1,-10749},
2825 {0x2c6f,0x2c6f,-1,-10783},
2826 {0x2c70,0x2c70,-1,-10782},
2827 {0x2c72,0x2c75,3,1},
2828 {0x2c7e,0x2c7f,1,-10815},
2829 {0x2c80,0x2ce2,2,1},
2830 {0x2ceb,0x2ced,2,1},
2831 {0xa640,0xa65e,2,1},
2832 {0xa662,0xa66c,2,1},
2833 {0xa680,0xa696,2,1},
2834 {0xa722,0xa72e,2,1},
2835 {0xa732,0xa76e,2,1},
2836 {0xa779,0xa77b,2,1},
2837 {0xa77d,0xa77d,-1,-35332},
2838 {0xa77e,0xa786,2,1},
2839 {0xa78b,0xa78b,-1,1},
2840 {0xff21,0xff3a,1,32},
2841 {0x10400,0x10427,1,40}
2844 static convertStruct toUpper
[] =
2852 {0x131,0x131,-1,-232},
2857 {0x17f,0x17f,-1,-300},
2858 {0x180,0x180,-1,195},
2861 {0x192,0x192,-1,-1},
2862 {0x195,0x195,-1,97},
2863 {0x199,0x199,-1,-1},
2864 {0x19a,0x19a,-1,163},
2865 {0x19e,0x19e,-1,130},
2870 {0x1bd,0x1bd,-1,-1},
2871 {0x1bf,0x1bf,-1,56},
2872 {0x1c5,0x1c5,-1,-1},
2873 {0x1c6,0x1c6,-1,-2},
2874 {0x1c8,0x1c8,-1,-1},
2875 {0x1c9,0x1c9,-1,-2},
2876 {0x1cb,0x1cb,-1,-1},
2877 {0x1cc,0x1cc,-1,-2},
2879 {0x1dd,0x1dd,-1,-79},
2881 {0x1f2,0x1f2,-1,-1},
2882 {0x1f3,0x1f3,-1,-2},
2886 {0x23c,0x23c,-1,-1},
2887 {0x23f,0x240,1,10815},
2890 {0x250,0x250,-1,10783},
2891 {0x251,0x251,-1,10780},
2892 {0x252,0x252,-1,10782},
2893 {0x253,0x253,-1,-210},
2894 {0x254,0x254,-1,-206},
2895 {0x256,0x257,1,-205},
2896 {0x259,0x259,-1,-202},
2897 {0x25b,0x25b,-1,-203},
2898 {0x260,0x260,-1,-205},
2899 {0x263,0x263,-1,-207},
2900 {0x268,0x268,-1,-209},
2901 {0x269,0x269,-1,-211},
2902 {0x26b,0x26b,-1,10743},
2903 {0x26f,0x26f,-1,-211},
2904 {0x271,0x271,-1,10749},
2905 {0x272,0x272,-1,-213},
2906 {0x275,0x275,-1,-214},
2907 {0x27d,0x27d,-1,10727},
2908 {0x280,0x283,3,-218},
2909 {0x288,0x288,-1,-218},
2910 {0x289,0x289,-1,-69},
2911 {0x28a,0x28b,1,-217},
2912 {0x28c,0x28c,-1,-71},
2913 {0x292,0x292,-1,-219},
2914 {0x345,0x345,-1,84},
2916 {0x377,0x377,-1,-1},
2917 {0x37b,0x37d,1,130},
2918 {0x3ac,0x3ac,-1,-38},
2919 {0x3ad,0x3af,1,-37},
2920 {0x3b1,0x3c1,1,-32},
2921 {0x3c2,0x3c2,-1,-31},
2922 {0x3c3,0x3cb,1,-32},
2923 {0x3cc,0x3cc,-1,-64},
2924 {0x3cd,0x3ce,1,-63},
2925 {0x3d0,0x3d0,-1,-62},
2926 {0x3d1,0x3d1,-1,-57},
2927 {0x3d5,0x3d5,-1,-47},
2928 {0x3d6,0x3d6,-1,-54},
2929 {0x3d7,0x3d7,-1,-8},
2931 {0x3f0,0x3f0,-1,-86},
2932 {0x3f1,0x3f1,-1,-80},
2934 {0x3f5,0x3f5,-1,-96},
2936 {0x430,0x44f,1,-32},
2937 {0x450,0x45f,1,-80},
2941 {0x4cf,0x4cf,-1,-15},
2943 {0x561,0x586,1,-48},
2944 {0x1d79,0x1d79,-1,35332},
2945 {0x1d7d,0x1d7d,-1,3814},
2946 {0x1e01,0x1e95,2,-1},
2947 {0x1e9b,0x1e9b,-1,-59},
2948 {0x1ea1,0x1eff,2,-1},
2949 {0x1f00,0x1f07,1,8},
2950 {0x1f10,0x1f15,1,8},
2951 {0x1f20,0x1f27,1,8},
2952 {0x1f30,0x1f37,1,8},
2953 {0x1f40,0x1f45,1,8},
2954 {0x1f51,0x1f57,2,8},
2955 {0x1f60,0x1f67,1,8},
2956 {0x1f70,0x1f71,1,74},
2957 {0x1f72,0x1f75,1,86},
2958 {0x1f76,0x1f77,1,100},
2959 {0x1f78,0x1f79,1,128},
2960 {0x1f7a,0x1f7b,1,112},
2961 {0x1f7c,0x1f7d,1,126},
2962 {0x1f80,0x1f87,1,8},
2963 {0x1f90,0x1f97,1,8},
2964 {0x1fa0,0x1fa7,1,8},
2965 {0x1fb0,0x1fb1,1,8},
2966 {0x1fb3,0x1fb3,-1,9},
2967 {0x1fbe,0x1fbe,-1,-7205},
2968 {0x1fc3,0x1fc3,-1,9},
2969 {0x1fd0,0x1fd1,1,8},
2970 {0x1fe0,0x1fe1,1,8},
2971 {0x1fe5,0x1fe5,-1,7},
2972 {0x1ff3,0x1ff3,-1,9},
2973 {0x214e,0x214e,-1,-28},
2974 {0x2170,0x217f,1,-16},
2975 {0x2184,0x2184,-1,-1},
2976 {0x24d0,0x24e9,1,-26},
2977 {0x2c30,0x2c5e,1,-48},
2978 {0x2c61,0x2c61,-1,-1},
2979 {0x2c65,0x2c65,-1,-10795},
2980 {0x2c66,0x2c66,-1,-10792},
2981 {0x2c68,0x2c6c,2,-1},
2982 {0x2c73,0x2c76,3,-1},
2983 {0x2c81,0x2ce3,2,-1},
2984 {0x2cec,0x2cee,2,-1},
2985 {0x2d00,0x2d25,1,-7264},
2986 {0xa641,0xa65f,2,-1},
2987 {0xa663,0xa66d,2,-1},
2988 {0xa681,0xa697,2,-1},
2989 {0xa723,0xa72f,2,-1},
2990 {0xa733,0xa76f,2,-1},
2991 {0xa77a,0xa77c,2,-1},
2992 {0xa77f,0xa787,2,-1},
2993 {0xa78c,0xa78c,-1,-1},
2994 {0xff41,0xff5a,1,-32},
2995 {0x10428,0x1044f,1,-40}
2999 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
3000 * simple case folding.
3006 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
3007 if (a
< 128 && (cmp_flags
& CMP_KEEPASCII
))
3008 return TOUPPER_ASC(a
);
3010 #if defined(HAVE_TOWUPPER) && defined(__STDC_ISO_10646__)
3011 /* If towupper() is available and handles Unicode, use it. */
3012 if (!(cmp_flags
& CMP_INTERNAL
))
3016 /* For characters below 128 use locale sensitive toupper(). */
3018 return TOUPPER_LOC(a
);
3020 /* For any other characters use the above mapping table. */
3021 return utf_convert(a
, toUpper
, sizeof(toUpper
));
3028 return (utf_toupper(a
) != a
);
3032 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
3033 * simple case folding.
3039 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
3040 if (a
< 128 && (cmp_flags
& CMP_KEEPASCII
))
3041 return TOLOWER_ASC(a
);
3043 #if defined(HAVE_TOWLOWER) && defined(__STDC_ISO_10646__)
3044 /* If towlower() is available and handles Unicode, use it. */
3045 if (!(cmp_flags
& CMP_INTERNAL
))
3049 /* For characters below 128 use locale sensitive tolower(). */
3051 return TOLOWER_LOC(a
);
3053 /* For any other characters use the above mapping table. */
3054 return utf_convert(a
, toLower
, sizeof(toLower
));
3061 return (utf_tolower(a
) != a
);
3065 * Version of strnicmp() that handles multi-byte characters.
3066 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
3067 * probably use strnicmp(), because there are no ASCII characters in the
3069 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
3070 * two characters otherwise.
3073 mb_strnicmp(s1
, s2
, nn
)
3079 int incomplete
= FALSE
;
3082 for (i
= 0; i
< n
; i
+= l
)
3084 if (s1
[i
] == NUL
&& s2
[i
] == NUL
) /* both strings end */
3088 l
= utf_byte2len(s1
[i
]);
3091 l
= n
- i
; /* incomplete character */
3094 /* Check directly first, it's faster. */
3095 for (j
= 0; j
< l
; ++j
)
3097 if (s1
[i
+ j
] != s2
[i
+ j
])
3100 /* Both stings have the same bytes but are incomplete or
3101 * have illegal bytes, accept them as equal. */
3106 /* If one of the two characters is incomplete return -1. */
3107 if (incomplete
|| i
+ utf_byte2len(s2
[i
]) > n
)
3109 cdiff
= utf_fold(utf_ptr2char(s1
+ i
))
3110 - utf_fold(utf_ptr2char(s2
+ i
));
3117 l
= (*mb_ptr2len
)(s1
+ i
);
3120 /* Single byte: first check normally, then with ignore case. */
3123 cdiff
= MB_TOLOWER(s1
[i
]) - MB_TOLOWER(s2
[i
]);
3130 /* For non-Unicode multi-byte don't ignore case. */
3133 cdiff
= STRNCMP(s1
+ i
, s2
+ i
, l
);
3143 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
3144 * 'encoding' has been set to.
3155 /* Get the byte length of the char under the cursor, including composing
3157 line
= ml_get_cursor();
3158 len
= utfc_ptr2len(line
);
3166 for (i
= 0; i
< len
; ++i
)
3170 /* start of (composing) character, get its length */
3173 STRCPY(IObuff
+ rlen
, "+ ");
3176 clen
= utf_ptr2len(line
+ i
);
3178 sprintf((char *)IObuff
+ rlen
, "%02x ", line
[i
]);
3180 rlen
+= (int)STRLEN(IObuff
+ rlen
);
3181 if (rlen
> IOSIZE
- 20)
3189 * mb_head_off() function pointer.
3190 * Return offset from "p" to the first byte of the character it points into.
3191 * If "p" points to the NUL at the end of the string return 0.
3192 * Returns 0 when already at the first byte of a character.
3195 latin_head_off(base
, p
)
3196 char_u
*base UNUSED
;
3203 dbcs_head_off(base
, p
)
3209 /* It can't be a trailing byte when not using DBCS, at the start of the
3210 * string or the previous byte can't start a double-byte. */
3211 if (p
<= base
|| MB_BYTE2LEN(p
[-1]) == 1 || *p
== NUL
)
3214 /* This is slow: need to start at the base and go forward until the
3215 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
3218 q
+= dbcs_ptr2len(q
);
3219 return (q
== p
) ? 0 : 1;
3223 * Special version of dbcs_head_off() that works for ScreenLines[], where
3224 * single-width DBCS_JPNU characters are stored separately.
3227 dbcs_screen_head_off(base
, p
)
3233 /* It can't be a trailing byte when not using DBCS, at the start of the
3234 * string or the previous byte can't start a double-byte.
3235 * For euc-jp an 0x8e byte in the previous cell always means we have a
3236 * lead byte in the current cell. */
3238 || (enc_dbcs
== DBCS_JPNU
&& p
[-1] == 0x8e)
3239 || MB_BYTE2LEN(p
[-1]) == 1
3243 /* This is slow: need to start at the base and go forward until the
3244 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
3245 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
3246 * stored as the next byte. */
3250 if (enc_dbcs
== DBCS_JPNU
&& *q
== 0x8e)
3253 q
+= dbcs_ptr2len(q
);
3255 return (q
== p
) ? 0 : 1;
3259 utf_head_off(base
, p
)
3271 if (*p
< 0x80) /* be quick for ASCII */
3274 /* Skip backwards over trailing bytes: 10xx.xxxx
3275 * Skip backwards again if on a composing char. */
3278 /* Move s to the last byte of this char. */
3279 for (s
= q
; (s
[1] & 0xc0) == 0x80; ++s
)
3281 /* Move q to the first byte of this char. */
3282 while (q
> base
&& (*q
& 0xc0) == 0x80)
3284 /* Check for illegal sequence. Do allow an illegal byte after where we
3286 len
= utf8len_tab
[*q
];
3287 if (len
!= (int)(s
- q
+ 1) && len
!= (int)(p
- q
+ 1))
3293 c
= utf_ptr2char(q
);
3294 if (utf_iscomposing(c
))
3298 if (arabic_maycombine(c
))
3300 /* Advance to get a sneak-peak at the next char */
3303 /* Move j to the first byte of this char. */
3304 while (j
> base
&& (*j
& 0xc0) == 0x80)
3306 if (arabic_combine(utf_ptr2char(j
), c
))
3313 return (int)(p
- q
);
3317 * Copy a character from "*fp" to "*tp" and advance the pointers.
3320 mb_copy_char(fp
, tp
)
3324 int l
= (*mb_ptr2len
)(*fp
);
3326 mch_memmove(*tp
, *fp
, (size_t)l
);
3332 * Return the offset from "p" to the first byte of a character. When "p" is
3333 * at the start of a character 0 is returned, otherwise the offset to the next
3334 * character. Can start anywhere in a stream of bytes.
3337 mb_off_next(base
, p
)
3346 if (*p
< 0x80) /* be quick for ASCII */
3349 /* Find the next character that isn't 10xx.xxxx */
3350 for (i
= 0; (p
[i
] & 0xc0) == 0x80; ++i
)
3354 /* Check for illegal sequence. */
3355 for (j
= 0; p
- j
> base
; ++j
)
3356 if ((p
[-j
] & 0xc0) != 0x80)
3358 if (utf8len_tab
[p
[-j
]] != i
+ j
)
3364 /* Only need to check if we're on a trail byte, it doesn't matter if we
3365 * want the offset to the next or current character. */
3366 return (*mb_head_off
)(base
, p
);
3370 * Return the offset from "p" to the last byte of the character it points
3371 * into. Can start anywhere in a stream of bytes.
3374 mb_tail_off(base
, p
)
3386 /* Find the last character that is 10xx.xxxx */
3387 for (i
= 0; (p
[i
+ 1] & 0xc0) == 0x80; ++i
)
3389 /* Check for illegal sequence. */
3390 for (j
= 0; p
- j
> base
; ++j
)
3391 if ((p
[-j
] & 0xc0) != 0x80)
3393 if (utf8len_tab
[p
[-j
]] != i
+ j
+ 1)
3398 /* It can't be the first byte if a double-byte when not using DBCS, at the
3399 * end of the string or the byte can't start a double-byte. */
3400 if (enc_dbcs
== 0 || p
[1] == NUL
|| MB_BYTE2LEN(*p
) == 1)
3403 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3404 return 1 - dbcs_head_off(base
, p
);
3408 * Find the next illegal byte sequence.
3413 pos_T pos
= curwin
->w_cursor
;
3417 char_u
*tofree
= NULL
;
3419 vimconv
.vc_type
= CONV_NONE
;
3420 if (enc_utf8
&& (enc_canon_props(curbuf
->b_p_fenc
) & ENC_8BIT
))
3422 /* 'encoding' is "utf-8" but we are editing a 8-bit encoded file,
3423 * possibly a utf-8 file with illegal bytes. Setup for conversion
3424 * from utf-8 to 'fileencoding'. */
3425 convert_setup(&vimconv
, p_enc
, curbuf
->b_p_fenc
);
3428 #ifdef FEAT_VIRTUALEDIT
3429 curwin
->w_cursor
.coladd
= 0;
3433 p
= ml_get_cursor();
3434 if (vimconv
.vc_type
!= CONV_NONE
)
3437 tofree
= string_convert(&vimconv
, p
, NULL
);
3445 /* Illegal means that there are not enough trail bytes (checked by
3446 * utf_ptr2len()) or too many of them (overlong sequence). */
3447 len
= utf_ptr2len(p
);
3448 if (*p
>= 0x80 && (len
== 1
3449 || utf_char2len(utf_ptr2char(p
)) != len
))
3451 if (vimconv
.vc_type
== CONV_NONE
)
3452 curwin
->w_cursor
.col
+= (colnr_T
)(p
- ml_get_cursor());
3457 len
= (int)(p
- tofree
);
3458 for (p
= ml_get_cursor(); *p
!= NUL
&& len
-- > 0; p
+= l
)
3461 curwin
->w_cursor
.col
+= l
;
3468 if (curwin
->w_cursor
.lnum
== curbuf
->b_ml
.ml_line_count
)
3470 ++curwin
->w_cursor
.lnum
;
3471 curwin
->w_cursor
.col
= 0;
3474 /* didn't find it: don't move and beep */
3475 curwin
->w_cursor
= pos
;
3480 convert_setup(&vimconv
, NULL
, NULL
);
3483 #if defined(HAVE_GTK2) || defined(PROTO)
3485 * Return TRUE if string "s" is a valid utf-8 string.
3486 * When "end" is NULL stop at the first NUL.
3487 * When "end" is positive stop there.
3490 utf_valid_string(s
, end
)
3497 while (end
== NULL
? *p
!= NUL
: p
< end
)
3499 l
= utf8len_tab_zero
[*p
];
3501 return FALSE
; /* invalid lead byte */
3502 if (end
!= NULL
&& p
+ l
> end
)
3503 return FALSE
; /* incomplete byte sequence */
3506 if ((*p
++ & 0xc0) != 0x80)
3507 return FALSE
; /* invalid trail byte */
3513 #if defined(FEAT_GUI) || defined(PROTO)
3515 * Special version of mb_tail_off() for use in ScreenLines[].
3518 dbcs_screen_tail_off(base
, p
)
3522 /* It can't be the first byte if a double-byte when not using DBCS, at the
3523 * end of the string or the byte can't start a double-byte.
3524 * For euc-jp an 0x8e byte always means we have a lead byte in the current
3526 if (*p
== NUL
|| p
[1] == NUL
3527 || (enc_dbcs
== DBCS_JPNU
&& *p
== 0x8e)
3528 || MB_BYTE2LEN(*p
) == 1)
3531 /* Return 1 when on the lead byte, 0 when on the tail byte. */
3532 return 1 - dbcs_screen_head_off(base
, p
);
3537 * If the cursor moves on an trail byte, set the cursor on the lead byte.
3538 * Thus it moves left if necessary.
3539 * Return TRUE when the cursor was adjusted.
3544 mb_adjustpos(&curwin
->w_cursor
);
3548 * Adjust position "*lp" to point to the first byte of a multi-byte character.
3549 * If it points to a tail byte it's moved backwards to the head byte.
3558 #ifdef FEAT_VIRTUALEDIT
3563 p
= ml_get(lp
->lnum
);
3564 lp
->col
-= (*mb_head_off
)(p
, p
+ lp
->col
);
3565 #ifdef FEAT_VIRTUALEDIT
3566 /* Reset "coladd" when the cursor would be on the right half of a
3567 * double-wide character. */
3569 && p
[lp
->col
] != TAB
3570 && vim_isprintc((*mb_ptr2char
)(p
+ lp
->col
))
3571 && ptr2cells(p
+ lp
->col
) > 1)
3578 * Return a pointer to the character before "*p", if there is one.
3582 char_u
*line
; /* start of the string */
3586 mb_ptr_back(line
, p
);
3591 * Return the character length of "str". Each multi-byte character (with
3592 * following composing characters) counts as one.
3604 for (count
= 0; *p
!= NUL
; count
++)
3605 p
+= (*mb_ptr2len
)(p
);
3610 #if defined(FEAT_SPELL) || defined(PROTO)
3612 * Like mb_charlen() but for a string with specified length.
3615 mb_charlen_len(str
, len
)
3622 for (count
= 0; *p
!= NUL
&& p
< str
+ len
; count
++)
3623 p
+= (*mb_ptr2len
)(p
);
3630 * Try to un-escape a multi-byte character.
3631 * Used for the "to" and "from" part of a mapping.
3632 * Return the un-escaped string if it is a multi-byte character, and advance
3633 * "pp" to just after the bytes that formed it.
3634 * Return NULL if no multi-byte char was found.
3640 static char_u buf
[MB_MAXBYTES
+ 1];
3644 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
3645 * KS_EXTRA KE_CSI to CSI. */
3646 for (n
= 0; str
[n
] != NUL
&& m
<= MB_MAXBYTES
; ++n
)
3648 if (str
[n
] == K_SPECIAL
3649 && str
[n
+ 1] == KS_SPECIAL
3650 && str
[n
+ 2] == KE_FILLER
)
3652 buf
[m
++] = K_SPECIAL
;
3655 else if ((str
[n
] == K_SPECIAL
3660 && str
[n
+ 1] == KS_EXTRA
3661 && str
[n
+ 2] == (int)KE_CSI
)
3666 else if (str
[n
] == K_SPECIAL
3671 break; /* a special key can't be a multibyte char */
3676 /* Return a multi-byte character if it's found. An illegal sequence
3677 * will result in a 1 here. */
3678 if ((*mb_ptr2len
)(buf
) > 1)
3688 * Return TRUE if the character at "row"/"col" on the screen is the left side
3689 * of a double-width character.
3690 * Caller must make sure "row" and "col" are not invalid!
3693 mb_lefthalve(row
, col
)
3697 #ifdef FEAT_HANGULIN
3698 if (composing_hangul
)
3701 return (*mb_off2cells
)(LineOffset
[row
] + col
,
3702 LineOffset
[row
] + screen_Columns
) > 1;
3706 * Correct a position on the screen, if it's the right half of a double-wide
3707 * char move it to the left half. Returns the corrected column.
3710 mb_fix_col(col
, row
)
3714 col
= check_col(col
);
3715 row
= check_row(row
);
3716 if (has_mbyte
&& ScreenLines
!= NULL
&& col
> 0
3718 && ScreenLines
[LineOffset
[row
] + col
] != NUL
3719 && dbcs_screen_head_off(ScreenLines
+ LineOffset
[row
],
3720 ScreenLines
+ LineOffset
[row
] + col
))
3721 || (enc_utf8
&& ScreenLines
[LineOffset
[row
] + col
] == 0)))
3727 #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
3728 static int enc_alias_search
__ARGS((char_u
*name
));
3731 * Skip the Vim specific head of a 'encoding' name.
3737 if (STRNCMP(p
, "2byte-", 6) == 0)
3739 if (STRNCMP(p
, "8bit-", 5) == 0)
3745 * Find the canonical name for encoding "enc".
3746 * When the name isn't recognized, returns "enc" itself, but with all lower
3747 * case characters and '_' replaced with '-'.
3748 * Returns an allocated string. NULL for out-of-memory.
3759 if (STRCMP(enc
, "default") == 0)
3761 /* Use the default encoding as it's found by set_init_1(). */
3762 r
= get_encoding_default();
3764 r
= (char_u
*)"latin1";
3765 return vim_strsave(r
);
3769 /* copy "enc" to allocated memory, with room for two '-' */
3770 r
= alloc((unsigned)(STRLEN(enc
) + 3));
3773 /* Make it all lower case and replace '_' with '-'. */
3775 for (s
= enc
; *s
!= NUL
; ++s
)
3780 *p
++ = TOLOWER_ASC(*s
);
3784 /* Skip "2byte-" and "8bit-". */
3787 /* Change "microsoft-cp" to "cp". Used in some spell files. */
3788 if (STRNCMP(p
, "microsoft-cp", 12) == 0)
3791 /* "iso8859" -> "iso-8859" */
3792 if (STRNCMP(p
, "iso8859", 7) == 0)
3794 STRMOVE(p
+ 4, p
+ 3);
3798 /* "iso-8859n" -> "iso-8859-n" */
3799 if (STRNCMP(p
, "iso-8859", 8) == 0 && p
[8] != '-')
3801 STRMOVE(p
+ 9, p
+ 8);
3805 /* "latin-N" -> "latinN" */
3806 if (STRNCMP(p
, "latin-", 6) == 0)
3807 STRMOVE(p
+ 5, p
+ 6);
3809 if (enc_canon_search(p
) >= 0)
3811 /* canonical name can be used unmodified */
3815 else if ((i
= enc_alias_search(p
)) >= 0)
3817 /* alias recognized, get canonical name */
3819 r
= vim_strsave((char_u
*)enc_canon_table
[i
].name
);
3826 * Search for an encoding alias of "name".
3827 * Returns -1 when not found.
3830 enc_alias_search(name
)
3835 for (i
= 0; enc_alias_table
[i
].name
!= NULL
; ++i
)
3836 if (STRCMP(name
, enc_alias_table
[i
].name
) == 0)
3837 return enc_alias_table
[i
].canon
;
3842 #if defined(FEAT_MBYTE) || defined(PROTO)
3844 #ifdef HAVE_LANGINFO_H
3845 # include <langinfo.h>
3849 * Get the canonicalized encoding of the current locale.
3850 * Returns an allocated string when successful, NULL when not.
3862 long acp
= GetACP();
3865 STRCPY(buf
, "ucs-2le");
3866 else if (acp
== 1252) /* cp1252 is used as latin1 */
3867 STRCPY(buf
, "latin1");
3869 sprintf(buf
, "cp%ld", acp
);
3871 # ifdef HAVE_NL_LANGINFO_CODESET
3872 if ((s
= nl_langinfo(CODESET
)) == NULL
|| *s
== NUL
)
3874 # if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
3875 if ((s
= setlocale(LC_CTYPE
, NULL
)) == NULL
|| *s
== NUL
)
3877 if ((s
= getenv("LC_ALL")) == NULL
|| *s
== NUL
)
3878 if ((s
= getenv("LC_CTYPE")) == NULL
|| *s
== NUL
)
3881 if (s
== NULL
|| *s
== NUL
)
3884 /* The most generic locale format is:
3885 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
3886 * If there is a '.' remove the part before it.
3887 * if there is something after the codeset, remove it.
3888 * Make the name lowercase and replace '_' with '-'.
3889 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
3890 * "ko_KR.EUC" == "euc-kr"
3892 if ((p
= (char *)vim_strchr((char_u
*)s
, '.')) != NULL
)
3894 if (p
> s
+ 2 && STRNICMP(p
+ 1, "EUC", 3) == 0
3895 && !isalnum((int)p
[4]) && p
[4] != '-' && p
[-3] == '_')
3897 /* copy "XY.EUC" to "euc-XY" to buf[10] */
3898 STRCPY(buf
+ 10, "euc-");
3907 for (i
= 0; s
[i
] != NUL
&& i
< (int)sizeof(buf
) - 1; ++i
)
3909 if (s
[i
] == '_' || s
[i
] == '-')
3911 else if (isalnum((int)s
[i
]))
3912 buf
[i
] = TOLOWER_ASC(s
[i
]);
3919 return enc_canonize((char_u
*)buf
);
3922 #if defined(WIN3264) || defined(PROTO)
3924 * Convert an encoding name to an MS-Windows codepage.
3925 * Returns zero if no codepage can be figured out.
3928 encname2codepage(name
)
3935 if (STRNCMP(p
, "8bit-", 5) == 0)
3937 else if (STRNCMP(p_enc
, "2byte-", 6) == 0)
3940 if (p
[0] == 'c' && p
[1] == 'p')
3942 else if ((idx
= enc_canon_search(p
)) >= 0)
3943 cp
= enc_canon_table
[idx
].codepage
;
3946 if (IsValidCodePage(cp
))
3952 # if defined(USE_ICONV) || defined(PROTO)
3954 static char_u
*iconv_string
__ARGS((vimconv_T
*vcp
, char_u
*str
, int slen
, int *unconvlenp
, int *resultlenp
));
3957 * Call iconv_open() with a check if iconv() works properly (there are broken
3959 * Returns (void *)-1 if failed.
3960 * (should return iconv_t, but that causes problems with prototypes).
3963 my_iconv_open(to
, from
)
3968 #define ICONV_TESTLEN 400
3969 char_u tobuf
[ICONV_TESTLEN
];
3972 static int iconv_ok
= -1;
3974 if (iconv_ok
== FALSE
)
3975 return (void *)-1; /* detected a broken iconv() previously */
3977 #ifdef DYNAMIC_ICONV
3978 /* Check if the iconv.dll can be found. */
3979 if (!iconv_enabled(TRUE
))
3983 fd
= iconv_open((char *)enc_skip(to
), (char *)enc_skip(from
));
3985 if (fd
!= (iconv_t
)-1 && iconv_ok
== -1)
3988 * Do a dummy iconv() call to check if it actually works. There is a
3989 * version of iconv() on Linux that is broken. We can't ignore it,
3990 * because it's wide-spread. The symptoms are that after outputting
3991 * the initial shift state the "to" pointer is NULL and conversion
3992 * stops for no apparent reason after about 8160 characters.
3995 tolen
= ICONV_TESTLEN
;
3996 (void)iconv(fd
, NULL
, NULL
, &p
, &tolen
);
4011 * Convert the string "str[slen]" with iconv().
4012 * If "unconvlenp" is not NULL handle the string ending in an incomplete
4013 * sequence and set "*unconvlenp" to the length of it.
4014 * Returns the converted string in allocated memory. NULL for an error.
4015 * If resultlenp is not NULL, sets it to the result length in bytes.
4018 iconv_string(vcp
, str
, slen
, unconvlenp
, resultlenp
)
4031 char_u
*result
= NULL
;
4039 if (len
== 0 || ICONV_ERRNO
== ICONV_E2BIG
)
4041 /* Allocate enough room for most conversions. When re-allocating
4042 * increase the buffer size. */
4043 len
= len
+ fromlen
* 2 + 40;
4044 p
= alloc((unsigned)len
);
4045 if (p
!= NULL
&& done
> 0)
4046 mch_memmove(p
, result
, done
);
4049 if (result
== NULL
) /* out of memory */
4053 to
= (char *)result
+ done
;
4054 tolen
= len
- done
- 2;
4055 /* Avoid a warning for systems with a wrong iconv() prototype by
4056 * casting the second argument to void *. */
4057 if (iconv(vcp
->vc_fd
, (void *)&from
, &fromlen
, &to
, &tolen
)
4060 /* Finished, append a NUL. */
4065 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
4066 * iconv library may use one of them. */
4067 if (!vcp
->vc_fail
&& unconvlenp
!= NULL
4068 && (ICONV_ERRNO
== ICONV_EINVAL
|| ICONV_ERRNO
== EINVAL
))
4070 /* Handle an incomplete sequence at the end. */
4072 *unconvlenp
= (int)fromlen
;
4076 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
4077 * iconv library may use one of them. */
4078 else if (!vcp
->vc_fail
4079 && (ICONV_ERRNO
== ICONV_EILSEQ
|| ICONV_ERRNO
== EILSEQ
4080 || ICONV_ERRNO
== ICONV_EINVAL
|| ICONV_ERRNO
== EINVAL
))
4082 /* Can't convert: insert a '?' and skip a character. This assumes
4083 * conversion from 'encoding' to something else. In other
4084 * situations we don't know what to skip anyway. */
4086 if ((*mb_ptr2cells
)((char_u
*)from
) > 1)
4089 l
= utfc_ptr2len_len((char_u
*)from
, (int)fromlen
);
4092 l
= (*mb_ptr2len
)((char_u
*)from
);
4093 if (l
> (int)fromlen
)
4099 else if (ICONV_ERRNO
!= ICONV_E2BIG
)
4101 /* conversion failed */
4106 /* Not enough room or skipping illegal sequence. */
4107 done
= to
- (char *)result
;
4110 if (resultlenp
!= NULL
)
4111 *resultlenp
= (int)(to
- (char *)result
);
4115 # if defined(DYNAMIC_ICONV) || defined(PROTO)
4117 * Dynamically load the "iconv.dll" on Win32.
4120 #ifndef DYNAMIC_ICONV /* just generating prototypes */
4121 # define HINSTANCE int
4123 static HINSTANCE hIconvDLL
= 0;
4124 static HINSTANCE hMsvcrtDLL
= 0;
4126 # ifndef DYNAMIC_ICONV_DLL
4127 # define DYNAMIC_ICONV_DLL "iconv.dll"
4128 # define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
4130 # ifndef DYNAMIC_MSVCRT_DLL
4131 # define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
4135 * Try opening the iconv.dll and return TRUE if iconv() can be used.
4138 iconv_enabled(verbose
)
4141 if (hIconvDLL
!= 0 && hMsvcrtDLL
!= 0)
4143 hIconvDLL
= LoadLibrary(DYNAMIC_ICONV_DLL
);
4144 if (hIconvDLL
== 0) /* sometimes it's called libiconv.dll */
4145 hIconvDLL
= LoadLibrary(DYNAMIC_ICONV_DLL_ALT
);
4147 hMsvcrtDLL
= LoadLibrary(DYNAMIC_MSVCRT_DLL
);
4148 if (hIconvDLL
== 0 || hMsvcrtDLL
== 0)
4150 /* Only give the message when 'verbose' is set, otherwise it might be
4151 * done whenever a conversion is attempted. */
4152 if (verbose
&& p_verbose
> 0)
4156 hIconvDLL
== 0 ? DYNAMIC_ICONV_DLL
: DYNAMIC_MSVCRT_DLL
);
4163 iconv
= (void *)GetProcAddress(hIconvDLL
, "libiconv");
4164 iconv_open
= (void *)GetProcAddress(hIconvDLL
, "libiconv_open");
4165 iconv_close
= (void *)GetProcAddress(hIconvDLL
, "libiconv_close");
4166 iconvctl
= (void *)GetProcAddress(hIconvDLL
, "libiconvctl");
4167 iconv_errno
= (void *)GetProcAddress(hMsvcrtDLL
, "_errno");
4168 if (iconv
== NULL
|| iconv_open
== NULL
|| iconv_close
== NULL
4169 || iconvctl
== NULL
|| iconv_errno
== NULL
)
4172 if (verbose
&& p_verbose
> 0)
4175 EMSG2(_(e_loadfunc
), "for libiconv");
4186 /* Don't use iconv() when inputting or outputting characters. */
4187 if (input_conv
.vc_type
== CONV_ICONV
)
4188 convert_setup(&input_conv
, NULL
, NULL
);
4189 if (output_conv
.vc_type
== CONV_ICONV
)
4190 convert_setup(&output_conv
, NULL
, NULL
);
4193 FreeLibrary(hIconvDLL
);
4194 if (hMsvcrtDLL
!= 0)
4195 FreeLibrary(hMsvcrtDLL
);
4199 # endif /* DYNAMIC_ICONV */
4200 # endif /* USE_ICONV */
4202 #endif /* FEAT_MBYTE */
4204 #if defined(FEAT_XIM) || defined(PROTO)
4206 # ifdef FEAT_GUI_GTK
4207 static int xim_has_preediting
INIT(= FALSE
); /* IM current status */
4210 * Set preedit_start_col to the current cursor position.
4213 init_preedit_start_col(void)
4215 if (State
& CMDLINE
)
4216 preedit_start_col
= cmdline_getvcol_cursor();
4217 else if (curwin
!= NULL
)
4218 getvcol(curwin
, &curwin
->w_cursor
, &preedit_start_col
, NULL
, NULL
);
4219 /* Prevent that preediting marks the buffer as changed. */
4220 xim_changed_while_preediting
= curbuf
->b_changed
;
4224 # if defined(HAVE_GTK2) && !defined(PROTO)
4226 static int im_is_active
= FALSE
; /* IM is enabled for current mode */
4227 static int preedit_is_active
= FALSE
;
4228 static int im_preedit_cursor
= 0; /* cursor offset in characters */
4229 static int im_preedit_trailing
= 0; /* number of characters after cursor */
4231 static unsigned long im_commit_handler_id
= 0;
4232 static unsigned int im_activatekey_keyval
= GDK_VoidSymbol
;
4233 static unsigned int im_activatekey_state
= 0;
4236 im_set_active(int active
)
4240 was_active
= !!im_is_active
;
4241 im_is_active
= (active
&& !p_imdisable
);
4243 if (im_is_active
!= was_active
)
4248 xim_set_focus(int focus
)
4253 gtk_im_context_focus_in(xic
);
4255 gtk_im_context_focus_out(xic
);
4260 im_set_position(int row
, int col
)
4266 area
.x
= FILL_X(col
);
4267 area
.y
= FILL_Y(row
);
4268 area
.width
= gui
.char_width
* (mb_lefthalve(row
, col
) ? 2 : 1);
4269 area
.height
= gui
.char_height
;
4271 gtk_im_context_set_cursor_location(xic
, &area
);
4275 # if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
4277 xim_set_preedit(void)
4279 im_set_position(gui
.row
, gui
.col
);
4284 im_add_to_input(char_u
*str
, int len
)
4286 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
4287 if (input_conv
.vc_type
!= CONV_NONE
)
4289 str
= string_convert(&input_conv
, str
, &len
);
4290 g_return_if_fail(str
!= NULL
);
4293 add_to_input_buf_csi(str
, len
);
4295 if (input_conv
.vc_type
!= CONV_NONE
)
4298 if (p_mh
) /* blank out the pointer if necessary */
4299 gui_mch_mousehide(TRUE
);
4303 im_delete_preedit(void)
4305 char_u bskey
[] = {CSI
, 'k', 'b'};
4306 char_u delkey
[] = {CSI
, 'k', 'D'};
4310 im_preedit_cursor
= 0;
4313 for (; im_preedit_cursor
> 0; --im_preedit_cursor
)
4314 add_to_input_buf(bskey
, (int)sizeof(bskey
));
4316 for (; im_preedit_trailing
> 0; --im_preedit_trailing
)
4317 add_to_input_buf(delkey
, (int)sizeof(delkey
));
4321 * Move the cursor left by "num_move_back" characters.
4322 * Note that ins_left() checks im_is_preediting() to avoid breaking undo for
4323 * these K_LEFT keys.
4326 im_correct_cursor(int num_move_back
)
4328 char_u backkey
[] = {CSI
, 'k', 'l'};
4332 # ifdef FEAT_RIGHTLEFT
4333 if ((State
& CMDLINE
) == 0 && curwin
!= NULL
&& curwin
->w_p_rl
)
4336 for (; num_move_back
> 0; --num_move_back
)
4337 add_to_input_buf(backkey
, (int)sizeof(backkey
));
4340 static int xim_expected_char
= NUL
;
4341 static int xim_ignored_char
= FALSE
;
4344 * Update the mode and cursor while in an IM callback.
4351 old_vgetc_busy
= vgetc_busy
;
4354 vgetc_busy
= old_vgetc_busy
;
4360 * Callback invoked when the user finished preediting.
4361 * Put the final string into the input buffer.
4364 im_commit_cb(GtkIMContext
*context UNUSED
,
4366 gpointer data UNUSED
)
4368 int slen
= (int)STRLEN(str
);
4369 int add_to_input
= TRUE
;
4372 int commit_with_preedit
= TRUE
;
4376 xim_log("im_commit_cb(): %s\n", str
);
4379 /* The imhangul module doesn't reset the preedit string before
4380 * committing. Call im_delete_preedit() to work around that. */
4381 im_delete_preedit();
4383 /* Indicate that preediting has finished. */
4384 if (preedit_start_col
== MAXCOL
)
4386 init_preedit_start_col();
4387 commit_with_preedit
= FALSE
;
4390 /* The thing which setting "preedit_start_col" to MAXCOL means that
4391 * "preedit_start_col" will be set forcely when calling
4392 * preedit_changed_cb() next time.
4393 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
4394 * is simulating the preediting by using add_to_input_str(). when
4395 * preedit begin immediately before committed, the typebuf is not
4396 * flushed to screen, then it can't get correct "preedit_start_col".
4397 * Thus, it should calculate the cells by adding cells of the committed
4399 if (input_conv
.vc_type
!= CONV_NONE
)
4401 im_str
= string_convert(&input_conv
, (char_u
*)str
, &len
);
4402 g_return_if_fail(im_str
!= NULL
);
4405 im_str
= (char_u
*)str
;
4407 for (p
= im_str
; p
< im_str
+ len
; p
+= (*mb_ptr2len
)(p
))
4408 clen
+= (*mb_ptr2cells
)(p
);
4409 if (input_conv
.vc_type
!= CONV_NONE
)
4411 preedit_start_col
+= clen
;
4413 /* Is this a single character that matches a keypad key that's just
4414 * been pressed? If so, we don't want it to be entered as such - let
4415 * us carry on processing the raw keycode so that it may be used in
4416 * mappings as <kSomething>. */
4417 if (xim_expected_char
!= NUL
)
4419 /* We're currently processing a keypad or other special key */
4420 if (slen
== 1 && str
[0] == xim_expected_char
)
4422 /* It's a match - don't do it here */
4423 xim_ignored_char
= TRUE
;
4424 add_to_input
= FALSE
;
4429 xim_ignored_char
= FALSE
;
4434 im_add_to_input((char_u
*)str
, slen
);
4436 /* Inserting chars while "im_is_active" is set does not cause a change of
4437 * buffer. When the chars are committed the buffer must be marked as
4439 if (!commit_with_preedit
)
4440 preedit_start_col
= MAXCOL
;
4442 /* This flag is used in changed() at next call. */
4443 xim_changed_while_preediting
= TRUE
;
4445 if (gtk_main_level() > 0)
4450 * Callback invoked after start to the preedit.
4453 im_preedit_start_cb(GtkIMContext
*context UNUSED
, gpointer data UNUSED
)
4456 xim_log("im_preedit_start_cb()\n");
4459 im_is_active
= TRUE
;
4460 preedit_is_active
= TRUE
;
4461 gui_update_cursor(TRUE
, FALSE
);
4466 * Callback invoked after end to the preedit.
4469 im_preedit_end_cb(GtkIMContext
*context UNUSED
, gpointer data UNUSED
)
4472 xim_log("im_preedit_end_cb()\n");
4474 im_delete_preedit();
4476 /* Indicate that preediting has finished */
4477 preedit_start_col
= MAXCOL
;
4478 xim_has_preediting
= FALSE
;
4481 /* Removal of this line suggested by Takuhiro Nishioka. Fixes that IM was
4482 * switched off unintentionally. We now use preedit_is_active (added by
4484 im_is_active
= FALSE
;
4486 preedit_is_active
= FALSE
;
4487 gui_update_cursor(TRUE
, FALSE
);
4492 * Callback invoked after changes to the preedit string. If the preedit
4493 * string was empty before, remember the preedit start column so we know
4494 * where to apply feedback attributes. Delete the previous preedit string
4495 * if there was one, save the new preedit cursor offset, and put the new
4496 * string into the input buffer.
4498 * TODO: The pragmatic "put into input buffer" approach used here has
4499 * several fundamental problems:
4501 * - The characters in the preedit string are subject to remapping.
4502 * That's broken, only the finally committed string should be remapped.
4504 * - There is a race condition involved: The retrieved value for the
4505 * current cursor position will be wrong if any unprocessed characters
4506 * are still queued in the input buffer.
4508 * - Due to the lack of synchronization between the file buffer in memory
4509 * and any typed characters, it's practically impossible to implement the
4510 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
4511 * modules for languages such as Thai are likely to rely on this feature
4512 * for proper operation.
4514 * Conclusions: I think support for preediting needs to be moved to the
4515 * core parts of Vim. Ideally, until it has been committed, the preediting
4516 * string should only be displayed and not affect the buffer content at all.
4517 * The question how to deal with the synchronization issue still remains.
4518 * Circumventing the input buffer is probably not desirable. Anyway, I think
4519 * implementing "retrieve_surrounding" is the only hard problem.
4521 * One way to solve all of this in a clean manner would be to queue all key
4522 * press/release events "as is" in the input buffer, and apply the IM filtering
4523 * at the receiving end of the queue. This, however, would have a rather large
4524 * impact on the code base. If there is an easy way to force processing of all
4525 * remaining input from within the "retrieve_surrounding" signal handler, this
4526 * might not be necessary. Gotta ask on vim-dev for opinions.
4529 im_preedit_changed_cb(GtkIMContext
*context
, gpointer data UNUSED
)
4531 char *preedit_string
= NULL
;
4532 int cursor_index
= 0;
4533 int num_move_back
= 0;
4538 gtk_im_context_get_preedit_string(context
,
4539 &preedit_string
, NULL
,
4543 xim_log("im_preedit_changed_cb(): %s\n", preedit_string
);
4546 g_return_if_fail(preedit_string
!= NULL
); /* just in case */
4548 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
4549 if (preedit_start_col
== MAXCOL
&& preedit_string
[0] != '\0')
4551 xim_has_preediting
= TRUE
;
4553 /* Urgh, this breaks if the input buffer isn't empty now */
4554 init_preedit_start_col();
4556 else if (cursor_index
== 0 && preedit_string
[0] == '\0')
4558 xim_has_preediting
= FALSE
;
4560 /* If at the start position (after typing backspace)
4561 * preedit_start_col must be reset. */
4562 preedit_start_col
= MAXCOL
;
4565 im_delete_preedit();
4568 * Compute the end of the preediting area: "preedit_end_col".
4569 * According to the documentation of gtk_im_context_get_preedit_string(),
4570 * the cursor_pos output argument returns the offset in bytes. This is
4571 * unfortunately not true -- real life shows the offset is in characters,
4572 * and the GTK+ source code agrees with me. Will file a bug later.
4574 if (preedit_start_col
!= MAXCOL
)
4575 preedit_end_col
= preedit_start_col
;
4576 str
= (char_u
*)preedit_string
;
4577 for (p
= str
, i
= 0; *p
!= NUL
; p
+= utf_byte2len(*p
), ++i
)
4581 is_composing
= ((*p
& 0x80) != 0 && utf_iscomposing(utf_ptr2char(p
)));
4583 * These offsets are used as counters when generating <BS> and <Del>
4584 * to delete the preedit string. So don't count composing characters
4585 * unless 'delcombine' is enabled.
4587 if (!is_composing
|| p_deco
)
4589 if (i
< cursor_index
)
4590 ++im_preedit_cursor
;
4592 ++im_preedit_trailing
;
4594 if (!is_composing
&& i
>= cursor_index
)
4596 /* This is essentially the same as im_preedit_trailing, except
4597 * composing characters are not counted even if p_deco is set. */
4600 if (preedit_start_col
!= MAXCOL
)
4601 preedit_end_col
+= utf_ptr2cells(p
);
4606 im_add_to_input(str
, (int)(p
- str
));
4607 im_correct_cursor(num_move_back
);
4610 g_free(preedit_string
);
4612 if (gtk_main_level() > 0)
4617 * Translate the Pango attributes at iter to Vim highlighting attributes.
4618 * Ignore attributes not supported by Vim highlighting. This shouldn't have
4619 * too much impact -- right now we handle even more attributes than necessary
4620 * for the IM modules I tested with.
4623 translate_pango_attributes(PangoAttrIterator
*iter
)
4625 PangoAttribute
*attr
;
4626 int char_attr
= HL_NORMAL
;
4628 attr
= pango_attr_iterator_get(iter
, PANGO_ATTR_UNDERLINE
);
4629 if (attr
!= NULL
&& ((PangoAttrInt
*)attr
)->value
4630 != (int)PANGO_UNDERLINE_NONE
)
4631 char_attr
|= HL_UNDERLINE
;
4633 attr
= pango_attr_iterator_get(iter
, PANGO_ATTR_WEIGHT
);
4634 if (attr
!= NULL
&& ((PangoAttrInt
*)attr
)->value
>= (int)PANGO_WEIGHT_BOLD
)
4635 char_attr
|= HL_BOLD
;
4637 attr
= pango_attr_iterator_get(iter
, PANGO_ATTR_STYLE
);
4638 if (attr
!= NULL
&& ((PangoAttrInt
*)attr
)->value
4639 != (int)PANGO_STYLE_NORMAL
)
4640 char_attr
|= HL_ITALIC
;
4642 attr
= pango_attr_iterator_get(iter
, PANGO_ATTR_BACKGROUND
);
4645 const PangoColor
*color
= &((PangoAttrColor
*)attr
)->color
;
4647 /* Assume inverse if black background is requested */
4648 if ((color
->red
| color
->green
| color
->blue
) == 0)
4649 char_attr
|= HL_INVERSE
;
4656 * Retrieve the highlighting attributes at column col in the preedit string.
4657 * Return -1 if not in preediting mode or if col is out of range.
4660 im_get_feedback_attr(int col
)
4662 char *preedit_string
= NULL
;
4663 PangoAttrList
*attr_list
= NULL
;
4669 gtk_im_context_get_preedit_string(xic
, &preedit_string
, &attr_list
, NULL
);
4671 if (preedit_string
!= NULL
&& attr_list
!= NULL
)
4675 /* Get the byte index as used by PangoAttrIterator */
4676 for (idx
= 0; col
> 0 && preedit_string
[idx
] != '\0'; --col
)
4677 idx
+= utfc_ptr2len((char_u
*)preedit_string
+ idx
);
4679 if (preedit_string
[idx
] != '\0')
4681 PangoAttrIterator
*iter
;
4684 char_attr
= HL_NORMAL
;
4685 iter
= pango_attr_list_get_iterator(attr_list
);
4687 /* Extract all relevant attributes from the list. */
4690 pango_attr_iterator_range(iter
, &start
, &end
);
4692 if (idx
>= start
&& idx
< end
)
4693 char_attr
|= translate_pango_attributes(iter
);
4695 while (pango_attr_iterator_next(iter
));
4697 pango_attr_iterator_destroy(iter
);
4701 if (attr_list
!= NULL
)
4702 pango_attr_list_unref(attr_list
);
4703 g_free(preedit_string
);
4712 xim_log("xim_init()\n");
4715 g_return_if_fail(gui
.drawarea
!= NULL
);
4716 g_return_if_fail(gui
.drawarea
->window
!= NULL
);
4718 xic
= gtk_im_multicontext_new();
4721 im_commit_handler_id
= g_signal_connect(G_OBJECT(xic
), "commit",
4722 G_CALLBACK(&im_commit_cb
), NULL
);
4723 g_signal_connect(G_OBJECT(xic
), "preedit_changed",
4724 G_CALLBACK(&im_preedit_changed_cb
), NULL
);
4725 g_signal_connect(G_OBJECT(xic
), "preedit_start",
4726 G_CALLBACK(&im_preedit_start_cb
), NULL
);
4727 g_signal_connect(G_OBJECT(xic
), "preedit_end",
4728 G_CALLBACK(&im_preedit_end_cb
), NULL
);
4730 gtk_im_context_set_client_window(xic
, gui
.drawarea
->window
);
4737 xim_log("im_shutdown()\n");
4742 gtk_im_context_focus_out(xic
);
4743 g_object_unref(xic
);
4746 im_is_active
= FALSE
;
4747 im_commit_handler_id
= 0;
4748 preedit_start_col
= MAXCOL
;
4749 xim_has_preediting
= FALSE
;
4753 * Convert the string argument to keyval and state for GdkEventKey.
4754 * If str is valid return TRUE, otherwise FALSE.
4756 * See 'imactivatekey' for documentation of the format.
4759 im_string_to_keyval(const char *str
, unsigned int *keyval
, unsigned int *state
)
4761 const char *mods_end
;
4762 unsigned tmp_keyval
;
4763 unsigned tmp_state
= 0;
4765 mods_end
= strrchr(str
, '-');
4766 mods_end
= (mods_end
!= NULL
) ? mods_end
+ 1 : str
;
4768 /* Parse modifier keys */
4769 while (str
< mods_end
)
4773 case 'S': case 's': tmp_state
|= (unsigned)GDK_SHIFT_MASK
; break;
4774 case 'L': case 'l': tmp_state
|= (unsigned)GDK_LOCK_MASK
; break;
4775 case 'C': case 'c': tmp_state
|= (unsigned)GDK_CONTROL_MASK
;break;
4776 case '1': tmp_state
|= (unsigned)GDK_MOD1_MASK
; break;
4777 case '2': tmp_state
|= (unsigned)GDK_MOD2_MASK
; break;
4778 case '3': tmp_state
|= (unsigned)GDK_MOD3_MASK
; break;
4779 case '4': tmp_state
|= (unsigned)GDK_MOD4_MASK
; break;
4780 case '5': tmp_state
|= (unsigned)GDK_MOD5_MASK
; break;
4785 tmp_keyval
= gdk_keyval_from_name(str
);
4787 if (tmp_keyval
== 0 || tmp_keyval
== GDK_VoidSymbol
)
4791 *keyval
= tmp_keyval
;
4799 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
4800 * empty string is also regarded as valid.
4802 * Note: The numerical key value of p_imak is cached if it was valid; thus
4803 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
4804 * 'imak' changes. This is currently the case but not obvious -- should
4805 * probably rename the function for clarity.
4808 im_xim_isvalid_imactivate(void)
4810 if (p_imak
[0] == NUL
)
4812 im_activatekey_keyval
= GDK_VoidSymbol
;
4813 im_activatekey_state
= 0;
4817 return im_string_to_keyval((const char *)p_imak
,
4818 &im_activatekey_keyval
,
4819 &im_activatekey_state
);
4823 im_synthesize_keypress(unsigned int keyval
, unsigned int state
)
4827 # ifdef HAVE_GTK_MULTIHEAD
4828 event
= (GdkEventKey
*)gdk_event_new(GDK_KEY_PRESS
);
4829 g_object_ref(gui
.drawarea
->window
); /* unreffed by gdk_event_free() */
4831 event
= (GdkEventKey
*)g_malloc0((gulong
)sizeof(GdkEvent
));
4832 event
->type
= GDK_KEY_PRESS
;
4834 event
->window
= gui
.drawarea
->window
;
4835 event
->send_event
= TRUE
;
4836 event
->time
= GDK_CURRENT_TIME
;
4837 event
->state
= state
;
4838 event
->keyval
= keyval
;
4839 event
->hardware_keycode
= /* needed for XIM */
4840 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event
->window
), (KeySym
)keyval
);
4842 event
->string
= NULL
;
4844 gtk_im_context_filter_keypress(xic
, event
);
4846 /* For consistency, also send the corresponding release event. */
4847 event
->type
= GDK_KEY_RELEASE
;
4848 event
->send_event
= FALSE
;
4849 gtk_im_context_filter_keypress(xic
, event
);
4851 # ifdef HAVE_GTK_MULTIHEAD
4852 gdk_event_free((GdkEvent
*)event
);
4864 * The third-party imhangul module (and maybe others too) ignores
4865 * gtk_im_context_reset() or at least doesn't reset the active state.
4866 * Thus sending imactivatekey would turn it off if it was on before,
4867 * which is clearly not what we want. Fortunately we can work around
4868 * that for imhangul by sending GDK_Escape, but I don't know if it
4869 * works with all IM modules that support an activation key :/
4871 * An alternative approach would be to destroy the IM context and
4872 * recreate it. But that means loading/unloading the IM module on
4873 * every mode switch, which causes a quite noticable delay even on
4874 * my rather fast box...
4876 * Moreover, there are some XIM which cannot respond to
4877 * im_synthesize_keypress(). we hope that they reset by
4880 if (im_activatekey_keyval
!= GDK_VoidSymbol
&& im_is_active
)
4881 im_synthesize_keypress(GDK_Escape
, 0U);
4883 gtk_im_context_reset(xic
);
4886 * HACK for Ami: This sequence of function calls makes Ami handle
4887 * the IM reset graciously, without breaking loads of other stuff.
4888 * It seems to force English mode as well, which is exactly what we
4889 * want because it makes the Ami status display work reliably.
4891 gtk_im_context_set_use_preedit(xic
, FALSE
);
4897 gtk_im_context_set_use_preedit(xic
, TRUE
);
4898 xim_set_focus(gui
.in_focus
);
4900 if (im_activatekey_keyval
!= GDK_VoidSymbol
)
4904 g_signal_handler_block(xic
, im_commit_handler_id
);
4905 im_synthesize_keypress(im_activatekey_keyval
,
4906 im_activatekey_state
);
4907 g_signal_handler_unblock(xic
, im_commit_handler_id
);
4914 xim_set_focus(gui
.in_focus
);
4919 preedit_start_col
= MAXCOL
;
4920 xim_has_preediting
= FALSE
;
4924 xim_queue_key_press_event(GdkEventKey
*event
, int down
)
4929 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
4930 * chars., even when not part of an IM sequence (ref. feature of
4932 * Flag any keypad keys that might represent a single char.
4933 * If this (on its own - i.e., not part of an IM sequence) is
4934 * committed while we're processing one of these keys, we can ignore
4935 * that commit and go ahead & process it ourselves. That way we can
4936 * still distinguish keypad keys for use in mappings.
4937 * Also add GDK_space to make <S-Space> work.
4939 switch (event
->keyval
)
4941 case GDK_KP_Add
: xim_expected_char
= '+'; break;
4942 case GDK_KP_Subtract
: xim_expected_char
= '-'; break;
4943 case GDK_KP_Divide
: xim_expected_char
= '/'; break;
4944 case GDK_KP_Multiply
: xim_expected_char
= '*'; break;
4945 case GDK_KP_Decimal
: xim_expected_char
= '.'; break;
4946 case GDK_KP_Equal
: xim_expected_char
= '='; break;
4947 case GDK_KP_0
: xim_expected_char
= '0'; break;
4948 case GDK_KP_1
: xim_expected_char
= '1'; break;
4949 case GDK_KP_2
: xim_expected_char
= '2'; break;
4950 case GDK_KP_3
: xim_expected_char
= '3'; break;
4951 case GDK_KP_4
: xim_expected_char
= '4'; break;
4952 case GDK_KP_5
: xim_expected_char
= '5'; break;
4953 case GDK_KP_6
: xim_expected_char
= '6'; break;
4954 case GDK_KP_7
: xim_expected_char
= '7'; break;
4955 case GDK_KP_8
: xim_expected_char
= '8'; break;
4956 case GDK_KP_9
: xim_expected_char
= '9'; break;
4957 case GDK_space
: xim_expected_char
= ' '; break;
4958 default: xim_expected_char
= NUL
;
4960 xim_ignored_char
= FALSE
;
4964 * When typing fFtT, XIM may be activated. Thus it must pass
4965 * gtk_im_context_filter_keypress() in Normal mode.
4966 * And while doing :sh too.
4968 if (xic
!= NULL
&& !p_imdisable
4969 && (State
& (INSERT
| CMDLINE
| NORMAL
| EXTERNCMD
)) != 0)
4972 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
4973 * always aware of the current status of IM, and can even emulate
4974 * the activation key for modules that don't support one.
4976 if (event
->keyval
== im_activatekey_keyval
4977 && (event
->state
& im_activatekey_state
) == im_activatekey_state
)
4979 unsigned int state_mask
;
4981 /* Require the state of the 3 most used modifiers to match exactly.
4982 * Otherwise e.g. <S-C-space> would be unusable for other purposes
4983 * if the IM activate key is <S-space>. */
4984 state_mask
= im_activatekey_state
;
4985 state_mask
|= ((int)GDK_SHIFT_MASK
| (int)GDK_CONTROL_MASK
4986 | (int)GDK_MOD1_MASK
);
4988 if ((event
->state
& state_mask
) != im_activatekey_state
)
4991 /* Don't send it a second time on GDK_KEY_RELEASE. */
4992 if (event
->type
!= GDK_KEY_PRESS
)
4995 if (map_to_exists_mode((char_u
*)"", LANGMAP
, FALSE
))
4997 im_set_active(FALSE
);
4999 /* ":lmap" mappings exists, toggle use of mappings. */
5001 if (State
& LANGMAP
)
5003 curbuf
->b_p_iminsert
= B_IMODE_NONE
;
5008 curbuf
->b_p_iminsert
= B_IMODE_LMAP
;
5014 return gtk_im_context_filter_keypress(xic
, event
);
5017 /* Don't filter events through the IM context if IM isn't active
5018 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
5019 * not doing anything before the activation key was sent. */
5020 if (im_activatekey_keyval
== GDK_VoidSymbol
|| im_is_active
)
5022 int imresult
= gtk_im_context_filter_keypress(xic
, event
);
5024 /* Some XIM send following sequence:
5025 * 1. preedited string.
5026 * 2. committed string.
5027 * 3. line changed key.
5028 * 4. preedited string.
5029 * 5. remove preedited string.
5030 * if 3, Vim can't move back the above line for 5.
5031 * thus, this part should not parse the key. */
5032 if (!imresult
&& preedit_start_col
!= MAXCOL
5033 && event
->keyval
== GDK_Return
)
5035 im_synthesize_keypress(GDK_Return
, 0U);
5039 /* If XIM tried to commit a keypad key as a single char.,
5040 * ignore it so we can use the keypad key 'raw', for mappings. */
5041 if (xim_expected_char
!= NUL
&& xim_ignored_char
)
5042 /* We had a keypad key, and XIM tried to thieve it */
5045 /* Normal processing */
5056 return im_is_active
;
5059 # else /* !HAVE_GTK2 */
5061 static int xim_is_active
= FALSE
; /* XIM should be active in the current
5063 static int xim_has_focus
= FALSE
; /* XIM is really being used for Vim */
5065 static XIMStyle input_style
;
5066 static int status_area_enabled
= TRUE
;
5071 # include <gdk/gdkwin32.h>
5073 # include <gdk/gdkx.h>
5077 /* Define a few things to be able to generate prototypes while not configured
5080 # define gboolean int
5081 typedef int GdkEvent
;
5082 typedef int GdkEventKey
;
5087 #if defined(FEAT_GUI_GTK) || defined(PROTO)
5088 static int preedit_buf_len
= 0;
5089 static int xim_can_preediting
INIT(= FALSE
); /* XIM in showmode() */
5090 static int xim_input_style
;
5091 #ifndef FEAT_GUI_GTK
5092 # define gboolean int
5094 static gboolean use_status_area
= 0;
5096 static int im_xim_str2keycode
__ARGS((unsigned int *code
, unsigned int *state
));
5097 static void im_xim_send_event_imactivate
__ARGS((void));
5100 * Convert string to keycode and state for XKeyEvent.
5101 * When string is valid return OK, when invalid return FAIL.
5103 * See 'imactivatekey' documentation for the format.
5106 im_xim_str2keycode(code
, state
)
5108 unsigned int *state
;
5112 unsigned keycode
= 0, keystate
= 0;
5120 len
= STRLEN(p_imak
);
5121 for (flag_end
= p_imak
+ len
- 1;
5122 flag_end
> p_imak
&& *flag_end
!= '-'; --flag_end
)
5125 /* Parse modifier keys */
5126 for (str
= p_imak
; str
< flag_end
; ++str
)
5131 keystate
|= ShiftMask
;
5134 keystate
|= LockMask
;
5137 keystate
|= ControlMask
;
5140 keystate
|= Mod1Mask
;
5143 keystate
|= Mod2Mask
;
5146 keystate
|= Mod3Mask
;
5149 keystate
|= Mod4Mask
;
5152 keystate
|= Mod5Mask
;
5163 /* Get keycode from string. */
5164 gui_get_x11_windis(&window
, &display
);
5166 keycode
= XKeysymToKeycode(display
, XStringToKeysym((char *)str
));
5179 im_xim_send_event_imactivate()
5181 /* Force turn on preedit state by symulate keypress event.
5182 * Keycode and state is specified by 'imactivatekey'.
5186 gui_get_x11_windis(&ev
.window
, &ev
.display
);
5187 ev
.root
= RootWindow(ev
.display
, DefaultScreen(ev
.display
));
5188 ev
.subwindow
= None
;
5189 ev
.time
= CurrentTime
;
5196 if (im_xim_str2keycode(&ev
.keycode
, &ev
.state
) == OK
)
5197 XSendEvent(ev
.display
, ev
.window
, 1, KeyPressMask
, (XEvent
*)&ev
);
5201 * Return TRUE if 'imactivatekey' has a valid value.
5204 im_xim_isvalid_imactivate()
5206 return im_xim_str2keycode(NULL
, NULL
) == OK
;
5208 #endif /* FEAT_GUI_GTK */
5211 * Switch using XIM on/off. This is used by the code that changes "State".
5214 im_set_active(active
)
5220 /* If 'imdisable' is set, XIM is never active. */
5223 #if !defined (FEAT_GUI_GTK)
5224 else if (input_style
& XIMPreeditPosition
)
5225 /* There is a problem in switching XIM off when preediting is used,
5226 * and it is not clear how this can be solved. For now, keep XIM on
5227 * all the time, like it was done in Vim 5.8. */
5231 /* Remember the active state, it is needed when Vim gets keyboard focus. */
5232 xim_is_active
= active
;
5235 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
5236 * state. When 'imactivatekey' has no or invalid string, try old XIM
5242 * Destroy old Input Context (XIC), and create new one. New XIC
5243 * would have a state of preedit that is off. When argument:active
5244 * is false, that's all. Else argument:active is true, send a key
5245 * event specified by 'imactivatekey' to activate XIM preedit state.
5248 xim_is_active
= TRUE
; /* Disable old XIM focus control */
5249 /* If we can monitor preedit state with preedit callback functions,
5250 * try least creation of new XIC.
5252 if (xim_input_style
& (int)GDK_IM_PREEDIT_CALLBACKS
)
5254 if (xim_can_preediting
&& !active
)
5256 /* Force turn off preedit state. With some IM
5257 * implementations, we cannot turn off preedit state by
5258 * symulate keypress event. It is why using such a method
5259 * that destroy old IC (input context), and create new one.
5260 * When create new IC, its preedit state is usually off.
5263 xim_set_focus(FALSE
);
5264 gdk_ic_destroy(xic
);
5266 xim_can_preediting
= FALSE
;
5268 else if (!xim_can_preediting
&& active
)
5269 im_xim_send_event_imactivate();
5273 /* First, force destroy old IC, and create new one. It
5274 * symulates "turning off preedit state".
5276 xim_set_focus(FALSE
);
5277 gdk_ic_destroy(xic
);
5279 xim_can_preediting
= FALSE
;
5281 /* 2nd, when requested to activate IM, symulate this by sending
5286 im_xim_send_event_imactivate();
5287 xim_can_preediting
= TRUE
;
5293 # ifndef XIMPreeditUnKnown
5294 /* X11R5 doesn't have these, it looks safe enough to define here. */
5295 typedef unsigned long XIMPreeditState
;
5296 # define XIMPreeditUnKnown 0L
5297 # define XIMPreeditEnable 1L
5298 # define XIMPreeditDisable (1L<<1)
5299 # define XNPreeditState "preeditState"
5301 XIMPreeditState preedit_state
= XIMPreeditUnKnown
;
5302 XVaNestedList preedit_attr
;
5305 preedit_attr
= XVaCreateNestedList(0,
5306 XNPreeditState
, &preedit_state
,
5308 pxic
= ((GdkICPrivate
*)xic
)->xic
;
5310 if (!XGetICValues(pxic
, XNPreeditAttributes
, preedit_attr
, NULL
))
5312 XFree(preedit_attr
);
5313 preedit_attr
= XVaCreateNestedList(0,
5315 active
? XIMPreeditEnable
: XIMPreeditDisable
,
5317 XSetICValues(pxic
, XNPreeditAttributes
, preedit_attr
, NULL
);
5318 xim_can_preediting
= active
;
5319 xim_is_active
= active
;
5321 XFree(preedit_attr
);
5323 if (xim_input_style
& XIMPreeditCallbacks
)
5325 preedit_buf_len
= 0;
5326 init_preedit_start_col();
5330 /* When had tested kinput2 + canna + Athena GUI version with
5331 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
5332 * work correctly. It just inserted one space. I don't know why we
5333 * couldn't switch state of XIM preediting. This is reason why these
5334 * codes are commented out.
5336 /* First, force destroy old IC, and create new one. It symulates
5337 * "turning off preedit state".
5339 xim_set_focus(FALSE
);
5344 /* 2nd, when requested to activate IM, symulate this by sending the
5348 im_xim_send_event_imactivate();
5355 * Adjust using XIM for gaining or losing keyboard focus. Also called when
5356 * "xim_is_active" changes.
5359 xim_set_focus(focus
)
5366 * XIM only gets focus when the Vim window has keyboard focus and XIM has
5367 * been set active for the current mode.
5369 if (focus
&& xim_is_active
)
5373 xim_has_focus
= TRUE
;
5375 gdk_im_begin(xic
, gui
.drawarea
->window
);
5385 xim_has_focus
= FALSE
;
5396 im_set_position(row
, col
)
5404 * Set the XIM to the current cursor position.
5412 xim_set_focus(TRUE
);
5426 # ifdef FEAT_XFONTSET
5427 if ((xim_input_style
& (int)GDK_IM_PREEDIT_POSITION
)
5428 && gui
.fontset
!= NOFONTSET
5429 && gui
.fontset
->type
== GDK_FONT_FONTSET
)
5433 if (attr
->spot_location
.y
>= 0)
5435 attr
->spot_location
.x
= 0;
5436 attr
->spot_location
.y
= -100;
5437 attrmask
|= (int)GDK_IC_SPOT_LOCATION
;
5444 if (attr
->spot_location
.x
!= TEXT_X(gui
.col
)
5445 || attr
->spot_location
.y
!= TEXT_Y(gui
.row
))
5447 attr
->spot_location
.x
= TEXT_X(gui
.col
);
5448 attr
->spot_location
.y
= TEXT_Y(gui
.row
);
5449 attrmask
|= (int)GDK_IC_SPOT_LOCATION
;
5452 gdk_window_get_size(gui
.drawarea
->window
, &width
, &height
);
5453 width
-= 2 * gui
.border_offset
;
5454 height
-= 2 * gui
.border_offset
;
5455 if (xim_input_style
& (int)GDK_IM_STATUS_AREA
)
5456 height
-= gui
.char_height
;
5457 if (attr
->preedit_area
.width
!= width
5458 || attr
->preedit_area
.height
!= height
)
5460 attr
->preedit_area
.x
= gui
.border_offset
;
5461 attr
->preedit_area
.y
= gui
.border_offset
;
5462 attr
->preedit_area
.width
= width
;
5463 attr
->preedit_area
.height
= height
;
5464 attrmask
|= (int)GDK_IC_PREEDIT_AREA
;
5467 if (attr
->preedit_fontset
!= gui
.current_font
)
5469 attr
->preedit_fontset
= gui
.current_font
;
5470 attrmask
|= (int)GDK_IC_PREEDIT_FONTSET
;
5474 # endif /* FEAT_XFONTSET */
5476 if (xim_fg_color
== INVALCOLOR
)
5478 xim_fg_color
= gui
.def_norm_pixel
;
5479 xim_bg_color
= gui
.def_back_pixel
;
5481 if (attr
->preedit_foreground
.pixel
!= xim_fg_color
)
5483 attr
->preedit_foreground
.pixel
= xim_fg_color
;
5484 attrmask
|= (int)GDK_IC_PREEDIT_FOREGROUND
;
5486 if (attr
->preedit_background
.pixel
!= xim_bg_color
)
5488 attr
->preedit_background
.pixel
= xim_bg_color
;
5489 attrmask
|= (int)GDK_IC_PREEDIT_BACKGROUND
;
5493 gdk_ic_set_attr(xic
, attr
, (GdkICAttributesType
)attrmask
);
5495 #else /* FEAT_GUI_GTK */
5497 XVaNestedList attr_list
;
5498 XRectangle spot_area
;
5504 /* hide XIM cursor */
5506 over_spot
.y
= -100; /* arbitrary invisible position */
5507 attr_list
= (XVaNestedList
) XVaCreateNestedList(0,
5511 XSetICValues(xic
, XNPreeditAttributes
, attr_list
, NULL
);
5516 if (input_style
& XIMPreeditPosition
)
5518 if (xim_fg_color
== INVALCOLOR
)
5520 xim_fg_color
= gui
.def_norm_pixel
;
5521 xim_bg_color
= gui
.def_back_pixel
;
5523 over_spot
.x
= TEXT_X(gui
.col
);
5524 over_spot
.y
= TEXT_Y(gui
.row
);
5527 spot_area
.height
= gui
.char_height
* Rows
;
5528 spot_area
.width
= gui
.char_width
* Columns
;
5529 line_space
= gui
.char_height
;
5530 attr_list
= (XVaNestedList
) XVaCreateNestedList(0,
5531 XNSpotLocation
, &over_spot
,
5532 XNForeground
, (Pixel
) xim_fg_color
,
5533 XNBackground
, (Pixel
) xim_bg_color
,
5535 XNLineSpace
, line_space
,
5537 if (XSetICValues(xic
, XNPreeditAttributes
, attr_list
, NULL
))
5538 EMSG(_("E284: Cannot set IC values"));
5542 #endif /* FEAT_GUI_GTK */
5546 * Set up the status area.
5548 * This should use a separate Widget, but that seems not possible, because
5549 * preedit_area and status_area should be set to the same window as for the
5550 * text input. Unfortunately this means the status area pollutes the text
5554 xim_set_status_area()
5560 # if defined(FEAT_XFONTSET)
5561 if (use_status_area
)
5574 style
= (int)gdk_ic_get_style(xic
);
5575 if ((style
& (int)GDK_IM_STATUS_MASK
) == (int)GDK_IM_STATUS_AREA
)
5577 if (gui
.fontset
!= NOFONTSET
5578 && gui
.fontset
->type
== GDK_FONT_FONTSET
)
5580 widget
= gui
.mainwin
;
5581 gdk_window_get_size(widget
->window
, &width
, &height
);
5583 attrmask
|= (int)GDK_IC_STATUS_AREA
;
5584 attr
->status_area
.x
= 0;
5585 attr
->status_area
.y
= height
- gui
.char_height
- 1;
5586 attr
->status_area
.width
= width
;
5587 attr
->status_area
.height
= gui
.char_height
;
5591 gdk_ic_set_attr(xic
, attr
, (GdkICAttributesType
)attrmask
);
5596 XVaNestedList preedit_list
= 0, status_list
= 0, list
= 0;
5597 XRectangle pre_area
, status_area
;
5599 if (input_style
& XIMStatusArea
)
5601 if (input_style
& XIMPreeditArea
)
5603 XRectangle
*needed_rect
;
5605 /* to get status_area width */
5606 status_list
= XVaCreateNestedList(0, XNAreaNeeded
,
5607 &needed_rect
, NULL
);
5608 XGetICValues(xic
, XNStatusAttributes
, status_list
, NULL
);
5611 status_area
.width
= needed_rect
->width
;
5614 status_area
.width
= gui
.char_width
* Columns
;
5617 status_area
.y
= gui
.char_height
* Rows
+ gui
.border_offset
;
5618 if (gui
.which_scrollbars
[SBAR_BOTTOM
])
5619 status_area
.y
+= gui
.scrollbar_height
;
5621 if (gui
.menu_is_active
)
5622 status_area
.y
+= gui
.menu_height
;
5624 status_area
.height
= gui
.char_height
;
5625 status_list
= XVaCreateNestedList(0, XNArea
, &status_area
, NULL
);
5630 status_area
.y
= gui
.char_height
* Rows
+ gui
.border_offset
;
5631 if (gui
.which_scrollbars
[SBAR_BOTTOM
])
5632 status_area
.y
+= gui
.scrollbar_height
;
5634 if (gui
.menu_is_active
)
5635 status_area
.y
+= gui
.menu_height
;
5637 status_area
.width
= 0;
5638 status_area
.height
= gui
.char_height
;
5641 if (input_style
& XIMPreeditArea
) /* off-the-spot */
5643 pre_area
.x
= status_area
.x
+ status_area
.width
;
5644 pre_area
.y
= gui
.char_height
* Rows
+ gui
.border_offset
;
5645 pre_area
.width
= gui
.char_width
* Columns
- pre_area
.x
;
5646 if (gui
.which_scrollbars
[SBAR_BOTTOM
])
5647 pre_area
.y
+= gui
.scrollbar_height
;
5649 if (gui
.menu_is_active
)
5650 pre_area
.y
+= gui
.menu_height
;
5652 pre_area
.height
= gui
.char_height
;
5653 preedit_list
= XVaCreateNestedList(0, XNArea
, &pre_area
, NULL
);
5655 else if (input_style
& XIMPreeditPosition
) /* over-the-spot */
5659 pre_area
.height
= gui
.char_height
* Rows
;
5660 pre_area
.width
= gui
.char_width
* Columns
;
5661 preedit_list
= XVaCreateNestedList(0, XNArea
, &pre_area
, NULL
);
5664 if (preedit_list
&& status_list
)
5665 list
= XVaCreateNestedList(0, XNPreeditAttributes
, preedit_list
,
5666 XNStatusAttributes
, status_list
, NULL
);
5667 else if (preedit_list
)
5668 list
= XVaCreateNestedList(0, XNPreeditAttributes
, preedit_list
,
5670 else if (status_list
)
5671 list
= XVaCreateNestedList(0, XNStatusAttributes
, status_list
,
5678 XSetICValues(xic
, XNVaNestedList
, list
, NULL
);
5684 XFree(preedit_list
);
5689 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
5690 static char e_xim
[] = N_("E285: Failed to create input context");
5693 #if defined(FEAT_GUI_X11) || defined(PROTO)
5694 # if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
5695 # define USE_X11R6_XIM
5698 static int xim_real_init
__ARGS((Window x11_window
, Display
*x11_display
));
5701 #ifdef USE_X11R6_XIM
5702 static void xim_instantiate_cb
__ARGS((Display
*display
, XPointer client_data
, XPointer call_data
));
5703 static void xim_destroy_cb
__ARGS((XIM im
, XPointer client_data
, XPointer call_data
));
5706 xim_instantiate_cb(display
, client_data
, call_data
)
5708 XPointer client_data UNUSED
;
5709 XPointer call_data UNUSED
;
5712 Display
*x11_display
;
5715 xim_log("xim_instantiate_cb()\n");
5718 gui_get_x11_windis(&x11_window
, &x11_display
);
5719 if (display
!= x11_display
)
5722 xim_real_init(x11_window
, x11_display
);
5723 gui_set_shellsize(FALSE
, FALSE
, RESIZE_BOTH
);
5725 XUnregisterIMInstantiateCallback(x11_display
, NULL
, NULL
, NULL
,
5726 xim_instantiate_cb
, NULL
);
5730 xim_destroy_cb(im
, client_data
, call_data
)
5732 XPointer client_data UNUSED
;
5733 XPointer call_data UNUSED
;
5736 Display
*x11_display
;
5739 xim_log("xim_destroy_cb()\n");
5741 gui_get_x11_windis(&x11_window
, &x11_display
);
5744 status_area_enabled
= FALSE
;
5746 gui_set_shellsize(FALSE
, FALSE
, RESIZE_BOTH
);
5748 XRegisterIMInstantiateCallback(x11_display
, NULL
, NULL
, NULL
,
5749 xim_instantiate_cb
, NULL
);
5757 Display
*x11_display
;
5760 xim_log("xim_init()\n");
5763 gui_get_x11_windis(&x11_window
, &x11_display
);
5767 if (xim_real_init(x11_window
, x11_display
))
5770 gui_set_shellsize(FALSE
, FALSE
, RESIZE_BOTH
);
5772 #ifdef USE_X11R6_XIM
5773 XRegisterIMInstantiateCallback(x11_display
, NULL
, NULL
, NULL
,
5774 xim_instantiate_cb
, NULL
);
5779 xim_real_init(x11_window
, x11_display
)
5781 Display
*x11_display
;
5789 #define IMLEN_MAX 40
5790 char buf
[IMLEN_MAX
+ 7];
5792 XIMStyles
*xim_styles
;
5793 XIMStyle this_input_style
= 0;
5796 XVaNestedList preedit_list
, status_list
;
5799 status_area_enabled
= FALSE
;
5804 if (gui
.rsrc_input_method
!= NULL
&& *gui
.rsrc_input_method
!= NUL
)
5806 strcpy(tmp
, gui
.rsrc_input_method
);
5807 for (ns
= s
= tmp
; ns
!= NULL
&& *s
!= NUL
;)
5809 s
= (char *)skipwhite((char_u
*)s
);
5812 if ((ns
= end
= strchr(s
, ',')) == NULL
)
5813 end
= s
+ strlen(s
);
5814 while (isspace(((char_u
*)end
)[-1]))
5818 if (strlen(s
) <= IMLEN_MAX
)
5820 strcpy(buf
, "@im=");
5822 if ((p
= XSetLocaleModifiers(buf
)) != NULL
&& *p
!= NUL
5823 && (xim
= XOpenIM(x11_display
, NULL
, NULL
, NULL
))
5832 if (xim
== NULL
&& (p
= XSetLocaleModifiers("")) != NULL
&& *p
!= NUL
)
5833 xim
= XOpenIM(x11_display
, NULL
, NULL
, NULL
);
5835 /* This is supposed to be useful to obtain characters through
5836 * XmbLookupString() without really using a XIM. */
5837 if (xim
== NULL
&& (p
= XSetLocaleModifiers("@im=none")) != NULL
5839 xim
= XOpenIM(x11_display
, NULL
, NULL
, NULL
);
5843 /* Only give this message when verbose is set, because too many people
5844 * got this message when they didn't want to use a XIM. */
5848 EMSG(_("E286: Failed to open input method"));
5854 #ifdef USE_X11R6_XIM
5856 XIMCallback destroy_cb
;
5858 destroy_cb
.callback
= xim_destroy_cb
;
5859 destroy_cb
.client_data
= NULL
;
5860 if (XSetIMValues(xim
, XNDestroyCallback
, &destroy_cb
, NULL
))
5861 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
5865 if (XGetIMValues(xim
, XNQueryInputStyle
, &xim_styles
, NULL
) || !xim_styles
)
5867 EMSG(_("E288: input method doesn't support any style"));
5873 strcpy(tmp
, gui
.rsrc_preedit_type_name
);
5874 for (s
= tmp
; s
&& !found
; )
5876 while (*s
&& isspace((unsigned char)*s
))
5880 if ((ns
= end
= strchr(s
, ',')) != 0)
5883 end
= s
+ strlen(s
);
5884 while (isspace((unsigned char)*end
))
5888 if (!strcmp(s
, "OverTheSpot"))
5889 this_input_style
= (XIMPreeditPosition
| XIMStatusArea
);
5890 else if (!strcmp(s
, "OffTheSpot"))
5891 this_input_style
= (XIMPreeditArea
| XIMStatusArea
);
5892 else if (!strcmp(s
, "Root"))
5893 this_input_style
= (XIMPreeditNothing
| XIMStatusNothing
);
5895 for (i
= 0; (unsigned short)i
< xim_styles
->count_styles
; i
++)
5897 if (this_input_style
== xim_styles
->supported_styles
[i
])
5904 for (i
= 0; (unsigned short)i
< xim_styles
->count_styles
; i
++)
5906 if ((xim_styles
->supported_styles
[i
] & this_input_style
)
5907 == (this_input_style
& ~XIMStatusArea
))
5909 this_input_style
&= ~XIMStatusArea
;
5921 /* Only give this message when verbose is set, because too many people
5922 * got this message when they didn't want to use a XIM. */
5926 EMSG(_("E289: input method doesn't support my preedit type"));
5933 over_spot
.x
= TEXT_X(gui
.col
);
5934 over_spot
.y
= TEXT_Y(gui
.row
);
5935 input_style
= this_input_style
;
5937 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
5938 * thus that has been removed. Hopefully the default works... */
5939 #ifdef FEAT_XFONTSET
5940 if (gui
.fontset
!= NOFONTSET
)
5942 preedit_list
= XVaCreateNestedList(0,
5943 XNSpotLocation
, &over_spot
,
5944 XNForeground
, (Pixel
)gui
.def_norm_pixel
,
5945 XNBackground
, (Pixel
)gui
.def_back_pixel
,
5946 XNFontSet
, (XFontSet
)gui
.fontset
,
5948 status_list
= XVaCreateNestedList(0,
5949 XNForeground
, (Pixel
)gui
.def_norm_pixel
,
5950 XNBackground
, (Pixel
)gui
.def_back_pixel
,
5951 XNFontSet
, (XFontSet
)gui
.fontset
,
5957 preedit_list
= XVaCreateNestedList(0,
5958 XNSpotLocation
, &over_spot
,
5959 XNForeground
, (Pixel
)gui
.def_norm_pixel
,
5960 XNBackground
, (Pixel
)gui
.def_back_pixel
,
5962 status_list
= XVaCreateNestedList(0,
5963 XNForeground
, (Pixel
)gui
.def_norm_pixel
,
5964 XNBackground
, (Pixel
)gui
.def_back_pixel
,
5968 xic
= XCreateIC(xim
,
5969 XNInputStyle
, input_style
,
5970 XNClientWindow
, x11_window
,
5971 XNFocusWindow
, gui
.wid
,
5972 XNPreeditAttributes
, preedit_list
,
5973 XNStatusAttributes
, status_list
,
5976 XFree(preedit_list
);
5979 if (input_style
& XIMStatusArea
)
5981 xim_set_status_area();
5982 status_area_enabled
= TRUE
;
5985 gui_set_shellsize(FALSE
, FALSE
, RESIZE_BOTH
);
5997 #endif /* FEAT_GUI_X11 */
5999 #if defined(FEAT_GUI_GTK) || defined(PROTO)
6001 # ifdef FEAT_XFONTSET
6002 static char e_overthespot
[] = N_("E290: over-the-spot style requires fontset");
6010 xim_decide_input_style()
6012 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
6014 int supported_style
= (int)GDK_IM_PREEDIT_NONE
|
6015 (int)GDK_IM_PREEDIT_NOTHING
|
6016 (int)GDK_IM_PREEDIT_POSITION
|
6017 (int)GDK_IM_PREEDIT_CALLBACKS
|
6018 (int)GDK_IM_STATUS_CALLBACKS
|
6019 (int)GDK_IM_STATUS_AREA
|
6020 (int)GDK_IM_STATUS_NONE
|
6021 (int)GDK_IM_STATUS_NOTHING
;
6024 xim_log("xim_decide_input_style()\n");
6027 if (!gdk_im_ready())
6028 xim_input_style
= 0;
6031 if (gtk_major_version
> 1
6032 || (gtk_major_version
== 1
6033 && (gtk_minor_version
> 2
6034 || (gtk_minor_version
== 2 && gtk_micro_version
>= 3))))
6035 use_status_area
= TRUE
;
6038 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
6039 use_status_area
= FALSE
;
6041 #ifdef FEAT_XFONTSET
6042 if (gui
.fontset
== NOFONTSET
|| gui
.fontset
->type
!= GDK_FONT_FONTSET
)
6044 supported_style
&= ~((int)GDK_IM_PREEDIT_POSITION
6045 | (int)GDK_IM_STATUS_AREA
);
6046 if (!use_status_area
)
6047 supported_style
&= ~(int)GDK_IM_STATUS_AREA
;
6048 xim_input_style
= (int)gdk_im_decide_style((GdkIMStyle
)supported_style
);
6053 preedit_start_cbproc(XIC thexic UNUSED
,
6054 XPointer client_data UNUSED
,
6055 XPointer call_data UNUSED
)
6058 xim_log("xim_decide_input_style()\n");
6061 draw_feedback
= NULL
;
6062 xim_can_preediting
= TRUE
;
6063 xim_has_preediting
= TRUE
;
6064 gui_update_cursor(TRUE
, FALSE
);
6073 xim_back_delete(int n
)
6081 add_to_input_buf(str
, 3);
6084 static GSList
*key_press_event_queue
= NULL
;
6085 static gboolean processing_queued_event
= FALSE
;
6088 preedit_draw_cbproc(XIC thexic UNUSED
,
6089 XPointer client_data UNUSED
,
6092 XIMPreeditDrawCallbackStruct
*draw_data
;
6095 GSList
*event_queue
;
6098 xim_log("preedit_draw_cbproc()\n");
6101 draw_data
= (XIMPreeditDrawCallbackStruct
*) call_data
;
6102 text
= (XIMText
*) draw_data
->text
;
6104 if ((text
== NULL
&& draw_data
->chg_length
== preedit_buf_len
)
6105 || preedit_buf_len
== 0)
6107 init_preedit_start_col();
6108 vim_free(draw_feedback
);
6109 draw_feedback
= NULL
;
6111 if (draw_data
->chg_length
> 0)
6115 if (draw_data
->chg_length
> preedit_buf_len
)
6116 bs_cnt
= preedit_buf_len
;
6118 bs_cnt
= draw_data
->chg_length
;
6119 xim_back_delete(bs_cnt
);
6120 preedit_buf_len
-= bs_cnt
;
6127 unsigned int nfeedback
= 0;
6131 src
= text
->string
.multi_byte
;
6132 if (src
!= NULL
&& !text
->encoding_is_wchar
)
6135 ptr
= (char_u
*)src
;
6136 /* Avoid the enter for decision */
6141 if (input_conv
.vc_type
!= CONV_NONE
6142 && (buf
= string_convert(&input_conv
,
6143 (char_u
*)src
, &len
)) != NULL
)
6145 /* Converted from 'termencoding' to 'encoding'. */
6146 add_to_input_buf_csi(buf
, len
);
6151 add_to_input_buf_csi((char_u
*)src
, len
);
6152 /* Add count of character to preedit_buf_len */
6156 if (draw_data
->text
->feedback
!= NULL
)
6158 if (draw_feedback
== NULL
)
6159 draw_feedback
= (char *)alloc(draw_data
->chg_first
6162 draw_feedback
= vim_realloc(draw_feedback
,
6163 draw_data
->chg_first
+ text
->length
);
6164 if (draw_feedback
!= NULL
)
6166 draw_feedback
[nfeedback
+ draw_data
->chg_first
]
6167 = draw_data
->text
->feedback
[nfeedback
];
6172 ptr
+= (*mb_ptr2len
)(ptr
);
6181 preedit_end_col
= MAXCOL
;
6184 if (text
!= NULL
|| draw_data
->chg_length
> 0)
6186 event_queue
= key_press_event_queue
;
6187 processing_queued_event
= TRUE
;
6188 while (event_queue
!= NULL
&& processing_queued_event
)
6190 GdkEvent
*ev
= event_queue
->data
;
6193 gtk_signal_emit_by_name((GtkObject
*)gui
.mainwin
, "key_press_event",
6196 event_queue
= event_queue
->next
;
6198 processing_queued_event
= FALSE
;
6199 if (key_press_event_queue
)
6201 g_slist_free(key_press_event_queue
);
6202 key_press_event_queue
= NULL
;
6205 if (gtk_main_level() > 0)
6210 * Retrieve the highlighting attributes at column col in the preedit string.
6211 * Return -1 if not in preediting mode or if col is out of range.
6214 im_get_feedback_attr(int col
)
6216 if (draw_feedback
!= NULL
&& col
< preedit_buf_len
)
6218 if (draw_feedback
[col
] & XIMReverse
)
6220 else if (draw_feedback
[col
] & XIMUnderline
)
6221 return HL_UNDERLINE
;
6223 return hl_attr(HLF_V
);
6230 preedit_caret_cbproc(XIC thexic UNUSED
,
6231 XPointer client_data UNUSED
,
6232 XPointer call_data UNUSED
)
6235 xim_log("preedit_caret_cbproc()\n");
6240 preedit_done_cbproc(XIC thexic UNUSED
,
6241 XPointer client_data UNUSED
,
6242 XPointer call_data UNUSED
)
6245 xim_log("preedit_done_cbproc()\n");
6248 vim_free(draw_feedback
);
6249 draw_feedback
= NULL
;
6250 xim_can_preediting
= FALSE
;
6251 xim_has_preediting
= FALSE
;
6252 gui_update_cursor(TRUE
, FALSE
);
6266 xim_log("xim_reset()\n");
6271 text
= XmbResetIC(((GdkICPrivate
*)xic
)->xic
);
6272 if (text
!= NULL
&& !(xim_input_style
& (int)GDK_IM_PREEDIT_CALLBACKS
))
6273 add_to_input_buf_csi((char_u
*)text
, strlen(text
));
6275 preedit_buf_len
= 0;
6282 xim_queue_key_press_event(GdkEventKey
*event
, int down UNUSED
)
6285 xim_log("xim_queue_key_press_event()\n");
6288 if (preedit_buf_len
<= 0)
6290 if (processing_queued_event
)
6291 processing_queued_event
= FALSE
;
6293 key_press_event_queue
= g_slist_append(key_press_event_queue
,
6294 gdk_event_copy((GdkEvent
*)event
));
6299 preedit_callback_setup(GdkIC
*ic UNUSED
)
6302 XVaNestedList preedit_attr
;
6303 XIMCallback preedit_start_cb
;
6304 XIMCallback preedit_draw_cb
;
6305 XIMCallback preedit_caret_cb
;
6306 XIMCallback preedit_done_cb
;
6308 xxic
= ((GdkICPrivate
*)xic
)->xic
;
6309 preedit_start_cb
.callback
= (XIMProc
)preedit_start_cbproc
;
6310 preedit_draw_cb
.callback
= (XIMProc
)preedit_draw_cbproc
;
6311 preedit_caret_cb
.callback
= (XIMProc
)preedit_caret_cbproc
;
6312 preedit_done_cb
.callback
= (XIMProc
)preedit_done_cbproc
;
6314 = XVaCreateNestedList(0,
6315 XNPreeditStartCallback
, &preedit_start_cb
,
6316 XNPreeditDrawCallback
, &preedit_draw_cb
,
6317 XNPreeditCaretCallback
, &preedit_caret_cb
,
6318 XNPreeditDoneCallback
, &preedit_done_cb
,
6320 XSetICValues(xxic
, XNPreeditAttributes
, preedit_attr
, NULL
);
6321 XFree(preedit_attr
);
6325 reset_state_setup(GdkIC
*ic UNUSED
)
6327 #ifdef USE_X11R6_XIM
6328 /* don't change the input context when we call reset */
6329 XSetICValues(((GdkICPrivate
*)ic
)->xic
, XNResetState
, XIMPreserveState
,
6338 xim_log("xim_init()\n");
6344 if (!gdk_im_ready())
6349 EMSG(_("E292: Input Method Server is not running"));
6354 if ((xic_attr
= gdk_ic_attr_new()) != NULL
)
6356 #ifdef FEAT_XFONTSET
6360 GdkColormap
*colormap
;
6361 GdkICAttr
*attr
= xic_attr
;
6362 int attrmask
= (int)GDK_IC_ALL_REQ
;
6363 GtkWidget
*widget
= gui
.drawarea
;
6365 attr
->style
= (GdkIMStyle
)xim_input_style
;
6366 attr
->client_window
= gui
.mainwin
->window
;
6368 if ((colormap
= gtk_widget_get_colormap(widget
)) !=
6369 gtk_widget_get_default_colormap())
6371 attrmask
|= (int)GDK_IC_PREEDIT_COLORMAP
;
6372 attr
->preedit_colormap
= colormap
;
6374 attrmask
|= (int)GDK_IC_PREEDIT_FOREGROUND
;
6375 attrmask
|= (int)GDK_IC_PREEDIT_BACKGROUND
;
6376 attr
->preedit_foreground
= widget
->style
->fg
[GTK_STATE_NORMAL
];
6377 attr
->preedit_background
= widget
->style
->base
[GTK_STATE_NORMAL
];
6379 #ifdef FEAT_XFONTSET
6380 if ((xim_input_style
& (int)GDK_IM_PREEDIT_MASK
)
6381 == (int)GDK_IM_PREEDIT_POSITION
)
6383 if (gui
.fontset
== NOFONTSET
6384 || gui
.fontset
->type
!= GDK_FONT_FONTSET
)
6386 EMSG(_(e_overthespot
));
6390 gdk_window_get_size(widget
->window
, &width
, &height
);
6392 attrmask
|= (int)GDK_IC_PREEDIT_POSITION_REQ
;
6393 attr
->spot_location
.x
= TEXT_X(0);
6394 attr
->spot_location
.y
= TEXT_Y(0);
6395 attr
->preedit_area
.x
= gui
.border_offset
;
6396 attr
->preedit_area
.y
= gui
.border_offset
;
6397 attr
->preedit_area
.width
= width
- 2*gui
.border_offset
;
6398 attr
->preedit_area
.height
= height
- 2*gui
.border_offset
;
6399 attr
->preedit_fontset
= gui
.fontset
;
6403 if ((xim_input_style
& (int)GDK_IM_STATUS_MASK
)
6404 == (int)GDK_IM_STATUS_AREA
)
6406 if (gui
.fontset
== NOFONTSET
6407 || gui
.fontset
->type
!= GDK_FONT_FONTSET
)
6409 EMSG(_(e_overthespot
));
6413 gdk_window_get_size(gui
.mainwin
->window
, &width
, &height
);
6414 attrmask
|= (int)GDK_IC_STATUS_AREA_REQ
;
6415 attr
->status_area
.x
= 0;
6416 attr
->status_area
.y
= height
- gui
.char_height
- 1;
6417 attr
->status_area
.width
= width
;
6418 attr
->status_area
.height
= gui
.char_height
;
6419 attr
->status_fontset
= gui
.fontset
;
6422 else if ((xim_input_style
& (int)GDK_IM_STATUS_MASK
)
6423 == (int)GDK_IM_STATUS_CALLBACKS
)
6429 xic
= gdk_ic_new(attr
, (GdkICAttributesType
)attrmask
);
6435 mask
= (int)gdk_window_get_events(widget
->window
);
6436 mask
|= (int)gdk_ic_get_events(xic
);
6437 gdk_window_set_events(widget
->window
, (GdkEventMask
)mask
);
6438 if (xim_input_style
& (int)GDK_IM_PREEDIT_CALLBACKS
)
6439 preedit_callback_setup(xic
);
6440 reset_state_setup(xic
);
6449 xim_log("im_shutdown()\n");
6455 gdk_ic_destroy(xic
);
6458 xim_is_active
= FALSE
;
6459 xim_can_preediting
= FALSE
;
6460 preedit_start_col
= MAXCOL
;
6461 xim_has_preediting
= FALSE
;
6464 #endif /* FEAT_GUI_GTK */
6467 xim_get_status_area_height()
6470 if (xim_input_style
& (int)GDK_IM_STATUS_AREA
)
6471 return gui
.char_height
;
6473 if (status_area_enabled
)
6474 return gui
.char_height
;
6480 * Get IM status. When IM is on, return TRUE. Else return FALSE.
6481 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
6482 * active, when not having focus XIM may still be active (e.g., when using a
6483 * tear-off menu item).
6488 # ifdef FEAT_GUI_GTK
6489 if (xim_input_style
& (int)GDK_IM_PREEDIT_CALLBACKS
)
6490 return xim_can_preediting
;
6492 return xim_has_focus
;
6495 # endif /* !HAVE_GTK2 */
6497 # if defined(HAVE_GTK2) || defined(PROTO)
6499 preedit_get_status(void)
6501 return preedit_is_active
;
6505 # if defined(FEAT_GUI_GTK) || defined(PROTO)
6509 return xim_has_preediting
;
6512 #endif /* FEAT_XIM */
6514 #if defined(FEAT_MBYTE) || defined(PROTO)
6517 * Setup "vcp" for conversion from "from" to "to".
6518 * The names must have been made canonical with enc_canonize().
6519 * vcp->vc_type must have been initialized to CONV_NONE.
6520 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
6522 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
6523 * Return FAIL when conversion is not supported, OK otherwise.
6526 convert_setup(vcp
, from
, to
)
6531 return convert_setup_ext(vcp
, from
, TRUE
, to
, TRUE
);
6535 * As convert_setup(), but only when from_unicode_is_utf8 is TRUE will all
6536 * "from" unicode charsets be considered utf-8. Same for "to".
6539 convert_setup_ext(vcp
, from
, from_unicode_is_utf8
, to
, to_unicode_is_utf8
)
6542 int from_unicode_is_utf8
;
6544 int to_unicode_is_utf8
;
6551 /* Reset to no conversion. */
6553 if (vcp
->vc_type
== CONV_ICONV
&& vcp
->vc_fd
!= (iconv_t
)-1)
6554 iconv_close(vcp
->vc_fd
);
6556 vcp
->vc_type
= CONV_NONE
;
6558 vcp
->vc_fail
= FALSE
;
6560 /* No conversion when one of the names is empty or they are equal. */
6561 if (from
== NULL
|| *from
== NUL
|| to
== NULL
|| *to
== NUL
6562 || STRCMP(from
, to
) == 0)
6565 from_prop
= enc_canon_props(from
);
6566 to_prop
= enc_canon_props(to
);
6567 if (from_unicode_is_utf8
)
6568 from_is_utf8
= from_prop
& ENC_UNICODE
;
6570 from_is_utf8
= from_prop
== ENC_UNICODE
;
6571 if (to_unicode_is_utf8
)
6572 to_is_utf8
= to_prop
& ENC_UNICODE
;
6574 to_is_utf8
= to_prop
== ENC_UNICODE
;
6576 if ((from_prop
& ENC_LATIN1
) && to_is_utf8
)
6578 /* Internal latin1 -> utf-8 conversion. */
6579 vcp
->vc_type
= CONV_TO_UTF8
;
6580 vcp
->vc_factor
= 2; /* up to twice as long */
6582 else if ((from_prop
& ENC_LATIN9
) && to_is_utf8
)
6584 /* Internal latin9 -> utf-8 conversion. */
6585 vcp
->vc_type
= CONV_9_TO_UTF8
;
6586 vcp
->vc_factor
= 3; /* up to three as long (euro sign) */
6588 else if (from_is_utf8
&& (to_prop
& ENC_LATIN1
))
6590 /* Internal utf-8 -> latin1 conversion. */
6591 vcp
->vc_type
= CONV_TO_LATIN1
;
6593 else if (from_is_utf8
&& (to_prop
& ENC_LATIN9
))
6595 /* Internal utf-8 -> latin9 conversion. */
6596 vcp
->vc_type
= CONV_TO_LATIN9
;
6599 /* Win32-specific codepage <-> codepage conversion without iconv. */
6600 else if ((from_is_utf8
|| encname2codepage(from
) > 0)
6601 && (to_is_utf8
|| encname2codepage(to
) > 0))
6603 vcp
->vc_type
= CONV_CODEPAGE
;
6604 vcp
->vc_factor
= 2; /* up to twice as long */
6605 vcp
->vc_cpfrom
= from_is_utf8
? 0 : encname2codepage(from
);
6606 vcp
->vc_cpto
= to_is_utf8
? 0 : encname2codepage(to
);
6610 else if ((from_prop
& ENC_MACROMAN
) && (to_prop
& ENC_LATIN1
))
6612 vcp
->vc_type
= CONV_MAC_LATIN1
;
6614 else if ((from_prop
& ENC_MACROMAN
) && to_is_utf8
)
6616 vcp
->vc_type
= CONV_MAC_UTF8
;
6617 vcp
->vc_factor
= 2; /* up to twice as long */
6619 else if ((from_prop
& ENC_LATIN1
) && (to_prop
& ENC_MACROMAN
))
6621 vcp
->vc_type
= CONV_LATIN1_MAC
;
6623 else if (from_is_utf8
&& (to_prop
& ENC_MACROMAN
))
6625 vcp
->vc_type
= CONV_UTF8_MAC
;
6631 /* Use iconv() for conversion. */
6632 vcp
->vc_fd
= (iconv_t
)my_iconv_open(
6633 to_is_utf8
? (char_u
*)"utf-8" : to
,
6634 from_is_utf8
? (char_u
*)"utf-8" : from
);
6635 if (vcp
->vc_fd
!= (iconv_t
)-1)
6637 vcp
->vc_type
= CONV_ICONV
;
6638 vcp
->vc_factor
= 4; /* could be longer too... */
6642 if (vcp
->vc_type
== CONV_NONE
)
6648 #if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
6649 || defined(MSDOS) || defined(PROTO)
6651 * Do conversion on typed input characters in-place.
6652 * The input and output are not NUL terminated!
6653 * Returns the length after conversion.
6656 convert_input(ptr
, len
, maxlen
)
6661 return convert_input_safe(ptr
, len
, maxlen
, NULL
, NULL
);
6666 * Like convert_input(), but when there is an incomplete byte sequence at the
6667 * end return that as an allocated string in "restp" and set "*restlenp" to
6668 * the length. If "restp" is NULL it is not used.
6671 convert_input_safe(ptr
, len
, maxlen
, restp
, restlenp
)
6680 int unconvertlen
= 0;
6682 d
= string_convert_ext(&input_conv
, ptr
, &dlen
,
6683 restp
== NULL
? NULL
: &unconvertlen
);
6688 if (unconvertlen
> 0)
6690 /* Move the unconverted characters to allocated memory. */
6691 *restp
= alloc(unconvertlen
);
6693 mch_memmove(*restp
, ptr
+ len
- unconvertlen
, unconvertlen
);
6694 *restlenp
= unconvertlen
;
6696 mch_memmove(ptr
, d
, dlen
);
6699 /* result is too long, keep the unconverted text (the caller must
6700 * have done something wrong!) */
6708 * Convert text "ptr[*lenp]" according to "vcp".
6709 * Returns the result in allocated memory and sets "*lenp".
6710 * When "lenp" is NULL, use NUL terminated strings.
6711 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
6712 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
6715 string_convert(vcp
, ptr
, lenp
)
6720 return string_convert_ext(vcp
, ptr
, lenp
, NULL
);
6724 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
6725 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
6726 * set to the number of remaining bytes.
6729 string_convert_ext(vcp
, ptr
, lenp
, unconvlenp
)
6735 char_u
*retval
= NULL
;
6743 len
= (int)STRLEN(ptr
);
6747 return vim_strsave((char_u
*)"");
6749 switch (vcp
->vc_type
)
6751 case CONV_TO_UTF8
: /* latin1 to utf-8 conversion */
6752 retval
= alloc(len
* 2 + 1);
6756 for (i
= 0; i
< len
; ++i
)
6763 *d
++ = 0xc0 + ((unsigned)c
>> 6);
6764 *d
++ = 0x80 + (c
& 0x3f);
6769 *lenp
= (int)(d
- retval
);
6772 case CONV_9_TO_UTF8
: /* latin9 to utf-8 conversion */
6773 retval
= alloc(len
* 3 + 1);
6777 for (i
= 0; i
< len
; ++i
)
6782 case 0xa4: c
= 0x20ac; break; /* euro */
6783 case 0xa6: c
= 0x0160; break; /* S hat */
6784 case 0xa8: c
= 0x0161; break; /* S -hat */
6785 case 0xb4: c
= 0x017d; break; /* Z hat */
6786 case 0xb8: c
= 0x017e; break; /* Z -hat */
6787 case 0xbc: c
= 0x0152; break; /* OE */
6788 case 0xbd: c
= 0x0153; break; /* oe */
6789 case 0xbe: c
= 0x0178; break; /* Y */
6791 d
+= utf_char2bytes(c
, d
);
6795 *lenp
= (int)(d
- retval
);
6798 case CONV_TO_LATIN1
: /* utf-8 to latin1 conversion */
6799 case CONV_TO_LATIN9
: /* utf-8 to latin9 conversion */
6800 retval
= alloc(len
+ 1);
6804 for (i
= 0; i
< len
; ++i
)
6806 l
= utf_ptr2len_len(ptr
+ i
, len
- i
);
6811 int l_w
= utf8len_tab_zero
[ptr
[i
]];
6815 /* Illegal utf-8 byte cannot be converted */
6819 if (unconvlenp
!= NULL
&& l_w
> len
- i
)
6821 /* Incomplete sequence at the end. */
6822 *unconvlenp
= len
- i
;
6829 c
= utf_ptr2char(ptr
+ i
);
6830 if (vcp
->vc_type
== CONV_TO_LATIN9
)
6833 case 0x20ac: c
= 0xa4; break; /* euro */
6834 case 0x0160: c
= 0xa6; break; /* S hat */
6835 case 0x0161: c
= 0xa8; break; /* S -hat */
6836 case 0x017d: c
= 0xb4; break; /* Z hat */
6837 case 0x017e: c
= 0xb8; break; /* Z -hat */
6838 case 0x0152: c
= 0xbc; break; /* OE */
6839 case 0x0153: c
= 0xbd; break; /* oe */
6840 case 0x0178: c
= 0xbe; break; /* Y */
6848 case 0xbe: c
= 0x100; break; /* not in latin9 */
6850 if (!utf_iscomposing(c
)) /* skip composing chars */
6854 else if (vcp
->vc_fail
)
6862 if (utf_char2cells(c
) > 1)
6871 *lenp
= (int)(d
- retval
);
6874 # ifdef MACOS_CONVERT
6875 case CONV_MAC_LATIN1
:
6876 retval
= mac_string_convert(ptr
, len
, lenp
, vcp
->vc_fail
,
6877 'm', 'l', unconvlenp
);
6880 case CONV_LATIN1_MAC
:
6881 retval
= mac_string_convert(ptr
, len
, lenp
, vcp
->vc_fail
,
6882 'l', 'm', unconvlenp
);
6886 retval
= mac_string_convert(ptr
, len
, lenp
, vcp
->vc_fail
,
6887 'm', 'u', unconvlenp
);
6891 retval
= mac_string_convert(ptr
, len
, lenp
, vcp
->vc_fail
,
6892 'u', 'm', unconvlenp
);
6897 case CONV_ICONV
: /* conversion with output_conv.vc_fd */
6898 retval
= iconv_string(vcp
, ptr
, len
, unconvlenp
, lenp
);
6902 case CONV_CODEPAGE
: /* codepage -> codepage */
6908 /* 1. codepage/UTF-8 -> ucs-2. */
6909 if (vcp
->vc_cpfrom
== 0)
6910 tmp_len
= utf8_to_utf16(ptr
, len
, NULL
, NULL
);
6912 tmp_len
= MultiByteToWideChar(vcp
->vc_cpfrom
, 0,
6914 tmp
= (short_u
*)alloc(sizeof(short_u
) * tmp_len
);
6917 if (vcp
->vc_cpfrom
== 0)
6918 utf8_to_utf16(ptr
, len
, tmp
, unconvlenp
);
6920 MultiByteToWideChar(vcp
->vc_cpfrom
, 0, ptr
, len
, tmp
, tmp_len
);
6922 /* 2. ucs-2 -> codepage/UTF-8. */
6923 if (vcp
->vc_cpto
== 0)
6924 retlen
= utf16_to_utf8(tmp
, tmp_len
, NULL
);
6926 retlen
= WideCharToMultiByte(vcp
->vc_cpto
, 0,
6927 tmp
, tmp_len
, 0, 0, 0, 0);
6928 retval
= alloc(retlen
+ 1);
6931 if (vcp
->vc_cpto
== 0)
6932 utf16_to_utf8(tmp
, tmp_len
, retval
);
6934 WideCharToMultiByte(vcp
->vc_cpto
, 0,
6935 tmp
, tmp_len
, retval
, retlen
, 0, 0);
6936 retval
[retlen
] = NUL
;