Mercurial > hg > xemacs-beta
annotate src/unicode.c @ 5407:7ba892d101ce
Convert remainder in "tests" with plain text GPLv2 to GPLv3
| author | Mats Lidell <matsl@xemacs.org> |
|---|---|
| date | Tue, 19 Oct 2010 22:33:36 +0200 |
| parents | 308d34e9f07d |
| children | 8d29f1c4bb98 |
| rev | line source |
|---|---|
| 771 | 1 /* Code to handle Unicode conversion. |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2010 Ben Wing. |
| 771 | 3 |
| 4 This file is part of XEmacs. | |
| 5 | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5157
diff
changeset
|
6 XEmacs is free software: you can redistribute it and/or modify it |
| 771 | 7 under the terms of the GNU General Public License as published by the |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5157
diff
changeset
|
8 Free Software Foundation, either version 3 of the License, or (at your |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5157
diff
changeset
|
9 option) any later version. |
| 771 | 10 |
| 11 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
| 12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
| 14 for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5157
diff
changeset
|
17 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 771 | 18 |
| 19 /* Synched up with: FSF 20.3. Not in FSF. */ | |
| 20 | |
| 21 /* Authorship: | |
| 22 | |
| 23 Current primary author: Ben Wing <ben@xemacs.org> | |
| 24 | |
| 25 Written by Ben Wing <ben@xemacs.org>, June, 2001. | |
| 26 Separated out into this file, August, 2001. | |
| 27 Includes Unicode coding systems, some parts of which have been written | |
| 877 | 28 by someone else. #### Morioka and Hayashi, I think. |
| 771 | 29 |
| 30 As of September 2001, the detection code is here and abstraction of the | |
| 877 | 31 detection system is finished. The unicode detectors have been rewritten |
| 771 | 32 to include multiple levels of likelihood. |
| 33 */ | |
| 34 | |
| 35 #include <config.h> | |
| 36 #include "lisp.h" | |
| 37 | |
| 38 #include "charset.h" | |
| 39 #include "file-coding.h" | |
| 40 #include "opaque.h" | |
| 41 | |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
42 #include "buffer.h" |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
43 #include "rangetab.h" |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
44 #include "extents.h" |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
45 |
| 771 | 46 #include "sysfile.h" |
| 47 | |
| 2367 | 48 /* For more info about how Unicode works under Windows, see intl-win32.c. */ |
| 49 | |
| 50 /* Info about Unicode translation tables [ben]: | |
| 51 | |
| 52 FORMAT: | |
| 53 ------- | |
| 54 | |
| 55 We currently use the following format for tables: | |
| 56 | |
| 57 If dimension == 1, to_unicode_table is a 96-element array of ints | |
| 58 (Unicode code points); else, it's a 96-element array of int * pointers, | |
| 59 each of which points to a 96-element array of ints. If no elements in a | |
| 60 row have been filled in, the pointer will point to a default empty | |
| 61 table; that way, memory usage is more reasonable but lookup still fast. | |
| 62 | |
| 63 -- If from_unicode_levels == 1, from_unicode_table is a 256-element | |
| 64 array of shorts (octet 1 in high byte, octet 2 in low byte; we don't | |
| 65 store Ichars directly to save space). | |
| 66 | |
| 67 -- If from_unicode_levels == 2, from_unicode_table is a 256-element | |
| 68 array of short * pointers, each of which points to a 256-element array | |
| 69 of shorts. | |
| 70 | |
| 71 -- If from_unicode_levels == 3, from_unicode_table is a 256-element | |
| 72 array of short ** pointers, each of which points to a 256-element array | |
| 73 of short * pointers, each of which points to a 256-element array of | |
| 74 shorts. | |
| 75 | |
| 76 -- If from_unicode_levels == 4, same thing but one level deeper. | |
| 77 | |
| 78 Just as for to_unicode_table, we use default tables to fill in all | |
| 79 entries with no values in them. | |
| 80 | |
| 81 #### An obvious space-saving optimization is to use variable-sized | |
| 82 tables, where each table instead of just being a 256-element array, is a | |
| 83 structure with a start value, an end value, and a variable number of | |
| 84 entries (END - START + 1). Only 8 bits are needed for END and START, | |
| 85 and could be stored at the end to avoid alignment problems. However, | |
| 86 before charging off and implementing this, we need to consider whether | |
| 87 it's worth it: | |
| 88 | |
| 89 (1) Most tables will be highly localized in which code points are | |
| 90 defined, heavily reducing the possible memory waste. Before doing any | |
| 91 rewriting, write some code to see how much memory is actually being | |
| 92 wasted (i.e. ratio of empty entries to total # of entries) and only | |
| 93 start rewriting if it's unacceptably high. You have to check over all | |
| 94 charsets. | |
| 95 | |
| 96 (2) Since entries are usually added one at a time, you have to be very | |
| 97 careful when creating the tables to avoid realloc()/free() thrashing in | |
| 98 the common case when you are in an area of high localization and are | |
| 99 going to end up using most entries in the table. You'd certainly want | |
| 100 to allow only certain sizes, not arbitrary ones (probably powers of 2, | |
| 101 where you want the entire block including the START/END values to fit | |
| 102 into a power of 2, minus any malloc overhead if there is any -- there's | |
| 103 none under gmalloc.c, and probably most system malloc() functions are | |
| 104 quite smart nowadays and also have no overhead). You could optimize | |
| 105 somewhat during the in-C initializations, because you can compute the | |
| 106 actual usage of various tables by scanning the entries you're going to | |
| 107 add in a separate pass before adding them. (You could actually do the | |
| 108 same thing when entries are added on the Lisp level by making the | |
| 109 assumption that all the entries will come in one after another before | |
| 110 any use is made of the data. So as they're coming in, you just store | |
| 111 them in a big long list, and the first time you need to retrieve an | |
| 112 entry, you compute the whole table at once.) You'd still have to deal | |
| 113 with the possibility of later entries coming in, though. | |
| 114 | |
| 115 (3) You do lose some speed using START/END values, since you need a | |
| 116 couple of comparisons at each level. This could easily make each single | |
| 117 lookup become 3-4 times slower. The Unicode book considers this a big | |
| 118 issue, and recommends against variable-sized tables for this reason; | |
| 119 however, they almost certainly have in mind applications that primarily | |
| 120 involve conversion of large amounts of data. Most Unicode strings that | |
| 121 are translated in XEmacs are fairly small. The only place where this | |
| 122 might matter is in loading large files -- e.g. a 3-megabyte | |
| 123 Unicode-encoded file. So think about this, and maybe do a trial | |
| 124 implementation where you don't worry too much about the intricacies of | |
| 125 (2) and just implement some basic "multiply by 1.5" trick or something | |
| 126 to do the resizing. There is a very good FAQ on Unicode called | |
| 127 something like the Linux-Unicode How-To (it should be part of the Linux | |
| 128 How-To's, I think), that lists the url of a guy with a whole bunch of | |
| 129 unicode files you can use to stress-test your implementations, and he's | |
| 130 highly likely to have a good multi-megabyte Unicode-encoded file (with | |
| 131 normal text in it -- if you created your own just by creating repeated | |
| 132 strings of letters and numbers, you probably wouldn't get accurate | |
| 133 results). | |
| 134 | |
| 135 INITIALIZATION: | |
| 136 --------------- | |
| 137 | |
| 138 There are advantages and disadvantages to loading the tables at | |
| 139 run-time. | |
| 140 | |
| 141 Advantages: | |
| 142 | |
| 143 They're big, and it's very fast to recreate them (a fraction of a second | |
| 144 on modern processors). | |
| 145 | |
| 146 Disadvantages: | |
| 147 | |
| 148 (1) User-defined charsets: It would be inconvenient to require all | |
| 149 dumped user-defined charsets to be reloaded at init time. | |
| 150 | |
| 151 NB With run-time loading, we load in init-mule-at-startup, in | |
| 152 mule-cmds.el. This is called from startup.el, which is quite late in | |
| 153 the initialization process -- but data-directory isn't set until then. | |
| 154 With dump-time loading, you still can't dump in a Japanese directory | |
| 155 (again, until we move to Unicode internally), but this is not such an | |
| 156 imposition. | |
| 157 | |
| 158 | |
| 159 */ | |
| 160 | |
| 771 | 161 /* #### WARNING! The current sledgehammer routines have a fundamental |
| 162 problem in that they can't handle two characters mapping to a | |
| 163 single Unicode codepoint or vice-versa in a single charset table. | |
| 164 It's not clear there is any way to handle this and still make the | |
| 877 | 165 sledgehammer routines useful. |
| 166 | |
| 167 Inquiring Minds Want To Know Dept: does the above WARNING mean that | |
| 168 _if_ it happens, then it will signal error, or then it will do | |
| 169 something evil and unpredictable? Signaling an error is OK: for | |
| 170 all national standards, the national to Unicode map is an inclusion | |
| 171 (1-to-1). Any character set that does not behave that way is | |
| 1318 | 172 broken according to the Unicode standard. |
| 173 | |
| 2500 | 174 Answer: You will get an ABORT(), since the purpose of the sledgehammer |
| 1318 | 175 routines is self-checking. The above problem with non-1-to-1 mapping |
| 176 occurs in the Big5 tables, as provided by the Unicode Consortium. */ | |
| 877 | 177 |
| 771 | 178 /* #define SLEDGEHAMMER_CHECK_UNICODE */ |
| 179 | |
| 180 /* When MULE is not defined, we may still need some Unicode support -- | |
| 181 in particular, some Windows API's always want Unicode, and the way | |
| 182 we've set up the Unicode encapsulation, we may as well go ahead and | |
| 183 always use the Unicode versions of split API's. (It would be | |
| 184 trickier to not use them, and pointless -- under NT, the ANSI API's | |
| 185 call the Unicode ones anyway, so in the case of structures, we'd be | |
| 186 converting from Unicode to ANSI structures, only to have the OS | |
| 187 convert them back.) */ | |
| 188 | |
| 189 Lisp_Object Qunicode; | |
| 4096 | 190 Lisp_Object Qutf_16, Qutf_8, Qucs_4, Qutf_7, Qutf_32; |
| 771 | 191 Lisp_Object Qneed_bom; |
| 192 | |
| 193 Lisp_Object Qutf_16_little_endian, Qutf_16_bom; | |
| 194 Lisp_Object Qutf_16_little_endian_bom; | |
| 195 | |
| 985 | 196 Lisp_Object Qutf_8_bom; |
| 197 | |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
198 #ifdef MULE |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
199 /* These range tables are not directly accessible from Lisp: */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
200 static Lisp_Object Vunicode_invalid_and_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
201 static Lisp_Object Vutf_8_invalid_and_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
202 static Lisp_Object Vunicode_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
203 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
204 static Lisp_Object Vunicode_query_string, Vunicode_invalid_string, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
205 Vutf_8_invalid_string; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
206 #endif /* MULE */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
207 |
| 3952 | 208 /* See the Unicode FAQ, http://www.unicode.org/faq/utf_bom.html#35 for this |
| 209 algorithm. | |
| 210 | |
| 211 (They also give another, really verbose one, as part of their explanation | |
| 212 of the various planes of the encoding, but we won't use that.) */ | |
| 213 | |
| 214 #define UTF_16_LEAD_OFFSET (0xD800 - (0x10000 >> 10)) | |
| 215 #define UTF_16_SURROGATE_OFFSET (0x10000 - (0xD800 << 10) - 0xDC00) | |
| 216 | |
| 217 #define utf_16_surrogates_to_code(lead, trail) \ | |
| 218 (((lead) << 10) + (trail) + UTF_16_SURROGATE_OFFSET) | |
| 219 | |
| 220 #define CODE_TO_UTF_16_SURROGATES(codepoint, lead, trail) do { \ | |
| 221 int __ctu16s_code = (codepoint); \ | |
| 222 lead = UTF_16_LEAD_OFFSET + (__ctu16s_code >> 10); \ | |
| 223 trail = 0xDC00 + (__ctu16s_code & 0x3FF); \ | |
| 224 } while (0) | |
| 225 | |
| 771 | 226 #ifdef MULE |
| 227 | |
| 3352 | 228 /* Using ints for to_unicode is OK (as long as they are >= 32 bits). |
| 229 In from_unicode, we're converting from Mule characters, which means | |
| 230 that the values being converted to are only 96x96, and we can save | |
| 231 space by using shorts (signedness doesn't matter). */ | |
| 771 | 232 static int *to_unicode_blank_1; |
| 233 static int **to_unicode_blank_2; | |
| 234 | |
| 235 static short *from_unicode_blank_1; | |
| 236 static short **from_unicode_blank_2; | |
| 237 static short ***from_unicode_blank_3; | |
| 238 static short ****from_unicode_blank_4; | |
| 239 | |
| 1204 | 240 static const struct memory_description to_unicode_level_0_desc_1[] = { |
| 771 | 241 { XD_END } |
| 242 }; | |
| 243 | |
| 1204 | 244 static const struct sized_memory_description to_unicode_level_0_desc = { |
| 245 sizeof (int), to_unicode_level_0_desc_1 | |
| 771 | 246 }; |
| 247 | |
| 1204 | 248 static const struct memory_description to_unicode_level_1_desc_1[] = { |
| 2551 | 249 { XD_BLOCK_PTR, 0, 96, { &to_unicode_level_0_desc } }, |
| 771 | 250 { XD_END } |
| 251 }; | |
| 252 | |
| 1204 | 253 static const struct sized_memory_description to_unicode_level_1_desc = { |
| 254 sizeof (void *), to_unicode_level_1_desc_1 | |
| 771 | 255 }; |
| 256 | |
| 1204 | 257 static const struct memory_description to_unicode_description_1[] = { |
| 2551 | 258 { XD_BLOCK_PTR, 1, 96, { &to_unicode_level_0_desc } }, |
| 259 { XD_BLOCK_PTR, 2, 96, { &to_unicode_level_1_desc } }, | |
| 771 | 260 { XD_END } |
| 261 }; | |
| 262 | |
| 263 /* Not static because each charset has a set of to and from tables and | |
| 264 needs to describe them to pdump. */ | |
| 1204 | 265 const struct sized_memory_description to_unicode_description = { |
| 266 sizeof (void *), to_unicode_description_1 | |
| 267 }; | |
| 268 | |
| 2367 | 269 /* Used only for to_unicode_blank_2 */ |
| 270 static const struct memory_description to_unicode_level_2_desc_1[] = { | |
| 2551 | 271 { XD_BLOCK_PTR, 0, 96, { &to_unicode_level_1_desc } }, |
| 2367 | 272 { XD_END } |
| 273 }; | |
| 274 | |
| 1204 | 275 static const struct memory_description from_unicode_level_0_desc_1[] = { |
| 771 | 276 { XD_END } |
| 277 }; | |
| 278 | |
| 1204 | 279 static const struct sized_memory_description from_unicode_level_0_desc = { |
| 280 sizeof (short), from_unicode_level_0_desc_1 | |
| 771 | 281 }; |
| 282 | |
| 1204 | 283 static const struct memory_description from_unicode_level_1_desc_1[] = { |
| 2551 | 284 { XD_BLOCK_PTR, 0, 256, { &from_unicode_level_0_desc } }, |
| 771 | 285 { XD_END } |
| 286 }; | |
| 287 | |
| 1204 | 288 static const struct sized_memory_description from_unicode_level_1_desc = { |
| 289 sizeof (void *), from_unicode_level_1_desc_1 | |
| 771 | 290 }; |
| 291 | |
| 1204 | 292 static const struct memory_description from_unicode_level_2_desc_1[] = { |
| 2551 | 293 { XD_BLOCK_PTR, 0, 256, { &from_unicode_level_1_desc } }, |
| 771 | 294 { XD_END } |
| 295 }; | |
| 296 | |
| 1204 | 297 static const struct sized_memory_description from_unicode_level_2_desc = { |
| 298 sizeof (void *), from_unicode_level_2_desc_1 | |
| 771 | 299 }; |
| 300 | |
| 1204 | 301 static const struct memory_description from_unicode_level_3_desc_1[] = { |
| 2551 | 302 { XD_BLOCK_PTR, 0, 256, { &from_unicode_level_2_desc } }, |
| 771 | 303 { XD_END } |
| 304 }; | |
| 305 | |
| 1204 | 306 static const struct sized_memory_description from_unicode_level_3_desc = { |
| 307 sizeof (void *), from_unicode_level_3_desc_1 | |
| 771 | 308 }; |
| 309 | |
| 1204 | 310 static const struct memory_description from_unicode_description_1[] = { |
| 2551 | 311 { XD_BLOCK_PTR, 1, 256, { &from_unicode_level_0_desc } }, |
| 312 { XD_BLOCK_PTR, 2, 256, { &from_unicode_level_1_desc } }, | |
| 313 { XD_BLOCK_PTR, 3, 256, { &from_unicode_level_2_desc } }, | |
| 314 { XD_BLOCK_PTR, 4, 256, { &from_unicode_level_3_desc } }, | |
| 771 | 315 { XD_END } |
| 316 }; | |
| 317 | |
| 318 /* Not static because each charset has a set of to and from tables and | |
| 319 needs to describe them to pdump. */ | |
| 1204 | 320 const struct sized_memory_description from_unicode_description = { |
| 321 sizeof (void *), from_unicode_description_1 | |
| 771 | 322 }; |
| 323 | |
| 2367 | 324 /* Used only for from_unicode_blank_4 */ |
| 325 static const struct memory_description from_unicode_level_4_desc_1[] = { | |
| 2551 | 326 { XD_BLOCK_PTR, 0, 256, { &from_unicode_level_3_desc } }, |
| 2367 | 327 { XD_END } |
| 328 }; | |
| 329 | |
| 771 | 330 static Lisp_Object_dynarr *unicode_precedence_dynarr; |
| 331 | |
| 1204 | 332 static const struct memory_description lod_description_1[] = { |
| 333 XD_DYNARR_DESC (Lisp_Object_dynarr, &lisp_object_description), | |
| 771 | 334 { XD_END } |
| 335 }; | |
| 336 | |
| 1204 | 337 static const struct sized_memory_description lisp_object_dynarr_description = { |
| 771 | 338 sizeof (Lisp_Object_dynarr), |
| 339 lod_description_1 | |
| 340 }; | |
| 341 | |
| 342 Lisp_Object Vlanguage_unicode_precedence_list; | |
| 343 Lisp_Object Vdefault_unicode_precedence_list; | |
| 344 | |
| 345 Lisp_Object Qignore_first_column; | |
| 346 | |
| 3439 | 347 Lisp_Object Vcurrent_jit_charset; |
| 348 Lisp_Object Qlast_allocated_character; | |
| 349 Lisp_Object Qccl_encode_to_ucs_2; | |
| 350 | |
| 4268 | 351 Lisp_Object Vnumber_of_jit_charsets; |
| 352 Lisp_Object Vlast_jit_charset_final; | |
| 353 Lisp_Object Vcharset_descr; | |
| 354 | |
| 355 | |
| 771 | 356 |
| 357 /************************************************************************/ | |
| 358 /* Unicode implementation */ | |
| 359 /************************************************************************/ | |
| 360 | |
| 361 #define BREAKUP_UNICODE_CODE(val, u1, u2, u3, u4, levels) \ | |
| 362 do { \ | |
| 363 int buc_val = (val); \ | |
| 364 \ | |
| 365 (u1) = buc_val >> 24; \ | |
| 366 (u2) = (buc_val >> 16) & 255; \ | |
| 367 (u3) = (buc_val >> 8) & 255; \ | |
| 368 (u4) = buc_val & 255; \ | |
| 369 (levels) = (buc_val <= 0xFF ? 1 : \ | |
| 370 buc_val <= 0xFFFF ? 2 : \ | |
| 371 buc_val <= 0xFFFFFF ? 3 : \ | |
| 372 4); \ | |
| 373 } while (0) | |
| 374 | |
| 375 static void | |
| 376 init_blank_unicode_tables (void) | |
| 377 { | |
| 378 int i; | |
| 379 | |
| 380 from_unicode_blank_1 = xnew_array (short, 256); | |
| 381 from_unicode_blank_2 = xnew_array (short *, 256); | |
| 382 from_unicode_blank_3 = xnew_array (short **, 256); | |
| 383 from_unicode_blank_4 = xnew_array (short ***, 256); | |
| 384 for (i = 0; i < 256; i++) | |
| 385 { | |
| 877 | 386 /* #### IMWTK: Why does using -1 here work? Simply because there are |
| 1318 | 387 no existing 96x96 charsets? |
| 388 | |
| 389 Answer: I don't understand the concern. -1 indicates there is no | |
| 390 entry for this particular codepoint, which is always the case for | |
| 391 blank tables. */ | |
| 771 | 392 from_unicode_blank_1[i] = (short) -1; |
| 393 from_unicode_blank_2[i] = from_unicode_blank_1; | |
| 394 from_unicode_blank_3[i] = from_unicode_blank_2; | |
| 395 from_unicode_blank_4[i] = from_unicode_blank_3; | |
| 396 } | |
| 397 | |
| 398 to_unicode_blank_1 = xnew_array (int, 96); | |
| 399 to_unicode_blank_2 = xnew_array (int *, 96); | |
| 400 for (i = 0; i < 96; i++) | |
| 401 { | |
| 877 | 402 /* Here -1 is guaranteed OK. */ |
| 771 | 403 to_unicode_blank_1[i] = -1; |
| 404 to_unicode_blank_2[i] = to_unicode_blank_1; | |
| 405 } | |
| 406 } | |
| 407 | |
| 408 static void * | |
| 409 create_new_from_unicode_table (int level) | |
| 410 { | |
| 411 switch (level) | |
| 412 { | |
| 413 /* WARNING: If you are thinking of compressing these, keep in | |
| 414 mind that sizeof (short) does not equal sizeof (short *). */ | |
| 415 case 1: | |
| 416 { | |
| 417 short *newtab = xnew_array (short, 256); | |
| 418 memcpy (newtab, from_unicode_blank_1, 256 * sizeof (short)); | |
| 419 return newtab; | |
| 420 } | |
| 421 case 2: | |
| 422 { | |
| 423 short **newtab = xnew_array (short *, 256); | |
| 424 memcpy (newtab, from_unicode_blank_2, 256 * sizeof (short *)); | |
| 425 return newtab; | |
| 426 } | |
| 427 case 3: | |
| 428 { | |
| 429 short ***newtab = xnew_array (short **, 256); | |
| 430 memcpy (newtab, from_unicode_blank_3, 256 * sizeof (short **)); | |
| 431 return newtab; | |
| 432 } | |
| 433 case 4: | |
| 434 { | |
| 435 short ****newtab = xnew_array (short ***, 256); | |
| 436 memcpy (newtab, from_unicode_blank_4, 256 * sizeof (short ***)); | |
| 437 return newtab; | |
| 438 } | |
| 439 default: | |
| 2500 | 440 ABORT (); |
| 771 | 441 return 0; |
| 442 } | |
| 443 } | |
| 444 | |
| 877 | 445 /* Allocate and blank the tables. |
| 1318 | 446 Loading them up is done by load-unicode-mapping-table. */ |
| 771 | 447 void |
| 448 init_charset_unicode_tables (Lisp_Object charset) | |
| 449 { | |
| 450 if (XCHARSET_DIMENSION (charset) == 1) | |
| 451 { | |
| 452 int *to_table = xnew_array (int, 96); | |
| 453 memcpy (to_table, to_unicode_blank_1, 96 * sizeof (int)); | |
| 454 XCHARSET_TO_UNICODE_TABLE (charset) = to_table; | |
| 455 } | |
| 456 else | |
| 457 { | |
| 458 int **to_table = xnew_array (int *, 96); | |
| 459 memcpy (to_table, to_unicode_blank_2, 96 * sizeof (int *)); | |
| 460 XCHARSET_TO_UNICODE_TABLE (charset) = to_table; | |
| 461 } | |
| 462 | |
| 463 { | |
| 2367 | 464 XCHARSET_FROM_UNICODE_TABLE (charset) = |
| 465 create_new_from_unicode_table (1); | |
| 771 | 466 XCHARSET_FROM_UNICODE_LEVELS (charset) = 1; |
| 467 } | |
| 468 } | |
| 469 | |
| 470 static void | |
| 471 free_from_unicode_table (void *table, int level) | |
| 472 { | |
| 473 int i; | |
| 474 | |
| 475 switch (level) | |
| 476 { | |
| 477 case 2: | |
| 478 { | |
| 479 short **tab = (short **) table; | |
| 480 for (i = 0; i < 256; i++) | |
| 481 { | |
| 482 if (tab[i] != from_unicode_blank_1) | |
| 483 free_from_unicode_table (tab[i], 1); | |
| 484 } | |
| 485 break; | |
| 486 } | |
| 487 case 3: | |
| 488 { | |
| 489 short ***tab = (short ***) table; | |
| 490 for (i = 0; i < 256; i++) | |
| 491 { | |
| 492 if (tab[i] != from_unicode_blank_2) | |
| 493 free_from_unicode_table (tab[i], 2); | |
| 494 } | |
| 495 break; | |
| 496 } | |
| 497 case 4: | |
| 498 { | |
| 499 short ****tab = (short ****) table; | |
| 500 for (i = 0; i < 256; i++) | |
| 501 { | |
| 502 if (tab[i] != from_unicode_blank_3) | |
| 503 free_from_unicode_table (tab[i], 3); | |
| 504 } | |
| 505 break; | |
| 506 } | |
| 507 } | |
| 508 | |
|
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
509 xfree (table); |
| 771 | 510 } |
| 511 | |
| 512 static void | |
| 513 free_to_unicode_table (void *table, int level) | |
| 514 { | |
| 515 if (level == 2) | |
| 516 { | |
| 517 int i; | |
| 518 int **tab = (int **) table; | |
| 519 | |
| 520 for (i = 0; i < 96; i++) | |
| 521 { | |
| 522 if (tab[i] != to_unicode_blank_1) | |
| 523 free_to_unicode_table (tab[i], 1); | |
| 524 } | |
| 525 } | |
| 526 | |
|
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
527 xfree (table); |
| 771 | 528 } |
| 529 | |
| 530 void | |
| 531 free_charset_unicode_tables (Lisp_Object charset) | |
| 532 { | |
| 533 free_to_unicode_table (XCHARSET_TO_UNICODE_TABLE (charset), | |
| 534 XCHARSET_DIMENSION (charset)); | |
| 535 free_from_unicode_table (XCHARSET_FROM_UNICODE_TABLE (charset), | |
| 536 XCHARSET_FROM_UNICODE_LEVELS (charset)); | |
| 537 } | |
| 538 | |
| 539 #ifdef MEMORY_USAGE_STATS | |
| 540 | |
| 541 static Bytecount | |
| 542 compute_from_unicode_table_size_1 (void *table, int level, | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
4976
diff
changeset
|
543 struct usage_stats *stats) |
| 771 | 544 { |
| 545 int i; | |
| 546 Bytecount size = 0; | |
| 547 | |
| 548 switch (level) | |
| 549 { | |
| 550 case 2: | |
| 551 { | |
| 552 short **tab = (short **) table; | |
| 553 for (i = 0; i < 256; i++) | |
| 554 { | |
| 555 if (tab[i] != from_unicode_blank_1) | |
| 556 size += compute_from_unicode_table_size_1 (tab[i], 1, stats); | |
| 557 } | |
| 558 break; | |
| 559 } | |
| 560 case 3: | |
| 561 { | |
| 562 short ***tab = (short ***) table; | |
| 563 for (i = 0; i < 256; i++) | |
| 564 { | |
| 565 if (tab[i] != from_unicode_blank_2) | |
| 566 size += compute_from_unicode_table_size_1 (tab[i], 2, stats); | |
| 567 } | |
| 568 break; | |
| 569 } | |
| 570 case 4: | |
| 571 { | |
| 572 short ****tab = (short ****) table; | |
| 573 for (i = 0; i < 256; i++) | |
| 574 { | |
| 575 if (tab[i] != from_unicode_blank_3) | |
| 576 size += compute_from_unicode_table_size_1 (tab[i], 3, stats); | |
| 577 } | |
| 578 break; | |
| 579 } | |
| 580 } | |
| 581 | |
| 3024 | 582 size += malloced_storage_size (table, |
| 771 | 583 256 * (level == 1 ? sizeof (short) : |
| 584 sizeof (void *)), | |
| 585 stats); | |
| 586 return size; | |
| 587 } | |
| 588 | |
| 589 static Bytecount | |
| 590 compute_to_unicode_table_size_1 (void *table, int level, | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
4976
diff
changeset
|
591 struct usage_stats *stats) |
| 771 | 592 { |
| 593 Bytecount size = 0; | |
| 594 | |
| 595 if (level == 2) | |
| 596 { | |
| 597 int i; | |
| 598 int **tab = (int **) table; | |
| 599 | |
| 600 for (i = 0; i < 96; i++) | |
| 601 { | |
| 602 if (tab[i] != to_unicode_blank_1) | |
| 603 size += compute_to_unicode_table_size_1 (tab[i], 1, stats); | |
| 604 } | |
| 605 } | |
| 606 | |
| 3024 | 607 size += malloced_storage_size (table, |
| 771 | 608 96 * (level == 1 ? sizeof (int) : |
| 609 sizeof (void *)), | |
| 610 stats); | |
| 611 return size; | |
| 612 } | |
| 613 | |
| 614 Bytecount | |
| 615 compute_from_unicode_table_size (Lisp_Object charset, | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
4976
diff
changeset
|
616 struct usage_stats *stats) |
| 771 | 617 { |
| 618 return (compute_from_unicode_table_size_1 | |
| 619 (XCHARSET_FROM_UNICODE_TABLE (charset), | |
| 620 XCHARSET_FROM_UNICODE_LEVELS (charset), | |
| 621 stats)); | |
| 622 } | |
| 623 | |
| 624 Bytecount | |
| 625 compute_to_unicode_table_size (Lisp_Object charset, | |
|
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
4976
diff
changeset
|
626 struct usage_stats *stats) |
| 771 | 627 { |
| 628 return (compute_to_unicode_table_size_1 | |
| 629 (XCHARSET_TO_UNICODE_TABLE (charset), | |
| 630 XCHARSET_DIMENSION (charset), | |
| 631 stats)); | |
| 632 } | |
| 633 | |
| 634 #endif | |
| 635 | |
| 636 #ifdef SLEDGEHAMMER_CHECK_UNICODE | |
| 637 | |
| 638 /* "Sledgehammer checks" are checks that verify the self-consistency | |
| 639 of an entire structure every time a change is about to be made or | |
| 640 has been made to the structure. Not fast but a pretty much | |
| 641 sure-fire way of flushing out any incorrectnesses in the algorithms | |
| 642 that create the structure. | |
| 643 | |
| 644 Checking only after a change has been made will speed things up by | |
| 645 a factor of 2, but it doesn't absolutely prove that the code just | |
| 646 checked caused the problem; perhaps it happened elsewhere, either | |
| 647 in some code you forgot to sledgehammer check or as a result of | |
| 648 data corruption. */ | |
| 649 | |
| 650 static void | |
| 651 assert_not_any_blank_table (void *tab) | |
| 652 { | |
| 653 assert (tab != from_unicode_blank_1); | |
| 654 assert (tab != from_unicode_blank_2); | |
| 655 assert (tab != from_unicode_blank_3); | |
| 656 assert (tab != from_unicode_blank_4); | |
| 657 assert (tab != to_unicode_blank_1); | |
| 658 assert (tab != to_unicode_blank_2); | |
| 659 assert (tab); | |
| 660 } | |
| 661 | |
| 662 static void | |
| 663 sledgehammer_check_from_table (Lisp_Object charset, void *table, int level, | |
| 664 int codetop) | |
| 665 { | |
| 666 int i; | |
| 667 | |
| 668 switch (level) | |
| 669 { | |
| 670 case 1: | |
| 671 { | |
| 672 short *tab = (short *) table; | |
| 673 for (i = 0; i < 256; i++) | |
| 674 { | |
| 675 if (tab[i] != -1) | |
| 676 { | |
| 677 Lisp_Object char_charset; | |
| 678 int c1, c2; | |
| 679 | |
| 867 | 680 assert (valid_ichar_p (tab[i])); |
| 681 BREAKUP_ICHAR (tab[i], char_charset, c1, c2); | |
| 771 | 682 assert (EQ (charset, char_charset)); |
| 683 if (XCHARSET_DIMENSION (charset) == 1) | |
| 684 { | |
| 685 int *to_table = | |
| 686 (int *) XCHARSET_TO_UNICODE_TABLE (charset); | |
| 687 assert_not_any_blank_table (to_table); | |
| 688 assert (to_table[c1 - 32] == (codetop << 8) + i); | |
| 689 } | |
| 690 else | |
| 691 { | |
| 692 int **to_table = | |
| 693 (int **) XCHARSET_TO_UNICODE_TABLE (charset); | |
| 694 assert_not_any_blank_table (to_table); | |
| 695 assert_not_any_blank_table (to_table[c1 - 32]); | |
| 696 assert (to_table[c1 - 32][c2 - 32] == (codetop << 8) + i); | |
| 697 } | |
| 698 } | |
| 699 } | |
| 700 break; | |
| 701 } | |
| 702 case 2: | |
| 703 { | |
| 704 short **tab = (short **) table; | |
| 705 for (i = 0; i < 256; i++) | |
| 706 { | |
| 707 if (tab[i] != from_unicode_blank_1) | |
| 708 sledgehammer_check_from_table (charset, tab[i], 1, | |
| 709 (codetop << 8) + i); | |
| 710 } | |
| 711 break; | |
| 712 } | |
| 713 case 3: | |
| 714 { | |
| 715 short ***tab = (short ***) table; | |
| 716 for (i = 0; i < 256; i++) | |
| 717 { | |
| 718 if (tab[i] != from_unicode_blank_2) | |
| 719 sledgehammer_check_from_table (charset, tab[i], 2, | |
| 720 (codetop << 8) + i); | |
| 721 } | |
| 722 break; | |
| 723 } | |
| 724 case 4: | |
| 725 { | |
| 726 short ****tab = (short ****) table; | |
| 727 for (i = 0; i < 256; i++) | |
| 728 { | |
| 729 if (tab[i] != from_unicode_blank_3) | |
| 730 sledgehammer_check_from_table (charset, tab[i], 3, | |
| 731 (codetop << 8) + i); | |
| 732 } | |
| 733 break; | |
| 734 } | |
| 735 default: | |
| 2500 | 736 ABORT (); |
| 771 | 737 } |
| 738 } | |
| 739 | |
| 740 static void | |
| 741 sledgehammer_check_to_table (Lisp_Object charset, void *table, int level, | |
| 742 int codetop) | |
| 743 { | |
| 744 int i; | |
| 745 | |
| 746 switch (level) | |
| 747 { | |
| 748 case 1: | |
| 749 { | |
| 750 int *tab = (int *) table; | |
| 751 | |
| 752 if (XCHARSET_CHARS (charset) == 94) | |
| 753 { | |
| 754 assert (tab[0] == -1); | |
| 755 assert (tab[95] == -1); | |
| 756 } | |
| 757 | |
| 758 for (i = 0; i < 96; i++) | |
| 759 { | |
| 760 if (tab[i] != -1) | |
| 761 { | |
| 762 int u4, u3, u2, u1, levels; | |
| 867 | 763 Ichar ch; |
| 764 Ichar this_ch; | |
| 771 | 765 short val; |
| 766 void *frtab = XCHARSET_FROM_UNICODE_TABLE (charset); | |
| 767 | |
| 768 if (XCHARSET_DIMENSION (charset) == 1) | |
| 867 | 769 this_ch = make_ichar (charset, i + 32, 0); |
| 771 | 770 else |
| 867 | 771 this_ch = make_ichar (charset, codetop + 32, i + 32); |
| 771 | 772 |
| 773 assert (tab[i] >= 0); | |
| 774 BREAKUP_UNICODE_CODE (tab[i], u4, u3, u2, u1, levels); | |
| 775 assert (levels <= XCHARSET_FROM_UNICODE_LEVELS (charset)); | |
| 776 | |
| 777 switch (XCHARSET_FROM_UNICODE_LEVELS (charset)) | |
| 778 { | |
| 779 case 1: val = ((short *) frtab)[u1]; break; | |
| 780 case 2: val = ((short **) frtab)[u2][u1]; break; | |
| 781 case 3: val = ((short ***) frtab)[u3][u2][u1]; break; | |
| 782 case 4: val = ((short ****) frtab)[u4][u3][u2][u1]; break; | |
| 2500 | 783 default: ABORT (); |
| 771 | 784 } |
| 785 | |
| 867 | 786 ch = make_ichar (charset, val >> 8, val & 0xFF); |
| 771 | 787 assert (ch == this_ch); |
| 788 | |
| 789 switch (XCHARSET_FROM_UNICODE_LEVELS (charset)) | |
| 790 { | |
| 791 case 4: | |
| 792 assert_not_any_blank_table (frtab); | |
| 793 frtab = ((short ****) frtab)[u4]; | |
| 794 /* fall through */ | |
| 795 case 3: | |
| 796 assert_not_any_blank_table (frtab); | |
| 797 frtab = ((short ***) frtab)[u3]; | |
| 798 /* fall through */ | |
| 799 case 2: | |
| 800 assert_not_any_blank_table (frtab); | |
| 801 frtab = ((short **) frtab)[u2]; | |
| 802 /* fall through */ | |
| 803 case 1: | |
| 804 assert_not_any_blank_table (frtab); | |
| 805 break; | |
| 2500 | 806 default: ABORT (); |
| 771 | 807 } |
| 808 } | |
| 809 } | |
| 810 break; | |
| 811 } | |
| 812 case 2: | |
| 813 { | |
| 814 int **tab = (int **) table; | |
| 815 | |
| 816 if (XCHARSET_CHARS (charset) == 94) | |
| 817 { | |
| 818 assert (tab[0] == to_unicode_blank_1); | |
| 819 assert (tab[95] == to_unicode_blank_1); | |
| 820 } | |
| 821 | |
| 822 for (i = 0; i < 96; i++) | |
| 823 { | |
| 824 if (tab[i] != to_unicode_blank_1) | |
| 825 sledgehammer_check_to_table (charset, tab[i], 1, i); | |
| 826 } | |
| 827 break; | |
| 828 } | |
| 829 default: | |
| 2500 | 830 ABORT (); |
| 771 | 831 } |
| 832 } | |
| 833 | |
| 834 static void | |
| 835 sledgehammer_check_unicode_tables (Lisp_Object charset) | |
| 836 { | |
| 837 /* verify that the blank tables have not been modified */ | |
| 838 int i; | |
| 839 int from_level = XCHARSET_FROM_UNICODE_LEVELS (charset); | |
| 840 int to_level = XCHARSET_FROM_UNICODE_LEVELS (charset); | |
| 841 | |
| 842 for (i = 0; i < 256; i++) | |
| 843 { | |
| 844 assert (from_unicode_blank_1[i] == (short) -1); | |
| 845 assert (from_unicode_blank_2[i] == from_unicode_blank_1); | |
| 846 assert (from_unicode_blank_3[i] == from_unicode_blank_2); | |
| 847 assert (from_unicode_blank_4[i] == from_unicode_blank_3); | |
| 848 } | |
| 849 | |
| 850 for (i = 0; i < 96; i++) | |
| 851 { | |
| 852 assert (to_unicode_blank_1[i] == -1); | |
| 853 assert (to_unicode_blank_2[i] == to_unicode_blank_1); | |
| 854 } | |
| 855 | |
| 856 assert (from_level >= 1 && from_level <= 4); | |
| 857 | |
| 858 sledgehammer_check_from_table (charset, | |
| 859 XCHARSET_FROM_UNICODE_TABLE (charset), | |
| 860 from_level, 0); | |
| 861 | |
| 862 sledgehammer_check_to_table (charset, | |
| 863 XCHARSET_TO_UNICODE_TABLE (charset), | |
| 864 XCHARSET_DIMENSION (charset), 0); | |
| 865 } | |
| 866 | |
| 867 #endif /* SLEDGEHAMMER_CHECK_UNICODE */ | |
| 868 | |
| 869 static void | |
| 867 | 870 set_unicode_conversion (Ichar chr, int code) |
| 771 | 871 { |
| 872 Lisp_Object charset; | |
| 873 int c1, c2; | |
| 874 | |
| 867 | 875 BREAKUP_ICHAR (chr, charset, c1, c2); |
| 771 | 876 |
| 877 | 877 /* I tried an assert on code > 255 || chr == code, but that fails because |
| 878 Mule gives many Latin characters separate code points for different | |
| 879 ISO 8859 coded character sets. Obvious in hindsight.... */ | |
| 880 assert (!EQ (charset, Vcharset_ascii) || chr == code); | |
| 881 assert (!EQ (charset, Vcharset_latin_iso8859_1) || chr == code); | |
| 882 assert (!EQ (charset, Vcharset_control_1) || chr == code); | |
| 883 | |
| 884 /* This assert is needed because it is simply unimplemented. */ | |
| 771 | 885 assert (!EQ (charset, Vcharset_composite)); |
| 886 | |
| 887 #ifdef SLEDGEHAMMER_CHECK_UNICODE | |
| 888 sledgehammer_check_unicode_tables (charset); | |
| 889 #endif | |
| 890 | |
| 2704 | 891 if (EQ(charset, Vcharset_ascii) || EQ(charset, Vcharset_control_1)) |
| 892 return; | |
| 893 | |
| 771 | 894 /* First, the char -> unicode translation */ |
| 895 | |
| 896 if (XCHARSET_DIMENSION (charset) == 1) | |
| 897 { | |
| 898 int *to_table = (int *) XCHARSET_TO_UNICODE_TABLE (charset); | |
| 899 to_table[c1 - 32] = code; | |
| 900 } | |
| 901 else | |
| 902 { | |
| 903 int **to_table_2 = (int **) XCHARSET_TO_UNICODE_TABLE (charset); | |
| 904 int *to_table_1; | |
| 905 | |
| 906 assert (XCHARSET_DIMENSION (charset) == 2); | |
| 907 to_table_1 = to_table_2[c1 - 32]; | |
| 908 if (to_table_1 == to_unicode_blank_1) | |
| 909 { | |
| 910 to_table_1 = xnew_array (int, 96); | |
| 911 memcpy (to_table_1, to_unicode_blank_1, 96 * sizeof (int)); | |
| 912 to_table_2[c1 - 32] = to_table_1; | |
| 913 } | |
| 914 to_table_1[c2 - 32] = code; | |
| 915 } | |
| 916 | |
| 917 /* Then, unicode -> char: much harder */ | |
| 918 | |
| 919 { | |
| 920 int charset_levels; | |
| 921 int u4, u3, u2, u1; | |
| 922 int code_levels; | |
| 923 BREAKUP_UNICODE_CODE (code, u4, u3, u2, u1, code_levels); | |
| 924 | |
| 925 charset_levels = XCHARSET_FROM_UNICODE_LEVELS (charset); | |
| 926 | |
| 927 /* Make sure the charset's tables have at least as many levels as | |
| 928 the code point has: Note that the charset is guaranteed to have | |
| 929 at least one level, because it was created that way */ | |
| 930 if (charset_levels < code_levels) | |
| 931 { | |
| 932 int i; | |
| 933 | |
| 934 assert (charset_levels > 0); | |
| 935 for (i = 2; i <= code_levels; i++) | |
| 936 { | |
| 937 if (charset_levels < i) | |
| 938 { | |
| 939 void *old_table = XCHARSET_FROM_UNICODE_TABLE (charset); | |
| 940 void *table = create_new_from_unicode_table (i); | |
| 941 XCHARSET_FROM_UNICODE_TABLE (charset) = table; | |
| 942 | |
| 943 switch (i) | |
| 944 { | |
| 945 case 2: | |
| 946 ((short **) table)[0] = (short *) old_table; | |
| 947 break; | |
| 948 case 3: | |
| 949 ((short ***) table)[0] = (short **) old_table; | |
| 950 break; | |
| 951 case 4: | |
| 952 ((short ****) table)[0] = (short ***) old_table; | |
| 953 break; | |
| 2500 | 954 default: ABORT (); |
| 771 | 955 } |
| 956 } | |
| 957 } | |
| 958 | |
| 959 charset_levels = code_levels; | |
| 960 XCHARSET_FROM_UNICODE_LEVELS (charset) = code_levels; | |
| 961 } | |
| 962 | |
| 963 /* Now, make sure there is a non-default table at each level */ | |
| 964 { | |
| 965 int i; | |
| 966 void *table = XCHARSET_FROM_UNICODE_TABLE (charset); | |
| 967 | |
| 968 for (i = charset_levels; i >= 2; i--) | |
| 969 { | |
| 970 switch (i) | |
| 971 { | |
| 972 case 4: | |
| 973 if (((short ****) table)[u4] == from_unicode_blank_3) | |
| 974 ((short ****) table)[u4] = | |
| 975 ((short ***) create_new_from_unicode_table (3)); | |
| 976 table = ((short ****) table)[u4]; | |
| 977 break; | |
| 978 case 3: | |
| 979 if (((short ***) table)[u3] == from_unicode_blank_2) | |
| 980 ((short ***) table)[u3] = | |
| 981 ((short **) create_new_from_unicode_table (2)); | |
| 982 table = ((short ***) table)[u3]; | |
| 983 break; | |
| 984 case 2: | |
| 985 if (((short **) table)[u2] == from_unicode_blank_1) | |
| 986 ((short **) table)[u2] = | |
| 987 ((short *) create_new_from_unicode_table (1)); | |
| 988 table = ((short **) table)[u2]; | |
| 989 break; | |
| 2500 | 990 default: ABORT (); |
| 771 | 991 } |
| 992 } | |
| 993 } | |
| 994 | |
| 995 /* Finally, set the character */ | |
| 996 | |
| 997 { | |
| 998 void *table = XCHARSET_FROM_UNICODE_TABLE (charset); | |
| 999 switch (charset_levels) | |
| 1000 { | |
| 1001 case 1: ((short *) table)[u1] = (c1 << 8) + c2; break; | |
| 1002 case 2: ((short **) table)[u2][u1] = (c1 << 8) + c2; break; | |
| 1003 case 3: ((short ***) table)[u3][u2][u1] = (c1 << 8) + c2; break; | |
| 1004 case 4: ((short ****) table)[u4][u3][u2][u1] = (c1 << 8) + c2; break; | |
| 2500 | 1005 default: ABORT (); |
| 771 | 1006 } |
| 1007 } | |
| 1008 } | |
| 1009 | |
| 1010 #ifdef SLEDGEHAMMER_CHECK_UNICODE | |
| 1011 sledgehammer_check_unicode_tables (charset); | |
| 1012 #endif | |
| 1013 } | |
| 1014 | |
| 788 | 1015 int |
| 867 | 1016 ichar_to_unicode (Ichar chr) |
| 771 | 1017 { |
| 1018 Lisp_Object charset; | |
| 1019 int c1, c2; | |
| 1020 | |
| 867 | 1021 type_checking_assert (valid_ichar_p (chr)); |
| 877 | 1022 /* This shortcut depends on the representation of an Ichar, see text.c. */ |
| 771 | 1023 if (chr < 256) |
| 1024 return (int) chr; | |
| 1025 | |
| 867 | 1026 BREAKUP_ICHAR (chr, charset, c1, c2); |
| 771 | 1027 if (EQ (charset, Vcharset_composite)) |
| 1028 return -1; /* #### don't know how to handle */ | |
| 1029 else if (XCHARSET_DIMENSION (charset) == 1) | |
| 1030 return ((int *) XCHARSET_TO_UNICODE_TABLE (charset))[c1 - 32]; | |
| 1031 else | |
| 1032 return ((int **) XCHARSET_TO_UNICODE_TABLE (charset))[c1 - 32][c2 - 32]; | |
| 1033 } | |
| 1034 | |
| 867 | 1035 static Ichar |
| 3439 | 1036 get_free_codepoint(Lisp_Object charset) |
| 1037 { | |
| 1038 Lisp_Object name = Fcharset_name(charset); | |
| 1039 Lisp_Object zeichen = Fget(name, Qlast_allocated_character, Qnil); | |
| 1040 Ichar res; | |
| 1041 | |
| 1042 /* Only allow this with the 96x96 character sets we are using for | |
| 1043 temporary Unicode support. */ | |
| 1044 assert(2 == XCHARSET_DIMENSION(charset) && 96 == XCHARSET_CHARS(charset)); | |
| 1045 | |
| 1046 if (!NILP(zeichen)) | |
| 1047 { | |
| 1048 int c1, c2; | |
| 1049 | |
| 1050 BREAKUP_ICHAR(XCHAR(zeichen), charset, c1, c2); | |
| 1051 | |
| 1052 if (127 == c1 && 127 == c2) | |
| 1053 { | |
| 1054 /* We've already used the hightest-numbered character in this | |
| 1055 set--tell our caller to create another. */ | |
| 1056 return -1; | |
| 1057 } | |
| 1058 | |
| 1059 if (127 == c2) | |
| 1060 { | |
| 1061 ++c1; | |
| 1062 c2 = 0x20; | |
| 1063 } | |
| 1064 else | |
| 1065 { | |
| 1066 ++c2; | |
| 1067 } | |
| 1068 | |
| 1069 res = make_ichar(charset, c1, c2); | |
| 1070 Fput(name, Qlast_allocated_character, make_char(res)); | |
| 1071 } | |
| 1072 else | |
| 1073 { | |
| 1074 res = make_ichar(charset, 32, 32); | |
| 1075 Fput(name, Qlast_allocated_character, make_char(res)); | |
| 1076 } | |
| 1077 return res; | |
| 1078 } | |
| 1079 | |
| 1080 /* The just-in-time creation of XEmacs characters that correspond to unknown | |
| 1081 Unicode code points happens when: | |
| 1082 | |
| 1083 1. The lookup would otherwise fail. | |
| 1084 | |
| 1085 2. The charsets array is the nil or the default. | |
| 1086 | |
| 1087 If there are no free code points in the just-in-time Unicode character | |
| 1088 set, and the charsets array is the default unicode precedence list, | |
| 1089 create a new just-in-time Unicode character set, add it at the end of the | |
| 1090 unicode precedence list, create the XEmacs character in that character | |
| 1091 set, and return it. */ | |
| 1092 | |
| 1093 static Ichar | |
| 877 | 1094 unicode_to_ichar (int code, Lisp_Object_dynarr *charsets) |
| 771 | 1095 { |
| 1096 int u1, u2, u3, u4; | |
| 1097 int code_levels; | |
| 1098 int i; | |
| 1099 int n = Dynarr_length (charsets); | |
| 1100 | |
| 1101 type_checking_assert (code >= 0); | |
| 877 | 1102 /* This shortcut depends on the representation of an Ichar, see text.c. |
| 1103 Note that it may _not_ be extended to U+00A0 to U+00FF (many ISO 8859 | |
| 893 | 1104 coded character sets have points that map into that region, so this |
| 1105 function is many-valued). */ | |
| 877 | 1106 if (code < 0xA0) |
| 867 | 1107 return (Ichar) code; |
| 771 | 1108 |
| 1109 BREAKUP_UNICODE_CODE (code, u4, u3, u2, u1, code_levels); | |
| 1110 | |
| 1111 for (i = 0; i < n; i++) | |
| 1112 { | |
| 1113 Lisp_Object charset = Dynarr_at (charsets, i); | |
| 1114 int charset_levels = XCHARSET_FROM_UNICODE_LEVELS (charset); | |
| 1115 if (charset_levels >= code_levels) | |
| 1116 { | |
| 1117 void *table = XCHARSET_FROM_UNICODE_TABLE (charset); | |
| 1118 short retval; | |
| 1119 | |
| 1120 switch (charset_levels) | |
| 1121 { | |
| 1122 case 1: retval = ((short *) table)[u1]; break; | |
| 1123 case 2: retval = ((short **) table)[u2][u1]; break; | |
| 1124 case 3: retval = ((short ***) table)[u3][u2][u1]; break; | |
| 1125 case 4: retval = ((short ****) table)[u4][u3][u2][u1]; break; | |
| 2500 | 1126 default: ABORT (); retval = 0; |
| 771 | 1127 } |
| 1128 | |
| 1129 if (retval != -1) | |
| 867 | 1130 return make_ichar (charset, retval >> 8, retval & 0xFF); |
| 771 | 1131 } |
| 1132 } | |
| 3439 | 1133 |
| 1134 /* Only do the magic just-in-time assignment if we're using the default | |
| 1135 list. */ | |
| 1136 if (unicode_precedence_dynarr == charsets) | |
| 1137 { | |
| 1138 if (NILP (Vcurrent_jit_charset) || | |
| 1139 (-1 == (i = get_free_codepoint(Vcurrent_jit_charset)))) | |
| 1140 { | |
| 3452 | 1141 Ibyte setname[32]; |
| 4268 | 1142 int number_of_jit_charsets = XINT (Vnumber_of_jit_charsets); |
| 1143 Ascbyte last_jit_charset_final = XCHAR (Vlast_jit_charset_final); | |
| 1144 | |
| 1145 /* This final byte shit is, umm, not that cool. */ | |
| 1146 assert (last_jit_charset_final >= 0x30); | |
| 3439 | 1147 |
| 3452 | 1148 /* Assertion added partly because our Win32 layer doesn't |
| 1149 support snprintf; with this, we're sure it won't overflow | |
| 1150 the buffer. */ | |
| 1151 assert(100 > number_of_jit_charsets); | |
| 1152 | |
| 4268 | 1153 qxesprintf(setname, "jit-ucs-charset-%d", number_of_jit_charsets); |
| 1154 | |
| 3439 | 1155 Vcurrent_jit_charset = Fmake_charset |
|
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1156 (intern_istring (setname), Vcharset_descr, |
| 3439 | 1157 /* Set encode-as-utf-8 to t, to have this character set written |
| 1158 using UTF-8 escapes in escape-quoted and ctext. This | |
| 1159 sidesteps the fact that our internal character -> Unicode | |
| 1160 mapping is not stable from one invocation to the next. */ | |
| 1161 nconc2 (list2(Qencode_as_utf_8, Qt), | |
| 1162 nconc2 (list6(Qcolumns, make_int(1), Qchars, make_int(96), | |
| 1163 Qdimension, make_int(2)), | |
| 3659 | 1164 list6(Qregistries, Qunicode_registries, |
| 4268 | 1165 Qfinal, make_char(last_jit_charset_final), |
| 3439 | 1166 /* This CCL program is initialised in |
| 1167 unicode.el. */ | |
| 1168 Qccl_program, Qccl_encode_to_ucs_2)))); | |
| 4268 | 1169 |
| 1170 /* Record for the Unicode infrastructure that we've created | |
| 1171 this character set. */ | |
| 1172 Vnumber_of_jit_charsets = make_int (number_of_jit_charsets + 1); | |
| 1173 Vlast_jit_charset_final = make_char (last_jit_charset_final + 1); | |
| 3439 | 1174 |
| 1175 i = get_free_codepoint(Vcurrent_jit_charset); | |
| 1176 } | |
| 1177 | |
| 1178 if (-1 != i) | |
| 1179 { | |
| 1180 set_unicode_conversion((Ichar)i, code); | |
| 1181 /* No need to add the charset to the end of the list; it's done | |
| 1182 automatically. */ | |
| 1183 } | |
| 1184 } | |
| 1185 return (Ichar) i; | |
| 771 | 1186 } |
| 1187 | |
| 877 | 1188 /* Add charsets to precedence list. |
| 1189 LIST must be a list of charsets. Charsets which are in the list more | |
| 1190 than once are given the precedence implied by their earliest appearance. | |
| 1191 Later appearances are ignored. */ | |
| 771 | 1192 static void |
| 1193 add_charsets_to_precedence_list (Lisp_Object list, int *lbs, | |
| 1194 Lisp_Object_dynarr *dynarr) | |
| 1195 { | |
| 1196 { | |
| 1197 EXTERNAL_LIST_LOOP_2 (elt, list) | |
| 1198 { | |
| 1199 Lisp_Object charset = Fget_charset (elt); | |
| 778 | 1200 int lb = XCHARSET_LEADING_BYTE (charset); |
| 771 | 1201 if (lbs[lb - MIN_LEADING_BYTE] == 0) |
| 1202 { | |
| 877 | 1203 Dynarr_add (dynarr, charset); |
| 771 | 1204 lbs[lb - MIN_LEADING_BYTE] = 1; |
| 1205 } | |
| 1206 } | |
| 1207 } | |
| 1208 } | |
| 1209 | |
| 877 | 1210 /* Rebuild the charset precedence array. |
| 1211 The "charsets preferred for the current language" get highest precedence, | |
| 1212 followed by the "charsets preferred by default", ordered as in | |
| 1213 Vlanguage_unicode_precedence_list and Vdefault_unicode_precedence_list, | |
| 1214 respectively. All remaining charsets follow in an arbitrary order. */ | |
| 771 | 1215 void |
| 1216 recalculate_unicode_precedence (void) | |
| 1217 { | |
| 1218 int lbs[NUM_LEADING_BYTES]; | |
| 1219 int i; | |
| 1220 | |
| 1221 for (i = 0; i < NUM_LEADING_BYTES; i++) | |
| 1222 lbs[i] = 0; | |
| 1223 | |
| 1224 Dynarr_reset (unicode_precedence_dynarr); | |
| 1225 | |
| 1226 add_charsets_to_precedence_list (Vlanguage_unicode_precedence_list, | |
| 1227 lbs, unicode_precedence_dynarr); | |
| 1228 add_charsets_to_precedence_list (Vdefault_unicode_precedence_list, | |
| 1229 lbs, unicode_precedence_dynarr); | |
| 1230 | |
| 1231 for (i = 0; i < NUM_LEADING_BYTES; i++) | |
| 1232 { | |
| 1233 if (lbs[i] == 0) | |
| 1234 { | |
| 826 | 1235 Lisp_Object charset = charset_by_leading_byte (i + MIN_LEADING_BYTE); |
| 771 | 1236 if (!NILP (charset)) |
| 1237 Dynarr_add (unicode_precedence_dynarr, charset); | |
| 1238 } | |
| 1239 } | |
| 1240 } | |
| 1241 | |
| 877 | 1242 DEFUN ("unicode-precedence-list", |
| 1243 Funicode_precedence_list, | |
| 1244 0, 0, 0, /* | |
| 1245 Return the precedence order among charsets used for Unicode decoding. | |
| 1246 | |
| 1247 Value is a list of charsets, which are searched in order for a translation | |
| 1248 matching a given Unicode character. | |
| 1249 | |
| 1250 The highest precedence is given to the language-specific precedence list of | |
| 1251 charsets, defined by `set-language-unicode-precedence-list'. These are | |
| 1252 followed by charsets in the default precedence list, defined by | |
| 1253 `set-default-unicode-precedence-list'. Charsets occurring multiple times are | |
| 1254 given precedence according to their first occurrance in either list. These | |
| 1255 are followed by the remaining charsets, in some arbitrary order. | |
| 771 | 1256 |
| 1257 The language-specific precedence list is meant to be set as part of the | |
| 1258 language environment initialization; the default precedence list is meant | |
| 1259 to be set by the user. | |
| 1318 | 1260 |
| 1261 #### NOTE: This interface may be changed. | |
| 771 | 1262 */ |
| 877 | 1263 ()) |
| 1264 { | |
| 1265 int i; | |
| 1266 Lisp_Object list = Qnil; | |
| 1267 | |
| 1268 for (i = Dynarr_length (unicode_precedence_dynarr) - 1; i >= 0; i--) | |
| 1269 list = Fcons (Dynarr_at (unicode_precedence_dynarr, i), list); | |
| 1270 return list; | |
| 1271 } | |
| 1272 | |
| 1273 | |
| 1274 /* #### This interface is wrong. Cyrillic users and Chinese users are going | |
| 1275 to have varying opinions about whether ISO Cyrillic, KOI8-R, or Windows | |
| 1276 1251 should take precedence, and whether Big Five or CNS should take | |
| 1277 precedence, respectively. This means that users are sometimes going to | |
| 1278 want to set Vlanguage_unicode_precedence_list. | |
| 1279 Furthermore, this should be language-local (buffer-local would be a | |
| 1318 | 1280 reasonable approximation). |
| 1281 | |
| 1282 Answer: You are right, this needs rethinking. */ | |
| 877 | 1283 DEFUN ("set-language-unicode-precedence-list", |
| 1284 Fset_language_unicode_precedence_list, | |
| 1285 1, 1, 0, /* | |
| 1286 Set the language-specific precedence of charsets in Unicode decoding. | |
| 1287 LIST is a list of charsets. | |
| 1288 See `unicode-precedence-list' for more information. | |
| 1318 | 1289 |
| 1290 #### NOTE: This interface may be changed. | |
| 877 | 1291 */ |
| 771 | 1292 (list)) |
| 1293 { | |
| 1294 { | |
| 1295 EXTERNAL_LIST_LOOP_2 (elt, list) | |
| 1296 Fget_charset (elt); | |
| 1297 } | |
| 1298 | |
| 1299 Vlanguage_unicode_precedence_list = list; | |
| 1300 recalculate_unicode_precedence (); | |
| 1301 return Qnil; | |
| 1302 } | |
| 1303 | |
| 1304 DEFUN ("language-unicode-precedence-list", | |
| 1305 Flanguage_unicode_precedence_list, | |
| 1306 0, 0, 0, /* | |
| 1307 Return the language-specific precedence list used for Unicode decoding. | |
| 877 | 1308 See `unicode-precedence-list' for more information. |
| 1318 | 1309 |
| 1310 #### NOTE: This interface may be changed. | |
| 771 | 1311 */ |
| 1312 ()) | |
| 1313 { | |
| 1314 return Vlanguage_unicode_precedence_list; | |
| 1315 } | |
| 1316 | |
| 1317 DEFUN ("set-default-unicode-precedence-list", | |
| 1318 Fset_default_unicode_precedence_list, | |
| 1319 1, 1, 0, /* | |
| 1320 Set the default precedence list used for Unicode decoding. | |
| 877 | 1321 This is intended to be set by the user. See |
| 1322 `unicode-precedence-list' for more information. | |
| 1318 | 1323 |
| 1324 #### NOTE: This interface may be changed. | |
| 771 | 1325 */ |
| 1326 (list)) | |
| 1327 { | |
| 1328 { | |
| 1329 EXTERNAL_LIST_LOOP_2 (elt, list) | |
| 1330 Fget_charset (elt); | |
| 1331 } | |
| 1332 | |
| 1333 Vdefault_unicode_precedence_list = list; | |
| 1334 recalculate_unicode_precedence (); | |
| 1335 return Qnil; | |
| 1336 } | |
| 1337 | |
| 1338 DEFUN ("default-unicode-precedence-list", | |
| 1339 Fdefault_unicode_precedence_list, | |
| 1340 0, 0, 0, /* | |
| 1341 Return the default precedence list used for Unicode decoding. | |
| 877 | 1342 See `unicode-precedence-list' for more information. |
| 1318 | 1343 |
| 1344 #### NOTE: This interface may be changed. | |
| 771 | 1345 */ |
| 1346 ()) | |
| 1347 { | |
| 1348 return Vdefault_unicode_precedence_list; | |
| 1349 } | |
| 1350 | |
| 1351 DEFUN ("set-unicode-conversion", Fset_unicode_conversion, | |
| 1352 2, 2, 0, /* | |
| 1353 Add conversion information between Unicode codepoints and characters. | |
| 877 | 1354 Conversions for U+0000 to U+00FF are hardwired to ASCII, Control-1, and |
| 1355 Latin-1. Attempts to set these values will raise an error. | |
| 1356 | |
| 771 | 1357 CHARACTER is one of the following: |
| 1358 | |
| 1359 -- A character (in which case CODE must be a non-negative integer; values | |
| 1360 above 2^20 - 1 are allowed for the purpose of specifying private | |
| 877 | 1361 characters, but are illegal in standard Unicode---they will cause errors |
| 1362 when converted to utf-16) | |
| 771 | 1363 -- A vector of characters (in which case CODE must be a vector of integers |
| 1364 of the same length) | |
| 1365 */ | |
| 1366 (character, code)) | |
| 1367 { | |
| 1368 Lisp_Object charset; | |
| 877 | 1369 int ichar, unicode; |
| 771 | 1370 |
| 1371 CHECK_CHAR (character); | |
| 1372 CHECK_NATNUM (code); | |
| 1373 | |
| 877 | 1374 unicode = XINT (code); |
| 1375 ichar = XCHAR (character); | |
| 1376 charset = ichar_charset (ichar); | |
| 1377 | |
| 1378 /* The translations of ASCII, Control-1, and Latin-1 code points are | |
| 1379 hard-coded in ichar_to_unicode and unicode_to_ichar. | |
| 1380 | |
| 1381 Checking unicode < 256 && ichar != unicode is wrong because Mule gives | |
| 1382 many Latin characters code points in a few different character sets. */ | |
| 1383 if ((EQ (charset, Vcharset_ascii) || | |
| 1384 EQ (charset, Vcharset_control_1) || | |
| 1385 EQ (charset, Vcharset_latin_iso8859_1)) | |
| 1386 && unicode != ichar) | |
| 893 | 1387 signal_error (Qinvalid_argument, "Can't change Unicode translation for ASCII, Control-1 or Latin-1 character", |
| 771 | 1388 character); |
| 1389 | |
| 877 | 1390 /* #### Composite characters are not properly implemented yet. */ |
| 1391 if (EQ (charset, Vcharset_composite)) | |
| 1392 signal_error (Qinvalid_argument, "Can't set Unicode translation for Composite char", | |
| 1393 character); | |
| 1394 | |
| 1395 set_unicode_conversion (ichar, unicode); | |
| 771 | 1396 return Qnil; |
| 1397 } | |
| 1398 | |
| 1399 #endif /* MULE */ | |
| 1400 | |
| 800 | 1401 DEFUN ("char-to-unicode", Fchar_to_unicode, 1, 1, 0, /* |
| 771 | 1402 Convert character to Unicode codepoint. |
| 3025 | 1403 When there is no international support (i.e. the `mule' feature is not |
| 877 | 1404 present), this function simply does `char-to-int'. |
| 771 | 1405 */ |
| 1406 (character)) | |
| 1407 { | |
| 1408 CHECK_CHAR (character); | |
| 1409 #ifdef MULE | |
| 867 | 1410 return make_int (ichar_to_unicode (XCHAR (character))); |
| 771 | 1411 #else |
| 1412 return Fchar_to_int (character); | |
| 1413 #endif /* MULE */ | |
| 1414 } | |
| 1415 | |
| 800 | 1416 DEFUN ("unicode-to-char", Funicode_to_char, 1, 2, 0, /* |
| 771 | 1417 Convert Unicode codepoint to character. |
| 1418 CODE should be a non-negative integer. | |
| 1419 If CHARSETS is given, it should be a list of charsets, and only those | |
| 1420 charsets will be consulted, in the given order, for a translation. | |
| 1421 Otherwise, the default ordering of all charsets will be given (see | |
| 1422 `set-unicode-charset-precedence'). | |
| 1423 | |
| 3025 | 1424 When there is no international support (i.e. the `mule' feature is not |
| 877 | 1425 present), this function simply does `int-to-char' and ignores the CHARSETS |
| 1426 argument. | |
| 2622 | 1427 |
| 3439 | 1428 If the CODE would not otherwise be converted to an XEmacs character, and the |
| 1429 list of character sets to be consulted is nil or the default, a new XEmacs | |
| 1430 character will be created for it in one of the `jit-ucs-charset' Mule | |
| 4268 | 1431 character sets, and that character will be returned. |
| 1432 | |
| 1433 This is limited to around 400,000 characters per XEmacs session, though, so | |
| 1434 while normal usage will not be problematic, things like: | |
| 1435 | |
| 1436 \(dotimes (i #x110000) (decode-char 'ucs i)) | |
| 1437 | |
| 1438 will eventually error. The long-term solution to this is Unicode as an | |
| 1439 internal encoding. | |
| 771 | 1440 */ |
| 2333 | 1441 (code, USED_IF_MULE (charsets))) |
| 771 | 1442 { |
| 1443 #ifdef MULE | |
| 1444 Lisp_Object_dynarr *dyn; | |
| 1445 int lbs[NUM_LEADING_BYTES]; | |
| 1446 int c; | |
| 1447 | |
| 1448 CHECK_NATNUM (code); | |
| 1449 c = XINT (code); | |
| 1450 { | |
| 1451 EXTERNAL_LIST_LOOP_2 (elt, charsets) | |
| 1452 Fget_charset (elt); | |
| 1453 } | |
| 1454 | |
| 1455 if (NILP (charsets)) | |
| 1456 { | |
| 877 | 1457 Ichar ret = unicode_to_ichar (c, unicode_precedence_dynarr); |
| 771 | 1458 if (ret == -1) |
| 1459 return Qnil; | |
| 1460 return make_char (ret); | |
| 1461 } | |
| 1462 | |
| 1463 dyn = Dynarr_new (Lisp_Object); | |
| 1464 memset (lbs, 0, NUM_LEADING_BYTES * sizeof (int)); | |
| 1465 add_charsets_to_precedence_list (charsets, lbs, dyn); | |
| 1466 { | |
| 877 | 1467 Ichar ret = unicode_to_ichar (c, dyn); |
| 771 | 1468 Dynarr_free (dyn); |
| 1469 if (ret == -1) | |
| 1470 return Qnil; | |
| 1471 return make_char (ret); | |
| 1472 } | |
| 1473 #else | |
| 1474 CHECK_NATNUM (code); | |
| 1475 return Fint_to_char (code); | |
| 1476 #endif /* MULE */ | |
| 1477 } | |
| 1478 | |
| 872 | 1479 #ifdef MULE |
| 1480 | |
| 771 | 1481 static Lisp_Object |
| 1482 cerrar_el_fulano (Lisp_Object fulano) | |
| 1483 { | |
| 1484 FILE *file = (FILE *) get_opaque_ptr (fulano); | |
| 1485 retry_fclose (file); | |
| 1486 return Qnil; | |
| 1487 } | |
| 1488 | |
| 1318 | 1489 DEFUN ("load-unicode-mapping-table", Fload_unicode_mapping_table, |
| 771 | 1490 2, 6, 0, /* |
| 877 | 1491 Load Unicode tables with the Unicode mapping data in FILENAME for CHARSET. |
| 771 | 1492 Data is text, in the form of one translation per line -- charset |
| 1493 codepoint followed by Unicode codepoint. Numbers are decimal or hex | |
| 1494 \(preceded by 0x). Comments are marked with a #. Charset codepoints | |
| 877 | 1495 for two-dimensional charsets have the first octet stored in the |
| 771 | 1496 high 8 bits of the hex number and the second in the low 8 bits. |
| 1497 | |
| 1498 If START and END are given, only charset codepoints within the given | |
| 877 | 1499 range will be processed. (START and END apply to the codepoints in the |
| 1500 file, before OFFSET is applied.) | |
| 771 | 1501 |
| 877 | 1502 If OFFSET is given, that value will be added to all charset codepoints |
| 1503 in the file to obtain the internal charset codepoint. \(We assume | |
| 1504 that octets in the table are in the range 33 to 126 or 32 to 127. If | |
| 1505 you have a table in ku-ten form, with octets in the range 1 to 94, you | |
| 1506 will have to use an offset of 5140, i.e. 0x2020.) | |
| 771 | 1507 |
| 1508 FLAGS, if specified, control further how the tables are interpreted | |
| 877 | 1509 and are used to special-case certain known format deviations in the |
| 1510 Unicode tables or in the charset: | |
| 771 | 1511 |
| 1512 `ignore-first-column' | |
| 877 | 1513 The JIS X 0208 tables have 3 columns of data instead of 2. The first |
| 1514 column contains the Shift-JIS codepoint, which we ignore. | |
| 771 | 1515 `big5' |
| 877 | 1516 The charset codepoints are Big Five codepoints; convert it to the |
| 1517 hacked-up Mule codepoint in `chinese-big5-1' or `chinese-big5-2'. | |
| 771 | 1518 */ |
| 1519 (filename, charset, start, end, offset, flags)) | |
| 1520 { | |
| 1521 int st = 0, en = INT_MAX, of = 0; | |
| 1522 FILE *file; | |
| 1523 struct gcpro gcpro1; | |
| 1524 char line[1025]; | |
| 1525 int fondo = specpdl_depth (); | |
| 1526 int ignore_first_column = 0; | |
| 1527 int big5 = 0; | |
| 1528 | |
| 1529 CHECK_STRING (filename); | |
| 1530 charset = Fget_charset (charset); | |
| 1531 if (!NILP (start)) | |
| 1532 { | |
| 1533 CHECK_INT (start); | |
| 1534 st = XINT (start); | |
| 1535 } | |
| 1536 if (!NILP (end)) | |
| 1537 { | |
| 1538 CHECK_INT (end); | |
| 1539 en = XINT (end); | |
| 1540 } | |
| 1541 if (!NILP (offset)) | |
| 1542 { | |
| 1543 CHECK_INT (offset); | |
| 1544 of = XINT (offset); | |
| 1545 } | |
| 1546 | |
| 1547 if (!LISTP (flags)) | |
| 1548 flags = list1 (flags); | |
| 1549 | |
| 1550 { | |
| 1551 EXTERNAL_LIST_LOOP_2 (elt, flags) | |
| 1552 { | |
| 1553 if (EQ (elt, Qignore_first_column)) | |
| 1554 ignore_first_column = 1; | |
| 1555 else if (EQ (elt, Qbig5)) | |
| 1556 big5 = 1; | |
| 1557 else | |
| 1558 invalid_constant | |
| 1318 | 1559 ("Unrecognized `load-unicode-mapping-table' flag", elt); |
| 771 | 1560 } |
| 1561 } | |
| 1562 | |
| 1563 GCPRO1 (filename); | |
| 1564 filename = Fexpand_file_name (filename, Qnil); | |
| 1565 file = qxe_fopen (XSTRING_DATA (filename), READ_TEXT); | |
| 1566 if (!file) | |
| 1567 report_file_error ("Cannot open", filename); | |
| 1568 record_unwind_protect (cerrar_el_fulano, make_opaque_ptr (file)); | |
| 1569 while (fgets (line, sizeof (line), file)) | |
| 1570 { | |
| 1571 char *p = line; | |
| 1572 int cp1, cp2, endcount; | |
| 1573 int cp1high, cp1low; | |
| 1574 int dummy; | |
| 1575 | |
| 1576 while (*p) /* erase all comments out of the line */ | |
| 1577 { | |
| 1578 if (*p == '#') | |
| 1579 *p = '\0'; | |
| 1580 else | |
| 1581 p++; | |
| 1582 } | |
| 1583 /* see if line is nothing but whitespace and skip if so */ | |
| 1584 p = line + strspn (line, " \t\n\r\f"); | |
| 1585 if (!*p) | |
| 1586 continue; | |
| 1587 /* NOTE: It appears that MS Windows and Newlib sscanf() have | |
| 1588 different interpretations for whitespace (== "skip all whitespace | |
| 1589 at processing point"): Newlib requires at least one corresponding | |
| 1590 whitespace character in the input, but MS allows none. The | |
| 1591 following would be easier to write if we could count on the MS | |
| 1592 interpretation. | |
| 1593 | |
| 1594 Also, the return value does NOT include %n storage. */ | |
| 1595 if ((!ignore_first_column ? | |
| 1596 sscanf (p, "%i %i%n", &cp1, &cp2, &endcount) < 2 : | |
| 1597 sscanf (p, "%i %i %i%n", &dummy, &cp1, &cp2, &endcount) < 3) | |
| 2367 | 1598 /* #### Temporary code! Cygwin newlib fucked up scanf() handling |
| 1599 of numbers beginning 0x0... starting in 04/2004, in an attempt | |
| 1600 to fix another bug. A partial fix for this was put in in | |
| 1601 06/2004, but as of 10/2004 the value of ENDCOUNT returned in | |
| 1602 such case is still wrong. If this gets fixed soon, remove | |
| 1603 this code. --ben */ | |
| 1604 #ifndef CYGWIN_SCANF_BUG | |
| 1605 || *(p + endcount + strspn (p + endcount, " \t\n\r\f")) | |
| 1606 #endif | |
| 1607 ) | |
| 771 | 1608 { |
| 793 | 1609 warn_when_safe (Qunicode, Qwarning, |
| 771 | 1610 "Unrecognized line in translation file %s:\n%s", |
| 1611 XSTRING_DATA (filename), line); | |
| 1612 continue; | |
| 1613 } | |
| 1614 if (cp1 >= st && cp1 <= en) | |
| 1615 { | |
| 1616 cp1 += of; | |
| 1617 if (cp1 < 0 || cp1 >= 65536) | |
| 1618 { | |
| 1619 out_of_range: | |
| 793 | 1620 warn_when_safe (Qunicode, Qwarning, |
| 1621 "Out of range first codepoint 0x%x in " | |
| 1622 "translation file %s:\n%s", | |
| 771 | 1623 cp1, XSTRING_DATA (filename), line); |
| 1624 continue; | |
| 1625 } | |
| 1626 | |
| 1627 cp1high = cp1 >> 8; | |
| 1628 cp1low = cp1 & 255; | |
| 1629 | |
| 1630 if (big5) | |
| 1631 { | |
| 867 | 1632 Ichar ch = decode_big5_char (cp1high, cp1low); |
| 771 | 1633 if (ch == -1) |
| 793 | 1634 |
| 1635 warn_when_safe (Qunicode, Qwarning, | |
| 1636 "Out of range Big5 codepoint 0x%x in " | |
| 1637 "translation file %s:\n%s", | |
| 771 | 1638 cp1, XSTRING_DATA (filename), line); |
| 1639 else | |
| 1640 set_unicode_conversion (ch, cp2); | |
| 1641 } | |
| 1642 else | |
| 1643 { | |
| 1644 int l1, h1, l2, h2; | |
| 867 | 1645 Ichar emch; |
| 771 | 1646 |
| 1647 switch (XCHARSET_TYPE (charset)) | |
| 1648 { | |
| 1649 case CHARSET_TYPE_94: l1 = 33; h1 = 126; l2 = 0; h2 = 0; break; | |
| 1650 case CHARSET_TYPE_96: l1 = 32; h1 = 127; l2 = 0; h2 = 0; break; | |
| 1651 case CHARSET_TYPE_94X94: l1 = 33; h1 = 126; l2 = 33; h2 = 126; | |
| 1652 break; | |
| 1653 case CHARSET_TYPE_96X96: l1 = 32; h1 = 127; l2 = 32; h2 = 127; | |
| 1654 break; | |
| 2500 | 1655 default: ABORT (); l1 = 0; h1 = 0; l2 = 0; h2 = 0; |
| 771 | 1656 } |
| 1657 | |
| 1658 if (cp1high < l2 || cp1high > h2 || cp1low < l1 || cp1low > h1) | |
| 1659 goto out_of_range; | |
| 1660 | |
| 867 | 1661 emch = (cp1high == 0 ? make_ichar (charset, cp1low, 0) : |
| 1662 make_ichar (charset, cp1high, cp1low)); | |
| 771 | 1663 set_unicode_conversion (emch, cp2); |
| 1664 } | |
| 1665 } | |
| 1666 } | |
| 1667 | |
| 1668 if (ferror (file)) | |
| 1669 report_file_error ("IO error when reading", filename); | |
| 1670 | |
| 1671 unbind_to (fondo); /* close file */ | |
| 1672 UNGCPRO; | |
| 1673 return Qnil; | |
| 1674 } | |
| 1675 | |
| 1676 #endif /* MULE */ | |
| 1677 | |
| 1678 | |
| 1679 /************************************************************************/ | |
| 1680 /* Unicode coding system */ | |
| 1681 /************************************************************************/ | |
| 1682 | |
| 1683 struct unicode_coding_system | |
| 1684 { | |
| 1685 enum unicode_type type; | |
| 1887 | 1686 unsigned int little_endian :1; |
| 1687 unsigned int need_bom :1; | |
| 771 | 1688 }; |
| 1689 | |
| 1690 #define CODING_SYSTEM_UNICODE_TYPE(codesys) \ | |
| 1691 (CODING_SYSTEM_TYPE_DATA (codesys, unicode)->type) | |
| 1692 #define XCODING_SYSTEM_UNICODE_TYPE(codesys) \ | |
| 1693 CODING_SYSTEM_UNICODE_TYPE (XCODING_SYSTEM (codesys)) | |
| 1694 #define CODING_SYSTEM_UNICODE_LITTLE_ENDIAN(codesys) \ | |
| 1695 (CODING_SYSTEM_TYPE_DATA (codesys, unicode)->little_endian) | |
| 1696 #define XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN(codesys) \ | |
| 1697 CODING_SYSTEM_UNICODE_LITTLE_ENDIAN (XCODING_SYSTEM (codesys)) | |
| 1698 #define CODING_SYSTEM_UNICODE_NEED_BOM(codesys) \ | |
| 1699 (CODING_SYSTEM_TYPE_DATA (codesys, unicode)->need_bom) | |
| 1700 #define XCODING_SYSTEM_UNICODE_NEED_BOM(codesys) \ | |
| 1701 CODING_SYSTEM_UNICODE_NEED_BOM (XCODING_SYSTEM (codesys)) | |
| 1702 | |
| 1703 struct unicode_coding_stream | |
| 1704 { | |
| 1705 /* decode */ | |
| 1706 unsigned char counter; | |
| 4096 | 1707 unsigned char indicated_length; |
| 771 | 1708 int seen_char; |
| 1709 /* encode */ | |
| 1710 Lisp_Object current_charset; | |
| 1711 int current_char_boundary; | |
| 1712 int wrote_bom; | |
| 1713 }; | |
| 1714 | |
| 1204 | 1715 static const struct memory_description unicode_coding_system_description[] = { |
| 771 | 1716 { XD_END } |
| 1717 }; | |
| 1718 | |
| 1204 | 1719 DEFINE_CODING_SYSTEM_TYPE_WITH_DATA (unicode); |
| 1720 | |
| 771 | 1721 static void |
| 1722 decode_unicode_char (int ch, unsigned_char_dynarr *dst, | |
| 1887 | 1723 struct unicode_coding_stream *data, |
| 1724 unsigned int ignore_bom) | |
| 771 | 1725 { |
| 1726 if (ch == 0xFEFF && !data->seen_char && ignore_bom) | |
| 1727 ; | |
| 1728 else | |
| 1729 { | |
| 1730 #ifdef MULE | |
| 877 | 1731 Ichar chr = unicode_to_ichar (ch, unicode_precedence_dynarr); |
| 771 | 1732 |
| 1733 if (chr != -1) | |
| 1734 { | |
| 867 | 1735 Ibyte work[MAX_ICHAR_LEN]; |
| 771 | 1736 int len; |
| 1737 | |
| 867 | 1738 len = set_itext_ichar (work, chr); |
| 771 | 1739 Dynarr_add_many (dst, work, len); |
| 1740 } | |
| 1741 else | |
| 1742 { | |
| 1743 Dynarr_add (dst, LEADING_BYTE_JAPANESE_JISX0208); | |
| 1744 Dynarr_add (dst, 34 + 128); | |
| 1745 Dynarr_add (dst, 46 + 128); | |
| 1746 } | |
| 1747 #else | |
| 867 | 1748 Dynarr_add (dst, (Ibyte) ch); |
| 771 | 1749 #endif /* MULE */ |
| 1750 } | |
| 1751 | |
| 1752 data->seen_char = 1; | |
| 1753 } | |
| 1754 | |
| 4096 | 1755 #define DECODE_ERROR_OCTET(octet, dst, data, ignore_bom) \ |
| 1756 decode_unicode_char ((octet) + UNICODE_ERROR_OCTET_RANGE_START, \ | |
| 1757 dst, data, ignore_bom) | |
| 1758 | |
| 1759 static inline void | |
| 1760 indicate_invalid_utf_8 (unsigned char indicated_length, | |
| 1761 unsigned char counter, | |
| 1762 int ch, unsigned_char_dynarr *dst, | |
| 1763 struct unicode_coding_stream *data, | |
| 1764 unsigned int ignore_bom) | |
| 1765 { | |
| 1766 Binbyte stored = indicated_length - counter; | |
| 1767 Binbyte mask = "\x00\x00\xC0\xE0\xF0\xF8\xFC"[indicated_length]; | |
| 1768 | |
| 1769 while (stored > 0) | |
| 1770 { | |
| 1771 DECODE_ERROR_OCTET (((ch >> (6 * (stored - 1))) & 0x3f) | mask, | |
| 1772 dst, data, ignore_bom); | |
| 1773 mask = 0x80, stored--; | |
| 1774 } | |
| 1775 } | |
| 1776 | |
| 771 | 1777 static void |
| 1778 encode_unicode_char_1 (int code, unsigned_char_dynarr *dst, | |
| 4096 | 1779 enum unicode_type type, unsigned int little_endian, |
| 1780 int write_error_characters_as_such) | |
| 771 | 1781 { |
| 1782 switch (type) | |
| 1783 { | |
| 1784 case UNICODE_UTF_16: | |
| 1785 if (little_endian) | |
| 1786 { | |
| 3952 | 1787 if (code < 0x10000) { |
| 1788 Dynarr_add (dst, (unsigned char) (code & 255)); | |
| 1789 Dynarr_add (dst, (unsigned char) ((code >> 8) & 255)); | |
| 4096 | 1790 } else if (write_error_characters_as_such && |
| 1791 code >= UNICODE_ERROR_OCTET_RANGE_START && | |
| 1792 code < (UNICODE_ERROR_OCTET_RANGE_START + 0x100)) | |
| 1793 { | |
| 1794 Dynarr_add (dst, (unsigned char) ((code & 0xFF))); | |
| 1795 } | |
| 1796 else if (code < 0x110000) | |
| 1797 { | |
| 1798 /* Little endian; least significant byte first. */ | |
| 1799 int first, second; | |
| 1800 | |
| 1801 CODE_TO_UTF_16_SURROGATES(code, first, second); | |
| 1802 | |
| 1803 Dynarr_add (dst, (unsigned char) (first & 255)); | |
| 1804 Dynarr_add (dst, (unsigned char) ((first >> 8) & 255)); | |
| 1805 | |
| 1806 Dynarr_add (dst, (unsigned char) (second & 255)); | |
| 1807 Dynarr_add (dst, (unsigned char) ((second >> 8) & 255)); | |
| 1808 } | |
| 1809 else | |
| 1810 { | |
| 1811 /* Not valid Unicode. Pass U+FFFD, least significant byte | |
| 1812 first. */ | |
| 1813 Dynarr_add (dst, (unsigned char) 0xFD); | |
| 1814 Dynarr_add (dst, (unsigned char) 0xFF); | |
| 1815 } | |
| 771 | 1816 } |
| 1817 else | |
| 1818 { | |
| 3952 | 1819 if (code < 0x10000) { |
| 1820 Dynarr_add (dst, (unsigned char) ((code >> 8) & 255)); | |
| 1821 Dynarr_add (dst, (unsigned char) (code & 255)); | |
| 4096 | 1822 } else if (write_error_characters_as_such && |
| 1823 code >= UNICODE_ERROR_OCTET_RANGE_START && | |
| 1824 code < (UNICODE_ERROR_OCTET_RANGE_START + 0x100)) | |
| 1825 { | |
| 1826 Dynarr_add (dst, (unsigned char) ((code & 0xFF))); | |
| 1827 } | |
| 1828 else if (code < 0x110000) | |
| 1829 { | |
| 1830 /* Big endian; most significant byte first. */ | |
| 1831 int first, second; | |
| 1832 | |
| 1833 CODE_TO_UTF_16_SURROGATES(code, first, second); | |
| 1834 | |
| 1835 Dynarr_add (dst, (unsigned char) ((first >> 8) & 255)); | |
| 1836 Dynarr_add (dst, (unsigned char) (first & 255)); | |
| 1837 | |
| 1838 Dynarr_add (dst, (unsigned char) ((second >> 8) & 255)); | |
| 1839 Dynarr_add (dst, (unsigned char) (second & 255)); | |
| 1840 } | |
| 1841 else | |
| 1842 { | |
| 1843 /* Not valid Unicode. Pass U+FFFD, most significant byte | |
| 1844 first. */ | |
| 1845 Dynarr_add (dst, (unsigned char) 0xFF); | |
| 1846 Dynarr_add (dst, (unsigned char) 0xFD); | |
| 1847 } | |
| 771 | 1848 } |
| 1849 break; | |
| 1850 | |
| 1851 case UNICODE_UCS_4: | |
| 4096 | 1852 case UNICODE_UTF_32: |
| 771 | 1853 if (little_endian) |
| 1854 { | |
| 4096 | 1855 if (write_error_characters_as_such && |
| 1856 code >= UNICODE_ERROR_OCTET_RANGE_START && | |
| 1857 code < (UNICODE_ERROR_OCTET_RANGE_START + 0x100)) | |
| 1858 { | |
| 1859 Dynarr_add (dst, (unsigned char) ((code & 0xFF))); | |
| 1860 } | |
| 1861 else | |
| 1862 { | |
| 1863 /* We generate and accept incorrect sequences here, which is | |
| 1864 okay, in the interest of preservation of the user's | |
| 1865 data. */ | |
| 1866 Dynarr_add (dst, (unsigned char) (code & 255)); | |
| 1867 Dynarr_add (dst, (unsigned char) ((code >> 8) & 255)); | |
| 1868 Dynarr_add (dst, (unsigned char) ((code >> 16) & 255)); | |
| 1869 Dynarr_add (dst, (unsigned char) (code >> 24)); | |
| 1870 } | |
| 771 | 1871 } |
| 1872 else | |
| 1873 { | |
| 4096 | 1874 if (write_error_characters_as_such && |
| 1875 code >= UNICODE_ERROR_OCTET_RANGE_START && | |
| 1876 code < (UNICODE_ERROR_OCTET_RANGE_START + 0x100)) | |
| 1877 { | |
| 1878 Dynarr_add (dst, (unsigned char) ((code & 0xFF))); | |
| 1879 } | |
| 1880 else | |
| 1881 { | |
| 1882 /* We generate and accept incorrect sequences here, which is okay, | |
| 1883 in the interest of preservation of the user's data. */ | |
| 1884 Dynarr_add (dst, (unsigned char) (code >> 24)); | |
| 1885 Dynarr_add (dst, (unsigned char) ((code >> 16) & 255)); | |
| 1886 Dynarr_add (dst, (unsigned char) ((code >> 8) & 255)); | |
| 1887 Dynarr_add (dst, (unsigned char) (code & 255)); | |
| 1888 } | |
| 771 | 1889 } |
| 1890 break; | |
| 1891 | |
| 1892 case UNICODE_UTF_8: | |
| 1893 if (code <= 0x7f) | |
| 1894 { | |
| 1895 Dynarr_add (dst, (unsigned char) code); | |
| 1896 } | |
| 1897 else if (code <= 0x7ff) | |
| 1898 { | |
| 1899 Dynarr_add (dst, (unsigned char) ((code >> 6) | 0xc0)); | |
| 1900 Dynarr_add (dst, (unsigned char) ((code & 0x3f) | 0x80)); | |
| 1901 } | |
| 1902 else if (code <= 0xffff) | |
| 1903 { | |
| 1904 Dynarr_add (dst, (unsigned char) ((code >> 12) | 0xe0)); | |
| 1905 Dynarr_add (dst, (unsigned char) (((code >> 6) & 0x3f) | 0x80)); | |
| 1906 Dynarr_add (dst, (unsigned char) ((code & 0x3f) | 0x80)); | |
| 1907 } | |
| 1908 else if (code <= 0x1fffff) | |
| 1909 { | |
| 1910 Dynarr_add (dst, (unsigned char) ((code >> 18) | 0xf0)); | |
| 1911 Dynarr_add (dst, (unsigned char) (((code >> 12) & 0x3f) | 0x80)); | |
| 1912 Dynarr_add (dst, (unsigned char) (((code >> 6) & 0x3f) | 0x80)); | |
| 1913 Dynarr_add (dst, (unsigned char) ((code & 0x3f) | 0x80)); | |
| 1914 } | |
| 1915 else if (code <= 0x3ffffff) | |
| 1916 { | |
| 4096 | 1917 |
| 1918 #if !(UNICODE_ERROR_OCTET_RANGE_START > 0x1fffff \ | |
| 1919 && UNICODE_ERROR_OCTET_RANGE_START < 0x3ffffff) | |
| 1920 #error "This code needs to be rewritten. " | |
| 1921 #endif | |
| 1922 if (write_error_characters_as_such && | |
| 1923 code >= UNICODE_ERROR_OCTET_RANGE_START && | |
| 1924 code < (UNICODE_ERROR_OCTET_RANGE_START + 0x100)) | |
| 1925 { | |
| 1926 Dynarr_add (dst, (unsigned char) ((code & 0xFF))); | |
| 1927 } | |
| 1928 else | |
| 1929 { | |
| 1930 Dynarr_add (dst, (unsigned char) ((code >> 24) | 0xf8)); | |
| 1931 Dynarr_add (dst, (unsigned char) (((code >> 18) & 0x3f) | 0x80)); | |
| 1932 Dynarr_add (dst, (unsigned char) (((code >> 12) & 0x3f) | 0x80)); | |
| 1933 Dynarr_add (dst, (unsigned char) (((code >> 6) & 0x3f) | 0x80)); | |
| 1934 Dynarr_add (dst, (unsigned char) ((code & 0x3f) | 0x80)); | |
| 1935 } | |
| 771 | 1936 } |
| 1937 else | |
| 1938 { | |
| 1939 Dynarr_add (dst, (unsigned char) ((code >> 30) | 0xfc)); | |
| 1940 Dynarr_add (dst, (unsigned char) (((code >> 24) & 0x3f) | 0x80)); | |
| 1941 Dynarr_add (dst, (unsigned char) (((code >> 18) & 0x3f) | 0x80)); | |
| 1942 Dynarr_add (dst, (unsigned char) (((code >> 12) & 0x3f) | 0x80)); | |
| 1943 Dynarr_add (dst, (unsigned char) (((code >> 6) & 0x3f) | 0x80)); | |
| 1944 Dynarr_add (dst, (unsigned char) ((code & 0x3f) | 0x80)); | |
| 1945 } | |
| 1946 break; | |
| 1947 | |
| 2500 | 1948 case UNICODE_UTF_7: ABORT (); |
| 771 | 1949 |
| 2500 | 1950 default: ABORT (); |
| 771 | 1951 } |
| 1952 } | |
| 1953 | |
| 3439 | 1954 /* Also used in mule-coding.c for UTF-8 handling in ISO 2022-oriented |
| 1955 encodings. */ | |
| 1956 void | |
| 2333 | 1957 encode_unicode_char (Lisp_Object USED_IF_MULE (charset), int h, |
| 1958 int USED_IF_MULE (l), unsigned_char_dynarr *dst, | |
| 4096 | 1959 enum unicode_type type, unsigned int little_endian, |
| 1960 int write_error_characters_as_such) | |
| 771 | 1961 { |
| 1962 #ifdef MULE | |
| 867 | 1963 int code = ichar_to_unicode (make_ichar (charset, h & 127, l & 127)); |
| 771 | 1964 |
| 1965 if (code == -1) | |
| 1966 { | |
| 1967 if (type != UNICODE_UTF_16 && | |
| 1968 XCHARSET_DIMENSION (charset) == 2 && | |
| 1969 XCHARSET_CHARS (charset) == 94) | |
| 1970 { | |
| 1971 unsigned char final = XCHARSET_FINAL (charset); | |
| 1972 | |
| 1973 if (('@' <= final) && (final < 0x7f)) | |
| 1974 code = (0xe00000 + (final - '@') * 94 * 94 | |
| 1975 + ((h & 127) - 33) * 94 + (l & 127) - 33); | |
| 1976 else | |
| 1977 code = '?'; | |
| 1978 } | |
| 1979 else | |
| 1980 code = '?'; | |
| 1981 } | |
| 1982 #else | |
| 1983 int code = h; | |
| 1984 #endif /* MULE */ | |
| 1985 | |
| 4096 | 1986 encode_unicode_char_1 (code, dst, type, little_endian, |
| 1987 write_error_characters_as_such); | |
| 771 | 1988 } |
| 1989 | |
| 1990 static Bytecount | |
| 1991 unicode_convert (struct coding_stream *str, const UExtbyte *src, | |
| 1992 unsigned_char_dynarr *dst, Bytecount n) | |
| 1993 { | |
| 1994 unsigned int ch = str->ch; | |
| 1995 struct unicode_coding_stream *data = CODING_STREAM_TYPE_DATA (str, unicode); | |
| 1996 enum unicode_type type = | |
| 1997 XCODING_SYSTEM_UNICODE_TYPE (str->codesys); | |
| 1887 | 1998 unsigned int little_endian = |
| 1999 XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN (str->codesys); | |
| 2000 unsigned int ignore_bom = XCODING_SYSTEM_UNICODE_NEED_BOM (str->codesys); | |
| 771 | 2001 Bytecount orign = n; |
| 2002 | |
| 2003 if (str->direction == CODING_DECODE) | |
| 2004 { | |
| 2005 unsigned char counter = data->counter; | |
| 4096 | 2006 unsigned char indicated_length |
| 2007 = data->indicated_length; | |
| 771 | 2008 |
| 2009 while (n--) | |
| 2010 { | |
| 2011 UExtbyte c = *src++; | |
| 2012 | |
| 2013 switch (type) | |
| 2014 { | |
| 2015 case UNICODE_UTF_8: | |
| 4096 | 2016 if (0 == counter) |
| 2017 { | |
| 2018 if (0 == (c & 0x80)) | |
| 2019 { | |
| 2020 /* ASCII. */ | |
| 2021 decode_unicode_char (c, dst, data, ignore_bom); | |
| 2022 } | |
| 2023 else if (0 == (c & 0x40)) | |
| 2024 { | |
| 2025 /* Highest bit set, second highest not--there's | |
| 2026 something wrong. */ | |
| 2027 DECODE_ERROR_OCTET (c, dst, data, ignore_bom); | |
| 2028 } | |
| 2029 else if (0 == (c & 0x20)) | |
| 2030 { | |
| 2031 ch = c & 0x1f; | |
| 2032 counter = 1; | |
| 2033 indicated_length = 2; | |
| 2034 } | |
| 2035 else if (0 == (c & 0x10)) | |
| 2036 { | |
| 2037 ch = c & 0x0f; | |
| 2038 counter = 2; | |
| 2039 indicated_length = 3; | |
| 2040 } | |
| 2041 else if (0 == (c & 0x08)) | |
| 2042 { | |
| 2043 ch = c & 0x0f; | |
| 2044 counter = 3; | |
| 2045 indicated_length = 4; | |
| 2046 } | |
| 2047 else | |
| 2048 { | |
| 2049 /* We don't supports lengths longer than 4 in | |
| 2050 external-format data. */ | |
| 2051 DECODE_ERROR_OCTET (c, dst, data, ignore_bom); | |
| 2052 | |
| 2053 } | |
| 2054 } | |
| 2055 else | |
| 2056 { | |
| 2057 /* counter != 0 */ | |
| 2058 if ((0 == (c & 0x80)) || (0 != (c & 0x40))) | |
| 2059 { | |
| 2060 indicate_invalid_utf_8(indicated_length, | |
| 2061 counter, | |
| 2062 ch, dst, data, ignore_bom); | |
| 2063 if (c & 0x80) | |
| 2064 { | |
| 2065 DECODE_ERROR_OCTET (c, dst, data, ignore_bom); | |
| 2066 } | |
| 2067 else | |
| 2068 { | |
| 2069 /* The character just read is ASCII. Treat it as | |
| 2070 such. */ | |
| 2071 decode_unicode_char (c, dst, data, ignore_bom); | |
| 2072 } | |
| 2073 ch = 0; | |
| 2074 counter = 0; | |
| 2075 } | |
| 2076 else | |
| 2077 { | |
| 2078 ch = (ch << 6) | (c & 0x3f); | |
| 2079 counter--; | |
| 2080 /* Just processed the final byte. Emit the character. */ | |
| 2081 if (!counter) | |
| 2082 { | |
| 2083 /* Don't accept over-long sequences, surrogates, | |
| 2084 or codes above #x10FFFF. */ | |
| 2085 if ((ch < 0x80) || | |
| 2086 ((ch < 0x800) && indicated_length > 2) || | |
| 2087 ((ch < 0x10000) && indicated_length > 3) || | |
| 2088 valid_utf_16_surrogate(ch) || (ch > 0x110000)) | |
| 2089 { | |
| 2090 indicate_invalid_utf_8(indicated_length, | |
| 2091 counter, | |
| 2092 ch, dst, data, | |
| 2093 ignore_bom); | |
| 2094 } | |
| 2095 else | |
| 2096 { | |
| 2097 decode_unicode_char (ch, dst, data, ignore_bom); | |
| 2098 } | |
| 2099 ch = 0; | |
| 2100 } | |
| 2101 } | |
| 771 | 2102 } |
| 2103 break; | |
| 2104 | |
| 2105 case UNICODE_UTF_16: | |
| 3952 | 2106 |
| 771 | 2107 if (little_endian) |
| 2108 ch = (c << counter) | ch; | |
| 2109 else | |
| 2110 ch = (ch << 8) | c; | |
| 4096 | 2111 |
| 771 | 2112 counter += 8; |
| 3952 | 2113 |
| 4096 | 2114 if (16 == counter) |
| 2115 { | |
| 771 | 2116 int tempch = ch; |
| 4096 | 2117 |
| 2118 if (valid_utf_16_first_surrogate(ch)) | |
| 2119 { | |
| 2120 break; | |
| 2121 } | |
| 771 | 2122 ch = 0; |
| 2123 counter = 0; | |
| 2124 decode_unicode_char (tempch, dst, data, ignore_bom); | |
| 2125 } | |
| 4096 | 2126 else if (32 == counter) |
| 3952 | 2127 { |
| 2128 int tempch; | |
| 4096 | 2129 |
|
4583
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2130 if (little_endian) |
| 4096 | 2131 { |
|
4583
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2132 if (!valid_utf_16_last_surrogate(ch >> 16)) |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2133 { |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2134 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2135 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2136 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2137 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2138 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2139 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2140 DECODE_ERROR_OCTET ((ch >> 24) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2141 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2142 } |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2143 else |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2144 { |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2145 tempch = utf_16_surrogates_to_code((ch & 0xffff), |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2146 (ch >> 16)); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2147 decode_unicode_char(tempch, dst, data, ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2148 } |
| 4096 | 2149 } |
|
4583
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2150 else |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2151 { |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2152 if (!valid_utf_16_last_surrogate(ch & 0xFFFF)) |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2153 { |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2154 DECODE_ERROR_OCTET ((ch >> 24) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2155 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2156 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2157 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2158 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2159 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2160 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2161 ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2162 } |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2163 else |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2164 { |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2165 tempch = utf_16_surrogates_to_code((ch >> 16), |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2166 (ch & 0xffff)); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2167 decode_unicode_char(tempch, dst, data, ignore_bom); |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2168 } |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2169 } |
|
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4270
diff
changeset
|
2170 |
| 3952 | 2171 ch = 0; |
| 2172 counter = 0; | |
| 4096 | 2173 } |
| 2174 else | |
| 2175 assert(8 == counter || 24 == counter); | |
| 771 | 2176 break; |
| 2177 | |
| 2178 case UNICODE_UCS_4: | |
| 4096 | 2179 case UNICODE_UTF_32: |
| 771 | 2180 if (little_endian) |
| 2181 ch = (c << counter) | ch; | |
| 2182 else | |
| 2183 ch = (ch << 8) | c; | |
| 2184 counter += 8; | |
| 2185 if (counter == 32) | |
| 2186 { | |
| 4096 | 2187 if (ch > 0x10ffff) |
| 2188 { | |
| 2189 /* ch is not a legal Unicode character. We're fine | |
| 2190 with that in UCS-4, though not in UTF-32. */ | |
| 2191 if (UNICODE_UCS_4 == type && ch < 0x80000000) | |
| 2192 { | |
| 2193 decode_unicode_char (ch, dst, data, ignore_bom); | |
| 2194 } | |
| 2195 else if (little_endian) | |
| 2196 { | |
| 2197 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, | |
| 2198 ignore_bom); | |
| 2199 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2200 ignore_bom); | |
| 2201 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, | |
| 2202 ignore_bom); | |
| 2203 DECODE_ERROR_OCTET ((ch >> 24) & 0xFF, dst, data, | |
| 2204 ignore_bom); | |
| 2205 } | |
| 2206 else | |
| 2207 { | |
| 2208 DECODE_ERROR_OCTET ((ch >> 24) & 0xFF, dst, data, | |
| 2209 ignore_bom); | |
| 2210 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, | |
| 2211 ignore_bom); | |
| 2212 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2213 ignore_bom); | |
| 2214 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, | |
| 2215 ignore_bom); | |
| 2216 } | |
| 2217 } | |
| 2218 else | |
| 2219 { | |
| 2220 decode_unicode_char (ch, dst, data, ignore_bom); | |
| 2221 } | |
| 771 | 2222 ch = 0; |
| 2223 counter = 0; | |
| 2224 } | |
| 2225 break; | |
| 2226 | |
| 2227 case UNICODE_UTF_7: | |
| 2500 | 2228 ABORT (); |
| 771 | 2229 break; |
| 2230 | |
| 2500 | 2231 default: ABORT (); |
| 771 | 2232 } |
| 2233 | |
| 2234 } | |
| 4096 | 2235 |
|
4688
7e54adf407a1
Fix a bug with Unicode error sequences and very short input strings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
2236 if (str->eof && counter) |
| 4096 | 2237 { |
| 2238 switch (type) | |
| 2239 { | |
| 2240 case UNICODE_UTF_8: | |
| 2241 indicate_invalid_utf_8(indicated_length, | |
| 2242 counter, ch, dst, data, | |
| 2243 ignore_bom); | |
| 2244 break; | |
| 2245 | |
| 2246 case UNICODE_UTF_16: | |
| 2247 case UNICODE_UCS_4: | |
| 2248 case UNICODE_UTF_32: | |
| 2249 if (8 == counter) | |
| 2250 { | |
| 2251 DECODE_ERROR_OCTET (ch, dst, data, ignore_bom); | |
| 2252 } | |
| 2253 else if (16 == counter) | |
| 2254 { | |
| 2255 if (little_endian) | |
| 2256 { | |
| 2257 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, ignore_bom); | |
| 2258 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2259 ignore_bom); | |
| 2260 } | |
| 2261 else | |
| 2262 { | |
| 2263 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2264 ignore_bom); | |
| 2265 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, ignore_bom); | |
| 2266 } | |
| 2267 } | |
| 2268 else if (24 == counter) | |
| 2269 { | |
| 2270 if (little_endian) | |
| 2271 { | |
| 2272 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, | |
| 2273 ignore_bom); | |
| 2274 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, ignore_bom); | |
| 2275 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2276 ignore_bom); | |
| 2277 } | |
| 2278 else | |
| 2279 { | |
| 2280 DECODE_ERROR_OCTET ((ch >> 16) & 0xFF, dst, data, | |
| 2281 ignore_bom); | |
| 2282 DECODE_ERROR_OCTET ((ch >> 8) & 0xFF, dst, data, | |
| 2283 ignore_bom); | |
| 2284 DECODE_ERROR_OCTET (ch & 0xFF, dst, data, | |
| 2285 ignore_bom); | |
| 2286 } | |
| 2287 } | |
| 2288 else assert(0); | |
| 2289 break; | |
| 2290 } | |
| 2291 ch = 0; | |
|
4688
7e54adf407a1
Fix a bug with Unicode error sequences and very short input strings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
2292 counter = 0; |
| 4096 | 2293 } |
| 771 | 2294 |
| 2295 data->counter = counter; | |
| 4096 | 2296 data->indicated_length = indicated_length; |
| 771 | 2297 } |
| 2298 else | |
| 2299 { | |
| 2300 unsigned char char_boundary = data->current_char_boundary; | |
| 2301 Lisp_Object charset = data->current_charset; | |
| 2302 | |
| 2303 #ifdef ENABLE_COMPOSITE_CHARS | |
| 2304 /* flags for handling composite chars. We do a little switcheroo | |
| 2305 on the source while we're outputting the composite char. */ | |
| 2306 Bytecount saved_n = 0; | |
| 867 | 2307 const Ibyte *saved_src = NULL; |
| 771 | 2308 int in_composite = 0; |
| 2309 | |
| 2310 back_to_square_n: | |
| 2311 #endif /* ENABLE_COMPOSITE_CHARS */ | |
| 2312 | |
| 2313 if (XCODING_SYSTEM_UNICODE_NEED_BOM (str->codesys) && !data->wrote_bom) | |
| 2314 { | |
| 4096 | 2315 encode_unicode_char_1 (0xFEFF, dst, type, little_endian, 1); |
| 771 | 2316 data->wrote_bom = 1; |
| 2317 } | |
| 2318 | |
| 2319 while (n--) | |
| 2320 { | |
| 867 | 2321 Ibyte c = *src++; |
| 771 | 2322 |
| 2323 #ifdef MULE | |
| 826 | 2324 if (byte_ascii_p (c)) |
| 771 | 2325 #endif /* MULE */ |
| 2326 { /* Processing ASCII character */ | |
| 2327 ch = 0; | |
| 2328 encode_unicode_char (Vcharset_ascii, c, 0, dst, type, | |
| 4096 | 2329 little_endian, 1); |
| 771 | 2330 |
| 2331 char_boundary = 1; | |
| 2332 } | |
| 2333 #ifdef MULE | |
| 867 | 2334 else if (ibyte_leading_byte_p (c) || ibyte_leading_byte_p (ch)) |
| 771 | 2335 { /* Processing Leading Byte */ |
| 2336 ch = 0; | |
| 826 | 2337 charset = charset_by_leading_byte (c); |
| 2338 if (leading_byte_prefix_p(c)) | |
| 771 | 2339 ch = c; |
| 2340 char_boundary = 0; | |
| 2341 } | |
| 2342 else | |
| 2343 { /* Processing Non-ASCII character */ | |
| 2344 char_boundary = 1; | |
| 2345 if (EQ (charset, Vcharset_control_1)) | |
| 2704 | 2346 /* See: |
| 2347 | |
| 2348 (Info-goto-node "(internals)Internal String Encoding") | |
| 2349 | |
| 2350 for the rationale behind subtracting #xa0 from the | |
| 2351 character's code. */ | |
| 2352 encode_unicode_char (Vcharset_control_1, c - 0xa0, 0, dst, | |
| 4096 | 2353 type, little_endian, 1); |
| 771 | 2354 else |
| 2355 { | |
| 2356 switch (XCHARSET_REP_BYTES (charset)) | |
| 2357 { | |
| 2358 case 2: | |
| 2359 encode_unicode_char (charset, c, 0, dst, type, | |
| 4096 | 2360 little_endian, 1); |
| 771 | 2361 break; |
| 2362 case 3: | |
| 2363 if (XCHARSET_PRIVATE_P (charset)) | |
| 2364 { | |
| 2365 encode_unicode_char (charset, c, 0, dst, type, | |
| 4096 | 2366 little_endian, 1); |
| 771 | 2367 ch = 0; |
| 2368 } | |
| 2369 else if (ch) | |
| 2370 { | |
| 2371 #ifdef ENABLE_COMPOSITE_CHARS | |
| 2372 if (EQ (charset, Vcharset_composite)) | |
| 2373 { | |
| 2374 if (in_composite) | |
| 2375 { | |
| 2376 /* #### Bother! We don't know how to | |
| 2377 handle this yet. */ | |
| 2378 encode_unicode_char (Vcharset_ascii, '~', 0, | |
| 2379 dst, type, | |
| 4096 | 2380 little_endian, 1); |
| 771 | 2381 } |
| 2382 else | |
| 2383 { | |
| 867 | 2384 Ichar emch = make_ichar (Vcharset_composite, |
| 771 | 2385 ch & 0x7F, |
| 2386 c & 0x7F); | |
| 2387 Lisp_Object lstr = | |
| 2388 composite_char_string (emch); | |
| 2389 saved_n = n; | |
| 2390 saved_src = src; | |
| 2391 in_composite = 1; | |
| 2392 src = XSTRING_DATA (lstr); | |
| 2393 n = XSTRING_LENGTH (lstr); | |
| 2394 } | |
| 2395 } | |
| 2396 else | |
| 2397 #endif /* ENABLE_COMPOSITE_CHARS */ | |
| 2398 encode_unicode_char (charset, ch, c, dst, type, | |
| 4096 | 2399 little_endian, 1); |
| 771 | 2400 ch = 0; |
| 2401 } | |
| 2402 else | |
| 2403 { | |
| 2404 ch = c; | |
| 2405 char_boundary = 0; | |
| 2406 } | |
| 2407 break; | |
| 2408 case 4: | |
| 2409 if (ch) | |
| 2410 { | |
| 2411 encode_unicode_char (charset, ch, c, dst, type, | |
| 4096 | 2412 little_endian, 1); |
| 771 | 2413 ch = 0; |
| 2414 } | |
| 2415 else | |
| 2416 { | |
| 2417 ch = c; | |
| 2418 char_boundary = 0; | |
| 2419 } | |
| 2420 break; | |
| 2421 default: | |
| 2500 | 2422 ABORT (); |
| 771 | 2423 } |
| 2424 } | |
| 2425 } | |
| 2426 #endif /* MULE */ | |
| 2427 } | |
| 2428 | |
| 2429 #ifdef ENABLE_COMPOSITE_CHARS | |
| 2430 if (in_composite) | |
| 2431 { | |
| 2432 n = saved_n; | |
| 2433 src = saved_src; | |
| 2434 in_composite = 0; | |
| 2435 goto back_to_square_n; /* Wheeeeeeeee ..... */ | |
| 2436 } | |
| 2437 #endif /* ENABLE_COMPOSITE_CHARS */ | |
| 2438 | |
| 2439 data->current_char_boundary = char_boundary; | |
| 2440 data->current_charset = charset; | |
| 2441 | |
| 2442 /* La palabra se hizo carne! */ | |
| 2443 /* A palavra fez-se carne! */ | |
| 2444 /* Whatever. */ | |
| 2445 } | |
| 2446 | |
| 2447 str->ch = ch; | |
| 2448 return orign; | |
| 2449 } | |
| 2450 | |
| 2451 /* DEFINE_DETECTOR (utf_7); */ | |
| 2452 DEFINE_DETECTOR (utf_8); | |
| 2453 DEFINE_DETECTOR_CATEGORY (utf_8, utf_8); | |
| 985 | 2454 DEFINE_DETECTOR_CATEGORY (utf_8, utf_8_bom); |
| 771 | 2455 DEFINE_DETECTOR (ucs_4); |
| 2456 DEFINE_DETECTOR_CATEGORY (ucs_4, ucs_4); | |
| 2457 DEFINE_DETECTOR (utf_16); | |
| 2458 DEFINE_DETECTOR_CATEGORY (utf_16, utf_16); | |
| 2459 DEFINE_DETECTOR_CATEGORY (utf_16, utf_16_little_endian); | |
| 2460 DEFINE_DETECTOR_CATEGORY (utf_16, utf_16_bom); | |
| 2461 DEFINE_DETECTOR_CATEGORY (utf_16, utf_16_little_endian_bom); | |
| 2462 | |
| 2463 struct ucs_4_detector | |
| 2464 { | |
| 2465 int in_ucs_4_byte; | |
| 2466 }; | |
| 2467 | |
| 2468 static void | |
| 2469 ucs_4_detect (struct detection_state *st, const UExtbyte *src, | |
| 2470 Bytecount n) | |
| 2471 { | |
| 2472 struct ucs_4_detector *data = DETECTION_STATE_DATA (st, ucs_4); | |
| 2473 | |
| 2474 while (n--) | |
| 2475 { | |
| 2476 UExtbyte c = *src++; | |
| 2477 switch (data->in_ucs_4_byte) | |
| 2478 { | |
| 2479 case 0: | |
| 2480 if (c >= 128) | |
| 2481 { | |
| 2482 DET_RESULT (st, ucs_4) = DET_NEARLY_IMPOSSIBLE; | |
| 2483 return; | |
| 2484 } | |
| 2485 else | |
| 2486 data->in_ucs_4_byte++; | |
| 2487 break; | |
| 2488 case 3: | |
| 2489 data->in_ucs_4_byte = 0; | |
| 2490 break; | |
| 2491 default: | |
| 2492 data->in_ucs_4_byte++; | |
| 2493 } | |
| 2494 } | |
| 2495 | |
| 2496 /* !!#### write this for real */ | |
| 2497 DET_RESULT (st, ucs_4) = DET_AS_LIKELY_AS_UNLIKELY; | |
| 2498 } | |
| 2499 | |
| 2500 struct utf_16_detector | |
| 2501 { | |
| 2502 unsigned int seen_ffff:1; | |
| 2503 unsigned int seen_forward_bom:1; | |
| 2504 unsigned int seen_rev_bom:1; | |
| 2505 int byteno; | |
| 2506 int prev_char; | |
| 2507 int text, rev_text; | |
| 1267 | 2508 int sep, rev_sep; |
| 2509 int num_ascii; | |
| 771 | 2510 }; |
| 2511 | |
| 2512 static void | |
| 2513 utf_16_detect (struct detection_state *st, const UExtbyte *src, | |
| 2514 Bytecount n) | |
| 2515 { | |
| 2516 struct utf_16_detector *data = DETECTION_STATE_DATA (st, utf_16); | |
| 2517 | |
| 2518 while (n--) | |
| 2519 { | |
| 2520 UExtbyte c = *src++; | |
| 2521 int prevc = data->prev_char; | |
| 2522 if (data->byteno == 1 && c == 0xFF && prevc == 0xFE) | |
| 2523 data->seen_forward_bom = 1; | |
| 2524 else if (data->byteno == 1 && c == 0xFE && prevc == 0xFF) | |
| 2525 data->seen_rev_bom = 1; | |
| 2526 | |
| 2527 if (data->byteno & 1) | |
| 2528 { | |
| 2529 if (c == 0xFF && prevc == 0xFF) | |
| 2530 data->seen_ffff = 1; | |
| 2531 if (prevc == 0 | |
| 2532 && (c == '\r' || c == '\n' | |
| 2533 || (c >= 0x20 && c <= 0x7E))) | |
| 2534 data->text++; | |
| 2535 if (c == 0 | |
| 2536 && (prevc == '\r' || prevc == '\n' | |
| 2537 || (prevc >= 0x20 && prevc <= 0x7E))) | |
| 2538 data->rev_text++; | |
| 1267 | 2539 /* #### 0x2028 is LINE SEPARATOR and 0x2029 is PARAGRAPH SEPARATOR. |
| 2540 I used to count these in text and rev_text but that is very bad, | |
| 2541 as 0x2028 is also space + left-paren in ASCII, which is extremely | |
| 2542 common. So, what do we do with these? */ | |
| 771 | 2543 if (prevc == 0x20 && (c == 0x28 || c == 0x29)) |
| 1267 | 2544 data->sep++; |
| 771 | 2545 if (c == 0x20 && (prevc == 0x28 || prevc == 0x29)) |
| 1267 | 2546 data->rev_sep++; |
| 771 | 2547 } |
| 2548 | |
| 1267 | 2549 if ((c >= ' ' && c <= '~') || c == '\n' || c == '\r' || c == '\t' || |
| 2550 c == '\f' || c == '\v') | |
| 2551 data->num_ascii++; | |
| 771 | 2552 data->byteno++; |
| 2553 data->prev_char = c; | |
| 2554 } | |
| 2555 | |
| 2556 { | |
| 2557 int variance_indicates_big_endian = | |
| 2558 (data->text >= 10 | |
| 2559 && (data->rev_text == 0 | |
| 2560 || data->text / data->rev_text >= 10)); | |
| 2561 int variance_indicates_little_endian = | |
| 2562 (data->rev_text >= 10 | |
| 2563 && (data->text == 0 | |
| 2564 || data->rev_text / data->text >= 10)); | |
| 2565 | |
| 2566 if (data->seen_ffff) | |
| 2567 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2568 else if (data->seen_forward_bom) | |
| 2569 { | |
| 2570 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2571 if (variance_indicates_big_endian) | |
| 2572 DET_RESULT (st, utf_16_bom) = DET_NEAR_CERTAINTY; | |
| 2573 else if (variance_indicates_little_endian) | |
| 2574 DET_RESULT (st, utf_16_bom) = DET_SOMEWHAT_LIKELY; | |
| 2575 else | |
| 2576 DET_RESULT (st, utf_16_bom) = DET_QUITE_PROBABLE; | |
| 2577 } | |
| 2578 else if (data->seen_forward_bom) | |
| 2579 { | |
| 2580 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2581 if (variance_indicates_big_endian) | |
| 2582 DET_RESULT (st, utf_16_bom) = DET_NEAR_CERTAINTY; | |
| 2583 else if (variance_indicates_little_endian) | |
| 2584 /* #### may need to rethink */ | |
| 2585 DET_RESULT (st, utf_16_bom) = DET_SOMEWHAT_LIKELY; | |
| 2586 else | |
| 2587 /* #### may need to rethink */ | |
| 2588 DET_RESULT (st, utf_16_bom) = DET_QUITE_PROBABLE; | |
| 2589 } | |
| 2590 else if (data->seen_rev_bom) | |
| 2591 { | |
| 2592 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2593 if (variance_indicates_little_endian) | |
| 2594 DET_RESULT (st, utf_16_little_endian_bom) = DET_NEAR_CERTAINTY; | |
| 2595 else if (variance_indicates_big_endian) | |
| 2596 /* #### may need to rethink */ | |
| 2597 DET_RESULT (st, utf_16_little_endian_bom) = DET_SOMEWHAT_LIKELY; | |
| 2598 else | |
| 2599 /* #### may need to rethink */ | |
| 2600 DET_RESULT (st, utf_16_little_endian_bom) = DET_QUITE_PROBABLE; | |
| 2601 } | |
| 2602 else if (variance_indicates_big_endian) | |
| 2603 { | |
| 2604 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2605 DET_RESULT (st, utf_16) = DET_SOMEWHAT_LIKELY; | |
| 2606 DET_RESULT (st, utf_16_little_endian) = DET_SOMEWHAT_UNLIKELY; | |
| 2607 } | |
| 2608 else if (variance_indicates_little_endian) | |
| 2609 { | |
| 2610 SET_DET_RESULTS (st, utf_16, DET_NEARLY_IMPOSSIBLE); | |
| 2611 DET_RESULT (st, utf_16) = DET_SOMEWHAT_UNLIKELY; | |
| 2612 DET_RESULT (st, utf_16_little_endian) = DET_SOMEWHAT_LIKELY; | |
| 2613 } | |
| 2614 else | |
| 1267 | 2615 { |
| 2616 /* #### FUCKME! There should really be an ASCII detector. This | |
| 2617 would rule out the need to have this built-in here as | |
| 2618 well. --ben */ | |
| 1292 | 2619 int pct_ascii = data->byteno ? (100 * data->num_ascii) / data->byteno |
| 2620 : 100; | |
| 1267 | 2621 |
| 2622 if (pct_ascii > 90) | |
| 2623 SET_DET_RESULTS (st, utf_16, DET_QUITE_IMPROBABLE); | |
| 2624 else if (pct_ascii > 75) | |
| 2625 SET_DET_RESULTS (st, utf_16, DET_SOMEWHAT_UNLIKELY); | |
| 2626 else | |
| 2627 SET_DET_RESULTS (st, utf_16, DET_AS_LIKELY_AS_UNLIKELY); | |
| 2628 } | |
| 771 | 2629 } |
| 2630 } | |
| 2631 | |
| 2632 struct utf_8_detector | |
| 2633 { | |
| 985 | 2634 int byteno; |
| 2635 int first_byte; | |
| 2636 int second_byte; | |
| 1267 | 2637 int prev_byte; |
| 771 | 2638 int in_utf_8_byte; |
| 1267 | 2639 int recent_utf_8_sequence; |
| 2640 int seen_bogus_utf8; | |
| 2641 int seen_really_bogus_utf8; | |
| 2642 int seen_2byte_sequence; | |
| 2643 int seen_longer_sequence; | |
| 2644 int seen_iso2022_esc; | |
| 2645 int seen_iso_shift; | |
| 1887 | 2646 unsigned int seen_utf_bom:1; |
| 771 | 2647 }; |
| 2648 | |
| 2649 static void | |
| 2650 utf_8_detect (struct detection_state *st, const UExtbyte *src, | |
| 2651 Bytecount n) | |
| 2652 { | |
| 2653 struct utf_8_detector *data = DETECTION_STATE_DATA (st, utf_8); | |
| 2654 | |
| 2655 while (n--) | |
| 2656 { | |
| 2657 UExtbyte c = *src++; | |
| 985 | 2658 switch (data->byteno) |
| 2659 { | |
| 2660 case 0: | |
| 2661 data->first_byte = c; | |
| 2662 break; | |
| 2663 case 1: | |
| 2664 data->second_byte = c; | |
| 2665 break; | |
| 2666 case 2: | |
| 2667 if (data->first_byte == 0xef && | |
| 2668 data->second_byte == 0xbb && | |
| 2669 c == 0xbf) | |
| 1267 | 2670 data->seen_utf_bom = 1; |
| 985 | 2671 break; |
| 2672 } | |
| 2673 | |
| 771 | 2674 switch (data->in_utf_8_byte) |
| 2675 { | |
| 2676 case 0: | |
| 1267 | 2677 if (data->prev_byte == ISO_CODE_ESC && c >= 0x28 && c <= 0x2F) |
| 2678 data->seen_iso2022_esc++; | |
| 2679 else if (c == ISO_CODE_SI || c == ISO_CODE_SO) | |
| 2680 data->seen_iso_shift++; | |
| 771 | 2681 else if (c >= 0xfc) |
| 2682 data->in_utf_8_byte = 5; | |
| 2683 else if (c >= 0xf8) | |
| 2684 data->in_utf_8_byte = 4; | |
| 2685 else if (c >= 0xf0) | |
| 2686 data->in_utf_8_byte = 3; | |
| 2687 else if (c >= 0xe0) | |
| 2688 data->in_utf_8_byte = 2; | |
| 2689 else if (c >= 0xc0) | |
| 2690 data->in_utf_8_byte = 1; | |
| 2691 else if (c >= 0x80) | |
| 1267 | 2692 data->seen_bogus_utf8++; |
| 2693 if (data->in_utf_8_byte > 0) | |
| 2694 data->recent_utf_8_sequence = data->in_utf_8_byte; | |
| 771 | 2695 break; |
| 2696 default: | |
| 2697 if ((c & 0xc0) != 0x80) | |
| 1267 | 2698 data->seen_really_bogus_utf8++; |
| 2699 else | |
| 771 | 2700 { |
| 1267 | 2701 data->in_utf_8_byte--; |
| 2702 if (data->in_utf_8_byte == 0) | |
| 2703 { | |
| 2704 if (data->recent_utf_8_sequence == 1) | |
| 2705 data->seen_2byte_sequence++; | |
| 2706 else | |
| 2707 { | |
| 2708 assert (data->recent_utf_8_sequence >= 2); | |
| 2709 data->seen_longer_sequence++; | |
| 2710 } | |
| 2711 } | |
| 771 | 2712 } |
| 2713 } | |
| 985 | 2714 |
| 2715 data->byteno++; | |
| 1267 | 2716 data->prev_byte = c; |
| 771 | 2717 } |
| 1267 | 2718 |
| 2719 /* either BOM or no BOM, but not both */ | |
| 2720 SET_DET_RESULTS (st, utf_8, DET_NEARLY_IMPOSSIBLE); | |
| 2721 | |
| 2722 | |
| 2723 if (data->seen_utf_bom) | |
| 2724 DET_RESULT (st, utf_8_bom) = DET_NEAR_CERTAINTY; | |
| 2725 else | |
| 2726 { | |
| 2727 if (data->seen_really_bogus_utf8 || | |
| 2728 data->seen_bogus_utf8 >= 2) | |
| 2729 ; /* bogus */ | |
| 2730 else if (data->seen_bogus_utf8) | |
| 2731 DET_RESULT (st, utf_8) = DET_SOMEWHAT_UNLIKELY; | |
| 2732 else if ((data->seen_longer_sequence >= 5 || | |
| 2733 data->seen_2byte_sequence >= 10) && | |
| 2734 (!(data->seen_iso2022_esc + data->seen_iso_shift) || | |
| 2735 (data->seen_longer_sequence * 2 + data->seen_2byte_sequence) / | |
| 2736 (data->seen_iso2022_esc + data->seen_iso_shift) >= 10)) | |
| 2737 /* heuristics, heuristics, we love heuristics */ | |
| 2738 DET_RESULT (st, utf_8) = DET_QUITE_PROBABLE; | |
| 2739 else if (data->seen_iso2022_esc || | |
| 2740 data->seen_iso_shift >= 3) | |
| 2741 DET_RESULT (st, utf_8) = DET_SOMEWHAT_UNLIKELY; | |
| 2742 else if (data->seen_longer_sequence || | |
| 2743 data->seen_2byte_sequence) | |
| 2744 DET_RESULT (st, utf_8) = DET_SOMEWHAT_LIKELY; | |
| 2745 else if (data->seen_iso_shift) | |
| 2746 DET_RESULT (st, utf_8) = DET_SOMEWHAT_UNLIKELY; | |
| 2747 else | |
| 2748 DET_RESULT (st, utf_8) = DET_AS_LIKELY_AS_UNLIKELY; | |
| 2749 } | |
| 771 | 2750 } |
| 2751 | |
| 2752 static void | |
| 2753 unicode_init_coding_stream (struct coding_stream *str) | |
| 2754 { | |
| 2755 struct unicode_coding_stream *data = | |
| 2756 CODING_STREAM_TYPE_DATA (str, unicode); | |
| 2757 xzero (*data); | |
| 2758 data->current_charset = Qnil; | |
| 2759 } | |
| 2760 | |
| 2761 static void | |
| 2762 unicode_rewind_coding_stream (struct coding_stream *str) | |
| 2763 { | |
| 2764 unicode_init_coding_stream (str); | |
| 2765 } | |
| 2766 | |
| 2767 static int | |
| 2768 unicode_putprop (Lisp_Object codesys, Lisp_Object key, Lisp_Object value) | |
| 2769 { | |
| 3767 | 2770 if (EQ (key, Qunicode_type)) |
| 771 | 2771 { |
| 2772 enum unicode_type type; | |
| 2773 | |
| 2774 if (EQ (value, Qutf_8)) | |
| 2775 type = UNICODE_UTF_8; | |
| 2776 else if (EQ (value, Qutf_16)) | |
| 2777 type = UNICODE_UTF_16; | |
| 2778 else if (EQ (value, Qutf_7)) | |
| 2779 type = UNICODE_UTF_7; | |
| 2780 else if (EQ (value, Qucs_4)) | |
| 2781 type = UNICODE_UCS_4; | |
| 4096 | 2782 else if (EQ (value, Qutf_32)) |
| 2783 type = UNICODE_UTF_32; | |
| 771 | 2784 else |
| 2785 invalid_constant ("Invalid Unicode type", key); | |
| 2786 | |
| 2787 XCODING_SYSTEM_UNICODE_TYPE (codesys) = type; | |
| 2788 } | |
| 2789 else if (EQ (key, Qlittle_endian)) | |
| 2790 XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN (codesys) = !NILP (value); | |
| 2791 else if (EQ (key, Qneed_bom)) | |
| 2792 XCODING_SYSTEM_UNICODE_NEED_BOM (codesys) = !NILP (value); | |
| 2793 else | |
| 2794 return 0; | |
| 2795 return 1; | |
| 2796 } | |
| 2797 | |
| 2798 static Lisp_Object | |
| 2799 unicode_getprop (Lisp_Object coding_system, Lisp_Object prop) | |
| 2800 { | |
| 3767 | 2801 if (EQ (prop, Qunicode_type)) |
| 771 | 2802 { |
| 2803 switch (XCODING_SYSTEM_UNICODE_TYPE (coding_system)) | |
| 2804 { | |
| 2805 case UNICODE_UTF_16: return Qutf_16; | |
| 2806 case UNICODE_UTF_8: return Qutf_8; | |
| 2807 case UNICODE_UTF_7: return Qutf_7; | |
| 2808 case UNICODE_UCS_4: return Qucs_4; | |
| 4096 | 2809 case UNICODE_UTF_32: return Qutf_32; |
| 2500 | 2810 default: ABORT (); |
| 771 | 2811 } |
| 2812 } | |
| 2813 else if (EQ (prop, Qlittle_endian)) | |
| 2814 return XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN (coding_system) ? Qt : Qnil; | |
| 2815 else if (EQ (prop, Qneed_bom)) | |
| 2816 return XCODING_SYSTEM_UNICODE_NEED_BOM (coding_system) ? Qt : Qnil; | |
| 2817 return Qunbound; | |
| 2818 } | |
| 2819 | |
| 2820 static void | |
| 2286 | 2821 unicode_print (Lisp_Object cs, Lisp_Object printcharfun, |
| 2822 int UNUSED (escapeflag)) | |
| 771 | 2823 { |
| 3767 | 2824 write_fmt_string_lisp (printcharfun, "(%s", 1, |
| 2825 unicode_getprop (cs, Qunicode_type)); | |
| 771 | 2826 if (XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN (cs)) |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
2827 write_ascstring (printcharfun, ", little-endian"); |
| 771 | 2828 if (XCODING_SYSTEM_UNICODE_NEED_BOM (cs)) |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
2829 write_ascstring (printcharfun, ", need-bom"); |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
2830 write_ascstring (printcharfun, ")"); |
| 771 | 2831 } |
| 2832 | |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2833 #ifdef MULE |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2834 DEFUN ("set-unicode-query-skip-chars-args", Fset_unicode_query_skip_chars_args, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2835 3, 3, 0, /* |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2836 Specify strings as matching characters known to Unicode coding systems. |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2837 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2838 QUERY-STRING is a string matching characters that can unequivocally be |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2839 encoded by the Unicode coding systems. |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2840 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2841 INVALID-STRING is a string to match XEmacs characters that represent known |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2842 octets on disk, but that are invalid sequences according to Unicode. |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2843 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2844 UTF-8-INVALID-STRING is a more restrictive string to match XEmacs characters |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2845 that are invalid UTF-8 octets. |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2846 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2847 All three strings are in the format accepted by `skip-chars-forward'. |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2848 */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2849 (query_string, invalid_string, utf_8_invalid_string)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2850 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2851 CHECK_STRING (query_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2852 CHECK_STRING (invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2853 CHECK_STRING (utf_8_invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2854 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2855 Vunicode_query_string = query_string; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2856 Vunicode_invalid_string = invalid_string; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2857 Vutf_8_invalid_string = utf_8_invalid_string; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2858 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2859 return Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2860 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2861 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2862 static void |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2863 add_lisp_string_to_skip_chars_range (Lisp_Object string, Lisp_Object rtab, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2864 Lisp_Object value) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2865 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2866 Ibyte *p, *pend; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2867 Ichar c; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2868 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2869 p = XSTRING_DATA (string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2870 pend = p + XSTRING_LENGTH (string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2871 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2872 while (p != pend) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2873 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2874 c = itext_ichar (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2875 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2876 INC_IBYTEPTR (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2877 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2878 if (c == '\\') |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2879 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2880 if (p == pend) break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2881 c = itext_ichar (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2882 INC_IBYTEPTR (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2883 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2884 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2885 if (p != pend && *p == '-') |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2886 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2887 Ichar cend; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2888 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2889 /* Skip over the dash. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2890 p++; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2891 if (p == pend) break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2892 cend = itext_ichar (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2893 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2894 Fput_range_table (make_int (c), make_int (cend), value, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2895 rtab); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2896 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2897 INC_IBYTEPTR (p); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2898 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2899 else |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2900 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2901 Fput_range_table (make_int (c), make_int (c), value, rtab); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2902 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2903 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2904 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2905 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2906 /* This function wouldn't be necessary if initialised range tables were |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2907 dumped properly; see |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2908 http://mid.gmane.org/18179.49815.622843.336527@parhasard.net . */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2909 static void |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2910 initialize_unicode_query_range_tables_from_strings (void) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2911 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2912 CHECK_STRING (Vunicode_query_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2913 CHECK_STRING (Vunicode_invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2914 CHECK_STRING (Vutf_8_invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2915 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2916 Vunicode_query_skip_chars = Fmake_range_table (Qstart_closed_end_closed); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2917 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2918 add_lisp_string_to_skip_chars_range (Vunicode_query_string, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2919 Vunicode_query_skip_chars, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2920 Qsucceeded); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2921 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2922 Vunicode_invalid_and_query_skip_chars |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2923 = Fcopy_range_table (Vunicode_query_skip_chars); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2924 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2925 add_lisp_string_to_skip_chars_range (Vunicode_invalid_string, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2926 Vunicode_invalid_and_query_skip_chars, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2927 Qinvalid_sequence); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2928 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2929 Vutf_8_invalid_and_query_skip_chars |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2930 = Fcopy_range_table (Vunicode_query_skip_chars); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2931 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2932 add_lisp_string_to_skip_chars_range (Vutf_8_invalid_string, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2933 Vutf_8_invalid_and_query_skip_chars, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2934 Qinvalid_sequence); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2935 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2936 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2937 static Lisp_Object |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2938 unicode_query (Lisp_Object codesys, struct buffer *buf, Charbpos end, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2939 int flags) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2940 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2941 Charbpos pos = BUF_PT (buf), fail_range_start, fail_range_end; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2942 Charbpos pos_byte = BYTE_BUF_PT (buf); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2943 Lisp_Object skip_chars_range_table, result = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2944 enum query_coding_failure_reasons failed_reason, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2945 previous_failed_reason = query_coding_succeeded; |
|
4824
c12b646d84ee
changes to get things to compile under latest cygwin
Ben Wing <ben@xemacs.org>
parents:
4770
diff
changeset
|
2946 int checked_unicode, |
|
c12b646d84ee
changes to get things to compile under latest cygwin
Ben Wing <ben@xemacs.org>
parents:
4770
diff
changeset
|
2947 invalid_lower_limit = UNICODE_ERROR_OCTET_RANGE_START, |
|
c12b646d84ee
changes to get things to compile under latest cygwin
Ben Wing <ben@xemacs.org>
parents:
4770
diff
changeset
|
2948 invalid_upper_limit = -1, |
|
c12b646d84ee
changes to get things to compile under latest cygwin
Ben Wing <ben@xemacs.org>
parents:
4770
diff
changeset
|
2949 unicode_type = XCODING_SYSTEM_UNICODE_TYPE (codesys); |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2950 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2951 if (flags & QUERY_METHOD_HIGHLIGHT && |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2952 /* If we're being called really early, live without highlights getting |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2953 cleared properly: */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2954 !(UNBOUNDP (XSYMBOL (Qquery_coding_clear_highlights)->function))) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2955 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2956 /* It's okay to call Lisp here, the only non-stack object we may have |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2957 allocated up to this point is skip_chars_range_table, and that's |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2958 reachable from its entry in Vfixed_width_query_ranges_cache. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2959 call3 (Qquery_coding_clear_highlights, make_int (pos), make_int (end), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2960 wrap_buffer (buf)); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2961 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2962 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2963 if (NILP (Vunicode_query_skip_chars)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2964 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2965 initialize_unicode_query_range_tables_from_strings(); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2966 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2967 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2968 if (flags & QUERY_METHOD_IGNORE_INVALID_SEQUENCES) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2969 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2970 switch (unicode_type) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2971 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2972 case UNICODE_UTF_8: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2973 skip_chars_range_table = Vutf_8_invalid_and_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2974 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2975 case UNICODE_UTF_7: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2976 /* #### See above. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2977 return Qunbound; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2978 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2979 default: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2980 skip_chars_range_table = Vunicode_invalid_and_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2981 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2982 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2983 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2984 else |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2985 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2986 switch (unicode_type) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2987 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2988 case UNICODE_UTF_8: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2989 invalid_lower_limit = UNICODE_ERROR_OCTET_RANGE_START + 0x80; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2990 invalid_upper_limit = UNICODE_ERROR_OCTET_RANGE_START + 0xFF; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2991 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2992 case UNICODE_UTF_7: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2993 /* #### Work out what to do here in reality, read the spec and decide |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2994 which octets are invalid. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2995 return Qunbound; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2996 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2997 default: |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2998 invalid_lower_limit = UNICODE_ERROR_OCTET_RANGE_START; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
2999 invalid_upper_limit = UNICODE_ERROR_OCTET_RANGE_START + 0xFF; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3000 break; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3001 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3002 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3003 skip_chars_range_table = Vunicode_query_skip_chars; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3004 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3005 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3006 while (pos < end) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3007 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3008 Ichar ch = BYTE_BUF_FETCH_CHAR (buf, pos_byte); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3009 if ((ch < 0x100 ? 1 : |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3010 (!EQ (Qnil, Fget_range_table (make_int (ch), skip_chars_range_table, |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3011 Qnil))))) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3012 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3013 pos++; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3014 INC_BYTEBPOS (buf, pos_byte); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3015 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3016 else |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3017 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3018 fail_range_start = pos; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3019 while ((pos < end) && |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3020 ((checked_unicode = ichar_to_unicode (ch), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3021 -1 == checked_unicode |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3022 && (failed_reason = query_coding_unencodable)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3023 || (!(flags & QUERY_METHOD_IGNORE_INVALID_SEQUENCES) && |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3024 (invalid_lower_limit <= checked_unicode) && |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3025 (checked_unicode <= invalid_upper_limit) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3026 && (failed_reason = query_coding_invalid_sequence))) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3027 && (previous_failed_reason == query_coding_succeeded |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3028 || previous_failed_reason == failed_reason)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3029 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3030 pos++; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3031 INC_BYTEBPOS (buf, pos_byte); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3032 ch = BYTE_BUF_FETCH_CHAR (buf, pos_byte); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3033 previous_failed_reason = failed_reason; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3034 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3035 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3036 if (fail_range_start == pos) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3037 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3038 /* The character can actually be encoded; move on. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3039 pos++; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3040 INC_BYTEBPOS (buf, pos_byte); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3041 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3042 else |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3043 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3044 assert (previous_failed_reason == query_coding_invalid_sequence |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3045 || previous_failed_reason == query_coding_unencodable); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3046 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3047 if (flags & QUERY_METHOD_ERRORP) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3048 { |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3049 signal_error_2 |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3050 (Qtext_conversion_error, |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3051 "Cannot encode using coding system", |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3052 make_string_from_buffer (buf, fail_range_start, |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3053 pos - fail_range_start), |
|
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3054 XCODING_SYSTEM_NAME (codesys)); |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3055 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3056 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3057 if (NILP (result)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3058 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3059 result = Fmake_range_table (Qstart_closed_end_open); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3060 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3061 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3062 fail_range_end = pos; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3063 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3064 Fput_range_table (make_int (fail_range_start), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3065 make_int (fail_range_end), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3066 (previous_failed_reason |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3067 == query_coding_unencodable ? |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3068 Qunencodable : Qinvalid_sequence), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3069 result); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3070 previous_failed_reason = query_coding_succeeded; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3071 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3072 if (flags & QUERY_METHOD_HIGHLIGHT) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3073 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3074 Lisp_Object extent |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3075 = Fmake_extent (make_int (fail_range_start), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3076 make_int (fail_range_end), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3077 wrap_buffer (buf)); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3078 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3079 Fset_extent_priority |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3080 (extent, make_int (2 + mouse_highlight_priority)); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3081 Fset_extent_face (extent, Qquery_coding_warning_face); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3082 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3083 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3084 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3085 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3086 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3087 return result; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3088 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3089 #else /* !MULE */ |
|
4770
b9aaf2a18957
Add missing return value type to unicode_query.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4690
diff
changeset
|
3090 static Lisp_Object |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3091 unicode_query (Lisp_Object UNUSED (codesys), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3092 struct buffer * UNUSED (buf), |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3093 Charbpos UNUSED (end), int UNUSED (flags)) |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3094 { |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3095 return Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3096 } |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3097 #endif |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3098 |
| 771 | 3099 int |
| 2286 | 3100 dfc_coding_system_is_unicode ( |
| 3101 #ifdef WIN32_ANY | |
| 3102 Lisp_Object codesys | |
| 3103 #else | |
| 3104 Lisp_Object UNUSED (codesys) | |
| 3105 #endif | |
| 3106 ) | |
| 771 | 3107 { |
| 1315 | 3108 #ifdef WIN32_ANY |
| 771 | 3109 codesys = Fget_coding_system (codesys); |
| 3110 return (EQ (XCODING_SYSTEM_TYPE (codesys), Qunicode) && | |
| 3111 XCODING_SYSTEM_UNICODE_TYPE (codesys) == UNICODE_UTF_16 && | |
| 3112 XCODING_SYSTEM_UNICODE_LITTLE_ENDIAN (codesys)); | |
| 3113 | |
| 3114 #else | |
| 3115 return 0; | |
| 3116 #endif | |
| 3117 } | |
| 3118 | |
| 3119 | |
| 3120 /************************************************************************/ | |
| 3121 /* Initialization */ | |
| 3122 /************************************************************************/ | |
| 3123 | |
| 3124 void | |
| 3125 syms_of_unicode (void) | |
| 3126 { | |
| 3127 #ifdef MULE | |
| 877 | 3128 DEFSUBR (Funicode_precedence_list); |
| 771 | 3129 DEFSUBR (Fset_language_unicode_precedence_list); |
| 3130 DEFSUBR (Flanguage_unicode_precedence_list); | |
| 3131 DEFSUBR (Fset_default_unicode_precedence_list); | |
| 3132 DEFSUBR (Fdefault_unicode_precedence_list); | |
| 3133 DEFSUBR (Fset_unicode_conversion); | |
| 3134 | |
| 1318 | 3135 DEFSUBR (Fload_unicode_mapping_table); |
| 771 | 3136 |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3137 DEFSUBR (Fset_unicode_query_skip_chars_args); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3138 |
| 3439 | 3139 DEFSYMBOL (Qccl_encode_to_ucs_2); |
| 3140 DEFSYMBOL (Qlast_allocated_character); | |
| 771 | 3141 DEFSYMBOL (Qignore_first_column); |
| 3659 | 3142 |
| 3143 DEFSYMBOL (Qunicode_registries); | |
| 771 | 3144 #endif /* MULE */ |
| 3145 | |
| 800 | 3146 DEFSUBR (Fchar_to_unicode); |
| 3147 DEFSUBR (Funicode_to_char); | |
| 771 | 3148 |
| 3149 DEFSYMBOL (Qunicode); | |
| 3150 DEFSYMBOL (Qucs_4); | |
| 3151 DEFSYMBOL (Qutf_16); | |
| 4096 | 3152 DEFSYMBOL (Qutf_32); |
| 771 | 3153 DEFSYMBOL (Qutf_8); |
| 3154 DEFSYMBOL (Qutf_7); | |
| 3155 | |
| 3156 DEFSYMBOL (Qneed_bom); | |
| 3157 | |
| 3158 DEFSYMBOL (Qutf_16); | |
| 3159 DEFSYMBOL (Qutf_16_little_endian); | |
| 3160 DEFSYMBOL (Qutf_16_bom); | |
| 3161 DEFSYMBOL (Qutf_16_little_endian_bom); | |
| 985 | 3162 |
| 3163 DEFSYMBOL (Qutf_8); | |
| 3164 DEFSYMBOL (Qutf_8_bom); | |
| 771 | 3165 } |
| 3166 | |
| 3167 void | |
| 3168 coding_system_type_create_unicode (void) | |
| 3169 { | |
| 3170 INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA (unicode, "unicode-coding-system-p"); | |
| 3171 CODING_SYSTEM_HAS_METHOD (unicode, print); | |
| 3172 CODING_SYSTEM_HAS_METHOD (unicode, convert); | |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3173 CODING_SYSTEM_HAS_METHOD (unicode, query); |
| 771 | 3174 CODING_SYSTEM_HAS_METHOD (unicode, init_coding_stream); |
| 3175 CODING_SYSTEM_HAS_METHOD (unicode, rewind_coding_stream); | |
| 3176 CODING_SYSTEM_HAS_METHOD (unicode, putprop); | |
| 3177 CODING_SYSTEM_HAS_METHOD (unicode, getprop); | |
| 3178 | |
| 3179 INITIALIZE_DETECTOR (utf_8); | |
| 3180 DETECTOR_HAS_METHOD (utf_8, detect); | |
| 3181 INITIALIZE_DETECTOR_CATEGORY (utf_8, utf_8); | |
| 985 | 3182 INITIALIZE_DETECTOR_CATEGORY (utf_8, utf_8_bom); |
| 771 | 3183 |
| 3184 INITIALIZE_DETECTOR (ucs_4); | |
| 3185 DETECTOR_HAS_METHOD (ucs_4, detect); | |
| 3186 INITIALIZE_DETECTOR_CATEGORY (ucs_4, ucs_4); | |
| 3187 | |
| 3188 INITIALIZE_DETECTOR (utf_16); | |
| 3189 DETECTOR_HAS_METHOD (utf_16, detect); | |
| 3190 INITIALIZE_DETECTOR_CATEGORY (utf_16, utf_16); | |
| 3191 INITIALIZE_DETECTOR_CATEGORY (utf_16, utf_16_little_endian); | |
| 3192 INITIALIZE_DETECTOR_CATEGORY (utf_16, utf_16_bom); | |
| 3193 INITIALIZE_DETECTOR_CATEGORY (utf_16, utf_16_little_endian_bom); | |
| 3194 } | |
| 3195 | |
| 3196 void | |
| 3197 reinit_coding_system_type_create_unicode (void) | |
| 3198 { | |
| 3199 REINITIALIZE_CODING_SYSTEM_TYPE (unicode); | |
| 3200 } | |
| 3201 | |
| 3202 void | |
| 3203 vars_of_unicode (void) | |
| 3204 { | |
| 3205 Fprovide (intern ("unicode")); | |
| 3206 | |
| 3207 #ifdef MULE | |
| 4270 | 3208 staticpro (&Vnumber_of_jit_charsets); |
| 3209 Vnumber_of_jit_charsets = make_int (0); | |
| 3210 staticpro (&Vlast_jit_charset_final); | |
| 3211 Vlast_jit_charset_final = make_char (0x30); | |
| 3212 staticpro (&Vcharset_descr); | |
| 3213 Vcharset_descr | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3214 = build_defer_string ("Mule charset for otherwise unknown Unicode code points."); |
| 4270 | 3215 |
| 771 | 3216 staticpro (&Vlanguage_unicode_precedence_list); |
| 3217 Vlanguage_unicode_precedence_list = Qnil; | |
| 3218 | |
| 3219 staticpro (&Vdefault_unicode_precedence_list); | |
| 3220 Vdefault_unicode_precedence_list = Qnil; | |
| 3221 | |
| 3222 unicode_precedence_dynarr = Dynarr_new (Lisp_Object); | |
| 2367 | 3223 dump_add_root_block_ptr (&unicode_precedence_dynarr, |
| 771 | 3224 &lisp_object_dynarr_description); |
| 2367 | 3225 |
| 3659 | 3226 |
| 3227 | |
| 2367 | 3228 init_blank_unicode_tables (); |
| 3229 | |
| 3439 | 3230 staticpro (&Vcurrent_jit_charset); |
| 3231 Vcurrent_jit_charset = Qnil; | |
| 3232 | |
| 2367 | 3233 /* Note that the "block" we are describing is a single pointer, and hence |
| 3234 we could potentially use dump_add_root_block_ptr(). However, given | |
| 3235 the way the descriptions are written, we couldn't use them, and would | |
| 3236 have to write new descriptions for each of the pointers below, since | |
| 3237 we would have to make use of a description with an XD_BLOCK_ARRAY | |
| 3238 in it. */ | |
| 3239 | |
| 3240 dump_add_root_block (&to_unicode_blank_1, sizeof (void *), | |
| 3241 to_unicode_level_1_desc_1); | |
| 3242 dump_add_root_block (&to_unicode_blank_2, sizeof (void *), | |
| 3243 to_unicode_level_2_desc_1); | |
| 3244 | |
| 3245 dump_add_root_block (&from_unicode_blank_1, sizeof (void *), | |
| 3246 from_unicode_level_1_desc_1); | |
| 3247 dump_add_root_block (&from_unicode_blank_2, sizeof (void *), | |
| 3248 from_unicode_level_2_desc_1); | |
| 3249 dump_add_root_block (&from_unicode_blank_3, sizeof (void *), | |
| 3250 from_unicode_level_3_desc_1); | |
| 3251 dump_add_root_block (&from_unicode_blank_4, sizeof (void *), | |
| 3252 from_unicode_level_4_desc_1); | |
| 3659 | 3253 |
| 3254 DEFVAR_LISP ("unicode-registries", &Qunicode_registries /* | |
| 3255 Vector describing the X11 registries searched when using fallback fonts. | |
| 3256 | |
| 3257 "Fallback fonts" here includes by default those fonts used by redisplay when | |
| 3258 displaying charsets for which the `encode-as-utf-8' property is true, and | |
| 3259 those used when no font matching the charset's registries property has been | |
| 3260 found (that is, they're probably Mule-specific charsets like Ethiopic or | |
| 3261 IPA.) | |
| 3262 */ ); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3263 Qunicode_registries = vector1(build_ascstring("iso10646-1")); |
|
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3264 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3265 /* Initialised in lisp/mule/general-late.el, by a call to |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3266 #'set-unicode-query-skip-chars-args. Or at least they would be, but we |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3267 can't do this at dump time right now, initialised range tables aren't |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3268 dumped properly. */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3269 staticpro (&Vunicode_invalid_and_query_skip_chars); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3270 Vunicode_invalid_and_query_skip_chars = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3271 staticpro (&Vutf_8_invalid_and_query_skip_chars); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3272 Vutf_8_invalid_and_query_skip_chars = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3273 staticpro (&Vunicode_query_skip_chars); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3274 Vunicode_query_skip_chars = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3275 |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3276 /* If we could dump the range table above these wouldn't be necessary: */ |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3277 staticpro (&Vunicode_query_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3278 Vunicode_query_string = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3279 staticpro (&Vunicode_invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3280 Vunicode_invalid_string = Qnil; |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3281 staticpro (&Vutf_8_invalid_string); |
|
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4688
diff
changeset
|
3282 Vutf_8_invalid_string = Qnil; |
| 771 | 3283 #endif /* MULE */ |
| 3284 } | |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3285 |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3286 void |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3287 complex_vars_of_unicode (void) |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3288 { |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3289 /* We used to define this in unicode.el. But we need it early for |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3290 Cygwin 1.7 -- used in LOCAL_FILE_FORMAT_TO_TSTR() et al. */ |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3291 Fmake_coding_system_internal |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3292 (Qutf_8, Qunicode, |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3293 build_defer_string ("UTF-8"), |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3294 nconc2 (list4 (Qdocumentation, |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3295 build_defer_string ( |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3296 "UTF-8 Unicode encoding -- ASCII-compatible 8-bit variable-width encoding\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3297 "sharing the following principles with the Mule-internal encoding:\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3298 "\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3299 " -- All ASCII characters (codepoints 0 through 127) are represented\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3300 " by themselves (i.e. using one byte, with the same value as the\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3301 " ASCII codepoint), and these bytes are disjoint from bytes\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3302 " representing non-ASCII characters.\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3303 "\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3304 " This means that any 8-bit clean application can safely process\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3305 " UTF-8-encoded text as it were ASCII, with no corruption (e.g. a\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3306 " '/' byte is always a slash character, never the second byte of\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3307 " some other character, as with Big5, so a pathname encoded in\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3308 " UTF-8 can safely be split up into components and reassembled\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3309 " again using standard ASCII processes).\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3310 "\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3311 " -- Leading bytes and non-leading bytes in the encoding of a\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3312 " character are disjoint, so moving backwards is easy.\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3313 "\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3314 " -- Given only the leading byte, you know how many following bytes\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3315 " are present.\n" |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3316 ), |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3317 Qmnemonic, build_ascstring ("UTF8")), |
|
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3318 list2 (Qunicode_type, Qutf_8))); |
|
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4824
diff
changeset
|
3319 } |
