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