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