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