blob: 8b997af0cccd5251617763e23ffe078e666f7318 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * Multibyte extensions partly by Sung-Hoon Baek
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10/*
11 * mbyte.c: Code specifically for handling multi-byte characters.
12 *
13 * The encoding used in the core is set with 'encoding'. When 'encoding' is
14 * changed, the following four variables are set (for speed).
15 * Currently these types of character encodings are supported:
16 *
17 * "enc_dbcs" When non-zero it tells the type of double byte character
18 * encoding (Chinese, Korean, Japanese, etc.).
19 * The cell width on the display is equal to the number of
20 * bytes. (exception: DBCS_JPNU with first byte 0x8e)
21 * Recognizing the first or second byte is difficult, it
22 * requires checking a byte sequence from the start.
23 * "enc_utf8" When TRUE use Unicode characters in UTF-8 encoding.
24 * The cell width on the display needs to be determined from
25 * the character value.
26 * Recognizing bytes is easy: 0xxx.xxxx is a single-byte
27 * char, 10xx.xxxx is a trailing byte, 11xx.xxxx is a leading
28 * byte of a multi-byte character.
29 * To make things complicated, up to two composing characters
30 * are allowed. These are drawn on top of the first char.
31 * For most editing the sequence of bytes with composing
32 * characters included is considered to be one character.
33 * "enc_unicode" When 2 use 16-bit Unicode characters (or UTF-16).
34 * When 4 use 32-but Unicode characters.
35 * Internally characters are stored in UTF-8 encoding to
36 * avoid NUL bytes. Conversion happens when doing I/O.
37 * "enc_utf8" will also be TRUE.
38 *
39 * "has_mbyte" is set when "enc_dbcs" or "enc_utf8" is non-zero.
40 *
41 * If none of these is TRUE, 8-bit bytes are used for a character. The
42 * encoding isn't currently specified (TODO).
43 *
44 * 'encoding' specifies the encoding used in the core. This is in registers,
45 * text manipulation, buffers, etc. Conversion has to be done when characters
46 * in another encoding are received or send:
47 *
48 * clipboard
49 * ^
50 * | (2)
51 * V
52 * +---------------+
53 * (1) | | (3)
54 * keyboard ----->| core |-----> display
55 * | |
56 * +---------------+
57 * ^
58 * | (4)
59 * V
60 * file
61 *
62 * (1) Typed characters arrive in the current locale. Conversion is to be
63 * done when 'encoding' is different from 'termencoding'.
64 * (2) Text will be made available with the encoding specified with
65 * 'encoding'. If this is not sufficient, system-specific conversion
66 * might be required.
67 * (3) For the GUI the correct font must be selected, no conversion done.
68 * Otherwise, conversion is to be done when 'encoding' differs from
69 * 'termencoding'. (Different in the GTK+ 2 port -- 'termencoding'
70 * is always used for both input and output and must always be set to
71 * "utf-8". gui_mch_init() does this automatically.)
72 * (4) The encoding of the file is specified with 'fileencoding'. Conversion
73 * is to be done when it's different from 'encoding'.
74 *
75 * The viminfo file is a special case: Only text is converted, not file names.
76 * Vim scripts may contain an ":encoding" command. This has an effect for
77 * some commands, like ":menutrans"
78 */
79
80#include "vim.h"
81
82#ifdef WIN32UNIX
83# ifndef WIN32_LEAN_AND_MEAN
84# define WIN32_LEAN_AND_MEAN
85# endif
86# include <windows.h>
87# ifdef WIN32
88# undef WIN32 /* Some windows.h define WIN32, we don't want that here. */
89# endif
90#endif
91
92#if (defined(WIN3264) || defined(WIN32UNIX)) && !defined(__MINGW32__)
93# include <winnls.h>
94#endif
95
96#ifdef FEAT_GUI_X11
97# include <X11/Intrinsic.h>
98#endif
99#ifdef X_LOCALE
100#include <X11/Xlocale.h>
101#endif
102
103#if defined(FEAT_XIM) && defined(HAVE_GTK2)
104# include <gdk/gdkkeysyms.h>
105# ifdef WIN3264
106# include <gdk/gdkwin32.h>
107# else
108# include <gdk/gdkx.h>
109# endif
110#endif
111
112#ifdef HAVE_WCHAR_H
113# include <wchar.h>
114#endif
115
116#if 0
117/* This has been disabled, because several people reported problems with the
118 * wcwidth() and iswprint() library functions, esp. for Hebrew. */
119# ifdef __STDC_ISO_10646__
120# define USE_WCHAR_FUNCTIONS
121# endif
122#endif
123
124#if defined(FEAT_MBYTE) || defined(PROTO)
125
126static int enc_canon_search __ARGS((char_u *name));
127static int dbcs_char2len __ARGS((int c));
128static int dbcs_char2bytes __ARGS((int c, char_u *buf));
129static int dbcs_ptr2len_check __ARGS((char_u *p));
130static int dbcs_char2cells __ARGS((int c));
131static int dbcs_ptr2char __ARGS((char_u *p));
132
133/* Lookup table to quickly get the length in bytes of a UTF-8 character from
134 * the first byte of a UTF-8 string. Bytes which are illegal when used as the
135 * first byte have a one, because these will be used separately. */
136static char utf8len_tab[256] =
137{
138 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
139 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
140 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
141 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
142 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /*bogus*/
143 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /*bogus*/
144 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,
145 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,
146};
147
148/*
149 * XIM often causes trouble. Define XIM_DEBUG to get a log of XIM callbacks
150 * in the "xim.log" file.
151 */
152/* #define XIM_DEBUG */
153#ifdef XIM_DEBUG
154 static void
155xim_log(char *s, ...)
156{
157 va_list arglist;
158 static FILE *fd = NULL;
159
160 if (fd == (FILE *)-1)
161 return;
162 if (fd == NULL)
163 {
164 fd = fopen("xim.log", "w");
165 if (fd == NULL)
166 {
167 EMSG("Cannot open xim.log");
168 fd = (FILE *)-1;
169 return;
170 }
171 }
172
173 va_start(arglist, s);
174 vfprintf(fd, s, arglist);
175 va_end(arglist);
176}
177#endif
178
179#endif
180
181#if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
182/*
183 * Canonical encoding names and their properties.
184 * "iso-8859-n" is handled by enc_canonize() directly.
185 */
186static struct
187{ char *name; int prop; int codepage;}
188enc_canon_table[] =
189{
190#define IDX_LATIN_1 0
191 {"latin1", ENC_8BIT + ENC_LATIN1, 1252},
192#define IDX_ISO_2 1
193 {"iso-8859-2", ENC_8BIT, 0},
194#define IDX_ISO_3 2
195 {"iso-8859-3", ENC_8BIT, 0},
196#define IDX_ISO_4 3
197 {"iso-8859-4", ENC_8BIT, 0},
198#define IDX_ISO_5 4
199 {"iso-8859-5", ENC_8BIT, 0},
200#define IDX_ISO_6 5
201 {"iso-8859-6", ENC_8BIT, 0},
202#define IDX_ISO_7 6
203 {"iso-8859-7", ENC_8BIT, 0},
204#define IDX_CP1255 7
205 {"cp1255", ENC_8BIT, 1255}, /* close to iso-8859-8 */
206#define IDX_ISO_8 8
207 {"iso-8859-8", ENC_8BIT, 0},
208#define IDX_ISO_9 9
209 {"iso-8859-9", ENC_8BIT, 0},
210#define IDX_ISO_10 10
211 {"iso-8859-10", ENC_8BIT, 0},
212#define IDX_ISO_11 11
213 {"iso-8859-11", ENC_8BIT, 0},
214#define IDX_ISO_13 12
215 {"iso-8859-13", ENC_8BIT, 0},
216#define IDX_ISO_14 13
217 {"iso-8859-14", ENC_8BIT, 0},
218#define IDX_ISO_15 14
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000219 {"iso-8859-15", ENC_8BIT + ENC_LATIN9, 0},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220#define IDX_KOI8_R 15
221 {"koi8-r", ENC_8BIT, 0},
222#define IDX_KOI8_U 16
223 {"koi8-u", ENC_8BIT, 0},
224#define IDX_UTF8 17
225 {"utf-8", ENC_UNICODE, 0},
226#define IDX_UCS2 18
227 {"ucs-2", ENC_UNICODE + ENC_ENDIAN_B + ENC_2BYTE, 0},
228#define IDX_UCS2LE 19
229 {"ucs-2le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2BYTE, 0},
230#define IDX_UTF16 20
231 {"utf-16", ENC_UNICODE + ENC_ENDIAN_B + ENC_2WORD, 0},
232#define IDX_UTF16LE 21
233 {"utf-16le", ENC_UNICODE + ENC_ENDIAN_L + ENC_2WORD, 0},
234#define IDX_UCS4 22
235 {"ucs-4", ENC_UNICODE + ENC_ENDIAN_B + ENC_4BYTE, 0},
236#define IDX_UCS4LE 23
237 {"ucs-4le", ENC_UNICODE + ENC_ENDIAN_L + ENC_4BYTE, 0},
238#define IDX_DEBUG 24
239 {"debug", ENC_DBCS, DBCS_DEBUG},
240#define IDX_CP932 25
241 {"cp932", ENC_DBCS, DBCS_JPN},
242#define IDX_CP949 26
243 {"cp949", ENC_DBCS, DBCS_KOR},
244#define IDX_CP936 27
245 {"cp936", ENC_DBCS, DBCS_CHS},
246#define IDX_CP950 28
247 {"cp950", ENC_DBCS, DBCS_CHT},
248#define IDX_EUC_JP 29
249 {"euc-jp", ENC_DBCS, DBCS_JPNU},
250#define IDX_SJIS 30
251 {"sjis", ENC_DBCS, DBCS_JPN},
252#define IDX_EUC_KR 31
253 {"euc-kr", ENC_DBCS, DBCS_KORU},
254#define IDX_EUC_CN 32
255 {"euc-cn", ENC_DBCS, DBCS_CHSU},
256#define IDX_EUC_TW 33
257 {"euc-tw", ENC_DBCS, DBCS_CHTU},
258#define IDX_BIG5 34
259 {"big5", ENC_DBCS, DBCS_CHT},
260#define IDX_CP1251 35
261 {"cp1251", ENC_8BIT, 1251},
262#define IDX_MACROMAN 36
263 {"macroman", ENC_8BIT + ENC_MACROMAN, 0},
264#define IDX_COUNT 37
265};
266
267/*
268 * Aliases for encoding names.
269 */
270static struct
271{ char *name; int canon;}
272enc_alias_table[] =
273{
274 {"ansi", IDX_LATIN_1},
275 {"iso-8859-1", IDX_LATIN_1},
276 {"latin2", IDX_ISO_2},
277 {"latin3", IDX_ISO_3},
278 {"latin4", IDX_ISO_4},
279 {"cyrillic", IDX_ISO_5},
280 {"arabic", IDX_ISO_6},
281 {"greek", IDX_ISO_7},
282#ifdef WIN3264
283 {"hebrew", IDX_CP1255},
284#else
285 {"hebrew", IDX_ISO_8},
286#endif
287 {"latin5", IDX_ISO_9},
288 {"turkish", IDX_ISO_9}, /* ? */
289 {"latin6", IDX_ISO_10},
290 {"nordic", IDX_ISO_10}, /* ? */
291 {"thai", IDX_ISO_11}, /* ? */
292 {"latin7", IDX_ISO_13},
293 {"latin8", IDX_ISO_14},
294 {"latin9", IDX_ISO_15},
295 {"utf8", IDX_UTF8},
296 {"unicode", IDX_UCS2},
297 {"ucs2", IDX_UCS2},
298 {"ucs2be", IDX_UCS2},
299 {"ucs-2be", IDX_UCS2},
300 {"ucs2le", IDX_UCS2LE},
301 {"utf16", IDX_UTF16},
302 {"utf16be", IDX_UTF16},
303 {"utf-16be", IDX_UTF16},
304 {"utf16le", IDX_UTF16LE},
305 {"ucs4", IDX_UCS4},
306 {"ucs4be", IDX_UCS4},
307 {"ucs-4be", IDX_UCS4},
308 {"ucs4le", IDX_UCS4LE},
309 {"932", IDX_CP932},
310 {"949", IDX_CP949},
311 {"936", IDX_CP936},
312 {"950", IDX_CP950},
313 {"eucjp", IDX_EUC_JP},
314 {"unix-jis", IDX_EUC_JP},
315 {"ujis", IDX_EUC_JP},
316 {"shift-jis", IDX_SJIS},
317 {"euckr", IDX_EUC_KR},
318 {"5601", IDX_EUC_KR}, /* Sun: KS C 5601 */
319 {"euccn", IDX_EUC_CN},
320 {"gb2312", IDX_EUC_CN},
321 {"euctw", IDX_EUC_TW},
322#if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
323 {"japan", IDX_CP932},
324 {"korea", IDX_CP949},
325 {"prc", IDX_CP936},
326 {"chinese", IDX_CP936},
327 {"taiwan", IDX_CP950},
328 {"big5", IDX_CP950},
329#else
330 {"japan", IDX_EUC_JP},
331 {"korea", IDX_EUC_KR},
332 {"prc", IDX_EUC_CN},
333 {"chinese", IDX_EUC_CN},
334 {"taiwan", IDX_EUC_TW},
335 {"cp950", IDX_BIG5},
336 {"950", IDX_BIG5},
337#endif
338 {"mac", IDX_MACROMAN},
339 {NULL, 0}
340};
341
342#ifndef CP_UTF8
343# define CP_UTF8 65001 /* magic number from winnls.h */
344#endif
345
346/*
347 * Find encoding "name" in the list of canonical encoding names.
348 * Returns -1 if not found.
349 */
350 static int
351enc_canon_search(name)
352 char_u *name;
353{
354 int i;
355
356 for (i = 0; i < IDX_COUNT; ++i)
357 if (STRCMP(name, enc_canon_table[i].name) == 0)
358 return i;
359 return -1;
360}
361
362#endif
363
364#if defined(FEAT_MBYTE) || defined(PROTO)
365
366/*
367 * Find canonical encoding "name" in the list and return its properties.
368 * Returns 0 if not found.
369 */
370 int
371enc_canon_props(name)
372 char_u *name;
373{
374 int i;
375
376 i = enc_canon_search(name);
377 if (i >= 0)
378 return enc_canon_table[i].prop;
379#ifdef WIN3264
380 if (name[0] == 'c' && name[1] == 'p' && VIM_ISDIGIT(name[2]))
381 {
382 CPINFO cpinfo;
383
384 /* Get info on this codepage to find out what it is. */
385 if (GetCPInfo(atoi(name + 2), &cpinfo) != 0)
386 {
387 if (cpinfo.MaxCharSize == 1) /* some single-byte encoding */
388 return ENC_8BIT;
389 if (cpinfo.MaxCharSize == 2
390 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
391 /* must be a DBCS encoding */
392 return ENC_DBCS;
393 }
394 return 0;
395 }
396#endif
397 if (STRNCMP(name, "2byte-", 6) == 0)
398 return ENC_DBCS;
399 if (STRNCMP(name, "8bit-", 5) == 0 || STRNCMP(name, "iso-8859-", 9) == 0)
400 return ENC_8BIT;
401 return 0;
402}
403
404/*
405 * Set up for using multi-byte characters.
406 * Called in three cases:
407 * - by main() to initialize (p_enc == NULL)
408 * - by set_init_1() after 'encoding' was set to its default.
409 * - by do_set() when 'encoding' has been set.
410 * p_enc must have been passed through enc_canonize() already.
411 * Sets the "enc_unicode", "enc_utf8", "enc_dbcs" and "has_mbyte" flags.
412 * Fills mb_bytelen_tab[] and returns NULL when there are no problems.
413 * When there is something wrong: Returns an error message and doesn't change
414 * anything.
415 */
416 char_u *
417mb_init()
418{
419 int i;
420 int idx;
421 int n;
422 int enc_dbcs_new = 0;
423#if defined(USE_ICONV) && !defined(WIN3264) && !defined(WIN32UNIX) \
424 && !defined(MACOS)
425# define LEN_FROM_CONV
426 vimconv_T vimconv;
427 char_u *p;
428#endif
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000429#ifdef WIN32
430 int prev_enc_utf8 = enc_utf8;
431#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433 if (p_enc == NULL)
434 {
435 /* Just starting up: set the whole table to one's. */
436 for (i = 0; i < 256; ++i)
437 mb_bytelen_tab[i] = 1;
438 input_conv.vc_type = CONV_NONE;
439 input_conv.vc_factor = 1;
440 output_conv.vc_type = CONV_NONE;
441 return NULL;
442 }
443
444#ifdef WIN3264
445 if (p_enc[0] == 'c' && p_enc[1] == 'p' && VIM_ISDIGIT(p_enc[2]))
446 {
447 CPINFO cpinfo;
448
449 /* Get info on this codepage to find out what it is. */
450 if (GetCPInfo(atoi(p_enc + 2), &cpinfo) != 0)
451 {
452 if (cpinfo.MaxCharSize == 1)
453 {
454 /* some single-byte encoding */
455 enc_unicode = 0;
456 enc_utf8 = FALSE;
457 }
458 else if (cpinfo.MaxCharSize == 2
459 && (cpinfo.LeadByte[0] != 0 || cpinfo.LeadByte[1] != 0))
460 {
461 /* must be a DBCS encoding, check below */
462 enc_dbcs_new = atoi(p_enc + 2);
463 }
464 else
465 goto codepage_invalid;
466 }
467 else if (GetLastError() == ERROR_INVALID_PARAMETER)
468 {
469codepage_invalid:
470 return (char_u *)N_("E543: Not a valid codepage");
471 }
472 }
473#endif
474 else if (STRNCMP(p_enc, "8bit-", 5) == 0
475 || STRNCMP(p_enc, "iso-8859-", 9) == 0)
476 {
477 /* Accept any "8bit-" or "iso-8859-" name. */
478 enc_unicode = 0;
479 enc_utf8 = FALSE;
480 }
481 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
482 {
483#ifdef WIN3264
484 /* Windows: accept only valid codepage numbers, check below. */
485 if (p_enc[6] != 'c' || p_enc[7] != 'p'
486 || (enc_dbcs_new = atoi(p_enc + 8)) == 0)
487 return e_invarg;
488#else
489 /* Unix: accept any "2byte-" name, assume current locale. */
490 enc_dbcs_new = DBCS_2BYTE;
491#endif
492 }
493 else if ((idx = enc_canon_search(p_enc)) >= 0)
494 {
495 i = enc_canon_table[idx].prop;
496 if (i & ENC_UNICODE)
497 {
498 /* Unicode */
499 enc_utf8 = TRUE;
500 if (i & (ENC_2BYTE | ENC_2WORD))
501 enc_unicode = 2;
502 else if (i & ENC_4BYTE)
503 enc_unicode = 4;
504 else
505 enc_unicode = 0;
506 }
507 else if (i & ENC_DBCS)
508 {
509 /* 2byte, handle below */
510 enc_dbcs_new = enc_canon_table[idx].codepage;
511 }
512 else
513 {
514 /* Must be 8-bit. */
515 enc_unicode = 0;
516 enc_utf8 = FALSE;
517 }
518 }
519 else /* Don't know what encoding this is, reject it. */
520 return e_invarg;
521
522 if (enc_dbcs_new != 0)
523 {
524#ifdef WIN3264
525 /* Check if the DBCS code page is OK. */
526 if (!IsValidCodePage(enc_dbcs_new))
527 goto codepage_invalid;
528#endif
529 enc_unicode = 0;
530 enc_utf8 = FALSE;
531 }
532 enc_dbcs = enc_dbcs_new;
533 has_mbyte = (enc_dbcs != 0 || enc_utf8);
534
535#ifdef WIN3264
536 enc_codepage = encname2codepage(p_enc);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000537 enc_latin9 = (STRCMP(p_enc, "iso-8859-15") == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538#endif
539
540 /*
541 * Set the function pointers.
542 */
543 if (enc_utf8)
544 {
545 mb_ptr2len_check = utfc_ptr2len_check;
546 mb_char2len = utf_char2len;
547 mb_char2bytes = utf_char2bytes;
548 mb_ptr2cells = utf_ptr2cells;
549 mb_char2cells = utf_char2cells;
550 mb_off2cells = utf_off2cells;
551 mb_ptr2char = utf_ptr2char;
552 mb_head_off = utf_head_off;
553 }
554 else if (enc_dbcs != 0)
555 {
556 mb_ptr2len_check = dbcs_ptr2len_check;
557 mb_char2len = dbcs_char2len;
558 mb_char2bytes = dbcs_char2bytes;
559 mb_ptr2cells = dbcs_ptr2cells;
560 mb_char2cells = dbcs_char2cells;
561 mb_off2cells = dbcs_off2cells;
562 mb_ptr2char = dbcs_ptr2char;
563 mb_head_off = dbcs_head_off;
564 }
565 else
566 {
567 mb_ptr2len_check = latin_ptr2len_check;
568 mb_char2len = latin_char2len;
569 mb_char2bytes = latin_char2bytes;
570 mb_ptr2cells = latin_ptr2cells;
571 mb_char2cells = latin_char2cells;
572 mb_off2cells = latin_off2cells;
573 mb_ptr2char = latin_ptr2char;
574 mb_head_off = latin_head_off;
575 }
576
577 /*
578 * Fill the mb_bytelen_tab[] for MB_BYTE2LEN().
579 */
580#ifdef LEN_FROM_CONV
581 /* When 'encoding' is different from the current locale mblen() won't
582 * work. Use conversion to "utf-8" instead. */
583 vimconv.vc_type = CONV_NONE;
584 if (enc_dbcs)
585 {
586 p = enc_locale();
587 if (p == NULL || STRCMP(p, p_enc) != 0)
588 {
589 convert_setup(&vimconv, p_enc, (char_u *)"utf-8");
590 vimconv.vc_fail = TRUE;
591 }
592 vim_free(p);
593 }
594#endif
595
596 for (i = 0; i < 256; ++i)
597 {
598 /* Our own function to reliably check the length of UTF-8 characters,
599 * independent of mblen(). */
600 if (enc_utf8)
601 n = utf8len_tab[i];
602 else if (enc_dbcs == 0)
603 n = 1;
604 else
605 {
606#if defined(WIN3264) || defined(WIN32UNIX)
607 /* enc_dbcs is set by setting 'fileencoding'. It becomes a Windows
608 * CodePage identifier, which we can pass directly in to Windows
609 * API */
610 n = IsDBCSLeadByteEx(enc_dbcs, (BYTE)i) ? 2 : 1;
611#else
612# ifdef MACOS
613 /*
614 * if mblen() is not available, character which MSB is turned on
615 * are treated as leading byte character. (note : This assumption
616 * is not always true.)
617 */
618 n = (i & 0x80) ? 2 : 1;
619# else
620 char buf[MB_MAXBYTES];
621# ifdef X_LOCALE
622# ifndef mblen
623# define mblen _Xmblen
624# endif
625# endif
626 if (i == NUL) /* just in case mblen() can't handle "" */
627 n = 1;
628 else
629 {
630 buf[0] = i;
631 buf[1] = 0;
632#ifdef LEN_FROM_CONV
633 if (vimconv.vc_type != CONV_NONE)
634 {
635 /*
636 * string_convert() should fail when converting the first
637 * byte of a double-byte character.
638 */
639 p = string_convert(&vimconv, (char_u *)buf, NULL);
640 if (p != NULL)
641 {
642 vim_free(p);
643 n = 1;
644 }
645 else
646 n = 2;
647 }
648 else
649#endif
650 {
651 /*
652 * mblen() should return -1 for invalid (means the leading
653 * multibyte) character. However there are some platforms
654 * where mblen() returns 0 for invalid character.
655 * Therefore, following condition includes 0.
656 */
657 if (mblen(buf, (size_t)1) <= 0)
658 n = 2;
659 else
660 n = 1;
661 }
662 }
663# endif
664#endif
665 }
666
667 mb_bytelen_tab[i] = n;
668 }
669
670#ifdef LEN_FROM_CONV
671 convert_setup(&vimconv, NULL, NULL);
672#endif
673
674 /* The cell width depends on the type of multi-byte characters. */
675 (void)init_chartab();
676
677 /* When enc_utf8 is set or reset, (de)allocate ScreenLinesUC[] */
678 screenalloc(FALSE);
679
680 /* When using Unicode, set default for 'fileencodings'. */
681 if (enc_utf8 && !option_was_set((char_u *)"fencs"))
682 set_string_option_direct((char_u *)"fencs", -1,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000683 (char_u *)"ucs-bom,utf-8,default,latin1", OPT_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684#if defined(HAVE_BIND_TEXTDOMAIN_CODESET) && defined(FEAT_GETTEXT)
685 /* GNU gettext 0.10.37 supports this feature: set the codeset used for
686 * translated messages independently from the current locale. */
687 (void)bind_textdomain_codeset(VIMPACKAGE,
688 enc_utf8 ? "utf-8" : (char *)p_enc);
689#endif
690
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000691#ifdef WIN32
692 /* When changing 'encoding' while starting up, then convert the command
693 * line arguments from the active codepage to 'encoding'. */
694 if (starting != 0)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000695 fix_arg_enc();
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000696#endif
697
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698#ifdef FEAT_AUTOCMD
699 /* Fire an autocommand to let people do custom font setup. This must be
700 * after Vim has been setup for the new encoding. */
701 apply_autocmds(EVENT_ENCODINGCHANGED, NULL, (char_u *)"", FALSE, curbuf);
702#endif
703
Bram Moolenaar843ee412004-06-30 16:16:41 +0000704#ifdef FEAT_GUI_KDE
705 if (gui.in_use)
706 gui_mch_update_codec();
707#endif
708
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 return NULL;
710}
711
712/*
713 * Return the size of the BOM for the current buffer:
714 * 0 - no BOM
715 * 2 - UCS-2 or UTF-16 BOM
716 * 4 - UCS-4 BOM
717 * 3 - UTF-8 BOM
718 */
719 int
720bomb_size()
721{
722 int n = 0;
723
724 if (curbuf->b_p_bomb && !curbuf->b_p_bin)
725 {
726 if (*curbuf->b_p_fenc == NUL)
727 {
728 if (enc_utf8)
729 {
730 if (enc_unicode != 0)
731 n = enc_unicode;
732 else
733 n = 3;
734 }
735 }
736 else if (STRCMP(curbuf->b_p_fenc, "utf-8") == 0)
737 n = 3;
738 else if (STRNCMP(curbuf->b_p_fenc, "ucs-2", 5) == 0
739 || STRNCMP(curbuf->b_p_fenc, "utf-16", 6) == 0)
740 n = 2;
741 else if (STRNCMP(curbuf->b_p_fenc, "ucs-4", 5) == 0)
742 n = 4;
743 }
744 return n;
745}
746
747/*
748 * Get class of pointer:
749 * 0 for blank or NUL
750 * 1 for punctuation
751 * 2 for an (ASCII) word character
752 * >2 for other word characters
753 */
754 int
755mb_get_class(p)
756 char_u *p;
757{
758 if (MB_BYTE2LEN(p[0]) == 1)
759 {
760 if (p[0] == NUL || vim_iswhite(p[0]))
761 return 0;
762 if (vim_iswordc(p[0]))
763 return 2;
764 return 1;
765 }
766 if (enc_dbcs != 0 && p[0] != NUL && p[1] != NUL)
767 return dbcs_class(p[0], p[1]);
768 if (enc_utf8)
769 return utf_class(utf_ptr2char(p));
770 return 0;
771}
772
773/*
774 * Get class of a double-byte character. This always returns 3 or bigger.
775 * TODO: Should return 1 for punctuation.
776 */
777 int
778dbcs_class(lead, trail)
779 unsigned lead;
780 unsigned trail;
781{
782 switch (enc_dbcs)
783 {
784 /* please add classfy routine for your language in here */
785
786 case DBCS_JPNU: /* ? */
787 case DBCS_JPN:
788 {
789 /* JIS code classification */
790 unsigned char lb = lead;
791 unsigned char tb = trail;
792
793 /* convert process code to JIS */
794# if defined(WIN3264) || defined(WIN32UNIX) || defined(MACOS)
795 /* process code is SJIS */
796 if (lb <= 0x9f)
797 lb = (lb - 0x81) * 2 + 0x21;
798 else
799 lb = (lb - 0xc1) * 2 + 0x21;
800 if (tb <= 0x7e)
801 tb -= 0x1f;
802 else if (tb <= 0x9e)
803 tb -= 0x20;
804 else
805 {
806 tb -= 0x7e;
807 lb += 1;
808 }
809# else
810 /*
811 * XXX: Code page identification can not use with all
812 * system! So, some other encoding information
813 * will be needed.
814 * In japanese: SJIS,EUC,UNICODE,(JIS)
815 * Note that JIS-code system don't use as
816 * process code in most system because it uses
817 * escape sequences(JIS is context depend encoding).
818 */
819 /* assume process code is JAPANESE-EUC */
820 lb &= 0x7f;
821 tb &= 0x7f;
822# endif
823 /* exceptions */
824 switch (lb << 8 | tb)
825 {
826 case 0x2121: /* ZENKAKU space */
827 return 0;
828 case 0x2122: /* KU-TEN (Japanese comma) */
829 case 0x2123: /* TOU-TEN (Japanese period) */
830 case 0x2124: /* ZENKAKU comma */
831 case 0x2125: /* ZENKAKU period */
832 return 1;
833 case 0x213c: /* prolongedsound handled as KATAKANA */
834 return 13;
835 }
836 /* sieved by KU code */
837 switch (lb)
838 {
839 case 0x21:
840 case 0x22:
841 /* special symbols */
842 return 10;
843 case 0x23:
844 /* alpha-numeric */
845 return 11;
846 case 0x24:
847 /* hiragana */
848 return 12;
849 case 0x25:
850 /* katakana */
851 return 13;
852 case 0x26:
853 /* greek */
854 return 14;
855 case 0x27:
856 /* russian */
857 return 15;
858 case 0x28:
859 /* lines */
860 return 16;
861 default:
862 /* kanji */
863 return 17;
864 }
865 }
866
867 case DBCS_KORU: /* ? */
868 case DBCS_KOR:
869 {
870 /* KS code classification */
871 unsigned char c1 = lead;
872 unsigned char c2 = trail;
873
874 /*
875 * 20 : Hangul
876 * 21 : Hanja
877 * 22 : Symbols
878 * 23 : Alpha-numeric/Roman Letter (Full width)
879 * 24 : Hangul Letter(Alphabet)
880 * 25 : Roman Numeral/Greek Letter
881 * 26 : Box Drawings
882 * 27 : Unit Symbols
883 * 28 : Circled/Parenthesized Letter
884 * 29 : Hirigana/Katakana
885 * 30 : Cyrillic Letter
886 */
887
888 if (c1 >= 0xB0 && c1 <= 0xC8)
889 /* Hangul */
890 return 20;
891#if defined(WIN3264) || defined(WIN32UNIX)
892 else if (c1 <= 0xA0 || c2 <= 0xA0)
893 /* Extended Hangul Region : MS UHC(Unified Hangul Code) */
894 /* c1: 0x81-0xA0 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xFE
895 * c1: 0xA1-0xC6 with c2: 0x41-0x5A, 0x61-0x7A, 0x81-0xA0
896 */
897 return 20;
898#endif
899
900 else if (c1 >= 0xCA && c1 <= 0xFD)
901 /* Hanja */
902 return 21;
903 else switch (c1)
904 {
905 case 0xA1:
906 case 0xA2:
907 /* Symbols */
908 return 22;
909 case 0xA3:
910 /* Alpha-numeric */
911 return 23;
912 case 0xA4:
913 /* Hangul Letter(Alphabet) */
914 return 24;
915 case 0xA5:
916 /* Roman Numeral/Greek Letter */
917 return 25;
918 case 0xA6:
919 /* Box Drawings */
920 return 26;
921 case 0xA7:
922 /* Unit Symbols */
923 return 27;
924 case 0xA8:
925 case 0xA9:
926 if (c2 <= 0xAF)
927 return 25; /* Roman Letter */
928 else if (c2 >= 0xF6)
929 return 22; /* Symbols */
930 else
931 /* Circled/Parenthesized Letter */
932 return 28;
933 case 0xAA:
934 case 0xAB:
935 /* Hirigana/Katakana */
936 return 29;
937 case 0xAC:
938 /* Cyrillic Letter */
939 return 30;
940 }
941 }
942 default:
943 break;
944 }
945 return 3;
946}
947
948/*
949 * mb_char2len() function pointer.
950 * Return length in bytes of character "c".
951 * Returns 1 for a single-byte character.
952 */
953/* ARGSUSED */
954 int
955latin_char2len(c)
956 int c;
957{
958 return 1;
959}
960
961 static int
962dbcs_char2len(c)
963 int c;
964{
965 if (c >= 0x100)
966 return 2;
967 return 1;
968}
969
970/*
971 * mb_char2bytes() function pointer.
972 * Convert a character to its bytes.
973 * Returns the length in bytes.
974 */
975 int
976latin_char2bytes(c, buf)
977 int c;
978 char_u *buf;
979{
980 buf[0] = c;
981 return 1;
982}
983
984 static int
985dbcs_char2bytes(c, buf)
986 int c;
987 char_u *buf;
988{
989 if (c >= 0x100)
990 {
991 buf[0] = (unsigned)c >> 8;
992 buf[1] = c;
993 return 2;
994 }
995 buf[0] = c;
996 return 1;
997}
998
999/*
1000 * mb_ptr2len_check() function pointer.
1001 * Get byte length of character at "*p" but stop at a NUL.
1002 * For UTF-8 this includes following composing characters.
1003 * Returns 0 when *p is NUL.
1004 *
1005 */
1006 int
1007latin_ptr2len_check(p)
1008 char_u *p;
1009{
1010 return MB_BYTE2LEN(*p);
1011}
1012
1013 static int
1014dbcs_ptr2len_check(p)
1015 char_u *p;
1016{
1017 int len;
1018
1019 /* Check if second byte is not missing. */
1020 len = MB_BYTE2LEN(*p);
1021 if (len == 2 && p[1] == NUL)
1022 len = 1;
1023 return len;
1024}
1025
1026struct interval
1027{
1028 unsigned short first;
1029 unsigned short last;
1030};
1031static int intable __ARGS((struct interval *table, size_t size, int c));
1032
1033/*
1034 * Return TRUE if "c" is in "table[size / sizeof(struct interval)]".
1035 */
1036 static int
1037intable(table, size, c)
1038 struct interval *table;
1039 size_t size;
1040 int c;
1041{
1042 int mid, bot, top;
1043
1044 /* first quick check for Latin1 etc. characters */
1045 if (c < table[0].first)
1046 return FALSE;
1047
1048 /* binary search in table */
1049 bot = 0;
1050 top = size / sizeof(struct interval) - 1;
1051 while (top >= bot)
1052 {
1053 mid = (bot + top) / 2;
1054 if (table[mid].last < c)
1055 bot = mid + 1;
1056 else if (table[mid].first > c)
1057 top = mid - 1;
1058 else
1059 return TRUE;
1060 }
1061 return FALSE;
1062}
1063
1064/*
1065 * For UTF-8 character "c" return 2 for a double-width character, 1 for others.
1066 * Returns 4 or 6 for an unprintable character.
1067 * Is only correct for characters >= 0x80.
1068 * When p_ambw is "double", return 2 for a character with East Asian Width
1069 * class 'A'(mbiguous).
1070 */
1071 int
1072utf_char2cells(c)
1073 int c;
1074{
1075 /* sorted list of non-overlapping intervals of East Asian Ambiguous
1076 * characters, generated with:
1077 * "uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c" */
1078 static struct interval ambiguous[] = {
1079 {0x00A1, 0x00A1}, {0x00A4, 0x00A4}, {0x00A7, 0x00A8},
1080 {0x00AA, 0x00AA}, {0x00AE, 0x00AE}, {0x00B0, 0x00B4},
1081 {0x00B6, 0x00BA}, {0x00BC, 0x00BF}, {0x00C6, 0x00C6},
1082 {0x00D0, 0x00D0}, {0x00D7, 0x00D8}, {0x00DE, 0x00E1},
1083 {0x00E6, 0x00E6}, {0x00E8, 0x00EA}, {0x00EC, 0x00ED},
1084 {0x00F0, 0x00F0}, {0x00F2, 0x00F3}, {0x00F7, 0x00FA},
1085 {0x00FC, 0x00FC}, {0x00FE, 0x00FE}, {0x0101, 0x0101},
1086 {0x0111, 0x0111}, {0x0113, 0x0113}, {0x011B, 0x011B},
1087 {0x0126, 0x0127}, {0x012B, 0x012B}, {0x0131, 0x0133},
1088 {0x0138, 0x0138}, {0x013F, 0x0142}, {0x0144, 0x0144},
1089 {0x0148, 0x014B}, {0x014D, 0x014D}, {0x0152, 0x0153},
1090 {0x0166, 0x0167}, {0x016B, 0x016B}, {0x01CE, 0x01CE},
1091 {0x01D0, 0x01D0}, {0x01D2, 0x01D2}, {0x01D4, 0x01D4},
1092 {0x01D6, 0x01D6}, {0x01D8, 0x01D8}, {0x01DA, 0x01DA},
1093 {0x01DC, 0x01DC}, {0x0251, 0x0251}, {0x0261, 0x0261},
1094 {0x02C4, 0x02C4}, {0x02C7, 0x02C7}, {0x02C9, 0x02CB},
1095 {0x02CD, 0x02CD}, {0x02D0, 0x02D0}, {0x02D8, 0x02DB},
1096 {0x02DD, 0x02DD}, {0x02DF, 0x02DF}, {0x0391, 0x03A1},
1097 {0x03A3, 0x03A9}, {0x03B1, 0x03C1}, {0x03C3, 0x03C9},
1098 {0x0401, 0x0401}, {0x0410, 0x044F}, {0x0451, 0x0451},
1099 {0x2010, 0x2010}, {0x2013, 0x2016}, {0x2018, 0x2019},
1100 {0x201C, 0x201D}, {0x2020, 0x2022}, {0x2024, 0x2027},
1101 {0x2030, 0x2030}, {0x2032, 0x2033}, {0x2035, 0x2035},
1102 {0x203B, 0x203B}, {0x203E, 0x203E}, {0x2074, 0x2074},
1103 {0x207F, 0x207F}, {0x2081, 0x2084}, {0x20AC, 0x20AC},
1104 {0x2103, 0x2103}, {0x2105, 0x2105}, {0x2109, 0x2109},
1105 {0x2113, 0x2113}, {0x2116, 0x2116}, {0x2121, 0x2122},
1106 {0x2126, 0x2126}, {0x212B, 0x212B}, {0x2153, 0x2154},
1107 {0x215B, 0x215E}, {0x2160, 0x216B}, {0x2170, 0x2179},
1108 {0x2190, 0x2199}, {0x21B8, 0x21B9}, {0x21D2, 0x21D2},
1109 {0x21D4, 0x21D4}, {0x21E7, 0x21E7}, {0x2200, 0x2200},
1110 {0x2202, 0x2203}, {0x2207, 0x2208}, {0x220B, 0x220B},
1111 {0x220F, 0x220F}, {0x2211, 0x2211}, {0x2215, 0x2215},
1112 {0x221A, 0x221A}, {0x221D, 0x2220}, {0x2223, 0x2223},
1113 {0x2225, 0x2225}, {0x2227, 0x222C}, {0x222E, 0x222E},
1114 {0x2234, 0x2237}, {0x223C, 0x223D}, {0x2248, 0x2248},
1115 {0x224C, 0x224C}, {0x2252, 0x2252}, {0x2260, 0x2261},
1116 {0x2264, 0x2267}, {0x226A, 0x226B}, {0x226E, 0x226F},
1117 {0x2282, 0x2283}, {0x2286, 0x2287}, {0x2295, 0x2295},
1118 {0x2299, 0x2299}, {0x22A5, 0x22A5}, {0x22BF, 0x22BF},
1119 {0x2312, 0x2312}, {0x2460, 0x24E9}, {0x24EB, 0x254B},
1120 {0x2550, 0x2573}, {0x2580, 0x258F}, {0x2592, 0x2595},
1121 {0x25A0, 0x25A1}, {0x25A3, 0x25A9}, {0x25B2, 0x25B3},
1122 {0x25B6, 0x25B7}, {0x25BC, 0x25BD}, {0x25C0, 0x25C1},
1123 {0x25C6, 0x25C8}, {0x25CB, 0x25CB}, {0x25CE, 0x25D1},
1124 {0x25E2, 0x25E5}, {0x25EF, 0x25EF}, {0x2605, 0x2606},
1125 {0x2609, 0x2609}, {0x260E, 0x260F}, {0x2614, 0x2615},
1126 {0x261C, 0x261C}, {0x261E, 0x261E}, {0x2640, 0x2640},
1127 {0x2642, 0x2642}, {0x2660, 0x2661}, {0x2663, 0x2665},
1128 {0x2667, 0x266A}, {0x266C, 0x266D}, {0x266F, 0x266F},
1129 {0x273D, 0x273D}, {0x2776, 0x277F}, {0xE000, 0xF8FF},
1130 {0xFFFD, 0xFFFD}, /* {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} */
1131 };
1132
1133 if (c >= 0x100)
1134 {
1135#ifdef USE_WCHAR_FUNCTIONS
1136 /*
1137 * Assume the library function wcwidth() works better than our own
1138 * stuff. It should return 1 for ambiguous width chars!
1139 */
1140 int n = wcwidth(c);
1141
1142 if (n < 0)
1143 return 6; /* unprintable, displays <xxxx> */
1144 if (n > 1)
1145 return n;
1146#else
1147 if (!utf_printable(c))
1148 return 6; /* unprintable, displays <xxxx> */
1149 if (c >= 0x1100
1150 && (c <= 0x115f /* Hangul Jamo */
1151 || c == 0x2329
1152 || c == 0x232a
1153 || (c >= 0x2e80 && c <= 0xa4cf
1154 && c != 0x303f) /* CJK ... Yi */
1155 || (c >= 0xac00 && c <= 0xd7a3) /* Hangul Syllables */
1156 || (c >= 0xf900 && c <= 0xfaff) /* CJK Compatibility
1157 Ideographs */
1158 || (c >= 0xfe30 && c <= 0xfe6f) /* CJK Compatibility Forms */
1159 || (c >= 0xff00 && c <= 0xff60) /* Fullwidth Forms */
1160 || (c >= 0xffe0 && c <= 0xffe6)
1161 || (c >= 0x20000 && c <= 0x2fffd)
1162 || (c >= 0x30000 && c <= 0x3fffd)))
1163 return 2;
1164#endif
1165 }
1166
1167 /* Characters below 0x100 are influenced by 'isprint' option */
1168 else if (c >= 0x80 && !vim_isprintc(c))
1169 return 4; /* unprintable, displays <xx> */
1170
1171 if (c >= 0x80 && *p_ambw == 'd' && intable(ambiguous, sizeof(ambiguous), c))
1172 return 2;
1173
1174 return 1;
1175}
1176
1177/*
1178 * mb_ptr2cells() function pointer.
1179 * Return the number of display cells character at "*p" occupies.
1180 * This doesn't take care of unprintable characters, use ptr2cells() for that.
1181 */
1182/*ARGSUSED*/
1183 int
1184latin_ptr2cells(p)
1185 char_u *p;
1186{
1187 return 1;
1188}
1189
1190 int
1191utf_ptr2cells(p)
1192 char_u *p;
1193{
1194 int c;
1195
1196 /* Need to convert to a wide character. */
1197 if (*p >= 0x80)
1198 {
1199 c = utf_ptr2char(p);
1200 /* An illegal byte is displayed as <xx>. */
1201 if (utf_ptr2len_check(p) == 1 || c == NUL)
1202 return 4;
1203 /* If the char is ASCII it must be an overlong sequence. */
1204 if (c < 0x80)
1205 return char2cells(c);
1206 return utf_char2cells(c);
1207 }
1208 return 1;
1209}
1210
1211 int
1212dbcs_ptr2cells(p)
1213 char_u *p;
1214{
1215 /* Number of cells is equal to number of bytes, except for euc-jp when
1216 * the first byte is 0x8e. */
1217 if (enc_dbcs == DBCS_JPNU && *p == 0x8e)
1218 return 1;
1219 return MB_BYTE2LEN(*p);
1220}
1221
1222/*
1223 * mb_char2cells() function pointer.
1224 * Return the number of display cells character "c" occupies.
1225 * Only takes care of multi-byte chars, not "^C" and such.
1226 */
1227/*ARGSUSED*/
1228 int
1229latin_char2cells(c)
1230 int c;
1231{
1232 return 1;
1233}
1234
1235 static int
1236dbcs_char2cells(c)
1237 int c;
1238{
1239 /* Number of cells is equal to number of bytes, except for euc-jp when
1240 * the first byte is 0x8e. */
1241 if (enc_dbcs == DBCS_JPNU && ((unsigned)c >> 8) == 0x8e)
1242 return 1;
1243 /* use the first byte */
1244 return MB_BYTE2LEN((unsigned)c >> 8);
1245}
1246
1247/*
1248 * mb_off2cells() function pointer.
1249 * Return number of display cells for char at ScreenLines[off].
1250 * Caller must make sure "off" and "off + 1" are valid!
1251 */
1252/*ARGSUSED*/
1253 int
1254latin_off2cells(off)
1255 unsigned off;
1256{
1257 return 1;
1258}
1259
1260 int
1261dbcs_off2cells(off)
1262 unsigned off;
1263{
1264 /* Number of cells is equal to number of bytes, except for euc-jp when
1265 * the first byte is 0x8e. */
1266 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e)
1267 return 1;
1268 return MB_BYTE2LEN(ScreenLines[off]);
1269}
1270
1271 int
1272utf_off2cells(off)
1273 unsigned off;
1274{
1275 return ScreenLines[off + 1] == 0 ? 2 : 1;
1276}
1277
1278/*
1279 * mb_ptr2char() function pointer.
1280 * Convert a byte sequence into a character.
1281 */
1282 int
1283latin_ptr2char(p)
1284 char_u *p;
1285{
1286 return *p;
1287}
1288
1289 static int
1290dbcs_ptr2char(p)
1291 char_u *p;
1292{
1293 if (MB_BYTE2LEN(*p) > 1 && p[1] != NUL)
1294 return (p[0] << 8) + p[1];
1295 return *p;
1296}
1297
1298/*
1299 * Convert a UTF-8 byte sequence to a wide character.
1300 * If the sequence is illegal or truncated by a NUL the first byte is
1301 * returned.
1302 * Does not include composing characters, of course.
1303 */
1304 int
1305utf_ptr2char(p)
1306 char_u *p;
1307{
1308 int len;
1309
1310 if (p[0] < 0x80) /* be quick for ASCII */
1311 return p[0];
1312
1313 len = utf8len_tab[p[0]];
1314 if ((p[1] & 0xc0) == 0x80)
1315 {
1316 if (len == 2)
1317 return ((p[0] & 0x1f) << 6) + (p[1] & 0x3f);
1318 if ((p[2] & 0xc0) == 0x80)
1319 {
1320 if (len == 3)
1321 return ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6)
1322 + (p[2] & 0x3f);
1323 if ((p[3] & 0xc0) == 0x80)
1324 {
1325 if (len == 4)
1326 return ((p[0] & 0x07) << 18) + ((p[1] & 0x3f) << 12)
1327 + ((p[2] & 0x3f) << 6) + (p[3] & 0x3f);
1328 if ((p[4] & 0xc0) == 0x80)
1329 {
1330 if (len == 5)
1331 return ((p[0] & 0x03) << 24) + ((p[1] & 0x3f) << 18)
1332 + ((p[2] & 0x3f) << 12) + ((p[3] & 0x3f) << 6)
1333 + (p[4] & 0x3f);
1334 if ((p[5] & 0xc0) == 0x80 && len == 6)
1335 return ((p[0] & 0x01) << 30) + ((p[1] & 0x3f) << 24)
1336 + ((p[2] & 0x3f) << 18) + ((p[3] & 0x3f) << 12)
1337 + ((p[4] & 0x3f) << 6) + (p[5] & 0x3f);
1338 }
1339 }
1340 }
1341 }
1342 /* Illegal value, just return the first byte */
1343 return p[0];
1344}
1345
1346/*
1347 * Get character at **pp and advance *pp to the next character.
1348 * Note: composing characters are skipped!
1349 */
1350 int
1351mb_ptr2char_adv(pp)
1352 char_u **pp;
1353{
1354 int c;
1355
1356 c = (*mb_ptr2char)(*pp);
1357 *pp += (*mb_ptr2len_check)(*pp);
1358 return c;
1359}
1360
1361#if defined(FEAT_ARABIC) || defined(PROTO)
1362/*
1363 * Check whether we are dealing with Arabic combining characters.
1364 * Note: these are NOT really composing characters!
1365 */
1366 int
1367arabic_combine(one, two)
1368 int one; /* first character */
1369 int two; /* character just after "one" */
1370{
1371 if (one == a_LAM)
1372 return arabic_maycombine(two);
1373 return FALSE;
1374}
1375
1376/*
1377 * Check whether we are dealing with a character that could be regarded as an
1378 * Arabic combining character, need to check the character before this.
1379 */
1380 int
1381arabic_maycombine(two)
1382 int two;
1383{
1384 if (p_arshape && !p_tbidi)
1385 return (two == a_ALEF_MADDA
1386 || two == a_ALEF_HAMZA_ABOVE
1387 || two == a_ALEF_HAMZA_BELOW
1388 || two == a_ALEF);
1389 return FALSE;
1390}
1391
1392/*
1393 * Check if the character pointed to by "p2" is a composing character when it
1394 * comes after "p1". For Arabic sometimes "ab" is replaced with "c", which
1395 * behaves like a composing character.
1396 */
1397 int
1398utf_composinglike(p1, p2)
1399 char_u *p1;
1400 char_u *p2;
1401{
1402 int c2;
1403
1404 c2 = utf_ptr2char(p2);
1405 if (utf_iscomposing(c2))
1406 return TRUE;
1407 if (!arabic_maycombine(c2))
1408 return FALSE;
1409 return arabic_combine(utf_ptr2char(p1), c2);
1410}
1411#endif
1412
1413/*
1414 * Convert a UTF-8 byte string to a wide chararacter. Also get up to two
1415 * composing characters.
1416 */
1417 int
1418utfc_ptr2char(p, p1, p2)
1419 char_u *p;
1420 int *p1; /* return: first composing char or 0 */
1421 int *p2; /* return: second composing char or 0 */
1422{
1423 int len;
1424 int c;
1425 int cc;
1426
1427 c = utf_ptr2char(p);
1428 len = utf_ptr2len_check(p);
1429 /* Only accept a composing char when the first char isn't illegal. */
1430 if ((len > 1 || *p < 0x80)
1431 && p[len] >= 0x80
1432 && UTF_COMPOSINGLIKE(p, p + len))
1433 {
1434 *p1 = utf_ptr2char(p + len);
1435 len += utf_ptr2len_check(p + len);
1436 if (p[len] >= 0x80 && utf_iscomposing(cc = utf_ptr2char(p + len)))
1437 *p2 = cc;
1438 else
1439 *p2 = 0;
1440 }
1441 else
1442 {
1443 *p1 = 0;
1444 *p2 = 0;
1445 }
1446 return c;
1447}
1448
1449/*
1450 * Convert a UTF-8 byte string to a wide chararacter. Also get up to two
1451 * composing characters. Use no more than p[maxlen].
1452 */
1453 int
1454utfc_ptr2char_len(p, p1, p2, maxlen)
1455 char_u *p;
1456 int *p1; /* return: first composing char or 0 */
1457 int *p2; /* return: second composing char or 0 */
1458 int maxlen;
1459{
1460 int len;
1461 int c;
1462 int cc;
1463
1464 c = utf_ptr2char(p);
1465 len = utf_ptr2len_check_len(p, maxlen);
1466 /* Only accept a composing char when the first char isn't illegal. */
1467 if ((len > 1 || *p < 0x80)
1468 && len < maxlen
1469 && p[len] >= 0x80
1470 && UTF_COMPOSINGLIKE(p, p + len))
1471 {
1472 *p1 = utf_ptr2char(p + len);
1473 len += utf_ptr2len_check_len(p + len, maxlen - len);
1474 if (len < maxlen
1475 && p[len] >= 0x80
1476 && utf_iscomposing(cc = utf_ptr2char(p + len)))
1477 *p2 = cc;
1478 else
1479 *p2 = 0;
1480 }
1481 else
1482 {
1483 *p1 = 0;
1484 *p2 = 0;
1485 }
1486 return c;
1487}
1488
1489/*
1490 * Convert the character at screen position "off" to a sequence of bytes.
1491 * Includes the composing characters.
1492 * "buf" must at least have the length MB_MAXBYTES.
1493 * Returns the produced number of bytes.
1494 */
1495 int
1496utfc_char2bytes(off, buf)
1497 int off;
1498 char_u *buf;
1499{
1500 int len;
1501
1502 len = utf_char2bytes(ScreenLinesUC[off], buf);
1503 if (ScreenLinesC1[off] != 0)
1504 {
1505 len += utf_char2bytes(ScreenLinesC1[off], buf + len);
1506 if (ScreenLinesC2[off] != 0)
1507 len += utf_char2bytes(ScreenLinesC2[off], buf + len);
1508 }
1509 return len;
1510}
1511
1512/*
1513 * Get the length of a UTF-8 byte sequence, not including any following
1514 * composing characters.
1515 * Returns 0 for "".
1516 * Returns 1 for an illegal byte sequence.
1517 */
1518 int
1519utf_ptr2len_check(p)
1520 char_u *p;
1521{
1522 int len;
1523 int i;
1524
1525 if (*p == NUL)
1526 return 0;
1527 len = utf8len_tab[*p];
1528 for (i = 1; i < len; ++i)
1529 if ((p[i] & 0xc0) != 0x80)
1530 return 1;
1531 return len;
1532}
1533
1534/*
1535 * Return length of UTF-8 character, obtained from the first byte.
1536 * "b" must be between 0 and 255!
1537 */
1538 int
1539utf_byte2len(b)
1540 int b;
1541{
1542 return utf8len_tab[b];
1543}
1544
1545/*
1546 * Get the length of UTF-8 byte sequence "p[size]". Does not include any
1547 * following composing characters.
1548 * Returns 1 for "".
1549 * Returns 1 for an illegal byte sequence.
1550 * Returns number > "size" for an incomplete byte sequence.
1551 */
1552 int
1553utf_ptr2len_check_len(p, size)
1554 char_u *p;
1555 int size;
1556{
1557 int len;
1558 int i;
1559
1560 if (*p == NUL)
1561 return 1;
1562 len = utf8len_tab[*p];
1563 if (len > size)
1564 return len; /* incomplete byte sequence. */
1565 for (i = 1; i < len; ++i)
1566 if ((p[i] & 0xc0) != 0x80)
1567 return 1;
1568 return len;
1569}
1570
1571/*
1572 * Return the number of bytes the UTF-8 encoding of the character at "p" takes.
1573 * This includes following composing characters.
1574 */
1575 int
1576utfc_ptr2len_check(p)
1577 char_u *p;
1578{
1579 int len;
1580#ifdef FEAT_ARABIC
1581 int prevlen;
1582#endif
1583
1584 if (*p == NUL)
1585 return 0;
1586 if (p[0] < 0x80 && p[1] < 0x80) /* be quick for ASCII */
1587 return 1;
1588
1589 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1590 len = utf_ptr2len_check(p);
1591
1592 /* Check for illegal byte. */
1593 if (len == 1 && p[0] >= 0x80)
1594 return 1;
1595
1596 /*
1597 * Check for composing characters. We can handle only the first two, but
1598 * skip all of them (otherwise the cursor would get stuck).
1599 */
1600#ifdef FEAT_ARABIC
1601 prevlen = 0;
1602#endif
1603 for (;;)
1604 {
1605 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1606 return len;
1607
1608 /* Skip over composing char */
1609#ifdef FEAT_ARABIC
1610 prevlen = len;
1611#endif
1612 len += utf_ptr2len_check(p + len);
1613 }
1614}
1615
1616/*
1617 * Return the number of bytes the UTF-8 encoding of the character at "p[size]"
1618 * takes. This includes following composing characters.
1619 * Returns 1 for an illegal char or an incomplete byte sequence.
1620 */
1621 int
1622utfc_ptr2len_check_len(p, size)
1623 char_u *p;
1624 int size;
1625{
1626 int len;
1627#ifdef FEAT_ARABIC
1628 int prevlen;
1629#endif
1630
1631 if (*p == NUL)
1632 return 0;
1633 if (p[0] < 0x80 && (size == 1 || p[1] < 0x80)) /* be quick for ASCII */
1634 return 1;
1635
1636 /* Skip over first UTF-8 char, stopping at a NUL byte. */
1637 len = utf_ptr2len_check_len(p, size);
1638
1639 /* Check for illegal byte and incomplete byte sequence. */
1640 if ((len == 1 && p[0] >= 0x80) || len > size)
1641 return 1;
1642
1643 /*
1644 * Check for composing characters. We can handle only the first two, but
1645 * skip all of them (otherwise the cursor would get stuck).
1646 */
1647#ifdef FEAT_ARABIC
1648 prevlen = 0;
1649#endif
1650 while (len < size)
1651 {
1652 if (p[len] < 0x80 || !UTF_COMPOSINGLIKE(p + prevlen, p + len))
1653 break;
1654
1655 /* Skip over composing char */
1656#ifdef FEAT_ARABIC
1657 prevlen = len;
1658#endif
1659 len += utf_ptr2len_check_len(p + len, size - len);
1660 }
1661 return len;
1662}
1663
1664/*
1665 * Return the number of bytes the UTF-8 encoding of character "c" takes.
1666 * This does not include composing characters.
1667 */
1668 int
1669utf_char2len(c)
1670 int c;
1671{
1672 if (c < 0x80)
1673 return 1;
1674 if (c < 0x800)
1675 return 2;
1676 if (c < 0x10000)
1677 return 3;
1678 if (c < 0x200000)
1679 return 4;
1680 if (c < 0x4000000)
1681 return 5;
1682 return 6;
1683}
1684
1685/*
1686 * Convert Unicode character "c" to UTF-8 string in "buf[]".
1687 * Returns the number of bytes.
1688 * This does not include composing characters.
1689 */
1690 int
1691utf_char2bytes(c, buf)
1692 int c;
1693 char_u *buf;
1694{
1695 if (c < 0x80) /* 7 bits */
1696 {
1697 buf[0] = c;
1698 return 1;
1699 }
1700 if (c < 0x800) /* 11 bits */
1701 {
1702 buf[0] = 0xc0 + ((unsigned)c >> 6);
1703 buf[1] = 0x80 + (c & 0x3f);
1704 return 2;
1705 }
1706 if (c < 0x10000) /* 16 bits */
1707 {
1708 buf[0] = 0xe0 + ((unsigned)c >> 12);
1709 buf[1] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1710 buf[2] = 0x80 + (c & 0x3f);
1711 return 3;
1712 }
1713 if (c < 0x200000) /* 21 bits */
1714 {
1715 buf[0] = 0xf0 + ((unsigned)c >> 18);
1716 buf[1] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1717 buf[2] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1718 buf[3] = 0x80 + (c & 0x3f);
1719 return 4;
1720 }
1721 if (c < 0x4000000) /* 26 bits */
1722 {
1723 buf[0] = 0xf8 + ((unsigned)c >> 24);
1724 buf[1] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1725 buf[2] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1726 buf[3] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1727 buf[4] = 0x80 + (c & 0x3f);
1728 return 5;
1729 }
1730 /* 31 bits */
1731 buf[0] = 0xfc + ((unsigned)c >> 30);
1732 buf[1] = 0x80 + (((unsigned)c >> 24) & 0x3f);
1733 buf[2] = 0x80 + (((unsigned)c >> 18) & 0x3f);
1734 buf[3] = 0x80 + (((unsigned)c >> 12) & 0x3f);
1735 buf[4] = 0x80 + (((unsigned)c >> 6) & 0x3f);
1736 buf[5] = 0x80 + (c & 0x3f);
1737 return 6;
1738}
1739
1740/*
1741 * Return TRUE if "c" is a composing UTF-8 character. This means it will be
1742 * drawn on top of the preceding character.
1743 * Based on code from Markus Kuhn.
1744 */
1745 int
1746utf_iscomposing(c)
1747 int c;
1748{
1749 /* sorted list of non-overlapping intervals */
1750 static struct interval combining[] =
1751 {
1752 {0x0300, 0x034f}, {0x0360, 0x036f}, {0x0483, 0x0486}, {0x0488, 0x0489},
1753 {0x0591, 0x05a1}, {0x05a3, 0x05b9}, {0x05bb, 0x05bd}, {0x05bf, 0x05bf},
1754 {0x05c1, 0x05c2}, {0x05c4, 0x05c4}, {0x0610, 0x0615}, {0x064b, 0x0658},
1755 {0x0670, 0x0670}, {0x06d6, 0x06dc}, {0x06de, 0x06e4}, {0x06e7, 0x06e8},
1756 {0x06ea, 0x06ed}, {0x0711, 0x0711}, {0x0730, 0x074a}, {0x07a6, 0x07b0},
1757 {0x0901, 0x0903}, {0x093c, 0x093c}, {0x093e, 0x094d}, {0x0951, 0x0954},
1758 {0x0962, 0x0963}, {0x0981, 0x0983}, {0x09bc, 0x09bc}, {0x09be, 0x09c4},
1759 {0x09c7, 0x09c8}, {0x09cb, 0x09cd}, {0x09d7, 0x09d7}, {0x09e2, 0x09e3},
1760 {0x0a01, 0x0a03}, {0x0a3c, 0x0a3c}, {0x0a3e, 0x0a42}, {0x0a47, 0x0a48},
1761 {0x0a4b, 0x0a4d}, {0x0a70, 0x0a71}, {0x0a81, 0x0a83}, {0x0abc, 0x0abc},
1762 {0x0abe, 0x0ac5}, {0x0ac7, 0x0ac9}, {0x0acb, 0x0acd}, {0x0ae2, 0x0ae3},
1763 {0x0b01, 0x0b03}, {0x0b3c, 0x0b3c}, {0x0b3e, 0x0b43}, {0x0b47, 0x0b48},
1764 {0x0b4b, 0x0b4d}, {0x0b56, 0x0b57}, {0x0b82, 0x0b82}, {0x0bbe, 0x0bc2},
1765 {0x0bc6, 0x0bc8}, {0x0bca, 0x0bcd}, {0x0bd7, 0x0bd7}, {0x0c01, 0x0c03},
1766 {0x0c3e, 0x0c44}, {0x0c46, 0x0c48}, {0x0c4a, 0x0c4d}, {0x0c55, 0x0c56},
1767 {0x0c82, 0x0c83}, {0x0cbc, 0x0cbc}, {0x0cbe, 0x0cc4}, {0x0cc6, 0x0cc8},
1768 {0x0cca, 0x0ccd}, {0x0cd5, 0x0cd6}, {0x0d02, 0x0d03}, {0x0d3e, 0x0d43},
1769 {0x0d46, 0x0d48}, {0x0d4a, 0x0d4d}, {0x0d57, 0x0d57}, {0x0d82, 0x0d83},
1770 {0x0dca, 0x0dca}, {0x0dcf, 0x0dd4}, {0x0dd6, 0x0dd6}, {0x0dd8, 0x0ddf},
1771 {0x0df2, 0x0df3}, {0x0e31, 0x0e31}, {0x0e34, 0x0e3a}, {0x0e47, 0x0e4e},
1772 {0x0eb1, 0x0eb1}, {0x0eb4, 0x0eb9}, {0x0ebb, 0x0ebc}, {0x0ec8, 0x0ecd},
1773 {0x0f18, 0x0f19}, {0x0f35, 0x0f35}, {0x0f37, 0x0f37}, {0x0f39, 0x0f39},
1774 {0x0f3e, 0x0f3f}, {0x0f71, 0x0f84}, {0x0f86, 0x0f87}, {0x0f90, 0x0f97},
1775 {0x0f99, 0x0fbc}, {0x0fc6, 0x0fc6}, {0x102c, 0x1032}, {0x1036, 0x1039},
1776 {0x1056, 0x1059}, {0x1712, 0x1714}, {0x1732, 0x1734}, {0x1752, 0x1753},
1777 {0x1772, 0x1773}, {0x17b6, 0x17d3}, {0x17dd, 0x17dd}, {0x180b, 0x180d},
1778 {0x18a9, 0x18a9}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x20d0, 0x20ea},
1779 {0x302a, 0x302f}, {0x3099, 0x309a}, {0xfb1e, 0xfb1e}, {0xfe00, 0xfe0f},
1780 {0xfe20, 0xfe23},
1781 };
1782
1783 return intable(combining, sizeof(combining), c);
1784}
1785
1786/*
1787 * Return TRUE for characters that can be displayed in a normal way.
1788 * Only for characters of 0x100 and above!
1789 */
1790 int
1791utf_printable(c)
1792 int c;
1793{
1794#ifdef USE_WCHAR_FUNCTIONS
1795 /*
1796 * Assume the iswprint() library function works better than our own stuff.
1797 */
1798 return iswprint(c);
1799#else
1800 /* Sorted list of non-overlapping intervals.
1801 * 0xd800-0xdfff is reserved for UTF-16, actually illegal. */
1802 static struct interval nonprint[] =
1803 {
1804 {0x070f, 0x070f}, {0x180b, 0x180e}, {0x200b, 0x200f}, {0x202a, 0x202e},
1805 {0x206a, 0x206f}, {0xd800, 0xdfff}, {0xfeff, 0xfeff}, {0xfff9, 0xfffb},
1806 {0xfffe, 0xffff}
1807 };
1808
1809 return !intable(nonprint, sizeof(nonprint), c);
1810#endif
1811}
1812
1813/*
1814 * Get class of a Unicode character.
1815 * 0: white space
1816 * 1: punctuation
1817 * 2 or bigger: some class of word character.
1818 */
1819 int
1820utf_class(c)
1821 int c;
1822{
1823 /* sorted list of non-overlapping intervals */
1824 static struct clinterval
1825 {
1826 unsigned short first;
1827 unsigned short last;
1828 unsigned short class;
1829 } classes[] =
1830 {
1831 {0x037e, 0x037e, 1}, /* Greek question mark */
1832 {0x0387, 0x0387, 1}, /* Greek ano teleia */
1833 {0x055a, 0x055f, 1}, /* Armenian punctuation */
1834 {0x0589, 0x0589, 1}, /* Armenian full stop */
1835 {0x05be, 0x05be, 1},
1836 {0x05c0, 0x05c0, 1},
1837 {0x05c3, 0x05c3, 1},
1838 {0x05f3, 0x05f4, 1},
1839 {0x060c, 0x060c, 1},
1840 {0x061b, 0x061b, 1},
1841 {0x061f, 0x061f, 1},
1842 {0x066a, 0x066d, 1},
1843 {0x06d4, 0x06d4, 1},
1844 {0x0700, 0x070d, 1}, /* Syriac punctuation */
1845 {0x0964, 0x0965, 1},
1846 {0x0970, 0x0970, 1},
1847 {0x0df4, 0x0df4, 1},
1848 {0x0e4f, 0x0e4f, 1},
1849 {0x0e5a, 0x0e5b, 1},
1850 {0x0f04, 0x0f12, 1},
1851 {0x0f3a, 0x0f3d, 1},
1852 {0x0f85, 0x0f85, 1},
1853 {0x104a, 0x104f, 1}, /* Myanmar punctuation */
1854 {0x10fb, 0x10fb, 1}, /* Georgian punctuation */
1855 {0x1361, 0x1368, 1}, /* Ethiopic punctuation */
1856 {0x166d, 0x166e, 1}, /* Canadian Syl. punctuation */
1857 {0x1680, 0x1680, 0},
1858 {0x169b, 0x169c, 1},
1859 {0x16eb, 0x16ed, 1},
1860 {0x1735, 0x1736, 1},
1861 {0x17d4, 0x17dc, 1}, /* Khmer punctuation */
1862 {0x1800, 0x180a, 1}, /* Mongolian punctuation */
1863 {0x2000, 0x200b, 0}, /* spaces */
1864 {0x200c, 0x2027, 1}, /* punctuation and symbols */
1865 {0x2028, 0x2029, 0},
1866 {0x202a, 0x202e, 1}, /* punctuation and symbols */
1867 {0x202f, 0x202f, 0},
1868 {0x2030, 0x205e, 1}, /* punctuation and symbols */
1869 {0x205f, 0x205f, 0},
1870 {0x2060, 0x27ff, 1}, /* punctuation and symbols */
1871 {0x2070, 0x207f, 0x2070}, /* superscript */
1872 {0x2080, 0x208f, 0x2080}, /* subscript */
1873 {0x2983, 0x2998, 1},
1874 {0x29d8, 0x29db, 1},
1875 {0x29fc, 0x29fd, 1},
1876 {0x3000, 0x3000, 0}, /* ideographic space */
1877 {0x3001, 0x3020, 1}, /* ideographic punctuation */
1878 {0x3030, 0x3030, 1},
1879 {0x303d, 0x303d, 1},
1880 {0x3040, 0x309f, 0x3040}, /* Hiragana */
1881 {0x30a0, 0x30ff, 0x30a0}, /* Katakana */
1882 {0x3300, 0x9fff, 0x4e00}, /* CJK Ideographs */
1883 {0xac00, 0xd7a3, 0xac00}, /* Hangul Syllables */
1884 {0xf900, 0xfaff, 0x4e00}, /* CJK Ideographs */
1885 {0xfd3e, 0xfd3f, 1},
1886 {0xfe30, 0xfe6b, 1}, /* punctuation forms */
1887 {0xff00, 0xff0f, 1}, /* half/fullwidth ASCII */
1888 {0xff1a, 0xff20, 1}, /* half/fullwidth ASCII */
1889 {0xff3b, 0xff40, 1}, /* half/fullwidth ASCII */
1890 {0xff5b, 0xff65, 1}, /* half/fullwidth ASCII */
1891 };
1892 int bot = 0;
1893 int top = sizeof(classes) / sizeof(struct clinterval) - 1;
1894 int mid;
1895
1896 /* First quick check for Latin1 characters, use 'iskeyword'. */
1897 if (c < 0x100)
1898 {
1899 if (c == ' ' || c == '\t' || c == NUL)
1900 return 0; /* blank */
1901 if (vim_iswordc(c))
1902 return 2; /* word character */
1903 return 1; /* punctuation */
1904 }
1905
1906 /* binary search in table */
1907 while (top >= bot)
1908 {
1909 mid = (bot + top) / 2;
1910 if (classes[mid].last < c)
1911 bot = mid + 1;
1912 else if (classes[mid].first > c)
1913 top = mid - 1;
1914 else
1915 return (int)classes[mid].class;
1916 }
1917
1918 /* most other characters are "word" characters */
1919 return 2;
1920}
1921
1922/*
1923 * Code for Unicode case-dependent operations. Based on notes in
1924 * http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
1925 * This code uses simple case folding, not full case folding.
1926 */
1927
1928/*
1929 * The following table is built by foldExtract.pl < CaseFolding.txt .
1930 * It must be in numeric order, because we use binary search on it.
1931 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
1932 * from 0x41 to 0x5a inclusive, stepping by 1, are folded by adding 32.
1933 */
1934
1935typedef struct
1936{
1937 int rangeStart;
1938 int rangeEnd;
1939 int step;
1940 int offset;
1941} convertStruct;
1942
1943convertStruct foldCase[] =
1944{
1945 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
1946 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
1947 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
1948 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
1949 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
1950 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
1951 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
1952 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
1953 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
1954 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
1955 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
1956 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
1957 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
1958 {0x1c4,0x1c4,-1,2}, {0x1c5,0x1c5,-1,1}, {0x1c7,0x1c7,-1,2},
1959 {0x1c8,0x1c8,-1,1}, {0x1ca,0x1ca,-1,2}, {0x1cb,0x1db,2,1},
1960 {0x1de,0x1ee,2,1}, {0x1f1,0x1f1,-1,2}, {0x1f2,0x1f4,2,1},
1961 {0x1f6,0x1f6,-1,-97}, {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1},
1962 {0x220,0x220,-1,-130}, {0x222,0x232,2,1}, {0x386,0x386,-1,38},
1963 {0x388,0x38a,1,37}, {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63},
1964 {0x391,0x3a1,1,32}, {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1},
1965 {0x3f4,0x3f4,-1,-60}, {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7},
1966 {0x3fa,0x3fa,-1,1}, {0x400,0x40f,1,80}, {0x410,0x42f,1,32},
1967 {0x460,0x480,2,1}, {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1},
1968 {0x4d0,0x4f4,2,1}, {0x4f8,0x500,8,1}, {0x502,0x50e,2,1},
1969 {0x531,0x556,1,48}, {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1},
1970 {0x1f08,0x1f0f,1,-8}, {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8},
1971 {0x1f38,0x1f3f,1,-8}, {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8},
1972 {0x1f68,0x1f6f,1,-8}, {0x1f88,0x1f8f,1,-8}, {0x1f98,0x1f9f,1,-8},
1973 {0x1fa8,0x1faf,1,-8}, {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74},
1974 {0x1fbc,0x1fbc,-1,-9}, {0x1fc8,0x1fcb,1,-86}, {0x1fcc,0x1fcc,-1,-9},
1975 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
1976 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
1977 {0x1ffa,0x1ffb,1,-126}, {0x1ffc,0x1ffc,-1,-9}, {0x2126,0x2126,-1,-7517},
1978 {0x212a,0x212a,-1,-8383}, {0x212b,0x212b,-1,-8262},
1979 {0x2160,0x216f,1,16}, {0x24b6,0x24cf,1,26}, {0xff21,0xff3a,1,32},
1980 {0x10400,0x10427,1,40}
1981};
1982
1983static int utf_convert(int a, convertStruct table[], int tableSize);
1984
1985/*
1986 * Generic conversion function for case operations.
1987 * Return the converted equivalent of "a", which is a UCS-4 character. Use
1988 * the given conversion "table". Uses binary search on "table".
1989 */
1990 static int
1991utf_convert(a, table, tableSize)
1992 int a;
1993 convertStruct table[];
1994 int tableSize;
1995{
1996 int start, mid, end; /* indices into table */
1997
1998 start = 0;
1999 end = tableSize / sizeof(convertStruct);
2000 while (start < end)
2001 {
2002 /* need to search further */
2003 mid = (end + start) /2;
2004 if (table[mid].rangeEnd < a)
2005 start = mid + 1;
2006 else
2007 end = mid;
2008 }
2009 if (table[start].rangeStart <= a && a <= table[start].rangeEnd
2010 && (a - table[start].rangeStart) % table[start].step == 0)
2011 return (a + table[start].offset);
2012 else
2013 return a;
2014}
2015
2016/*
2017 * Return the folded-case equivalent of "a", which is a UCS-4 character. Uses
2018 * simple case folding.
2019 */
2020 int
2021utf_fold(a)
2022 int a;
2023{
2024 return utf_convert(a, foldCase, sizeof(foldCase));
2025}
2026
2027/*
2028 * The following tables are built by upperLowerExtract.pl < UnicodeData.txt .
2029 * They must be in numeric order, because we use binary search on them.
2030 * An entry such as {0x41,0x5a,1,32} means that UCS-4 characters in the range
2031 * from 0x41 to 0x5a inclusive, stepping by 1, are switched to lower (for
2032 * example) by adding 32.
2033 */
2034convertStruct toLower[] =
2035{
2036 {0x41,0x5a,1,32}, {0xc0,0xd6,1,32}, {0xd8,0xde,1,32},
2037 {0x100,0x12e,2,1}, {0x130,0x130,-1,-199}, {0x132,0x136,2,1},
2038 {0x139,0x147,2,1}, {0x14a,0x176,2,1}, {0x178,0x178,-1,-121},
2039 {0x179,0x17d,2,1}, {0x181,0x181,-1,210}, {0x182,0x184,2,1},
2040 {0x186,0x186,-1,206}, {0x187,0x187,-1,1}, {0x189,0x18a,1,205},
2041 {0x18b,0x18b,-1,1}, {0x18e,0x18e,-1,79}, {0x18f,0x18f,-1,202},
2042 {0x190,0x190,-1,203}, {0x191,0x191,-1,1}, {0x193,0x193,-1,205},
2043 {0x194,0x194,-1,207}, {0x196,0x196,-1,211}, {0x197,0x197,-1,209},
2044 {0x198,0x198,-1,1}, {0x19c,0x19c,-1,211}, {0x19d,0x19d,-1,213},
2045 {0x19f,0x19f,-1,214}, {0x1a0,0x1a4,2,1}, {0x1a6,0x1a6,-1,218},
2046 {0x1a7,0x1a7,-1,1}, {0x1a9,0x1a9,-1,218}, {0x1ac,0x1ac,-1,1},
2047 {0x1ae,0x1ae,-1,218}, {0x1af,0x1af,-1,1}, {0x1b1,0x1b2,1,217},
2048 {0x1b3,0x1b5,2,1}, {0x1b7,0x1b7,-1,219}, {0x1b8,0x1bc,4,1},
2049 {0x1c4,0x1ca,3,2}, {0x1cd,0x1db,2,1}, {0x1de,0x1ee,2,1},
2050 {0x1f1,0x1f1,-1,2}, {0x1f4,0x1f4,-1,1}, {0x1f6,0x1f6,-1,-97},
2051 {0x1f7,0x1f7,-1,-56}, {0x1f8,0x21e,2,1}, {0x220,0x220,-1,-130},
2052 {0x222,0x232,2,1}, {0x386,0x386,-1,38}, {0x388,0x38a,1,37},
2053 {0x38c,0x38c,-1,64}, {0x38e,0x38f,1,63}, {0x391,0x3a1,1,32},
2054 {0x3a3,0x3ab,1,32}, {0x3d8,0x3ee,2,1}, {0x3f4,0x3f4,-1,-60},
2055 {0x3f7,0x3f7,-1,1}, {0x3f9,0x3f9,-1,-7}, {0x3fa,0x3fa,-1,1},
2056 {0x400,0x40f,1,80}, {0x410,0x42f,1,32}, {0x460,0x480,2,1},
2057 {0x48a,0x4be,2,1}, {0x4c1,0x4cd,2,1}, {0x4d0,0x4f4,2,1},
2058 {0x4f8,0x500,8,1}, {0x502,0x50e,2,1}, {0x531,0x556,1,48},
2059 {0x1e00,0x1e94,2,1}, {0x1ea0,0x1ef8,2,1}, {0x1f08,0x1f0f,1,-8},
2060 {0x1f18,0x1f1d,1,-8}, {0x1f28,0x1f2f,1,-8}, {0x1f38,0x1f3f,1,-8},
2061 {0x1f48,0x1f4d,1,-8}, {0x1f59,0x1f5f,2,-8}, {0x1f68,0x1f6f,1,-8},
2062 {0x1fb8,0x1fb9,1,-8}, {0x1fba,0x1fbb,1,-74}, {0x1fc8,0x1fcb,1,-86},
2063 {0x1fd8,0x1fd9,1,-8}, {0x1fda,0x1fdb,1,-100}, {0x1fe8,0x1fe9,1,-8},
2064 {0x1fea,0x1feb,1,-112}, {0x1fec,0x1fec,-1,-7}, {0x1ff8,0x1ff9,1,-128},
2065 {0x1ffa,0x1ffb,1,-126}, {0x2126,0x2126,-1,-7517}, {0x212a,0x212a,-1,-8383},
2066 {0x212b,0x212b,-1,-8262}, {0xff21,0xff3a,1,32}, {0x10400,0x10427,1,40}
2067};
2068
2069convertStruct toUpper[] =
2070{
2071 {0x61,0x7a,1,-32}, {0xb5,0xb5,-1,743}, {0xe0,0xf6,1,-32},
2072 {0xf8,0xfe,1,-32}, {0xff,0xff,-1,121}, {0x101,0x12f,2,-1},
2073 {0x131,0x131,-1,-232}, {0x133,0x137,2,-1}, {0x13a,0x148,2,-1},
2074 {0x14b,0x177,2,-1}, {0x17a,0x17e,2,-1}, {0x17f,0x17f,-1,-300},
2075 {0x183,0x185,2,-1}, {0x188,0x18c,4,-1}, {0x192,0x192,-1,-1},
2076 {0x195,0x195,-1,97}, {0x199,0x199,-1,-1}, {0x19e,0x19e,-1,130},
2077 {0x1a1,0x1a5,2,-1}, {0x1a8,0x1ad,5,-1}, {0x1b0,0x1b4,4,-1},
2078 {0x1b6,0x1b9,3,-1}, {0x1bd,0x1bd,-1,-1}, {0x1bf,0x1bf,-1,56},
2079 {0x1c5,0x1c6,1,-1}, {0x1c8,0x1c9,1,-1}, {0x1cb,0x1cc,1,-1},
2080 {0x1ce,0x1dc,2,-1}, {0x1dd,0x1dd,-1,-79}, {0x1df,0x1ef,2,-1},
2081 {0x1f2,0x1f3,1,-1}, {0x1f5,0x1f9,4,-1}, {0x1fb,0x21f,2,-1},
2082 {0x223,0x233,2,-1}, {0x253,0x253,-1,-210}, {0x254,0x254,-1,-206},
2083 {0x256,0x257,1,-205}, {0x259,0x259,-1,-202}, {0x25b,0x25b,-1,-203},
2084 {0x260,0x260,-1,-205}, {0x263,0x263,-1,-207}, {0x268,0x268,-1,-209},
2085 {0x269,0x26f,6,-211}, {0x272,0x272,-1,-213}, {0x275,0x275,-1,-214},
2086 {0x280,0x283,3,-218}, {0x288,0x288,-1,-218}, {0x28a,0x28b,1,-217},
2087 {0x292,0x292,-1,-219}, {0x3ac,0x3ac,-1,-38}, {0x3ad,0x3af,1,-37},
2088 {0x3b1,0x3c1,1,-32}, {0x3c2,0x3c2,-1,-31}, {0x3c3,0x3cb,1,-32},
2089 {0x3cc,0x3cc,-1,-64}, {0x3cd,0x3ce,1,-63}, {0x3d0,0x3d0,-1,-62},
2090 {0x3d1,0x3d1,-1,-57}, {0x3d5,0x3d5,-1,-47}, {0x3d6,0x3d6,-1,-54},
2091 {0x3d9,0x3ef,2,-1}, {0x3f0,0x3f0,-1,-86}, {0x3f1,0x3f1,-1,-80},
2092 {0x3f2,0x3f2,-1,7}, {0x3f5,0x3f5,-1,-96}, {0x3f8,0x3fb,3,-1},
2093 {0x430,0x44f,1,-32}, {0x450,0x45f,1,-80}, {0x461,0x481,2,-1},
2094 {0x48b,0x4bf,2,-1}, {0x4c2,0x4ce,2,-1}, {0x4d1,0x4f5,2,-1},
2095 {0x4f9,0x501,8,-1}, {0x503,0x50f,2,-1}, {0x561,0x586,1,-48},
2096 {0x1e01,0x1e95,2,-1}, {0x1e9b,0x1e9b,-1,-59}, {0x1ea1,0x1ef9,2,-1},
2097 {0x1f00,0x1f07,1,8}, {0x1f10,0x1f15,1,8}, {0x1f20,0x1f27,1,8},
2098 {0x1f30,0x1f37,1,8}, {0x1f40,0x1f45,1,8}, {0x1f51,0x1f57,2,8},
2099 {0x1f60,0x1f67,1,8}, {0x1f70,0x1f71,1,74}, {0x1f72,0x1f75,1,86},
2100 {0x1f76,0x1f77,1,100}, {0x1f78,0x1f79,1,128}, {0x1f7a,0x1f7b,1,112},
2101 {0x1f7c,0x1f7d,1,126}, {0x1f80,0x1f87,1,8}, {0x1f90,0x1f97,1,8},
2102 {0x1fa0,0x1fa7,1,8}, {0x1fb0,0x1fb1,1,8}, {0x1fb3,0x1fb3,-1,9},
2103 {0x1fbe,0x1fbe,-1,-7205}, {0x1fc3,0x1fc3,-1,9}, {0x1fd0,0x1fd1,1,8},
2104 {0x1fe0,0x1fe1,1,8}, {0x1fe5,0x1fe5,-1,7}, {0x1ff3,0x1ff3,-1,9},
2105 {0xff41,0xff5a,1,-32}, {0x10428,0x1044f,1,-40}
2106};
2107
2108/*
2109 * Return the upper-case equivalent of "a", which is a UCS-4 character. Use
2110 * simple case folding.
2111 */
2112 int
2113utf_toupper(a)
2114 int a;
2115{
2116 /* If 'casemap' contains "keepascii" use ASCII style toupper(). */
2117 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2118 return TOUPPER_ASC(a);
2119
2120#if defined(HAVE_TOWUPPER) && defined(__STDC__ISO_10646__)
2121 /* If towupper() is availble and handles Unicode, use it. */
2122 if (!(cmp_flags & CMP_INTERNAL))
2123 return towupper(a);
2124#endif
2125
2126 /* For characters below 128 use locale sensitive toupper(). */
2127 if (a < 128)
2128 return TOUPPER_LOC(a);
2129
2130 /* For any other characters use the above mapping table. */
2131 return utf_convert(a, toUpper, sizeof(toUpper));
2132}
2133
2134 int
2135utf_islower(a)
2136 int a;
2137{
2138 return (utf_toupper(a) != a);
2139}
2140
2141/*
2142 * Return the lower-case equivalent of "a", which is a UCS-4 character. Use
2143 * simple case folding.
2144 */
2145 int
2146utf_tolower(a)
2147 int a;
2148{
2149 /* If 'casemap' contains "keepascii" use ASCII style tolower(). */
2150 if (a < 128 && (cmp_flags & CMP_KEEPASCII))
2151 return TOLOWER_ASC(a);
2152
2153#if defined(HAVE_TOWLOWER) && defined(__STDC__ISO_10646__)
2154 /* If towlower() is availble and handles Unicode, use it. */
2155 if (!(cmp_flags & CMP_INTERNAL))
2156 return towlower(a);
2157#endif
2158
2159 /* For characters below 128 use locale sensitive tolower(). */
2160 if (a < 128)
2161 return TOLOWER_LOC(a);
2162
2163 /* For any other characters use the above mapping table. */
2164 return utf_convert(a, toLower, sizeof(toLower));
2165}
2166
2167 int
2168utf_isupper(a)
2169 int a;
2170{
2171 return (utf_tolower(a) != a);
2172}
2173
2174/*
2175 * Version of strnicmp() that handles multi-byte characters.
2176 * Needed for Big5, Sjift-JIS and UTF-8 encoding. Other DBCS encodings can
2177 * probably use strnicmp(), because there are no ASCII characters in the
2178 * second byte.
2179 * Returns zero if s1 and s2 are equal (ignoring case), the difference between
2180 * two characters otherwise.
2181 */
2182 int
2183mb_strnicmp(s1, s2, n)
2184 char_u *s1, *s2;
2185 int n;
2186{
2187 int i, j, l;
2188 int cdiff;
2189
2190 for (i = 0; i < n; i += l)
2191 {
2192 if (s1[i] == NUL && s2[i] == NUL) /* both strings end */
2193 return 0;
2194 if (enc_utf8)
2195 {
2196 l = utf_byte2len(s1[i]);
2197 if (l > n - i)
2198 l = n - i; /* incomplete character */
2199 /* Check directly first, it's faster. */
2200 for (j = 0; j < l; ++j)
2201 if (s1[i + j] != s2[i + j])
2202 break;
2203 if (j < l)
2204 {
2205 /* If one of the two characters is incomplete return -1. */
2206 if (i + utf_byte2len(s1[i]) > n || i + utf_byte2len(s2[i]) > n)
2207 return -1;
2208 cdiff = utf_fold(utf_ptr2char(s1 + i))
2209 - utf_fold(utf_ptr2char(s2 + i));
2210 if (cdiff != 0)
2211 return cdiff;
2212 }
2213 }
2214 else
2215 {
2216 l = (*mb_ptr2len_check)(s1 + i);
2217 if (l <= 1)
2218 {
2219 /* Single byte: first check normally, then with ignore case. */
2220 if (s1[i] != s2[i])
2221 {
2222 cdiff = TOLOWER_LOC(s1[i]) - TOLOWER_LOC(s2[i]);
2223 if (cdiff != 0)
2224 return cdiff;
2225 }
2226 }
2227 else
2228 {
2229 /* For non-Unicode multi-byte don't ignore case. */
2230 if (l > n - i)
2231 l = n - i;
2232 cdiff = STRNCMP(s1 + i, s2 + i, l);
2233 if (cdiff != 0)
2234 return cdiff;
2235 }
2236 }
2237 }
2238 return 0;
2239}
2240
2241/*
2242 * "g8": show bytes of the UTF-8 char under the cursor. Doesn't matter what
2243 * 'encoding' has been set to.
2244 */
2245 void
2246show_utf8()
2247{
2248 int len;
2249 char_u *line;
2250 int clen;
2251 int i;
2252
2253 /* Get the byte length of the char under the cursor, including composing
2254 * characters. */
2255 line = ml_get_cursor();
2256 len = utfc_ptr2len_check(line);
2257 if (len == 0)
2258 {
2259 MSG("NUL");
2260 return;
2261 }
2262
2263 IObuff[0] = NUL;
2264 clen = 0;
2265 for (i = 0; i < len; ++i)
2266 {
2267 if (clen == 0)
2268 {
2269 /* start of (composing) character, get its length */
2270 if (i > 0)
2271 STRCAT(IObuff, "+ ");
2272 clen = utf_ptr2len_check(line + i);
2273 }
2274 sprintf((char *)IObuff + STRLEN(IObuff), "%02x ", line[i]);
2275 --clen;
2276 }
2277
2278 msg(IObuff);
2279}
2280
2281/*
2282 * mb_head_off() function pointer.
2283 * Return offset from "p" to the first byte of the character it points into.
2284 * Returns 0 when already at the first byte of a character.
2285 */
2286/*ARGSUSED*/
2287 int
2288latin_head_off(base, p)
2289 char_u *base;
2290 char_u *p;
2291{
2292 return 0;
2293}
2294
2295 int
2296dbcs_head_off(base, p)
2297 char_u *base;
2298 char_u *p;
2299{
2300 char_u *q;
2301
2302 /* It can't be a trailing byte when not using DBCS, at the start of the
2303 * string or the previous byte can't start a double-byte. */
2304 if (p <= base || MB_BYTE2LEN(p[-1]) == 1)
2305 return 0;
2306
2307 /* This is slow: need to start at the base and go forward until the
2308 * byte we are looking for. Return 1 when we went past it, 0 otherwise. */
2309 q = base;
2310 while (q < p)
2311 q += dbcs_ptr2len_check(q);
2312 return (q == p) ? 0 : 1;
2313}
2314
2315#if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
2316 || defined(PROTO)
2317/*
2318 * Special version of dbcs_head_off() that works for ScreenLines[], where
2319 * single-width DBCS_JPNU characters are stored separately.
2320 */
2321 int
2322dbcs_screen_head_off(base, p)
2323 char_u *base;
2324 char_u *p;
2325{
2326 char_u *q;
2327
2328 /* It can't be a trailing byte when not using DBCS, at the start of the
2329 * string or the previous byte can't start a double-byte.
2330 * For euc-jp an 0x8e byte in the previous cell always means we have a
2331 * lead byte in the current cell. */
2332 if (p <= base
2333 || (enc_dbcs == DBCS_JPNU && p[-1] == 0x8e)
2334 || MB_BYTE2LEN(p[-1]) == 1)
2335 return 0;
2336
2337 /* This is slow: need to start at the base and go forward until the
2338 * byte we are looking for. Return 1 when we went past it, 0 otherwise.
2339 * For DBCS_JPNU look out for 0x8e, which means the second byte is not
2340 * stored as the next byte. */
2341 q = base;
2342 while (q < p)
2343 {
2344 if (enc_dbcs == DBCS_JPNU && *q == 0x8e)
2345 ++q;
2346 else
2347 q += dbcs_ptr2len_check(q);
2348 }
2349 return (q == p) ? 0 : 1;
2350}
2351#endif
2352
2353 int
2354utf_head_off(base, p)
2355 char_u *base;
2356 char_u *p;
2357{
2358 char_u *q;
2359 char_u *s;
2360 int c;
2361#ifdef FEAT_ARABIC
2362 char_u *j;
2363#endif
2364
2365 if (*p < 0x80) /* be quick for ASCII */
2366 return 0;
2367
2368 /* Skip backwards over trailing bytes: 10xx.xxxx
2369 * Skip backwards again if on a composing char. */
2370 for (q = p; ; --q)
2371 {
2372 /* Move s to the last byte of this char. */
2373 for (s = q; (s[1] & 0xc0) == 0x80; ++s)
2374 ;
2375 /* Move q to the first byte of this char. */
2376 while (q > base && (*q & 0xc0) == 0x80)
2377 --q;
2378 /* Check for illegal sequence. Do allow an illegal byte after where we
2379 * started. */
2380 if (utf8len_tab[*q] != (int)(s - q + 1)
2381 && utf8len_tab[*q] != (int)(p - q + 1))
2382 return 0;
2383
2384 if (q <= base)
2385 break;
2386
2387 c = utf_ptr2char(q);
2388 if (utf_iscomposing(c))
2389 continue;
2390
2391#ifdef FEAT_ARABIC
2392 if (arabic_maycombine(c))
2393 {
2394 /* Advance to get a sneak-peak at the next char */
2395 j = q;
2396 --j;
2397 /* Move j to the first byte of this char. */
2398 while (j > base && (*j & 0xc0) == 0x80)
2399 --j;
2400 if (arabic_combine(utf_ptr2char(j), c))
2401 continue;
2402 }
2403#endif
2404 break;
2405 }
2406
2407 return (int)(p - q);
2408}
2409
2410/*
2411 * Return the offset from "p" to the first byte of a character. When "p" is
2412 * at the start of a character 0 is returned, otherwise the offset to the next
2413 * character. Can start anywhere in a stream of bytes.
2414 */
2415 int
2416mb_off_next(base, p)
2417 char_u *base;
2418 char_u *p;
2419{
2420 int i;
2421 int j;
2422
2423 if (enc_utf8)
2424 {
2425 if (*p < 0x80) /* be quick for ASCII */
2426 return 0;
2427
2428 /* Find the next character that isn't 10xx.xxxx */
2429 for (i = 0; (p[i] & 0xc0) == 0x80; ++i)
2430 ;
2431 if (i > 0)
2432 {
2433 /* Check for illegal sequence. */
2434 for (j = 0; p - j > base; ++j)
2435 if ((p[-j] & 0xc0) != 0x80)
2436 break;
2437 if (utf8len_tab[p[-j]] != i + j)
2438 return 0;
2439 }
2440 return i;
2441 }
2442
2443 /* Only need to check if we're on a trail byte, it doesn't matter if we
2444 * want the offset to the next or current character. */
2445 return (*mb_head_off)(base, p);
2446}
2447
2448/*
2449 * Return the offset from "p" to the last byte of the character it points
2450 * into. Can start anywhere in a stream of bytes.
2451 */
2452 int
2453mb_tail_off(base, p)
2454 char_u *base;
2455 char_u *p;
2456{
2457 int i;
2458 int j;
2459
2460 if (*p == NUL)
2461 return 0;
2462
2463 if (enc_utf8)
2464 {
2465 /* Find the last character that is 10xx.xxxx */
2466 for (i = 0; (p[i + 1] & 0xc0) == 0x80; ++i)
2467 ;
2468 /* Check for illegal sequence. */
2469 for (j = 0; p - j > base; ++j)
2470 if ((p[-j] & 0xc0) != 0x80)
2471 break;
2472 if (utf8len_tab[p[-j]] != i + j + 1)
2473 return 0;
2474 return i;
2475 }
2476
2477 /* It can't be the first byte if a double-byte when not using DBCS, at the
2478 * end of the string or the byte can't start a double-byte. */
2479 if (enc_dbcs == 0 || p[1] == NUL || MB_BYTE2LEN(*p) == 1)
2480 return 0;
2481
2482 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2483 return 1 - dbcs_head_off(base, p);
2484}
2485
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002486#if defined(HAVE_GTK2) || defined(PROTO)
2487/*
2488 * Return TRUE if string "s" is a valid utf-8 string.
2489 * When "end" is NULL stop at the first NUL.
2490 * When "end" is positive stop there.
2491 */
2492 int
2493utf_valid_string(s, end)
2494 char_u *s;
2495 char_u *end;
2496{
2497 int l;
2498 char_u *p = s;
2499
2500 while (end == NULL ? *p != NUL : p < end)
2501 {
2502 if ((*p & 0xc0) == 0x80)
2503 return FALSE; /* invalid lead byte */
2504 l = utf8len_tab[*p];
2505 if (end != NULL && p + l > end)
2506 return FALSE; /* incomplete byte sequence */
2507 ++p;
2508 while (--l > 0)
2509 if ((*p++ & 0xc0) != 0x80)
2510 return FALSE; /* invalid trail byte */
2511 }
2512 return TRUE;
2513}
2514#endif
2515
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516#if defined(FEAT_GUI) || defined(PROTO)
2517/*
2518 * Special version of mb_tail_off() for use in ScreenLines[].
2519 */
2520 int
2521dbcs_screen_tail_off(base, p)
2522 char_u *base;
2523 char_u *p;
2524{
2525 /* It can't be the first byte if a double-byte when not using DBCS, at the
2526 * end of the string or the byte can't start a double-byte.
2527 * For euc-jp an 0x8e byte always means we have a lead byte in the current
2528 * cell. */
2529 if (*p == NUL || p[1] == NUL
2530 || (enc_dbcs == DBCS_JPNU && *p == 0x8e)
2531 || MB_BYTE2LEN(*p) == 1)
2532 return 0;
2533
2534 /* Return 1 when on the lead byte, 0 when on the tail byte. */
2535 return 1 - dbcs_screen_head_off(base, p);
2536}
2537#endif
2538
2539/*
2540 * If the cursor moves on an trail byte, set the cursor on the lead byte.
2541 * Thus it moves left if necessary.
2542 * Return TRUE when the cursor was adjusted.
2543 */
2544 void
2545mb_adjust_cursor()
2546{
2547 mb_adjustpos(&curwin->w_cursor);
2548}
2549
2550/*
2551 * Adjust position "*lp" to point to the first byte of a multi-byte character.
2552 * If it points to a tail byte it's moved backwards to the head byte.
2553 */
2554 void
2555mb_adjustpos(lp)
2556 pos_T *lp;
2557{
2558 char_u *p;
2559
2560 if (lp->col > 0
2561#ifdef FEAT_VIRTUALEDIT
2562 || lp->coladd > 1
2563#endif
2564 )
2565 {
2566 p = ml_get(lp->lnum);
2567 lp->col -= (*mb_head_off)(p, p + lp->col);
2568#ifdef FEAT_VIRTUALEDIT
2569 /* Reset "coladd" when the cursor would be on the right half of a
2570 * double-wide character. */
2571 if (lp->coladd == 1
2572 && p[lp->col] != TAB
2573 && vim_isprintc((*mb_ptr2char)(p + lp->col))
2574 && ptr2cells(p + lp->col) > 1)
2575 lp->coladd = 0;
2576#endif
2577 }
2578}
2579
2580/*
2581 * Return a pointer to the character before "*p", if there is one.
2582 */
2583 char_u *
2584mb_prevptr(line, p)
2585 char_u *line; /* start of the string */
2586 char_u *p;
2587{
2588 if (p > line)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002589 mb_ptr_back(line, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 return p;
2591}
2592
2593/*
2594 * Return the character length of "str". multi-byte characters counts as one.
2595 */
2596 int
2597mb_charlen(str)
2598 char_u *str;
2599{
2600 int count;
2601
2602 if (str == NULL)
2603 return 0;
2604
2605 for (count = 0; *str != NUL; count++)
2606 str += (*mb_ptr2len_check)(str);
2607
2608 return count;
2609}
2610
2611/*
2612 * Try to un-escape a multi-byte character.
2613 * Used for the "to" and "from" part of a mapping.
2614 * Return the un-escaped string if it is a multi-byte character, and advance
2615 * "pp" to just after the bytes that formed it.
2616 * Return NULL if no multi-byte char was found.
2617 */
2618 char_u *
2619mb_unescape(pp)
2620 char_u **pp;
2621{
2622 static char_u buf[MB_MAXBYTES + 1];
2623 int n, m = 0;
2624 char_u *str = *pp;
2625
2626 /* Must translate K_SPECIAL KS_SPECIAL KE_FILLER to K_SPECIAL and CSI
2627 * KS_EXTRA KE_CSI to CSI. */
2628 for (n = 0; str[n] != NUL && m <= MB_MAXBYTES; ++n)
2629 {
2630 if (str[n] == K_SPECIAL
2631 && str[n + 1] == KS_SPECIAL
2632 && str[n + 2] == KE_FILLER)
2633 {
2634 buf[m++] = K_SPECIAL;
2635 n += 2;
2636 }
2637# ifdef FEAT_GUI
2638 else if (str[n] == CSI
2639 && str[n + 1] == KS_EXTRA
2640 && str[n + 2] == (int)KE_CSI)
2641 {
2642 buf[m++] = CSI;
2643 n += 2;
2644 }
2645# endif
2646 else if (str[n] == K_SPECIAL
2647# ifdef FEAT_GUI
2648 || str[n] == CSI
2649# endif
2650 )
2651 break; /* a special key can't be a multibyte char */
2652 else
2653 buf[m++] = str[n];
2654 buf[m] = NUL;
2655
2656 /* Return a multi-byte character if it's found. An illegal sequence
2657 * will result in a 1 here. */
2658 if ((*mb_ptr2len_check)(buf) > 1)
2659 {
2660 *pp = str + n + 1;
2661 return buf;
2662 }
2663 }
2664 return NULL;
2665}
2666
2667/*
2668 * Return TRUE if the character at "row"/"col" on the screen is the left side
2669 * of a double-width character.
2670 * Caller must make sure "row" and "col" are not invalid!
2671 */
2672 int
2673mb_lefthalve(row, col)
2674 int row;
2675 int col;
2676{
2677#ifdef FEAT_HANGULIN
2678 if (composing_hangul)
2679 return TRUE;
2680#endif
2681 if (enc_dbcs != 0)
2682 return dbcs_off2cells(LineOffset[row] + col) > 1;
2683 if (enc_utf8)
2684 return (col + 1 < Columns
2685 && ScreenLines[LineOffset[row] + col + 1] == 0);
2686 return FALSE;
2687}
2688
2689# if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \
2690 || defined(PROTO)
2691/*
2692 * Correct a position on the screen, if it's the right halve of a double-wide
2693 * char move it to the left halve. Returns the corrected column.
2694 */
2695 int
2696mb_fix_col(col, row)
2697 int col;
2698 int row;
2699{
2700 col = check_col(col);
2701 row = check_row(row);
2702 if (has_mbyte && ScreenLines != NULL && col > 0
2703 && ((enc_dbcs
2704 && ScreenLines[LineOffset[row] + col] != NUL
2705 && dbcs_screen_head_off(ScreenLines + LineOffset[row],
2706 ScreenLines + LineOffset[row] + col))
2707 || (enc_utf8 && ScreenLines[LineOffset[row] + col] == 0)))
2708 --col;
2709 return col;
2710}
2711# endif
2712#endif
2713
2714#if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO)
2715static int enc_alias_search __ARGS((char_u *name));
2716
2717/*
2718 * Skip the Vim specific head of a 'encoding' name.
2719 */
2720 char_u *
2721enc_skip(p)
2722 char_u *p;
2723{
2724 if (STRNCMP(p, "2byte-", 6) == 0)
2725 return p + 6;
2726 if (STRNCMP(p, "8bit-", 5) == 0)
2727 return p + 5;
2728 return p;
2729}
2730
2731/*
2732 * Find the canonical name for encoding "enc".
2733 * When the name isn't recognized, returns "enc" itself, but with all lower
2734 * case characters and '_' replaced with '-'.
2735 * Returns an allocated string. NULL for out-of-memory.
2736 */
2737 char_u *
2738enc_canonize(enc)
2739 char_u *enc;
2740{
2741 char_u *r;
2742 char_u *p, *s;
2743 int i;
2744
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002745# ifdef FEAT_MBYTE
2746 if (STRCMP(enc, "default") == 0)
2747 {
2748 /* Use the default encoding as it's found by set_init_1(). */
2749 r = get_encoding_default();
2750 if (r == NULL)
2751 r = (char_u *)"latin1";
2752 return vim_strsave(r);
2753 }
2754# endif
2755
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 /* copy "enc" to allocted memory, with room for two '-' */
2757 r = alloc((unsigned)(STRLEN(enc) + 3));
2758 if (r != NULL)
2759 {
2760 /* Make it all lower case and replace '_' with '-'. */
2761 p = r;
2762 for (s = enc; *s != NUL; ++s)
2763 {
2764 if (*s == '_')
2765 *p++ = '-';
2766 else
2767 *p++ = TOLOWER_ASC(*s);
2768 }
2769 *p = NUL;
2770
2771 /* Skip "2byte-" and "8bit-". */
2772 p = enc_skip(r);
2773
2774 /* "iso8859" -> "iso-8859" */
2775 if (STRNCMP(p, "iso8859", 7) == 0)
2776 {
2777 mch_memmove(p + 4, p + 3, STRLEN(p + 2));
2778 p[3] = '-';
2779 }
2780
2781 /* "iso-8859n" -> "iso-8859-n" */
2782 if (STRNCMP(p, "iso-8859", 8) == 0 && p[8] != '-')
2783 {
2784 mch_memmove(p + 9, p + 8, STRLEN(p + 7));
2785 p[8] = '-';
2786 }
2787
2788 /* "latin-N" -> "latinN" */
2789 if (STRNCMP(p, "latin-", 6) == 0)
2790 mch_memmove(p + 5, p + 6, STRLEN(p + 5));
2791
2792 if (enc_canon_search(p) >= 0)
2793 {
2794 /* canonical name can be used unmodified */
2795 if (p != r)
2796 mch_memmove(r, p, STRLEN(p) + 1);
2797 }
2798 else if ((i = enc_alias_search(p)) >= 0)
2799 {
2800 /* alias recognized, get canonical name */
2801 vim_free(r);
2802 r = vim_strsave((char_u *)enc_canon_table[i].name);
2803 }
2804 }
2805 return r;
2806}
2807
2808/*
2809 * Search for an encoding alias of "name".
2810 * Returns -1 when not found.
2811 */
2812 static int
2813enc_alias_search(name)
2814 char_u *name;
2815{
2816 int i;
2817
2818 for (i = 0; enc_alias_table[i].name != NULL; ++i)
2819 if (STRCMP(name, enc_alias_table[i].name) == 0)
2820 return enc_alias_table[i].canon;
2821 return -1;
2822}
2823#endif
2824
2825#if defined(FEAT_MBYTE) || defined(PROTO)
2826
2827#ifdef HAVE_LANGINFO_H
2828# include <langinfo.h>
2829#endif
2830
2831/*
2832 * Get the canonicalized encoding of the current locale.
2833 * Returns an allocated string when successful, NULL when not.
2834 */
2835 char_u *
2836enc_locale()
2837{
2838#ifndef WIN3264
2839 char *s;
2840 char *p;
2841 int i;
2842#endif
2843 char buf[50];
2844#ifdef WIN3264
2845 long acp = GetACP();
2846
2847 if (acp == 1200)
2848 STRCPY(buf, "ucs-2le");
2849 else if (acp == 1252)
2850 STRCPY(buf, "latin1");
2851 else
2852 sprintf(buf, "cp%ld", acp);
2853#else
2854# ifdef HAVE_NL_LANGINFO_CODESET
2855 if ((s = nl_langinfo(CODESET)) == NULL || *s == NUL)
2856# endif
2857# if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
2858 if ((s = setlocale(LC_CTYPE, NULL)) == NULL || *s == NUL)
2859# endif
2860 if ((s = getenv("LC_ALL")) == NULL || *s == NUL)
2861 if ((s = getenv("LC_CTYPE")) == NULL || *s == NUL)
2862 s = getenv("LANG");
2863
2864 if (s == NULL || *s == NUL)
2865 return FAIL;
2866
2867 /* The most generic locale format is:
2868 * language[_territory][.codeset][@modifier][+special][,[sponsor][_revision]]
2869 * If there is a '.' remove the part before it.
2870 * if there is something after the codeset, remove it.
2871 * Make the name lowercase and replace '_' with '-'.
2872 * Exception: "ja_JP.EUC" == "euc-jp", "zh_CN.EUC" = "euc-cn",
2873 * "ko_KR.EUC" == "euc-kr"
2874 */
2875 if ((p = (char *)vim_strchr((char_u *)s, '.')) != NULL)
2876 {
2877 if (p > s + 2 && STRNICMP(p + 1, "EUC", 3) == 0
2878 && !isalnum((int)p[4]) && p[4] != '-' && p[-3] == '_')
2879 {
2880 /* copy "XY.EUC" to "euc-XY" to buf[10] */
2881 STRCPY(buf + 10, "euc-");
2882 buf[14] = p[-2];
2883 buf[15] = p[-1];
2884 buf[16] = 0;
2885 s = buf + 10;
2886 }
2887 else
2888 s = p + 1;
2889 }
2890 for (i = 0; s[i] != NUL && i < sizeof(buf) - 1; ++i)
2891 {
2892 if (s[i] == '_' || s[i] == '-')
2893 buf[i] = '-';
2894 else if (isalnum((int)s[i]))
2895 buf[i] = TOLOWER_ASC(s[i]);
2896 else
2897 break;
2898 }
2899 buf[i] = NUL;
2900#endif
2901
2902 return enc_canonize((char_u *)buf);
2903}
2904
2905#if defined(WIN3264) || defined(PROTO)
2906/*
2907 * Convert an encoding name to an MS-Windows codepage.
2908 * Returns zero if no codepage can be figured out.
2909 */
2910 int
2911encname2codepage(name)
2912 char_u *name;
2913{
2914 int cp;
2915 char_u *p = name;
2916 int idx;
2917
2918 if (STRNCMP(p, "8bit-", 5) == 0)
2919 p += 5;
2920 else if (STRNCMP(p_enc, "2byte-", 6) == 0)
2921 p += 6;
2922
2923 if (p[0] == 'c' && p[1] == 'p')
2924 cp = atoi(p + 2);
2925 else if ((idx = enc_canon_search(p)) >= 0)
2926 cp = enc_canon_table[idx].codepage;
2927 else
2928 return 0;
2929 if (IsValidCodePage(cp))
2930 return cp;
2931 return 0;
2932}
2933#endif
2934
2935# if defined(USE_ICONV) || defined(PROTO)
2936
2937static char_u *iconv_string __ARGS((vimconv_T *vcp, char_u *str, int slen, int *unconvlenp));
2938
2939/*
2940 * Call iconv_open() with a check if iconv() works properly (there are broken
2941 * versions).
2942 * Returns (void *)-1 if failed.
2943 * (should return iconv_t, but that causes problems with prototypes).
2944 */
2945 void *
2946my_iconv_open(to, from)
2947 char_u *to;
2948 char_u *from;
2949{
2950 iconv_t fd;
2951#define ICONV_TESTLEN 400
2952 char_u tobuf[ICONV_TESTLEN];
2953 char *p;
2954 size_t tolen;
2955 static int iconv_ok = -1;
2956
2957 if (iconv_ok == FALSE)
2958 return (void *)-1; /* detected a broken iconv() previously */
2959
2960#ifdef DYNAMIC_ICONV
2961 /* Check if the iconv.dll can be found. */
2962 if (!iconv_enabled(TRUE))
2963 return (void *)-1;
2964#endif
2965
2966 fd = iconv_open((char *)enc_skip(to), (char *)enc_skip(from));
2967
2968 if (fd != (iconv_t)-1 && iconv_ok == -1)
2969 {
2970 /*
2971 * Do a dummy iconv() call to check if it actually works. There is a
2972 * version of iconv() on Linux that is broken. We can't ignore it,
2973 * because it's wide-spread. The symptoms are that after outputting
2974 * the initial shift state the "to" pointer is NULL and conversion
2975 * stops for no apparent reason after about 8160 characters.
2976 */
2977 p = (char *)tobuf;
2978 tolen = ICONV_TESTLEN;
2979 (void)iconv(fd, NULL, NULL, &p, &tolen);
2980 if (p == NULL)
2981 {
2982 iconv_ok = FALSE;
2983 iconv_close(fd);
2984 fd = (iconv_t)-1;
2985 }
2986 else
2987 iconv_ok = TRUE;
2988 }
2989
2990 return (void *)fd;
2991}
2992
2993/*
2994 * Convert the string "str[slen]" with iconv().
2995 * If "unconvlenp" is not NULL handle the string ending in an incomplete
2996 * sequence and set "*unconvlenp" to the length of it.
2997 * Returns the converted string in allocated memory. NULL for an error.
2998 */
2999 static char_u *
3000iconv_string(vcp, str, slen, unconvlenp)
3001 vimconv_T *vcp;
3002 char_u *str;
3003 int slen;
3004 int *unconvlenp;
3005{
3006 const char *from;
3007 size_t fromlen;
3008 char *to;
3009 size_t tolen;
3010 size_t len = 0;
3011 size_t done = 0;
3012 char_u *result = NULL;
3013 char_u *p;
3014 int l;
3015
3016 from = (char *)str;
3017 fromlen = slen;
3018 for (;;)
3019 {
3020 if (len == 0 || ICONV_ERRNO == ICONV_E2BIG)
3021 {
3022 /* Allocate enough room for most conversions. When re-allocating
3023 * increase the buffer size. */
3024 len = len + fromlen * 2 + 40;
3025 p = alloc((unsigned)len);
3026 if (p != NULL && done > 0)
3027 mch_memmove(p, result, done);
3028 vim_free(result);
3029 result = p;
3030 if (result == NULL) /* out of memory */
3031 break;
3032 }
3033
3034 to = (char *)result + done;
3035 tolen = len - done - 2;
3036 /* Avoid a warning for systems with a wrong iconv() prototype by
3037 * casting the second argument to void *. */
3038 if (iconv(vcp->vc_fd, (void *)&from, &fromlen, &to, &tolen)
3039 != (size_t)-1)
3040 {
3041 /* Finished, append a NUL. */
3042 *to = NUL;
3043 break;
3044 }
3045
3046 /* Check both ICONV_EINVAL and EINVAL, because the dynamically loaded
3047 * iconv library may use one of them. */
3048 if (!vcp->vc_fail && unconvlenp != NULL
3049 && (ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3050 {
3051 /* Handle an incomplete sequence at the end. */
3052 *to = NUL;
3053 *unconvlenp = fromlen;
3054 break;
3055 }
3056
3057 /* Check both ICONV_EILSEQ and EILSEQ, because the dynamically loaded
3058 * iconv library may use one of them. */
3059 else if (!vcp->vc_fail
3060 && (ICONV_ERRNO == ICONV_EILSEQ || ICONV_ERRNO == EILSEQ
3061 || ICONV_ERRNO == ICONV_EINVAL || ICONV_ERRNO == EINVAL))
3062 {
3063 /* Can't convert: insert a '?' and skip a character. This assumes
3064 * conversion from 'encoding' to something else. In other
3065 * situations we don't know what to skip anyway. */
3066 *to++ = '?';
3067 if ((*mb_ptr2cells)((char_u *)from) > 1)
3068 *to++ = '?';
3069 l = (*mb_ptr2len_check)((char_u *)from);
3070 from += l;
3071 fromlen -= l;
3072 }
3073 else if (ICONV_ERRNO != ICONV_E2BIG)
3074 {
3075 /* conversion failed */
3076 vim_free(result);
3077 result = NULL;
3078 break;
3079 }
3080 /* Not enough room or skipping illegal sequence. */
3081 done = to - (char *)result;
3082 }
3083 return result;
3084}
3085
3086# if defined(DYNAMIC_ICONV) || defined(PROTO)
3087/*
3088 * Dynamically load the "iconv.dll" on Win32.
3089 */
3090
3091#ifndef DYNAMIC_ICONV /* just generating prototypes */
3092# define HINSTANCE int
3093#endif
3094HINSTANCE hIconvDLL = 0;
3095HINSTANCE hMsvcrtDLL = 0;
3096
3097# ifndef DYNAMIC_ICONV_DLL
3098# define DYNAMIC_ICONV_DLL "iconv.dll"
3099# define DYNAMIC_ICONV_DLL_ALT "libiconv.dll"
3100# endif
3101# ifndef DYNAMIC_MSVCRT_DLL
3102# define DYNAMIC_MSVCRT_DLL "msvcrt.dll"
3103# endif
3104
3105/*
3106 * Try opening the iconv.dll and return TRUE if iconv() can be used.
3107 */
3108 int
3109iconv_enabled(verbose)
3110 int verbose;
3111{
3112 if (hIconvDLL != 0 && hMsvcrtDLL != 0)
3113 return TRUE;
3114 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL);
3115 if (hIconvDLL == 0) /* sometimes it's called libiconv.dll */
3116 hIconvDLL = LoadLibrary(DYNAMIC_ICONV_DLL_ALT);
3117 if (hIconvDLL != 0)
3118 hMsvcrtDLL = LoadLibrary(DYNAMIC_MSVCRT_DLL);
3119 if (hIconvDLL == 0 || hMsvcrtDLL == 0)
3120 {
3121 /* Only give the message when 'verbose' is set, otherwise it might be
3122 * done whenever a conversion is attempted. */
3123 if (verbose && p_verbose > 0)
3124 EMSG2(_(e_loadlib),
3125 hIconvDLL == 0 ? DYNAMIC_ICONV_DLL : DYNAMIC_MSVCRT_DLL);
3126 iconv_end();
3127 return FALSE;
3128 }
3129
3130 *((FARPROC*)&iconv) = GetProcAddress(hIconvDLL, "libiconv");
3131 *((FARPROC*)&iconv_open) = GetProcAddress(hIconvDLL, "libiconv_open");
3132 *((FARPROC*)&iconv_close) = GetProcAddress(hIconvDLL, "libiconv_close");
3133 *((FARPROC*)&iconvctl) = GetProcAddress(hIconvDLL, "libiconvctl");
3134 *((FARPROC*)&iconv_errno) = GetProcAddress(hMsvcrtDLL, "_errno");
3135 if (iconv == NULL || iconv_open == NULL || iconv_close == NULL
3136 || iconvctl == NULL || iconv_errno == NULL)
3137 {
3138 iconv_end();
3139 if (verbose && p_verbose > 0)
3140 EMSG2(_(e_loadfunc), "for libiconv");
3141 return FALSE;
3142 }
3143 return TRUE;
3144}
3145
3146 void
3147iconv_end()
3148{
3149 /* Don't use iconv() when inputting or outputting characters. */
3150 if (input_conv.vc_type == CONV_ICONV)
3151 convert_setup(&input_conv, NULL, NULL);
3152 if (output_conv.vc_type == CONV_ICONV)
3153 convert_setup(&output_conv, NULL, NULL);
3154
3155 if (hIconvDLL != 0)
3156 FreeLibrary(hIconvDLL);
3157 if (hMsvcrtDLL != 0)
3158 FreeLibrary(hMsvcrtDLL);
3159 hIconvDLL = 0;
3160 hMsvcrtDLL = 0;
3161}
3162# endif /* DYNAMIC_ICONV */
3163# endif /* USE_ICONV */
3164
3165#endif /* FEAT_MBYTE */
3166
3167#if defined(FEAT_XIM) || defined(PROTO)
3168
3169# ifdef FEAT_GUI_GTK
3170static int xim_has_preediting INIT(= FALSE); /* IM current status */
3171
3172/*
3173 * Set preedit_start_col to the current cursor position.
3174 */
3175 static void
3176init_preedit_start_col(void)
3177{
3178 if (State & CMDLINE)
3179 preedit_start_col = cmdline_getvcol_cursor();
3180 else if (curwin != NULL)
3181 getvcol(curwin, &curwin->w_cursor, &preedit_start_col, NULL, NULL);
3182 /* Prevent that preediting marks the buffer as changed. */
3183 xim_changed_while_preediting = curbuf->b_changed;
3184}
3185# endif
3186
3187# if defined(HAVE_GTK2) && !defined(PROTO)
3188
3189static int im_is_active = FALSE; /* IM is enabled for current mode */
3190static int im_preedit_cursor = 0; /* cursor offset in characters */
3191static int im_preedit_trailing = 0; /* number of characters after cursor */
3192
3193static unsigned long im_commit_handler_id = 0;
3194static unsigned int im_activatekey_keyval = GDK_VoidSymbol;
3195static unsigned int im_activatekey_state = 0;
3196
3197 void
3198im_set_active(int active)
3199{
3200 int was_active;
3201
3202 was_active = !!im_is_active;
3203 im_is_active = (active && !p_imdisable);
3204
3205 if (im_is_active != was_active)
3206 xim_reset();
3207}
3208
3209 void
3210xim_set_focus(int focus)
3211{
3212 if (xic != NULL)
3213 {
3214 if (focus)
3215 gtk_im_context_focus_in(xic);
3216 else
3217 gtk_im_context_focus_out(xic);
3218 }
3219}
3220
3221 void
3222im_set_position(int row, int col)
3223{
3224 if (xic != NULL)
3225 {
3226 GdkRectangle area;
3227
3228 area.x = FILL_X(col);
3229 area.y = FILL_Y(row);
3230 area.width = gui.char_width * (mb_lefthalve(row, col) ? 2 : 1);
3231 area.height = gui.char_height;
3232
3233 gtk_im_context_set_cursor_location(xic, &area);
3234 }
3235}
3236
3237# if 0 || defined(PROTO) /* apparently only used in gui_x11.c */
3238 void
3239xim_set_preedit(void)
3240{
3241 im_set_position(gui.row, gui.col);
3242}
3243# endif
3244
3245 static void
3246im_add_to_input(char_u *str, int len)
3247{
3248 /* Convert from 'termencoding' (always "utf-8") to 'encoding' */
3249 if (input_conv.vc_type != CONV_NONE)
3250 {
3251 str = string_convert(&input_conv, str, &len);
3252 g_return_if_fail(str != NULL);
3253 }
3254
3255 add_to_input_buf_csi(str, len);
3256
3257 if (input_conv.vc_type != CONV_NONE)
3258 vim_free(str);
3259
3260 if (p_mh) /* blank out the pointer if necessary */
3261 gui_mch_mousehide(TRUE);
3262}
3263
3264 static void
3265im_delete_preedit(void)
3266{
3267 char_u bskey[] = {CSI, 'k', 'b'};
3268 char_u delkey[] = {CSI, 'k', 'D'};
3269
3270 if (State & NORMAL)
3271 {
3272 im_preedit_cursor = 0;
3273 return;
3274 }
3275 for (; im_preedit_cursor > 0; --im_preedit_cursor)
3276 add_to_input_buf(bskey, (int)sizeof(bskey));
3277
3278 for (; im_preedit_trailing > 0; --im_preedit_trailing)
3279 add_to_input_buf(delkey, (int)sizeof(delkey));
3280}
3281
3282 static void
3283im_correct_cursor(int num_move_back)
3284{
3285 char_u backkey[] = {CSI, 'k', 'l'};
3286
3287 if (State & NORMAL)
3288 return;
3289# ifdef FEAT_RIGHTLEFT
3290 if ((State & CMDLINE) == 0 && curwin != NULL && curwin->w_p_rl)
3291 backkey[2] = 'r';
3292# endif
3293 for (; num_move_back > 0; --num_move_back)
3294 add_to_input_buf(backkey, (int)sizeof(backkey));
3295}
3296
3297static int xim_expected_char = NUL;
3298static int xim_ignored_char = FALSE;
3299
3300/*
3301 * Update the mode and cursor while in an IM callback.
3302 */
3303 static void
3304im_show_info(void)
3305{
3306 int old_vgetc_busy;
3307 old_vgetc_busy = vgetc_busy;
3308 vgetc_busy = TRUE;
3309 showmode();
3310 vgetc_busy = old_vgetc_busy;
3311 setcursor();
3312 out_flush();
3313}
3314
3315/*
3316 * Callback invoked when the user finished preediting.
3317 * Put the final string into the input buffer.
3318 */
3319/*ARGSUSED0*/
3320 static void
3321im_commit_cb(GtkIMContext *context, const gchar *str, gpointer data)
3322{
3323 int slen = (int)STRLEN(str);
3324 int add_to_input = TRUE;
3325 int clen;
3326 int len = slen;
3327 int commit_with_preedit = TRUE;
3328 char_u *im_str, *p;
3329
3330#ifdef XIM_DEBUG
3331 xim_log("im_commit_cb(): %s\n", str);
3332#endif
3333
3334 /* The imhangul module doesn't reset the preedit string before
3335 * committing. Call im_delete_preedit() to work around that. */
3336 im_delete_preedit();
3337
3338 /* Indicate that preediting has finished. */
3339 if (preedit_start_col == MAXCOL)
3340 {
3341 init_preedit_start_col();
3342 commit_with_preedit = FALSE;
3343 }
3344
3345 /* The thing which setting "preedit_start_col" to MAXCOL means that
3346 * "preedit_start_col" will be set forcely when calling
3347 * preedit_changed_cb() next time.
3348 * "preedit_start_col" should not reset with MAXCOL on this part. Vim
3349 * is simulating the preediting by using add_to_input_str(). when
3350 * preedit begin immediately before committed, the typebuf is not
3351 * flushed to screen, then it can't get correct "preedit_start_col".
3352 * Thus, it should calculate the cells by adding cells of the committed
3353 * string. */
3354 if (input_conv.vc_type != CONV_NONE)
3355 {
3356 im_str = string_convert(&input_conv, (char_u *)str, &len);
3357 g_return_if_fail(im_str != NULL);
3358 }
3359 else
3360 im_str = (char_u *)str;
3361 clen = 0;
3362 for (p = im_str; p < im_str + len; p += (*mb_ptr2len_check)(p))
3363 clen += (*mb_ptr2cells)(p);
3364 if (input_conv.vc_type != CONV_NONE)
3365 vim_free(im_str);
3366 preedit_start_col += clen;
3367
3368 /* Is this a single character that matches a keypad key that's just
3369 * been pressed? If so, we don't want it to be entered as such - let
3370 * us carry on processing the raw keycode so that it may be used in
3371 * mappings as <kSomething>. */
3372 if (xim_expected_char != NUL)
3373 {
3374 /* We're currently processing a keypad or other special key */
3375 if (slen == 1 && str[0] == xim_expected_char)
3376 {
3377 /* It's a match - don't do it here */
3378 xim_ignored_char = TRUE;
3379 add_to_input = FALSE;
3380 }
3381 else
3382 {
3383 /* Not a match */
3384 xim_ignored_char = FALSE;
3385 }
3386 }
3387
3388 if (add_to_input)
3389 im_add_to_input((char_u *)str, slen);
3390
3391 /* Inserting chars while "im_is_active" is set does not cause a change of
3392 * buffer. When the chars are committed the buffer must be marked as
3393 * changed. */
3394 if (!commit_with_preedit)
3395 preedit_start_col = MAXCOL;
3396
3397 /* This flag is used in changed() at next call. */
3398 xim_changed_while_preediting = TRUE;
3399
3400 if (gtk_main_level() > 0)
3401 gtk_main_quit();
3402}
3403
3404/*
3405 * Callback invoked after start to the preedit.
3406 */
3407/*ARGSUSED*/
3408 static void
3409im_preedit_start_cb(GtkIMContext *context, gpointer data)
3410{
3411#ifdef XIM_DEBUG
3412 xim_log("im_preedit_start_cb()\n");
3413#endif
3414
3415 im_is_active = TRUE;
3416 gui_update_cursor(TRUE, FALSE);
3417}
3418
3419/*
3420 * Callback invoked after end to the preedit.
3421 */
3422/*ARGSUSED*/
3423 static void
3424im_preedit_end_cb(GtkIMContext *context, gpointer data)
3425{
3426#ifdef XIM_DEBUG
3427 xim_log("im_preedit_end_cb()\n");
3428#endif
3429 im_delete_preedit();
3430
3431 /* Indicate that preediting has finished */
3432 preedit_start_col = MAXCOL;
3433 xim_has_preediting = FALSE;
3434
3435 im_is_active = FALSE;
3436 gui_update_cursor(TRUE, FALSE);
3437 im_show_info();
3438}
3439
3440/*
3441 * Callback invoked after changes to the preedit string. If the preedit
3442 * string was empty before, remember the preedit start column so we know
3443 * where to apply feedback attributes. Delete the previous preedit string
3444 * if there was one, save the new preedit cursor offset, and put the new
3445 * string into the input buffer.
3446 *
3447 * TODO: The pragmatic "put into input buffer" approach used here has
3448 * several fundamental problems:
3449 *
3450 * - The characters in the preedit string are subject to remapping.
3451 * That's broken, only the finally committed string should be remapped.
3452 *
3453 * - There is a race condition involved: The retrieved value for the
3454 * current cursor position will be wrong if any unprocessed characters
3455 * are still queued in the input buffer.
3456 *
3457 * - Due to the lack of synchronization between the file buffer in memory
3458 * and any typed characters, it's practically impossible to implement the
3459 * "retrieve_surrounding" and "delete_surrounding" signals reliably. IM
3460 * modules for languages such as Thai are likely to rely on this feature
3461 * for proper operation.
3462 *
3463 * Conclusions: I think support for preediting needs to be moved to the
3464 * core parts of Vim. Ideally, until it has been committed, the preediting
3465 * string should only be displayed and not affect the buffer content at all.
3466 * The question how to deal with the synchronization issue still remains.
3467 * Circumventing the input buffer is probably not desirable. Anyway, I think
3468 * implementing "retrieve_surrounding" is the only hard problem.
3469 *
3470 * One way to solve all of this in a clean manner would be to queue all key
3471 * press/release events "as is" in the input buffer, and apply the IM filtering
3472 * at the receiving end of the queue. This, however, would have a rather large
3473 * impact on the code base. If there is an easy way to force processing of all
3474 * remaining input from within the "retrieve_surrounding" signal handler, this
3475 * might not be necessary. Gotta ask on vim-dev for opinions.
3476 */
3477/*ARGSUSED1*/
3478 static void
3479im_preedit_changed_cb(GtkIMContext *context, gpointer data)
3480{
3481 char *preedit_string = NULL;
3482 int cursor_index = 0;
3483 int num_move_back = 0;
3484 char_u *str;
3485 char_u *p;
3486 int i;
3487
3488 gtk_im_context_get_preedit_string(context,
3489 &preedit_string, NULL,
3490 &cursor_index);
3491
3492#ifdef XIM_DEBUG
3493 xim_log("im_preedit_changed_cb(): %s\n", preedit_string);
3494#endif
3495
3496 g_return_if_fail(preedit_string != NULL); /* just in case */
3497
3498 /* If preedit_start_col is MAXCOL set it to the current cursor position. */
3499 if (preedit_start_col == MAXCOL && preedit_string[0] != '\0')
3500 {
3501 xim_has_preediting = TRUE;
3502
3503 /* Urgh, this breaks if the input buffer isn't empty now */
3504 init_preedit_start_col();
3505 }
3506 else if (cursor_index == 0 && preedit_string[0] == '\0')
3507 {
3508 if (preedit_start_col == MAXCOL)
3509 xim_has_preediting = FALSE;
3510
3511 /* If at the start position (after typing backspace)
3512 * preedit_start_col must be reset. */
3513 preedit_start_col = MAXCOL;
3514 }
3515
3516 im_delete_preedit();
3517
3518 /*
3519 * Compute the end of the preediting area: "preedit_end_col".
3520 * According to the documentation of gtk_im_context_get_preedit_string(),
3521 * the cursor_pos output argument returns the offset in bytes. This is
3522 * unfortunately not true -- real life shows the offset is in characters,
3523 * and the GTK+ source code agrees with me. Will file a bug later.
3524 */
3525 if (preedit_start_col != MAXCOL)
3526 preedit_end_col = preedit_start_col;
3527 str = (char_u *)preedit_string;
3528 for (p = str, i = 0; *p != NUL; p += utf_byte2len(*p), ++i)
3529 {
3530 int is_composing;
3531
3532 is_composing = ((*p & 0x80) != 0 && utf_iscomposing(utf_ptr2char(p)));
3533 /*
3534 * These offsets are used as counters when generating <BS> and <Del>
3535 * to delete the preedit string. So don't count composing characters
3536 * unless 'delcombine' is enabled.
3537 */
3538 if (!is_composing || p_deco)
3539 {
3540 if (i < cursor_index)
3541 ++im_preedit_cursor;
3542 else
3543 ++im_preedit_trailing;
3544 }
3545 if (!is_composing && i >= cursor_index)
3546 {
3547 /* This is essentially the same as im_preedit_trailing, except
3548 * composing characters are not counted even if p_deco is set. */
3549 ++num_move_back;
3550 }
3551 if (preedit_start_col != MAXCOL)
3552 preedit_end_col += utf_ptr2cells(p);
3553 }
3554
3555 if (p > str)
3556 {
3557 im_add_to_input(str, (int)(p - str));
3558 im_correct_cursor(num_move_back);
3559 }
3560
3561 g_free(preedit_string);
3562
3563 if (gtk_main_level() > 0)
3564 gtk_main_quit();
3565}
3566
3567/*
3568 * Translate the Pango attributes at iter to Vim highlighting attributes.
3569 * Ignore attributes not supported by Vim highlighting. This shouldn't have
3570 * too much impact -- right now we handle even more attributes than necessary
3571 * for the IM modules I tested with.
3572 */
3573 static int
3574translate_pango_attributes(PangoAttrIterator *iter)
3575{
3576 PangoAttribute *attr;
3577 int char_attr = HL_NORMAL;
3578
3579 attr = pango_attr_iterator_get(iter, PANGO_ATTR_UNDERLINE);
3580 if (attr != NULL && ((PangoAttrInt *)attr)->value
3581 != (int)PANGO_UNDERLINE_NONE)
3582 char_attr |= HL_UNDERLINE;
3583
3584 attr = pango_attr_iterator_get(iter, PANGO_ATTR_WEIGHT);
3585 if (attr != NULL && ((PangoAttrInt *)attr)->value >= (int)PANGO_WEIGHT_BOLD)
3586 char_attr |= HL_BOLD;
3587
3588 attr = pango_attr_iterator_get(iter, PANGO_ATTR_STYLE);
3589 if (attr != NULL && ((PangoAttrInt *)attr)->value
3590 != (int)PANGO_STYLE_NORMAL)
3591 char_attr |= HL_ITALIC;
3592
3593 attr = pango_attr_iterator_get(iter, PANGO_ATTR_BACKGROUND);
3594 if (attr != NULL)
3595 {
3596 const PangoColor *color = &((PangoAttrColor *)attr)->color;
3597
3598 /* Assume inverse if black background is requested */
3599 if ((color->red | color->green | color->blue) == 0)
3600 char_attr |= HL_INVERSE;
3601 }
3602
3603 return char_attr;
3604}
3605
3606/*
3607 * Retrieve the highlighting attributes at column col in the preedit string.
3608 * Return -1 if not in preediting mode or if col is out of range.
3609 */
3610 int
3611im_get_feedback_attr(int col)
3612{
3613 char *preedit_string = NULL;
3614 PangoAttrList *attr_list = NULL;
3615 int char_attr = -1;
3616
3617 if (xic == NULL)
3618 return char_attr;
3619
3620 gtk_im_context_get_preedit_string(xic, &preedit_string, &attr_list, NULL);
3621
3622 if (preedit_string != NULL && attr_list != NULL)
3623 {
3624 int index;
3625
3626 /* Get the byte index as used by PangoAttrIterator */
3627 for (index = 0; col > 0 && preedit_string[index] != '\0'; --col)
3628 index += utfc_ptr2len_check((char_u *)preedit_string + index);
3629
3630 if (preedit_string[index] != '\0')
3631 {
3632 PangoAttrIterator *iter;
3633 int start, end;
3634
3635 char_attr = HL_NORMAL;
3636 iter = pango_attr_list_get_iterator(attr_list);
3637
3638 /* Extract all relevant attributes from the list. */
3639 do
3640 {
3641 pango_attr_iterator_range(iter, &start, &end);
3642
3643 if (index >= start && index < end)
3644 char_attr |= translate_pango_attributes(iter);
3645 }
3646 while (pango_attr_iterator_next(iter));
3647
3648 pango_attr_iterator_destroy(iter);
3649 }
3650 }
3651
3652 if (attr_list != NULL)
3653 pango_attr_list_unref(attr_list);
3654 g_free(preedit_string);
3655
3656 return char_attr;
3657}
3658
3659 void
3660xim_init(void)
3661{
3662#ifdef XIM_DEBUG
3663 xim_log("xim_init()\n");
3664#endif
3665
3666 g_return_if_fail(gui.drawarea != NULL);
3667 g_return_if_fail(gui.drawarea->window != NULL);
3668
3669 xic = gtk_im_multicontext_new();
3670 g_object_ref(xic);
3671
3672 im_commit_handler_id = g_signal_connect(G_OBJECT(xic), "commit",
3673 G_CALLBACK(&im_commit_cb), NULL);
3674 g_signal_connect(G_OBJECT(xic), "preedit_changed",
3675 G_CALLBACK(&im_preedit_changed_cb), NULL);
3676 g_signal_connect(G_OBJECT(xic), "preedit_start",
3677 G_CALLBACK(&im_preedit_start_cb), NULL);
3678 g_signal_connect(G_OBJECT(xic), "preedit_end",
3679 G_CALLBACK(&im_preedit_end_cb), NULL);
3680
3681 gtk_im_context_set_client_window(xic, gui.drawarea->window);
3682}
3683
3684 void
3685im_shutdown(void)
3686{
3687#ifdef XIM_DEBUG
3688 xim_log("im_shutdown()\n");
3689#endif
3690
3691 if (xic != NULL)
3692 {
3693 gtk_im_context_focus_out(xic);
3694 g_object_unref(xic);
3695 xic = NULL;
3696 }
3697 im_is_active = FALSE;
3698 im_commit_handler_id = 0;
3699 preedit_start_col = MAXCOL;
3700 xim_has_preediting = FALSE;
3701}
3702
3703/*
3704 * Convert the string argument to keyval and state for GdkEventKey.
3705 * If str is valid return TRUE, otherwise FALSE.
3706 *
3707 * See 'imactivatekey' for documentation of the format.
3708 */
3709 static int
3710im_string_to_keyval(const char *str, unsigned int *keyval, unsigned int *state)
3711{
3712 const char *mods_end;
3713 unsigned tmp_keyval;
3714 unsigned tmp_state = 0;
3715
3716 mods_end = strrchr(str, '-');
3717 mods_end = (mods_end != NULL) ? mods_end + 1 : str;
3718
3719 /* Parse modifier keys */
3720 while (str < mods_end)
3721 switch (*str++)
3722 {
3723 case '-': break;
3724 case 'S': case 's': tmp_state |= (unsigned)GDK_SHIFT_MASK; break;
3725 case 'L': case 'l': tmp_state |= (unsigned)GDK_LOCK_MASK; break;
3726 case 'C': case 'c': tmp_state |= (unsigned)GDK_CONTROL_MASK;break;
3727 case '1': tmp_state |= (unsigned)GDK_MOD1_MASK; break;
3728 case '2': tmp_state |= (unsigned)GDK_MOD2_MASK; break;
3729 case '3': tmp_state |= (unsigned)GDK_MOD3_MASK; break;
3730 case '4': tmp_state |= (unsigned)GDK_MOD4_MASK; break;
3731 case '5': tmp_state |= (unsigned)GDK_MOD5_MASK; break;
3732 default:
3733 return FALSE;
3734 }
3735
3736 tmp_keyval = gdk_keyval_from_name(str);
3737
3738 if (tmp_keyval == 0 || tmp_keyval == GDK_VoidSymbol)
3739 return FALSE;
3740
3741 if (keyval != NULL)
3742 *keyval = tmp_keyval;
3743 if (state != NULL)
3744 *state = tmp_state;
3745
3746 return TRUE;
3747}
3748
3749/*
3750 * Return TRUE if p_imak is valid, otherwise FALSE. As a special case, an
3751 * empty string is also regarded as valid.
3752 *
3753 * Note: The numerical key value of p_imak is cached if it was valid; thus
3754 * boldly assuming im_xim_isvalid_imactivate() will always be called whenever
3755 * 'imak' changes. This is currently the case but not obvious -- should
3756 * probably rename the function for clarity.
3757 */
3758 int
3759im_xim_isvalid_imactivate(void)
3760{
3761 if (p_imak[0] == NUL)
3762 {
3763 im_activatekey_keyval = GDK_VoidSymbol;
3764 im_activatekey_state = 0;
3765 return TRUE;
3766 }
3767
3768 return im_string_to_keyval((const char *)p_imak,
3769 &im_activatekey_keyval,
3770 &im_activatekey_state);
3771}
3772
3773 static void
3774im_synthesize_keypress(unsigned int keyval, unsigned int state)
3775{
3776 GdkEventKey *event;
3777
3778# ifdef HAVE_GTK_MULTIHEAD
3779 event = (GdkEventKey *)gdk_event_new(GDK_KEY_PRESS);
3780 g_object_ref(gui.drawarea->window); /* unreffed by gdk_event_free() */
3781# else
3782 event = (GdkEventKey *)g_malloc0((gulong)sizeof(GdkEvent));
3783 event->type = GDK_KEY_PRESS;
3784# endif
3785 event->window = gui.drawarea->window;
3786 event->send_event = TRUE;
3787 event->time = GDK_CURRENT_TIME;
3788 event->state = state;
3789 event->keyval = keyval;
3790 event->hardware_keycode = /* needed for XIM */
3791 XKeysymToKeycode(GDK_WINDOW_XDISPLAY(event->window), (KeySym)keyval);
3792 event->length = 0;
3793 event->string = NULL;
3794
3795 gtk_im_context_filter_keypress(xic, event);
3796
3797 /* For consistency, also send the corresponding release event. */
3798 event->type = GDK_KEY_RELEASE;
3799 event->send_event = FALSE;
3800 gtk_im_context_filter_keypress(xic, event);
3801
3802# ifdef HAVE_GTK_MULTIHEAD
3803 gdk_event_free((GdkEvent *)event);
3804# else
3805 g_free(event);
3806# endif
3807}
3808
3809 void
3810xim_reset(void)
3811{
3812 if (xic != NULL)
3813 {
3814 /*
3815 * The third-party imhangul module (and maybe others too) ignores
3816 * gtk_im_context_reset() or at least doesn't reset the active state.
3817 * Thus sending imactivatekey would turn it off if it was on before,
3818 * which is clearly not what we want. Fortunately we can work around
3819 * that for imhangul by sending GDK_Escape, but I don't know if it
3820 * works with all IM modules that support an activation key :/
3821 *
3822 * An alternative approach would be to destroy the IM context and
3823 * recreate it. But that means loading/unloading the IM module on
3824 * every mode switch, which causes a quite noticable delay even on
3825 * my rather fast box...
3826 * *
3827 * Moreover, there are some XIM which cannot respond to
3828 * im_synthesize_keypress(). we hope that they reset by
3829 * xim_shutdown().
3830 */
3831 if (im_activatekey_keyval != GDK_VoidSymbol && im_is_active)
3832 im_synthesize_keypress(GDK_Escape, 0U);
3833
3834 gtk_im_context_reset(xic);
3835
3836 /*
3837 * HACK for Ami: This sequence of function calls makes Ami handle
3838 * the IM reset gratiously, without breaking loads of other stuff.
3839 * It seems to force English mode as well, which is exactly what we
3840 * want because it makes the Ami status display work reliably.
3841 */
3842 gtk_im_context_set_use_preedit(xic, FALSE);
3843
3844 if (p_imdisable)
3845 im_shutdown();
3846 else
3847 {
3848 gtk_im_context_set_use_preedit(xic, TRUE);
3849 xim_set_focus(gui.in_focus);
3850
3851 if (im_activatekey_keyval != GDK_VoidSymbol)
3852 {
3853 if (im_is_active)
3854 {
3855 g_signal_handler_block(xic, im_commit_handler_id);
3856 im_synthesize_keypress(im_activatekey_keyval,
3857 im_activatekey_state);
3858 g_signal_handler_unblock(xic, im_commit_handler_id);
3859 }
3860 }
3861 else
3862 {
3863 im_shutdown();
3864 xim_init();
3865 xim_set_focus(gui.in_focus);
3866 }
3867 }
3868 }
3869
3870 preedit_start_col = MAXCOL;
3871 xim_has_preediting = FALSE;
3872}
3873
3874 int
3875xim_queue_key_press_event(GdkEventKey *event, int down)
3876{
3877 if (down)
3878 {
3879 /*
3880 * Workaround GTK2 XIM 'feature' that always converts keypad keys to
3881 * chars., even when not part of an IM sequence (ref. feature of
3882 * gdk/gdkkeyuni.c).
3883 * Flag any keypad keys that might represent a single char.
3884 * If this (on its own - i.e., not part of an IM sequence) is
3885 * committed while we're processing one of these keys, we can ignore
3886 * that commit and go ahead & process it ourselves. That way we can
3887 * still distinguish keypad keys for use in mappings.
3888 */
3889 switch (event->keyval)
3890 {
3891 case GDK_KP_Add: xim_expected_char = '+'; break;
3892 case GDK_KP_Subtract: xim_expected_char = '-'; break;
3893 case GDK_KP_Divide: xim_expected_char = '/'; break;
3894 case GDK_KP_Multiply: xim_expected_char = '*'; break;
3895 case GDK_KP_Decimal: xim_expected_char = '.'; break;
3896 case GDK_KP_Equal: xim_expected_char = '='; break;
3897 case GDK_KP_0: xim_expected_char = '0'; break;
3898 case GDK_KP_1: xim_expected_char = '1'; break;
3899 case GDK_KP_2: xim_expected_char = '2'; break;
3900 case GDK_KP_3: xim_expected_char = '3'; break;
3901 case GDK_KP_4: xim_expected_char = '4'; break;
3902 case GDK_KP_5: xim_expected_char = '5'; break;
3903 case GDK_KP_6: xim_expected_char = '6'; break;
3904 case GDK_KP_7: xim_expected_char = '7'; break;
3905 case GDK_KP_8: xim_expected_char = '8'; break;
3906 case GDK_KP_9: xim_expected_char = '9'; break;
3907 default: xim_expected_char = NUL;
3908 }
3909 xim_ignored_char = FALSE;
3910 }
3911
3912 /*
3913 * When typing fFtT, XIM may be activated. Thus it must pass
3914 * gtk_im_context_filter_keypress() in Normal mode.
3915 * And while doing :sh too.
3916 */
3917 if (xic != NULL && !p_imdisable
3918 && (State & (INSERT | CMDLINE | NORMAL | EXTERNCMD)) != 0)
3919 {
3920 /*
3921 * Filter 'imactivatekey' and map it to CTRL-^. This way, Vim is
3922 * always aware of the current status of IM, and can even emulate
3923 * the activation key for modules that don't support one.
3924 */
3925 if (event->keyval == im_activatekey_keyval
3926 && (event->state & im_activatekey_state) == im_activatekey_state)
3927 {
3928 unsigned int state_mask;
3929
3930 /* Require the state of the 3 most used modifiers to match exactly.
3931 * Otherwise e.g. <S-C-space> would be unusable for other purposes
3932 * if the IM activate key is <S-space>. */
3933 state_mask = im_activatekey_state;
3934 state_mask |= ((int)GDK_SHIFT_MASK | (int)GDK_CONTROL_MASK
3935 | (int)GDK_MOD1_MASK);
3936
3937 if ((event->state & state_mask) != im_activatekey_state)
3938 return FALSE;
3939
3940 /* Don't send it a second time on GDK_KEY_RELEASE. */
3941 if (event->type != GDK_KEY_PRESS)
3942 return TRUE;
3943
3944 if (map_to_exists_mode((char_u *)"", LANGMAP))
3945 {
3946 im_set_active(FALSE);
3947
3948 /* ":lmap" mappings exists, toggle use of mappings. */
3949 State ^= LANGMAP;
3950 if (State & LANGMAP)
3951 {
3952 curbuf->b_p_iminsert = B_IMODE_NONE;
3953 State &= ~LANGMAP;
3954 }
3955 else
3956 {
3957 curbuf->b_p_iminsert = B_IMODE_LMAP;
3958 State |= LANGMAP;
3959 }
3960 return TRUE;
3961 }
3962
3963 return gtk_im_context_filter_keypress(xic, event);
3964 }
3965
3966 /* Don't filter events through the IM context if IM isn't active
3967 * right now. Unlike with GTK+ 1.2 we cannot rely on the IM module
3968 * not doing anything before the activation key was sent. */
3969 if (im_activatekey_keyval == GDK_VoidSymbol || im_is_active)
3970 {
3971 int imresult = gtk_im_context_filter_keypress(xic, event);
3972
3973 /* Some XIM send following sequence:
3974 * 1. preedited string.
3975 * 2. committed string.
3976 * 3. line changed key.
3977 * 4. preedited string.
3978 * 5. remove preedited string.
3979 * if 3, Vim can't move back the above line for 5.
3980 * thus, this part should not parse the key. */
3981 if (!imresult && preedit_start_col != MAXCOL
3982 && event->keyval == GDK_Return)
3983 {
3984 im_synthesize_keypress(GDK_Return, 0U);
3985 return FALSE;
3986 }
3987
3988 /* If XIM tried to commit a keypad key as a single char.,
3989 * ignore it so we can use the keypad key 'raw', for mappings. */
3990 if (xim_expected_char != NUL && xim_ignored_char)
3991 /* We had a keypad key, and XIM tried to thieve it */
3992 return FALSE;
3993
3994 /* Normal processing */
3995 return imresult;
3996 }
3997 }
3998
3999 return FALSE;
4000}
4001
4002 int
4003im_get_status(void)
4004{
4005 return im_is_active;
4006}
4007
4008# else /* !HAVE_GTK2 */
4009
4010static int xim_is_active = FALSE; /* XIM should be active in the current
4011 mode */
4012static int xim_has_focus = FALSE; /* XIM is really being used for Vim */
4013#ifdef FEAT_GUI_X11
4014static XIMStyle input_style;
4015static int status_area_enabled = TRUE;
4016#endif
4017
4018#ifdef FEAT_GUI_GTK
4019# ifdef WIN3264
4020# include <gdk/gdkwin32.h>
4021# else
4022# include <gdk/gdkx.h>
4023# endif
4024#else
4025# ifdef PROTO
4026/* Define a few things to be able to generate prototypes while not configured
4027 * for GTK. */
4028# define GSList int
4029# define gboolean int
4030 typedef int GdkEvent;
4031 typedef int GdkEventKey;
4032# define GdkIC int
4033# endif
4034#endif
4035
Bram Moolenaar843ee412004-06-30 16:16:41 +00004036#if defined(FEAT_GUI_GTK) || defined(PROTO) || defined(FEAT_GUI_KDE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037static int preedit_buf_len = 0;
4038static int xim_can_preediting INIT(= FALSE); /* XIM in showmode() */
4039static int xim_input_style;
4040#ifndef FEAT_GUI_GTK
4041# define gboolean int
4042#endif
4043static gboolean use_status_area = 0;
4044
4045static int im_xim_str2keycode __ARGS((unsigned int *code, unsigned int *state));
4046static void im_xim_send_event_imactivate __ARGS((void));
4047
4048/*
4049 * Convert string to keycode and state for XKeyEvent.
4050 * When string is valid return OK, when invalid return FAIL.
4051 *
4052 * See 'imactivatekey' documentation for the format.
4053 */
4054 static int
4055im_xim_str2keycode(code, state)
4056 unsigned int *code;
4057 unsigned int *state;
4058{
4059 int retval = OK;
4060 int len;
4061 unsigned keycode = 0, keystate = 0;
4062 Window window;
4063 Display *display;
4064 char_u *flag_end;
4065 char_u *str;
4066
4067 if (*p_imak != NUL)
4068 {
4069 len = STRLEN(p_imak);
4070 for (flag_end = p_imak + len - 1;
4071 flag_end > p_imak && *flag_end != '-'; --flag_end)
4072 ;
4073
4074 /* Parse modifier keys */
4075 for (str = p_imak; str < flag_end; ++str)
4076 {
4077 switch (*str)
4078 {
4079 case 's': case 'S':
4080 keystate |= ShiftMask;
4081 break;
4082 case 'l': case 'L':
4083 keystate |= LockMask;
4084 break;
4085 case 'c': case 'C':
4086 keystate |= ControlMask;
4087 break;
4088 case '1':
4089 keystate |= Mod1Mask;
4090 break;
4091 case '2':
4092 keystate |= Mod2Mask;
4093 break;
4094 case '3':
4095 keystate |= Mod3Mask;
4096 break;
4097 case '4':
4098 keystate |= Mod4Mask;
4099 break;
4100 case '5':
4101 keystate |= Mod5Mask;
4102 break;
4103 case '-':
4104 break;
4105 default:
4106 retval = FAIL;
4107 }
4108 }
4109 if (*str == '-')
4110 ++str;
4111
4112 /* Get keycode from string. */
4113 gui_get_x11_windis(&window, &display);
4114 if (display)
4115 keycode = XKeysymToKeycode(display, XStringToKeysym((char *)str));
4116 if (keycode == 0)
4117 retval = FAIL;
4118
4119 if (code != NULL)
4120 *code = keycode;
4121 if (state != NULL)
4122 *state = keystate;
4123 }
4124 return retval;
4125}
4126
4127 static void
4128im_xim_send_event_imactivate()
4129{
4130 /* Force turn on preedit state by symulate keypress event.
4131 * Keycode and state is specified by 'imactivatekey'.
4132 */
4133 XKeyEvent ev;
4134
4135 gui_get_x11_windis(&ev.window, &ev.display);
4136 ev.root = RootWindow(ev.display, DefaultScreen(ev.display));
4137 ev.subwindow = None;
4138 ev.time = CurrentTime;
4139 ev.x = 1;
4140 ev.y = 1;
4141 ev.x_root = 1;
4142 ev.y_root = 1;
4143 ev.same_screen = 1;
4144 ev.type = KeyPress;
4145 if (im_xim_str2keycode(&ev.keycode, &ev.state) == OK)
4146 XSendEvent(ev.display, ev.window, 1, KeyPressMask, (XEvent*)&ev);
4147}
4148
4149/*
4150 * Return TRUE if 'imactivatekey' has a valid value.
4151 */
4152 int
4153im_xim_isvalid_imactivate()
4154{
4155 return im_xim_str2keycode(NULL, NULL) == OK;
4156}
4157#endif /* FEAT_GUI_GTK */
4158
4159/*
4160 * Switch using XIM on/off. This is used by the code that changes "State".
4161 */
4162 void
4163im_set_active(active)
4164 int active;
4165{
4166 if (xic == NULL)
4167 return;
4168
4169 /* If 'imdisable' is set, XIM is never active. */
4170 if (p_imdisable)
4171 active = FALSE;
Bram Moolenaar843ee412004-06-30 16:16:41 +00004172#if !defined (FEAT_GUI_GTK) && !defined (FEAT_GUI_KDE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 else if (input_style & XIMPreeditPosition)
4174 /* There is a problem in switching XIM off when preediting is used,
4175 * and it is not clear how this can be solved. For now, keep XIM on
4176 * all the time, like it was done in Vim 5.8. */
4177 active = TRUE;
4178#endif
4179
4180 /* Remember the active state, it is needed when Vim gets keyboard focus. */
4181 xim_is_active = active;
4182
4183#ifdef FEAT_GUI_GTK
4184 /* When 'imactivatekey' has valid key-string, try to control XIM preedit
4185 * state. When 'imactivatekey' has no or invalid string, try old XIM
4186 * focus control.
4187 */
4188 if (*p_imak != NUL)
4189 {
4190 /* BASIC STRATEGY:
4191 * Destroy old Input Context (XIC), and create new one. New XIC
4192 * would have a state of preedit that is off. When argument:active
4193 * is false, that's all. Else argument:active is true, send a key
4194 * event specified by 'imactivatekey' to activate XIM preedit state.
4195 */
4196
4197 xim_is_active = TRUE; /* Disable old XIM focus control */
4198 /* If we can monitor preedit state with preedit callback functions,
4199 * try least creation of new XIC.
4200 */
4201 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
4202 {
4203 if (xim_can_preediting && !active)
4204 {
4205 /* Force turn off preedit state. With some IM
4206 * implementations, we cannot turn off preedit state by
4207 * symulate keypress event. It is why using such a method
4208 * that destroy old IC (input context), and create new one.
4209 * When create new IC, its preedit state is usually off.
4210 */
4211 xim_reset();
4212 xim_set_focus(FALSE);
4213 gdk_ic_destroy(xic);
4214 xim_init();
4215 xim_can_preediting = FALSE;
4216 }
4217 else if (!xim_can_preediting && active)
4218 im_xim_send_event_imactivate();
4219 }
4220 else
4221 {
4222 /* First, force destroy old IC, and create new one. It
4223 * symulates "turning off preedit state".
4224 */
4225 xim_set_focus(FALSE);
4226 gdk_ic_destroy(xic);
4227 xim_init();
4228 xim_can_preediting = FALSE;
4229
4230 /* 2nd, when requested to activate IM, symulate this by sending
4231 * the event.
4232 */
4233 if (active)
4234 {
4235 im_xim_send_event_imactivate();
4236 xim_can_preediting = TRUE;
4237 }
4238 }
4239 }
4240 else
4241 {
4242# ifndef XIMPreeditUnKnown
4243 /* X11R5 doesn't have these, it looks safe enough to define here. */
4244 typedef unsigned long XIMPreeditState;
4245# define XIMPreeditUnKnown 0L
4246# define XIMPreeditEnable 1L
4247# define XIMPreeditDisable (1L<<1)
4248# define XNPreeditState "preeditState"
4249# endif
4250 XIMPreeditState preedit_state = XIMPreeditUnKnown;
4251 XVaNestedList preedit_attr;
4252 XIC pxic;
4253
4254 preedit_attr = XVaCreateNestedList(0,
4255 XNPreeditState, &preedit_state,
4256 NULL);
4257 pxic = ((GdkICPrivate *)xic)->xic;
4258
4259 if (!XGetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL))
4260 {
4261 XFree(preedit_attr);
4262 preedit_attr = XVaCreateNestedList(0,
4263 XNPreeditState,
4264 active ? XIMPreeditEnable : XIMPreeditDisable,
4265 NULL);
4266 XSetICValues(pxic, XNPreeditAttributes, preedit_attr, NULL);
4267 xim_can_preediting = active;
4268 xim_is_active = active;
4269 }
4270 XFree(preedit_attr);
4271 }
4272 if (xim_input_style & XIMPreeditCallbacks)
4273 {
4274 preedit_buf_len = 0;
4275 init_preedit_start_col();
4276 }
4277#else
4278# if 0
4279 /* When had tested kinput2 + canna + Athena GUI version with
4280 * 'imactivatekey' is "s-space", im_xim_send_event_imactivate() did not
4281 * work correctly. It just inserted one space. I don't know why we
4282 * couldn't switch state of XIM preediting. This is reason why these
4283 * codes are commented out.
4284 */
4285 /* First, force destroy old IC, and create new one. It symulates
4286 * "turning off preedit state".
4287 */
4288 xim_set_focus(FALSE);
4289 XDestroyIC(xic);
4290 xic = NULL;
4291 xim_init();
4292
4293 /* 2nd, when requested to activate IM, symulate this by sending the
4294 * event.
4295 */
4296 if (active)
4297 im_xim_send_event_imactivate();
4298# endif
4299#endif
4300 xim_set_preedit();
4301}
4302
4303/*
4304 * Adjust using XIM for gaining or losing keyboard focus. Also called when
4305 * "xim_is_active" changes.
4306 */
4307 void
4308xim_set_focus(focus)
4309 int focus;
4310{
4311 if (xic == NULL)
4312 return;
4313
4314 /*
4315 * XIM only gets focus when the Vim window has keyboard focus and XIM has
4316 * been set active for the current mode.
4317 */
4318 if (focus && xim_is_active)
4319 {
4320 if (!xim_has_focus)
4321 {
4322 xim_has_focus = TRUE;
4323#ifdef FEAT_GUI_GTK
4324 gdk_im_begin(xic, gui.drawarea->window);
4325#else
4326 XSetICFocus(xic);
4327#endif
4328 }
4329 }
4330 else
4331 {
4332 if (xim_has_focus)
4333 {
4334 xim_has_focus = FALSE;
4335#ifdef FEAT_GUI_GTK
4336 gdk_im_end();
4337#else
4338 XUnsetICFocus(xic);
4339#endif
4340 }
4341 }
4342}
4343
4344/*ARGSUSED*/
4345 void
4346im_set_position(row, col)
4347 int row;
4348 int col;
4349{
4350 xim_set_preedit();
4351}
4352
4353/*
4354 * Set the XIM to the current cursor position.
4355 */
4356 void
4357xim_set_preedit()
4358{
4359 if (xic == NULL)
4360 return;
4361
4362 xim_set_focus(TRUE);
4363
4364#ifdef FEAT_GUI_GTK
4365 if (gdk_im_ready())
4366 {
4367 int attrmask;
4368 GdkICAttr *attr;
4369
4370 if (!xic_attr)
4371 return;
4372
4373 attr = xic_attr;
4374 attrmask = 0;
4375
4376# ifdef FEAT_XFONTSET
4377 if ((xim_input_style & (int)GDK_IM_PREEDIT_POSITION)
4378 && gui.fontset != NOFONTSET
4379 && gui.fontset->type == GDK_FONT_FONTSET)
4380 {
4381 if (!xim_has_focus)
4382 {
4383 if (attr->spot_location.y >= 0)
4384 {
4385 attr->spot_location.x = 0;
4386 attr->spot_location.y = -100;
4387 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4388 }
4389 }
4390 else
4391 {
4392 gint width, height;
4393
4394 if (attr->spot_location.x != TEXT_X(gui.col)
4395 || attr->spot_location.y != TEXT_Y(gui.row))
4396 {
4397 attr->spot_location.x = TEXT_X(gui.col);
4398 attr->spot_location.y = TEXT_Y(gui.row);
4399 attrmask |= (int)GDK_IC_SPOT_LOCATION;
4400 }
4401
4402 gdk_window_get_size(gui.drawarea->window, &width, &height);
4403 width -= 2 * gui.border_offset;
4404 height -= 2 * gui.border_offset;
4405 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
4406 height -= gui.char_height;
4407 if (attr->preedit_area.width != width
4408 || attr->preedit_area.height != height)
4409 {
4410 attr->preedit_area.x = gui.border_offset;
4411 attr->preedit_area.y = gui.border_offset;
4412 attr->preedit_area.width = width;
4413 attr->preedit_area.height = height;
4414 attrmask |= (int)GDK_IC_PREEDIT_AREA;
4415 }
4416
4417 if (attr->preedit_fontset != gui.current_font)
4418 {
4419 attr->preedit_fontset = gui.current_font;
4420 attrmask |= (int)GDK_IC_PREEDIT_FONTSET;
4421 }
4422 }
4423 }
4424# endif /* FEAT_XFONTSET */
4425
4426 if (xim_fg_color == INVALCOLOR)
4427 {
4428 xim_fg_color = gui.def_norm_pixel;
4429 xim_bg_color = gui.def_back_pixel;
4430 }
4431 if (attr->preedit_foreground.pixel != xim_fg_color)
4432 {
4433 attr->preedit_foreground.pixel = xim_fg_color;
4434 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
4435 }
4436 if (attr->preedit_background.pixel != xim_bg_color)
4437 {
4438 attr->preedit_background.pixel = xim_bg_color;
4439 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
4440 }
4441
4442 if (attrmask != 0)
4443 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
4444 }
4445#else /* FEAT_GUI_GTK */
Bram Moolenaar843ee412004-06-30 16:16:41 +00004446# ifdef FEAT_GUI_KDE
4447# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 {
4449 XVaNestedList attr_list;
4450 XRectangle spot_area;
4451 XPoint over_spot;
4452 int line_space;
4453
4454 if (!xim_has_focus)
4455 {
4456 /* hide XIM cursor */
4457 over_spot.x = 0;
4458 over_spot.y = -100; /* arbitrary invisible position */
4459 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4460 XNSpotLocation,
4461 &over_spot,
4462 NULL);
4463 XSetICValues(xic, XNPreeditAttributes, attr_list, NULL);
4464 XFree(attr_list);
4465 return;
4466 }
4467
4468 if (input_style & XIMPreeditPosition)
4469 {
4470 if (xim_fg_color == INVALCOLOR)
4471 {
4472 xim_fg_color = gui.def_norm_pixel;
4473 xim_bg_color = gui.def_back_pixel;
4474 }
4475 over_spot.x = TEXT_X(gui.col);
4476 over_spot.y = TEXT_Y(gui.row);
4477 spot_area.x = 0;
4478 spot_area.y = 0;
4479 spot_area.height = gui.char_height * Rows;
4480 spot_area.width = gui.char_width * Columns;
4481 line_space = gui.char_height;
4482 attr_list = (XVaNestedList) XVaCreateNestedList(0,
4483 XNSpotLocation, &over_spot,
4484 XNForeground, (Pixel) xim_fg_color,
4485 XNBackground, (Pixel) xim_bg_color,
4486 XNArea, &spot_area,
4487 XNLineSpace, line_space,
4488 NULL);
4489 if (XSetICValues(xic, XNPreeditAttributes, attr_list, NULL))
4490 EMSG(_("E284: Cannot set IC values"));
4491 XFree(attr_list);
4492 }
4493 }
Bram Moolenaar843ee412004-06-30 16:16:41 +00004494# endif /* FEAT_GUI_KDE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495#endif /* FEAT_GUI_GTK */
4496}
4497
4498/*
4499 * Set up the status area.
4500 *
4501 * This should use a separate Widget, but that seems not possible, because
4502 * preedit_area and status_area should be set to the same window as for the
4503 * text input. Unfortunately this means the status area pollutes the text
4504 * window...
4505 */
4506 void
4507xim_set_status_area()
4508{
4509 if (xic == NULL)
4510 return;
4511
4512#ifdef FEAT_GUI_GTK
4513# if defined(FEAT_XFONTSET)
4514 if (use_status_area)
4515 {
4516 GdkICAttr *attr;
4517 int style;
4518 gint width, height;
4519 GtkWidget *widget;
4520 int attrmask;
4521
4522 if (!xic_attr)
4523 return;
4524
4525 attr = xic_attr;
4526 attrmask = 0;
4527 style = (int)gdk_ic_get_style(xic);
4528 if ((style & (int)GDK_IM_STATUS_MASK) == (int)GDK_IM_STATUS_AREA)
4529 {
4530 if (gui.fontset != NOFONTSET
4531 && gui.fontset->type == GDK_FONT_FONTSET)
4532 {
4533 widget = gui.mainwin;
4534 gdk_window_get_size(widget->window, &width, &height);
4535
4536 attrmask |= (int)GDK_IC_STATUS_AREA;
4537 attr->status_area.x = 0;
4538 attr->status_area.y = height - gui.char_height - 1;
4539 attr->status_area.width = width;
4540 attr->status_area.height = gui.char_height;
4541 }
4542 }
4543 if (attrmask != 0)
4544 gdk_ic_set_attr(xic, attr, (GdkICAttributesType)attrmask);
4545 }
4546# endif
4547#else
Bram Moolenaar843ee412004-06-30 16:16:41 +00004548# ifdef FEAT_GUI_KDE
4549# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 {
4551 XVaNestedList preedit_list = 0, status_list = 0, list = 0;
4552 XRectangle pre_area, status_area;
4553
4554 if (input_style & XIMStatusArea)
4555 {
4556 if (input_style & XIMPreeditArea)
4557 {
4558 XRectangle *needed_rect;
4559
4560 /* to get status_area width */
4561 status_list = XVaCreateNestedList(0, XNAreaNeeded,
4562 &needed_rect, NULL);
4563 XGetICValues(xic, XNStatusAttributes, status_list, NULL);
4564 XFree(status_list);
4565
4566 status_area.width = needed_rect->width;
4567 }
4568 else
4569 status_area.width = gui.char_width * Columns;
4570
4571 status_area.x = 0;
4572 status_area.y = gui.char_height * Rows + gui.border_offset;
4573 if (gui.which_scrollbars[SBAR_BOTTOM])
4574 status_area.y += gui.scrollbar_height;
4575#ifdef FEAT_MENU
4576 if (gui.menu_is_active)
4577 status_area.y += gui.menu_height;
4578#endif
4579 status_area.height = gui.char_height;
4580 status_list = XVaCreateNestedList(0, XNArea, &status_area, NULL);
4581 }
4582 else
4583 {
4584 status_area.x = 0;
4585 status_area.y = gui.char_height * Rows + gui.border_offset;
4586 if (gui.which_scrollbars[SBAR_BOTTOM])
4587 status_area.y += gui.scrollbar_height;
4588#ifdef FEAT_MENU
4589 if (gui.menu_is_active)
4590 status_area.y += gui.menu_height;
4591#endif
4592 status_area.width = 0;
4593 status_area.height = gui.char_height;
4594 }
4595
4596 if (input_style & XIMPreeditArea) /* off-the-spot */
4597 {
4598 pre_area.x = status_area.x + status_area.width;
4599 pre_area.y = gui.char_height * Rows + gui.border_offset;
4600 pre_area.width = gui.char_width * Columns - pre_area.x;
4601 if (gui.which_scrollbars[SBAR_BOTTOM])
4602 pre_area.y += gui.scrollbar_height;
4603#ifdef FEAT_MENU
4604 if (gui.menu_is_active)
4605 pre_area.y += gui.menu_height;
4606#endif
4607 pre_area.height = gui.char_height;
4608 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
4609 }
4610 else if (input_style & XIMPreeditPosition) /* over-the-spot */
4611 {
4612 pre_area.x = 0;
4613 pre_area.y = 0;
4614 pre_area.height = gui.char_height * Rows;
4615 pre_area.width = gui.char_width * Columns;
4616 preedit_list = XVaCreateNestedList(0, XNArea, &pre_area, NULL);
4617 }
4618
4619 if (preedit_list && status_list)
4620 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
4621 XNStatusAttributes, status_list, NULL);
4622 else if (preedit_list)
4623 list = XVaCreateNestedList(0, XNPreeditAttributes, preedit_list,
4624 NULL);
4625 else if (status_list)
4626 list = XVaCreateNestedList(0, XNStatusAttributes, status_list,
4627 NULL);
4628 else
4629 list = NULL;
4630
4631 if (list)
4632 {
4633 XSetICValues(xic, XNVaNestedList, list, NULL);
4634 XFree(list);
4635 }
4636 if (status_list)
4637 XFree(status_list);
4638 if (preedit_list)
4639 XFree(preedit_list);
4640 }
Bram Moolenaar843ee412004-06-30 16:16:41 +00004641# endif /* FEAT_GUI_KDE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642#endif
4643}
4644
4645#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
4646static char e_xim[] = N_("E285: Failed to create input context");
4647#endif
4648
4649#if defined(FEAT_GUI_X11) || defined(PROTO)
4650# if defined(XtSpecificationRelease) && XtSpecificationRelease >= 6 && !defined(sun)
4651# define USE_X11R6_XIM
4652# endif
4653
4654static int xim_real_init __ARGS((Window x11_window, Display *x11_display));
4655
4656
4657#ifdef USE_X11R6_XIM
4658static void xim_instantiate_cb __ARGS((Display *display, XPointer client_data, XPointer call_data));
4659static void xim_destroy_cb __ARGS((XIM im, XPointer client_data, XPointer call_data));
4660
4661/*ARGSUSED*/
4662 static void
4663xim_instantiate_cb(display, client_data, call_data)
4664 Display *display;
4665 XPointer client_data;
4666 XPointer call_data;
4667{
4668 Window x11_window;
4669 Display *x11_display;
4670
4671#ifdef XIM_DEBUG
4672 xim_log("xim_instantiate_cb()\n");
4673#endif
4674
4675 gui_get_x11_windis(&x11_window, &x11_display);
4676 if (display != x11_display)
4677 return;
4678
4679 xim_real_init(x11_window, x11_display);
4680 gui_set_shellsize(FALSE, FALSE);
4681 if (xic != NULL)
4682 XUnregisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
4683 xim_instantiate_cb, NULL);
4684}
4685
4686/*ARGSUSED*/
4687 static void
4688xim_destroy_cb(im, client_data, call_data)
4689 XIM im;
4690 XPointer client_data;
4691 XPointer call_data;
4692{
4693 Window x11_window;
4694 Display *x11_display;
4695
4696#ifdef XIM_DEBUG
4697 xim_log("xim_destroy_cb()\n");
4698#endif
4699 gui_get_x11_windis(&x11_window, &x11_display);
4700
4701 xic = NULL;
4702 status_area_enabled = FALSE;
4703
4704 gui_set_shellsize(FALSE, FALSE);
4705
4706 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
4707 xim_instantiate_cb, NULL);
4708}
4709#endif
4710
4711 void
4712xim_init()
4713{
4714 Window x11_window;
4715 Display *x11_display;
4716
4717#ifdef XIM_DEBUG
4718 xim_log("xim_init()\n");
4719#endif
4720
4721 gui_get_x11_windis(&x11_window, &x11_display);
4722
4723 xic = NULL;
4724
4725 if (xim_real_init(x11_window, x11_display))
4726 return;
4727
4728 gui_set_shellsize(FALSE, FALSE);
4729
4730#ifdef USE_X11R6_XIM
4731 XRegisterIMInstantiateCallback(x11_display, NULL, NULL, NULL,
4732 xim_instantiate_cb, NULL);
4733#endif
4734}
4735
4736 static int
4737xim_real_init(x11_window, x11_display)
4738 Window x11_window;
4739 Display *x11_display;
4740{
4741 int i;
4742 char *p,
4743 *s,
4744 *ns,
4745 *end,
4746 tmp[1024];
4747#define IMLEN_MAX 40
4748 char buf[IMLEN_MAX + 7];
4749 XIM xim = NULL;
4750 XIMStyles *xim_styles;
4751 XIMStyle this_input_style = 0;
4752 Boolean found;
4753 XPoint over_spot;
4754 XVaNestedList preedit_list, status_list;
4755
4756 input_style = 0;
4757 status_area_enabled = FALSE;
4758
4759 if (xic != NULL)
4760 return FALSE;
4761
4762 if (gui.rsrc_input_method != NULL && *gui.rsrc_input_method != NUL)
4763 {
4764 strcpy(tmp, gui.rsrc_input_method);
4765 for (ns = s = tmp; ns != NULL && *s != NUL;)
4766 {
4767 s = (char *)skipwhite((char_u *)s);
4768 if (*s == NUL)
4769 break;
4770 if ((ns = end = strchr(s, ',')) == NULL)
4771 end = s + strlen(s);
4772 while (isspace(((char_u *)end)[-1]))
4773 end--;
4774 *end = NUL;
4775
4776 if (strlen(s) <= IMLEN_MAX)
4777 {
4778 strcpy(buf, "@im=");
4779 strcat(buf, s);
4780 if ((p = XSetLocaleModifiers(buf)) != NULL && *p != NUL
4781 && (xim = XOpenIM(x11_display, NULL, NULL, NULL))
4782 != NULL)
4783 break;
4784 }
4785
4786 s = ns + 1;
4787 }
4788 }
4789
4790 if (xim == NULL && (p = XSetLocaleModifiers("")) != NULL && *p != NUL)
4791 xim = XOpenIM(x11_display, NULL, NULL, NULL);
4792
4793 /* This is supposed to be useful to obtain characters through
4794 * XmbLookupString() without really using a XIM. */
4795 if (xim == NULL && (p = XSetLocaleModifiers("@im=none")) != NULL
4796 && *p != NUL)
4797 xim = XOpenIM(x11_display, NULL, NULL, NULL);
4798
4799 if (xim == NULL)
4800 {
4801 /* Only give this message when verbose is set, because too many people
4802 * got this message when they didn't want to use a XIM. */
4803 if (p_verbose > 0)
4804 EMSG(_("E286: Failed to open input method"));
4805 return FALSE;
4806 }
4807
4808#ifdef USE_X11R6_XIM
4809 {
4810 XIMCallback destroy_cb;
4811
4812 destroy_cb.callback = xim_destroy_cb;
4813 destroy_cb.client_data = NULL;
4814 if (XSetIMValues(xim, XNDestroyCallback, &destroy_cb, NULL))
4815 EMSG(_("E287: Warning: Could not set destroy callback to IM"));
4816 }
4817#endif
4818
4819 if (XGetIMValues(xim, XNQueryInputStyle, &xim_styles, NULL) || !xim_styles)
4820 {
4821 EMSG(_("E288: input method doesn't support any style"));
4822 XCloseIM(xim);
4823 return FALSE;
4824 }
4825
4826 found = False;
4827 strcpy(tmp, gui.rsrc_preedit_type_name);
4828 for (s = tmp; s && !found; )
4829 {
4830 while (*s && isspace((unsigned char)*s))
4831 s++;
4832 if (!*s)
4833 break;
4834 if ((ns = end = strchr(s, ',')) != 0)
4835 ns++;
4836 else
4837 end = s + strlen(s);
4838 while (isspace((unsigned char)*end))
4839 end--;
4840 *end = '\0';
4841
4842 if (!strcmp(s, "OverTheSpot"))
4843 this_input_style = (XIMPreeditPosition | XIMStatusArea);
4844 else if (!strcmp(s, "OffTheSpot"))
4845 this_input_style = (XIMPreeditArea | XIMStatusArea);
4846 else if (!strcmp(s, "Root"))
4847 this_input_style = (XIMPreeditNothing | XIMStatusNothing);
4848
4849 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
4850 {
4851 if (this_input_style == xim_styles->supported_styles[i])
4852 {
4853 found = True;
4854 break;
4855 }
4856 }
4857 if (!found)
4858 for (i = 0; (unsigned short)i < xim_styles->count_styles; i++)
4859 {
4860 if ((xim_styles->supported_styles[i] & this_input_style)
4861 == (this_input_style & ~XIMStatusArea))
4862 {
4863 this_input_style &= ~XIMStatusArea;
4864 found = True;
4865 break;
4866 }
4867 }
4868
4869 s = ns;
4870 }
4871 XFree(xim_styles);
4872
4873 if (!found)
4874 {
4875 /* Only give this message when verbose is set, because too many people
4876 * got this message when they didn't want to use a XIM. */
4877 if (p_verbose > 0)
4878 EMSG(_("E289: input method doesn't support my preedit type"));
4879 XCloseIM(xim);
4880 return FALSE;
4881 }
4882
4883 over_spot.x = TEXT_X(gui.col);
4884 over_spot.y = TEXT_Y(gui.row);
4885 input_style = this_input_style;
4886
4887 /* A crash was reported when trying to pass gui.norm_font as XNFontSet,
4888 * thus that has been removed. Hopefully the default works... */
4889#ifdef FEAT_XFONTSET
4890 if (gui.fontset != NOFONTSET)
4891 {
4892 preedit_list = XVaCreateNestedList(0,
4893 XNSpotLocation, &over_spot,
4894 XNForeground, (Pixel)gui.def_norm_pixel,
4895 XNBackground, (Pixel)gui.def_back_pixel,
4896 XNFontSet, (XFontSet)gui.fontset,
4897 NULL);
4898 status_list = XVaCreateNestedList(0,
4899 XNForeground, (Pixel)gui.def_norm_pixel,
4900 XNBackground, (Pixel)gui.def_back_pixel,
4901 XNFontSet, (XFontSet)gui.fontset,
4902 NULL);
4903 }
4904 else
4905#endif
4906 {
4907 preedit_list = XVaCreateNestedList(0,
4908 XNSpotLocation, &over_spot,
4909 XNForeground, (Pixel)gui.def_norm_pixel,
4910 XNBackground, (Pixel)gui.def_back_pixel,
4911 NULL);
4912 status_list = XVaCreateNestedList(0,
4913 XNForeground, (Pixel)gui.def_norm_pixel,
4914 XNBackground, (Pixel)gui.def_back_pixel,
4915 NULL);
4916 }
4917
4918 xic = XCreateIC(xim,
4919 XNInputStyle, input_style,
4920 XNClientWindow, x11_window,
4921 XNFocusWindow, gui.wid,
4922 XNPreeditAttributes, preedit_list,
4923 XNStatusAttributes, status_list,
4924 NULL);
4925 XFree(status_list);
4926 XFree(preedit_list);
4927 if (xic != NULL)
4928 {
4929 if (input_style & XIMStatusArea)
4930 {
4931 xim_set_status_area();
4932 status_area_enabled = TRUE;
4933 }
4934 else
4935 gui_set_shellsize(FALSE, FALSE);
4936 }
4937 else
4938 {
4939 EMSG(_(e_xim));
4940 XCloseIM(xim);
4941 return FALSE;
4942 }
4943
4944 return TRUE;
4945}
4946
4947#endif /* FEAT_GUI_X11 */
4948
4949#if defined(FEAT_GUI_GTK) || defined(PROTO)
4950
4951# ifdef FEAT_XFONTSET
4952static char e_overthespot[] = N_("E290: over-the-spot style requires fontset");
4953# endif
4954
4955# ifdef PROTO
4956typedef int GdkIC;
4957# endif
4958
4959 void
4960xim_decide_input_style()
4961{
4962 /* GDK_IM_STATUS_CALLBACKS was disabled, enabled it to allow Japanese
4963 * OverTheSpot. */
4964 int supported_style = (int)GDK_IM_PREEDIT_NONE |
4965 (int)GDK_IM_PREEDIT_NOTHING |
4966 (int)GDK_IM_PREEDIT_POSITION |
4967 (int)GDK_IM_PREEDIT_CALLBACKS |
4968 (int)GDK_IM_STATUS_CALLBACKS |
4969 (int)GDK_IM_STATUS_AREA |
4970 (int)GDK_IM_STATUS_NONE |
4971 (int)GDK_IM_STATUS_NOTHING;
4972
4973#ifdef XIM_DEBUG
4974 xim_log("xim_decide_input_style()\n");
4975#endif
4976
4977 if (!gdk_im_ready())
4978 xim_input_style = 0;
4979 else
4980 {
4981 if (gtk_major_version > 1
4982 || (gtk_major_version == 1
4983 && (gtk_minor_version > 2
4984 || (gtk_minor_version == 2 && gtk_micro_version >= 3))))
4985 use_status_area = TRUE;
4986 else
4987 {
4988 EMSG(_("E291: Your GTK+ is older than 1.2.3. Status area disabled"));
4989 use_status_area = FALSE;
4990 }
4991#ifdef FEAT_XFONTSET
4992 if (gui.fontset == NOFONTSET || gui.fontset->type != GDK_FONT_FONTSET)
4993#endif
4994 supported_style &= ~((int)GDK_IM_PREEDIT_POSITION
4995 | (int)GDK_IM_STATUS_AREA);
4996 if (!use_status_area)
4997 supported_style &= ~(int)GDK_IM_STATUS_AREA;
4998 xim_input_style = (int)gdk_im_decide_style((GdkIMStyle)supported_style);
4999 }
5000}
5001
5002/*ARGSUSED*/
5003 static void
5004preedit_start_cbproc(XIC xic, XPointer client_data, XPointer call_data)
5005{
5006#ifdef XIM_DEBUG
5007 xim_log("xim_decide_input_style()\n");
5008#endif
5009
5010 draw_feedback = NULL;
5011 xim_can_preediting = TRUE;
5012 xim_has_preediting = TRUE;
5013 gui_update_cursor(TRUE, FALSE);
5014 if (showmode() > 0)
5015 {
5016 setcursor();
5017 out_flush();
5018 }
5019}
5020
5021 static void
5022xim_back_delete(int n)
5023{
5024 char_u str[3];
5025
5026 str[0] = CSI;
5027 str[1] = 'k';
5028 str[2] = 'b';
5029 while (n-- > 0)
5030 add_to_input_buf(str, 3);
5031}
5032
5033static GSList *key_press_event_queue = NULL;
5034static gboolean processing_queued_event = FALSE;
5035
5036/*ARGSUSED*/
5037 static void
5038preedit_draw_cbproc(XIC xic, XPointer client_data, XPointer call_data)
5039{
5040 XIMPreeditDrawCallbackStruct *draw_data;
5041 XIMText *text;
5042 char *src;
5043 GSList *event_queue;
5044
5045#ifdef XIM_DEBUG
5046 xim_log("preedit_draw_cbproc()\n");
5047#endif
5048
5049 draw_data = (XIMPreeditDrawCallbackStruct *) call_data;
5050 text = (XIMText *) draw_data->text;
5051
5052 if ((text == NULL && draw_data->chg_length == preedit_buf_len)
5053 || preedit_buf_len == 0)
5054 {
5055 init_preedit_start_col();
5056 vim_free(draw_feedback);
5057 draw_feedback = NULL;
5058 }
5059 if (draw_data->chg_length > 0)
5060 {
5061 int bs_cnt;
5062
5063 if (draw_data->chg_length > preedit_buf_len)
5064 bs_cnt = preedit_buf_len;
5065 else
5066 bs_cnt = draw_data->chg_length;
5067 xim_back_delete(bs_cnt);
5068 preedit_buf_len -= bs_cnt;
5069 }
5070 if (text != NULL)
5071 {
5072 int len;
5073#ifdef FEAT_MBYTE
5074 char_u *buf = NULL;
5075 unsigned int nfeedback = 0;
5076#endif
5077 char_u *ptr;
5078
5079 src = text->string.multi_byte;
5080 if (src != NULL && !text->encoding_is_wchar)
5081 {
5082 len = strlen(src);
5083 ptr = (char_u *)src;
5084 /* Avoid the enter for decision */
5085 if (*ptr == '\n')
5086 return;
5087
5088#ifdef FEAT_MBYTE
5089 if (input_conv.vc_type != CONV_NONE
5090 && (buf = string_convert(&input_conv,
5091 (char_u *)src, &len)) != NULL)
5092 {
5093 /* Converted from 'termencoding' to 'encoding'. */
5094 add_to_input_buf_csi(buf, len);
5095 ptr = buf;
5096 }
5097 else
5098#endif
5099 add_to_input_buf_csi((char_u *)src, len);
5100 /* Add count of character to preedit_buf_len */
5101 while (*ptr != NUL)
5102 {
5103#ifdef FEAT_MBYTE
5104 if (draw_data->text->feedback != NULL)
5105 {
5106 if (draw_feedback == NULL)
5107 draw_feedback = (char *)alloc(draw_data->chg_first
5108 + text->length);
5109 else
5110 draw_feedback = realloc(draw_feedback,
5111 draw_data->chg_first + text->length);
5112 if (draw_feedback != NULL)
5113 {
5114 draw_feedback[nfeedback + draw_data->chg_first]
5115 = draw_data->text->feedback[nfeedback];
5116 nfeedback++;
5117 }
5118 }
5119 if (has_mbyte)
5120 ptr += mb_ptr2len_check(ptr);
5121 else
5122#endif
5123 ptr++;
5124 preedit_buf_len++;
5125 }
5126#ifdef FEAT_MBYTE
5127 vim_free(buf);
5128#endif
5129 preedit_end_col = MAXCOL;
5130 }
5131 }
5132 if (text != NULL || draw_data->chg_length > 0)
5133 {
5134 event_queue = key_press_event_queue;
5135 processing_queued_event = TRUE;
5136 while (event_queue != NULL && processing_queued_event)
5137 {
5138 GdkEvent *ev = event_queue->data;
5139
5140 gboolean *ret;
5141 gtk_signal_emit_by_name((GtkObject*)gui.mainwin, "key_press_event",
5142 ev, &ret);
5143 gdk_event_free(ev);
5144 event_queue = event_queue->next;
5145 }
5146 processing_queued_event = FALSE;
5147 if (key_press_event_queue)
5148 {
5149 g_slist_free(key_press_event_queue);
5150 key_press_event_queue = NULL;
5151 }
5152 }
5153 if (gtk_main_level() > 0)
5154 gtk_main_quit();
5155}
5156
5157/*
5158 * Retrieve the highlighting attributes at column col in the preedit string.
5159 * Return -1 if not in preediting mode or if col is out of range.
5160 */
5161 int
5162im_get_feedback_attr(int col)
5163{
5164 if (draw_feedback != NULL && col < preedit_buf_len)
5165 {
5166 if (draw_feedback[col] & XIMReverse)
5167 return HL_INVERSE;
5168 else if (draw_feedback[col] & XIMUnderline)
5169 return HL_UNDERLINE;
5170 else
5171 return hl_attr(HLF_V);
5172 }
5173
5174 return -1;
5175}
5176
5177/*ARGSUSED*/
5178 static void
5179preedit_caret_cbproc(XIC xic, XPointer client_data, XPointer call_data)
5180{
5181#ifdef XIM_DEBUG
5182 xim_log("preedit_caret_cbproc()\n");
5183#endif
5184}
5185
5186/*ARGSUSED*/
5187 static void
5188preedit_done_cbproc(XIC xic, XPointer client_data, XPointer call_data)
5189{
5190#ifdef XIM_DEBUG
5191 xim_log("preedit_done_cbproc()\n");
5192#endif
5193
5194 vim_free(draw_feedback);
5195 draw_feedback = NULL;
5196 xim_can_preediting = FALSE;
5197 xim_has_preediting = FALSE;
5198 gui_update_cursor(TRUE, FALSE);
5199 if (showmode() > 0)
5200 {
5201 setcursor();
5202 out_flush();
5203 }
5204}
5205
5206 void
5207xim_reset(void)
5208{
5209 char *text;
5210
5211#ifdef XIM_DEBUG
5212 xim_log("xim_reset()\n");
5213#endif
5214
5215 if (xic != NULL)
5216 {
5217 text = XmbResetIC(((GdkICPrivate *)xic)->xic);
5218 if (text != NULL && !(xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS))
5219 add_to_input_buf_csi((char_u *)text, strlen(text));
5220 else
5221 preedit_buf_len = 0;
5222 if (text != NULL)
5223 XFree(text);
5224 }
5225}
5226
5227/*ARGSUSED*/
5228 int
5229xim_queue_key_press_event(GdkEventKey *event, int down)
5230{
5231#ifdef XIM_DEBUG
5232 xim_log("xim_queue_key_press_event()\n");
5233#endif
5234
5235 if (preedit_buf_len <= 0)
5236 return FALSE;
5237 if (processing_queued_event)
5238 processing_queued_event = FALSE;
5239
5240 key_press_event_queue = g_slist_append(key_press_event_queue,
5241 gdk_event_copy((GdkEvent *)event));
5242 return TRUE;
5243}
5244
5245/*ARGSUSED*/
5246 static void
5247preedit_callback_setup(GdkIC *ic)
5248{
5249 XIC xxic;
5250 XVaNestedList preedit_attr;
5251 XIMCallback preedit_start_cb;
5252 XIMCallback preedit_draw_cb;
5253 XIMCallback preedit_caret_cb;
5254 XIMCallback preedit_done_cb;
5255
5256 xxic = ((GdkICPrivate*)xic)->xic;
5257 preedit_start_cb.callback = (XIMProc)preedit_start_cbproc;
5258 preedit_draw_cb.callback = (XIMProc)preedit_draw_cbproc;
5259 preedit_caret_cb.callback = (XIMProc)preedit_caret_cbproc;
5260 preedit_done_cb.callback = (XIMProc)preedit_done_cbproc;
5261 preedit_attr
5262 = XVaCreateNestedList (0,
5263 XNPreeditStartCallback, &preedit_start_cb,
5264 XNPreeditDrawCallback, &preedit_draw_cb,
5265 XNPreeditCaretCallback, &preedit_caret_cb,
5266 XNPreeditDoneCallback, &preedit_done_cb,
5267 0);
5268 XSetICValues (xxic, XNPreeditAttributes, preedit_attr, 0);
5269 XFree(preedit_attr);
5270}
5271
5272/*ARGSUSED*/
5273 static void
5274reset_state_setup(GdkIC *ic)
5275{
5276#ifdef USE_X11R6_XIM
5277 /* don't change the input context when we call reset */
5278 XSetICValues(((GdkICPrivate*)ic)->xic, XNResetState, XIMPreserveState, 0);
5279#endif
5280}
5281
5282 void
5283xim_init(void)
5284{
5285#ifdef XIM_DEBUG
5286 xim_log("xim_init()\n");
5287#endif
5288
5289 xic = NULL;
5290 xic_attr = NULL;
5291
5292 if (!gdk_im_ready())
5293 {
5294 if (p_verbose > 0)
5295 EMSG(_("E292: Input Method Server is not running"));
5296 return;
5297 }
5298 if ((xic_attr = gdk_ic_attr_new()) != NULL)
5299 {
5300#ifdef FEAT_XFONTSET
5301 gint width, height;
5302#endif
5303 int mask;
5304 GdkColormap *colormap;
5305 GdkICAttr *attr = xic_attr;
5306 int attrmask = (int)GDK_IC_ALL_REQ;
5307 GtkWidget *widget = gui.drawarea;
5308
5309 attr->style = (GdkIMStyle)xim_input_style;
5310 attr->client_window = gui.mainwin->window;
5311
5312 if ((colormap = gtk_widget_get_colormap(widget)) !=
5313 gtk_widget_get_default_colormap())
5314 {
5315 attrmask |= (int)GDK_IC_PREEDIT_COLORMAP;
5316 attr->preedit_colormap = colormap;
5317 }
5318 attrmask |= (int)GDK_IC_PREEDIT_FOREGROUND;
5319 attrmask |= (int)GDK_IC_PREEDIT_BACKGROUND;
5320 attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL];
5321 attr->preedit_background = widget->style->base[GTK_STATE_NORMAL];
5322
5323#ifdef FEAT_XFONTSET
5324 if ((xim_input_style & (int)GDK_IM_PREEDIT_MASK)
5325 == (int)GDK_IM_PREEDIT_POSITION)
5326 {
5327 if (gui.fontset == NOFONTSET
5328 || gui.fontset->type != GDK_FONT_FONTSET)
5329 {
5330 EMSG(_(e_overthespot));
5331 }
5332 else
5333 {
5334 gdk_window_get_size(widget->window, &width, &height);
5335
5336 attrmask |= (int)GDK_IC_PREEDIT_POSITION_REQ;
5337 attr->spot_location.x = TEXT_X(0);
5338 attr->spot_location.y = TEXT_Y(0);
5339 attr->preedit_area.x = gui.border_offset;
5340 attr->preedit_area.y = gui.border_offset;
5341 attr->preedit_area.width = width - 2*gui.border_offset;
5342 attr->preedit_area.height = height - 2*gui.border_offset;
5343 attr->preedit_fontset = gui.fontset;
5344 }
5345 }
5346
5347 if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5348 == (int)GDK_IM_STATUS_AREA)
5349 {
5350 if (gui.fontset == NOFONTSET
5351 || gui.fontset->type != GDK_FONT_FONTSET)
5352 {
5353 EMSG(_(e_overthespot));
5354 }
5355 else
5356 {
5357 gdk_window_get_size(gui.mainwin->window, &width, &height);
5358 attrmask |= (int)GDK_IC_STATUS_AREA_REQ;
5359 attr->status_area.x = 0;
5360 attr->status_area.y = height - gui.char_height - 1;
5361 attr->status_area.width = width;
5362 attr->status_area.height = gui.char_height;
5363 attr->status_fontset = gui.fontset;
5364 }
5365 }
5366 else if ((xim_input_style & (int)GDK_IM_STATUS_MASK)
5367 == (int)GDK_IM_STATUS_CALLBACKS)
5368 {
5369 /* FIXME */
5370 }
5371#endif
5372
5373 xic = gdk_ic_new(attr, (GdkICAttributesType)attrmask);
5374
5375 if (xic == NULL)
5376 EMSG(_(e_xim));
5377 else
5378 {
5379 mask = (int)gdk_window_get_events(widget->window);
5380 mask |= (int)gdk_ic_get_events(xic);
5381 gdk_window_set_events(widget->window, (GdkEventMask)mask);
5382 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5383 preedit_callback_setup(xic);
5384 reset_state_setup(xic);
5385 }
5386 }
5387}
5388
5389 void
5390im_shutdown(void)
5391{
5392#ifdef XIM_DEBUG
5393 xim_log("im_shutdown()\n");
5394#endif
5395
5396 if (xic != NULL)
5397 {
5398 gdk_im_end();
5399 gdk_ic_destroy(xic);
5400 xic = NULL;
5401 }
5402 xim_is_active = FALSE;
5403 xim_can_preediting = FALSE;
5404 preedit_start_col = MAXCOL;
5405 xim_has_preediting = FALSE;
5406}
5407
5408#endif /* FEAT_GUI_GTK */
5409
5410 int
5411xim_get_status_area_height()
5412{
5413#ifdef FEAT_GUI_GTK
5414 if (xim_input_style & (int)GDK_IM_STATUS_AREA)
5415 return gui.char_height;
Bram Moolenaar843ee412004-06-30 16:16:41 +00005416#elif defined FEAT_GUI_KDE
5417#warning FIXME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418#else
5419 if (status_area_enabled)
5420 return gui.char_height;
5421#endif
5422 return 0;
5423}
5424
5425/*
5426 * Get IM status. When IM is on, return TRUE. Else return FALSE.
5427 * FIXME: This doesn't work correctly: Having focus doesn't always mean XIM is
5428 * active, when not having focus XIM may still be active (e.g., when using a
5429 * tear-off menu item).
5430 */
5431 int
5432im_get_status()
5433{
5434# ifdef FEAT_GUI_GTK
5435 if (xim_input_style & (int)GDK_IM_PREEDIT_CALLBACKS)
5436 return xim_can_preediting;
5437# endif
5438 return xim_has_focus;
5439}
5440
5441# endif /* !HAVE_GTK2 */
5442
5443# if defined(FEAT_GUI_GTK) || defined(PROTO)
5444 int
5445im_is_preediting()
5446{
5447 return xim_has_preediting;
5448}
5449# endif
5450#endif /* FEAT_XIM */
5451
5452#if defined(FEAT_MBYTE) || defined(PROTO)
5453
5454/*
5455 * Setup "vcp" for conversion from "from" to "to".
5456 * The names must have been made canonical with enc_canonize().
5457 * vcp->vc_type must have been initialized to CONV_NONE.
5458 * Note: cannot be used for conversion from/to ucs-2 and ucs-4 (will use utf-8
5459 * instead).
5460 * Afterwards invoke with "from" and "to" equal to NULL to cleanup.
5461 * Return FAIL when conversion is not supported, OK otherwise.
5462 */
5463 int
5464convert_setup(vcp, from, to)
5465 vimconv_T *vcp;
5466 char_u *from;
5467 char_u *to;
5468{
5469 int from_prop;
5470 int to_prop;
5471
5472 /* Reset to no conversion. */
5473# ifdef USE_ICONV
5474 if (vcp->vc_type == CONV_ICONV && vcp->vc_fd != (iconv_t)-1)
5475 iconv_close(vcp->vc_fd);
5476# endif
5477 vcp->vc_type = CONV_NONE;
5478 vcp->vc_factor = 1;
5479 vcp->vc_fail = FALSE;
5480
5481 /* No conversion when one of the names is empty or they are equal. */
5482 if (from == NULL || *from == NUL || to == NULL || *to == NUL
5483 || STRCMP(from, to) == 0)
5484 return OK;
5485
5486 from_prop = enc_canon_props(from);
5487 to_prop = enc_canon_props(to);
5488 if ((from_prop & ENC_LATIN1) && (to_prop & ENC_UNICODE))
5489 {
5490 /* Internal latin1 -> utf-8 conversion. */
5491 vcp->vc_type = CONV_TO_UTF8;
5492 vcp->vc_factor = 2; /* up to twice as long */
5493 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005494 else if ((from_prop & ENC_LATIN9) && (to_prop & ENC_UNICODE))
5495 {
5496 /* Internal latin9 -> utf-8 conversion. */
5497 vcp->vc_type = CONV_9_TO_UTF8;
5498 vcp->vc_factor = 3; /* up to three as long (euro sign) */
5499 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN1))
5501 {
5502 /* Internal utf-8 -> latin1 conversion. */
5503 vcp->vc_type = CONV_TO_LATIN1;
5504 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005505 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_LATIN9))
5506 {
5507 /* Internal utf-8 -> latin9 conversion. */
5508 vcp->vc_type = CONV_TO_LATIN9;
5509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510#ifdef WIN3264
5511 /* Win32-specific codepage <-> codepage conversion without iconv. */
5512 else if (((from_prop & ENC_UNICODE) || encname2codepage(from) > 0)
5513 && ((to_prop & ENC_UNICODE) || encname2codepage(to) > 0))
5514 {
5515 vcp->vc_type = CONV_CODEPAGE;
5516 vcp->vc_factor = 2; /* up to twice as long */
5517 vcp->vc_cpfrom = (from_prop & ENC_UNICODE) ? 0 : encname2codepage(from);
5518 vcp->vc_cpto = (to_prop & ENC_UNICODE) ? 0 : encname2codepage(to);
5519 }
5520#endif
5521#ifdef MACOS_X
5522 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_LATIN1))
5523 {
5524 vcp->vc_type = CONV_MAC_LATIN1;
5525 }
5526 else if ((from_prop & ENC_MACROMAN) && (to_prop & ENC_UNICODE))
5527 {
5528 vcp->vc_type = CONV_MAC_UTF8;
5529 vcp->vc_factor = 2; /* up to twice as long */
5530 }
5531 else if ((from_prop & ENC_LATIN1) && (to_prop & ENC_MACROMAN))
5532 {
5533 vcp->vc_type = CONV_LATIN1_MAC;
5534 }
5535 else if ((from_prop & ENC_UNICODE) && (to_prop & ENC_MACROMAN))
5536 {
5537 vcp->vc_type = CONV_UTF8_MAC;
5538 }
5539#endif
5540# ifdef USE_ICONV
5541 else
5542 {
5543 /* Use iconv() for conversion. */
5544 vcp->vc_fd = (iconv_t)my_iconv_open(
5545 (to_prop & ENC_UNICODE) ? (char_u *)"utf-8" : to,
5546 (from_prop & ENC_UNICODE) ? (char_u *)"utf-8" : from);
5547 if (vcp->vc_fd != (iconv_t)-1)
5548 {
5549 vcp->vc_type = CONV_ICONV;
5550 vcp->vc_factor = 4; /* could be longer too... */
5551 }
5552 }
5553# endif
5554 if (vcp->vc_type == CONV_NONE)
5555 return FAIL;
5556 return OK;
5557}
5558
5559#if defined(FEAT_GUI) || defined(AMIGA) || defined(WIN3264) \
5560 || defined(MSDOS) || defined(PROTO)
5561/*
5562 * Do conversion on typed input characters in-place.
5563 * The input and output are not NUL terminated!
5564 * Returns the length after conversion.
5565 */
5566 int
5567convert_input(ptr, len, maxlen)
5568 char_u *ptr;
5569 int len;
5570 int maxlen;
5571{
5572 return convert_input_safe(ptr, len, maxlen, NULL, NULL);
5573}
5574#endif
5575
5576/*
5577 * Like convert_input(), but when there is an incomplete byte sequence at the
5578 * end return that as an allocated string in "restp" and set "*restlenp" to
5579 * the length. If "restp" is NULL it is not used.
5580 */
5581 int
5582convert_input_safe(ptr, len, maxlen, restp, restlenp)
5583 char_u *ptr;
5584 int len;
5585 int maxlen;
5586 char_u **restp;
5587 int *restlenp;
5588{
5589 char_u *d;
5590 int dlen = len;
5591 int unconvertlen = 0;
5592
5593 d = string_convert_ext(&input_conv, ptr, &dlen,
5594 restp == NULL ? NULL : &unconvertlen);
5595 if (d != NULL)
5596 {
5597 if (dlen <= maxlen)
5598 {
5599 if (unconvertlen > 0)
5600 {
5601 /* Move the unconverted characters to allocated memory. */
5602 *restp = alloc(unconvertlen);
5603 if (*restp != NULL)
5604 mch_memmove(*restp, ptr + len - unconvertlen, unconvertlen);
5605 *restlenp = unconvertlen;
5606 }
5607 mch_memmove(ptr, d, dlen);
5608 }
5609 else
5610 /* result is too long, keep the unconverted text (the caller must
5611 * have done something wrong!) */
5612 dlen = len;
5613 vim_free(d);
5614 }
5615 return dlen;
5616}
5617
5618#if defined(MACOS_X)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005619/* This is in os_mac_conv.c. */
5620extern char_u *mac_string_convert __ARGS((char_u *ptr, int len, int *lenp, int fail_on_error, int from, int to, int *unconvlenp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621#endif
5622
5623/*
5624 * Convert text "ptr[*lenp]" according to "vcp".
5625 * Returns the result in allocated memory and sets "*lenp".
5626 * When "lenp" is NULL, use NUL terminated strings.
5627 * Illegal chars are often changed to "?", unless vcp->vc_fail is set.
5628 * When something goes wrong, NULL is returned and "*lenp" is unchanged.
5629 */
5630 char_u *
5631string_convert(vcp, ptr, lenp)
5632 vimconv_T *vcp;
5633 char_u *ptr;
5634 int *lenp;
5635{
5636 return string_convert_ext(vcp, ptr, lenp, NULL);
5637}
5638
5639/*
5640 * Like string_convert(), but when "unconvlenp" is not NULL and there are is
5641 * an incomplete sequence at the end it is not converted and "*unconvlenp" is
5642 * set to the number of remaining bytes.
5643 */
5644 char_u *
5645string_convert_ext(vcp, ptr, lenp, unconvlenp)
5646 vimconv_T *vcp;
5647 char_u *ptr;
5648 int *lenp;
5649 int *unconvlenp;
5650{
5651 char_u *retval = NULL;
5652 char_u *d;
5653 int len;
5654 int i;
5655 int l;
5656 int c;
5657
5658 if (lenp == NULL)
5659 len = (int)STRLEN(ptr);
5660 else
5661 len = *lenp;
5662 if (len == 0)
5663 return vim_strsave((char_u *)"");
5664
5665 switch (vcp->vc_type)
5666 {
5667 case CONV_TO_UTF8: /* latin1 to utf-8 conversion */
5668 retval = alloc(len * 2 + 1);
5669 if (retval == NULL)
5670 break;
5671 d = retval;
5672 for (i = 0; i < len; ++i)
5673 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005674 c = ptr[i];
5675 if (c < 0x80)
5676 *d++ = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 else
5678 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005679 *d++ = 0xc0 + ((unsigned)c >> 6);
5680 *d++ = 0x80 + (c & 0x3f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 }
5682 }
5683 *d = NUL;
5684 if (lenp != NULL)
5685 *lenp = (int)(d - retval);
5686 break;
5687
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005688 case CONV_9_TO_UTF8: /* latin9 to utf-8 conversion */
5689 retval = alloc(len * 3 + 1);
5690 if (retval == NULL)
5691 break;
5692 d = retval;
5693 for (i = 0; i < len; ++i)
5694 {
5695 c = ptr[i];
5696 switch (c)
5697 {
5698 case 0xa4: c = 0x20ac; break; /* euro */
5699 case 0xa6: c = 0x0160; break; /* S hat */
5700 case 0xa8: c = 0x0161; break; /* S -hat */
5701 case 0xb4: c = 0x017d; break; /* Z hat */
5702 case 0xb8: c = 0x017e; break; /* Z -hat */
5703 case 0xbc: c = 0x0152; break; /* OE */
5704 case 0xbd: c = 0x0153; break; /* oe */
5705 case 0xbe: c = 0x0178; break; /* Y */
5706 }
5707 d += utf_char2bytes(c, d);
5708 }
5709 *d = NUL;
5710 if (lenp != NULL)
5711 *lenp = (int)(d - retval);
5712 break;
5713
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 case CONV_TO_LATIN1: /* utf-8 to latin1 conversion */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005715 case CONV_TO_LATIN9: /* utf-8 to latin9 conversion */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 retval = alloc(len + 1);
5717 if (retval == NULL)
5718 break;
5719 d = retval;
5720 for (i = 0; i < len; ++i)
5721 {
5722 l = utf_ptr2len_check(ptr + i);
5723 if (l == 0)
5724 *d++ = NUL;
5725 else if (l == 1)
5726 {
5727 if (unconvlenp != NULL && utf8len_tab[ptr[i]] > len - i)
5728 {
5729 /* Incomplete sequence at the end. */
5730 *unconvlenp = len - i;
5731 break;
5732 }
5733 *d++ = ptr[i];
5734 }
5735 else
5736 {
5737 c = utf_ptr2char(ptr + i);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005738 if (vcp->vc_type == CONV_TO_LATIN9)
5739 switch (c)
5740 {
5741 case 0x20ac: c = 0xa4; break; /* euro */
5742 case 0x0160: c = 0xa6; break; /* S hat */
5743 case 0x0161: c = 0xa8; break; /* S -hat */
5744 case 0x017d: c = 0xb4; break; /* Z hat */
5745 case 0x017e: c = 0xb8; break; /* Z -hat */
5746 case 0x0152: c = 0xbc; break; /* OE */
5747 case 0x0153: c = 0xbd; break; /* oe */
5748 case 0x0178: c = 0xbe; break; /* Y */
5749 case 0xa4:
5750 case 0xa6:
5751 case 0xa8:
5752 case 0xb4:
5753 case 0xb8:
5754 case 0xbc:
5755 case 0xbd:
5756 case 0xbe: c = 0x100; break; /* not in latin9 */
5757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 if (!utf_iscomposing(c)) /* skip composing chars */
5759 {
5760 if (c < 0x100)
5761 *d++ = c;
5762 else if (vcp->vc_fail)
5763 {
5764 vim_free(retval);
5765 return NULL;
5766 }
5767 else
5768 {
5769 *d++ = 0xbf;
5770 if (utf_char2cells(c) > 1)
5771 *d++ = '?';
5772 }
5773 }
5774 i += l - 1;
5775 }
5776 }
5777 *d = NUL;
5778 if (lenp != NULL)
5779 *lenp = (int)(d - retval);
5780 break;
5781
5782# ifdef MACOS_X
5783 case CONV_MAC_LATIN1:
5784 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005785 'm', 'l', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 break;
5787
5788 case CONV_LATIN1_MAC:
5789 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005790 'l', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 break;
5792
5793 case CONV_MAC_UTF8:
5794 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005795 'm', 'u', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796 break;
5797
5798 case CONV_UTF8_MAC:
5799 retval = mac_string_convert(ptr, len, lenp, vcp->vc_fail,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005800 'u', 'm', unconvlenp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 break;
5802# endif
5803
5804# ifdef USE_ICONV
5805 case CONV_ICONV: /* conversion with output_conv.vc_fd */
5806 retval = iconv_string(vcp, ptr, len, unconvlenp);
5807 if (retval != NULL && lenp != NULL)
5808 *lenp = (int)STRLEN(retval);
5809 break;
5810# endif
5811# ifdef WIN3264
5812 case CONV_CODEPAGE: /* codepage -> codepage */
5813 {
5814 int retlen;
5815 int tmp_len;
5816 short_u *tmp;
5817
5818 /* 1. codepage/UTF-8 -> ucs-2. */
5819 if (vcp->vc_cpfrom == 0)
5820 tmp_len = utf8_to_ucs2(ptr, len, NULL, NULL);
5821 else
5822 tmp_len = MultiByteToWideChar(vcp->vc_cpfrom, 0,
5823 ptr, len, 0, 0);
5824 tmp = (short_u *)alloc(sizeof(short_u) * tmp_len);
5825 if (tmp == NULL)
5826 break;
5827 if (vcp->vc_cpfrom == 0)
5828 utf8_to_ucs2(ptr, len, tmp, unconvlenp);
5829 else
5830 MultiByteToWideChar(vcp->vc_cpfrom, 0, ptr, len, tmp, tmp_len);
5831
5832 /* 2. ucs-2 -> codepage/UTF-8. */
5833 if (vcp->vc_cpto == 0)
5834 retlen = ucs2_to_utf8(tmp, tmp_len, NULL);
5835 else
5836 retlen = WideCharToMultiByte(vcp->vc_cpto, 0,
5837 tmp, tmp_len, 0, 0, 0, 0);
5838 retval = alloc(retlen + 1);
5839 if (retval != NULL)
5840 {
5841 if (vcp->vc_cpto == 0)
5842 ucs2_to_utf8(tmp, tmp_len, retval);
5843 else
5844 WideCharToMultiByte(vcp->vc_cpto, 0,
5845 tmp, tmp_len, retval, retlen, 0, 0);
5846 retval[retlen] = NUL;
5847 if (lenp != NULL)
5848 *lenp = retlen;
5849 }
5850 vim_free(tmp);
5851 break;
5852 }
5853# endif
5854 }
5855
5856 return retval;
5857}
5858#endif