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