Mercurial > hg > xemacs-beta
annotate src/file-coding.c @ 5084:6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
lisp/ChangeLog addition:
2010-03-01 Aidan Kehoe <kehoea@parhasard.net>
* cl-seq.el (cl-parsing-keywords):
* cl-macs.el (cl-do-arglist):
Use the new invalid-keyword-argument error here.
src/ChangeLog addition:
2010-03-01 Aidan Kehoe <kehoea@parhasard.net>
* lisp.h (PARSE_KEYWORDS): New macro, for parsing keyword
arguments from C subrs.
* elhash.c (Fmake_hash_table): Use it.
* general-slots.h (Q_allow_other_keys): Add this symbol.
* eval.c (non_nil_allow_other_keys_p):
(invalid_keyword_argument):
New functions, called from the keyword argument parsing code.
* data.c (init_errors_once_early):
Add the new invalid-keyword-argument error here.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 01 Mar 2010 21:05:33 +0000 |
parents | 88f955fa5a7f |
children | 7be849cb8828 |
rev | line source |
---|---|
771 | 1 /* Text encoding conversion functions; coding-system object. |
2 #### rename me to coding-system.c or coding.c | |
428 | 3 Copyright (C) 1991, 1995 Free Software Foundation, Inc. |
4 Copyright (C) 1995 Sun Microsystems, Inc. | |
3025 | 5 Copyright (C) 2000, 2001, 2002, 2003, 2005 Ben Wing. |
428 | 6 |
7 This file is part of XEmacs. | |
8 | |
9 XEmacs is free software; you can redistribute it and/or modify it | |
10 under the terms of the GNU General Public License as published by the | |
11 Free Software Foundation; either version 2, or (at your option) any | |
12 later version. | |
13 | |
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
20 along with XEmacs; see the file COPYING. If not, write to | |
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 Boston, MA 02111-1307, USA. */ | |
23 | |
771 | 24 /* Synched up with: Not in FSF. */ |
25 | |
26 /* Authorship: | |
27 | |
28 Current primary author: Ben Wing <ben@xemacs.org> | |
29 | |
30 Rewritten by Ben Wing <ben@xemacs.org>, based originally on coding.c | |
31 from Mule 2.? but probably does not share one line of code with that | |
32 original source. Rewriting work started around Dec. 1994. or Jan. 1995. | |
33 Proceeded in earnest till Nov. 1995. | |
34 | |
35 Around Feb. 17, 1998, Andy Piper renamed what was then mule-coding.c to | |
36 file-coding.c, with the intention of using it to do end-of-line conversion | |
37 on non-MULE machines (specifically, on Windows machines). He separated | |
38 out the MULE stuff from non-MULE using ifdef's, and searched throughout | |
39 the rest of the source tree looking for coding-system-related code that | |
40 was ifdef MULE but should be ifdef HAVE_CODING_SYSTEMS. | |
41 | |
42 Sept. 4 - 8, 1998, Tomohiko Morioka added the UCS_4 and UTF_8 coding system | |
43 types, providing a primitive means of decoding and encoding externally- | |
44 formatted Unicode/UCS_4 and Unicode/UTF_8 data. | |
45 | |
46 January 25, 2000, Martin Buchholz redid and fleshed out the coding | |
47 system alias handling that was first added in prototype form by | |
48 Hrjove Niksic, April 15, 1999. | |
49 | |
50 April to May 2000, Ben Wing: More major reorganization. Adding features | |
51 needed for MS Windows (multibyte, unicode, unicode-to-multibyte), the | |
52 "chain" coding system for chaining two together, and doing a lot of | |
53 reorganization in preparation for properly abstracting out the different | |
54 coding system types. | |
55 | |
56 June 2001, Ben Wing: Added Unicode support. Eliminated previous | |
57 junky Unicode translation support. | |
58 | |
59 August 2001, Ben Wing: Moved Unicode support to unicode.c. Finished | |
60 abstracting everything except detection, which is hard to abstract (see | |
61 just below). | |
62 | |
63 September 2001, Ben Wing: Moved Mule code to mule-coding.c, Windows code | |
64 to intl-win32.c. Lots more rewriting; very little code is untouched | |
65 from before April 2000. Abstracted the detection code, added multiple | |
66 levels of likelihood to increase the reliability of the algorithm. | |
67 | |
68 October 2001, Ben Wing: HAVE_CODING_SYSTEMS is always now defined. | |
69 Removed the conditionals. | |
70 */ | |
71 | |
428 | 72 #include <config.h> |
73 #include "lisp.h" | |
74 | |
75 #include "buffer.h" | |
76 #include "elhash.h" | |
77 #include "insdel.h" | |
78 #include "lstream.h" | |
440 | 79 #include "opaque.h" |
771 | 80 #include "file-coding.h" |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
81 #include "extents.h" |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
82 #include "rangetab.h" |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
83 #include "chartab.h" |
771 | 84 |
85 #ifdef HAVE_ZLIB | |
86 #include "zlib.h" | |
428 | 87 #endif |
88 | |
89 Lisp_Object Vkeyboard_coding_system; | |
90 Lisp_Object Vterminal_coding_system; | |
91 Lisp_Object Vcoding_system_for_read; | |
92 Lisp_Object Vcoding_system_for_write; | |
93 Lisp_Object Vfile_name_coding_system; | |
94 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
95 Lisp_Object Qaliases, Qcharset_skip_chars_string; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
96 |
771 | 97 #ifdef DEBUG_XEMACS |
98 Lisp_Object Vdebug_coding_detection; | |
440 | 99 #endif |
771 | 100 |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
101 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
102 extern Lisp_Object Vcharset_ascii, Vcharset_control_1, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
103 Vcharset_latin_iso8859_1; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
104 #endif |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
105 |
771 | 106 typedef struct coding_system_type_entry |
107 { | |
108 struct coding_system_methods *meths; | |
109 } coding_system_type_entry; | |
110 | |
111 typedef struct | |
112 { | |
113 Dynarr_declare (coding_system_type_entry); | |
114 } coding_system_type_entry_dynarr; | |
115 | |
116 static coding_system_type_entry_dynarr *the_coding_system_type_entry_dynarr; | |
117 | |
1204 | 118 static const struct memory_description cste_description_1[] = { |
2551 | 119 { XD_BLOCK_PTR, offsetof (coding_system_type_entry, meths), 1, |
120 { &coding_system_methods_description } }, | |
771 | 121 { XD_END } |
122 }; | |
123 | |
1204 | 124 static const struct sized_memory_description cste_description = { |
771 | 125 sizeof (coding_system_type_entry), |
126 cste_description_1 | |
127 }; | |
128 | |
1204 | 129 static const struct memory_description csted_description_1[] = { |
771 | 130 XD_DYNARR_DESC (coding_system_type_entry_dynarr, &cste_description), |
428 | 131 { XD_END } |
132 }; | |
133 | |
1204 | 134 static const struct sized_memory_description csted_description = { |
771 | 135 sizeof (coding_system_type_entry_dynarr), |
136 csted_description_1 | |
137 }; | |
138 | |
139 static Lisp_Object Vcoding_system_type_list; | |
140 | |
141 /* Coding system currently associated with each coding category. */ | |
142 Lisp_Object coding_category_system[MAX_DETECTOR_CATEGORIES]; | |
143 | |
144 /* Table of all coding categories in decreasing order of priority. | |
145 This describes a permutation of the possible coding categories. */ | |
146 int coding_category_by_priority[MAX_DETECTOR_CATEGORIES]; | |
147 | |
148 /* Value used with to give a unique name to nameless coding systems */ | |
149 int coding_system_tick; | |
150 | |
151 int coding_detector_count; | |
152 int coding_detector_category_count; | |
153 | |
154 detector_dynarr *all_coding_detectors; | |
155 | |
1204 | 156 static const struct memory_description struct_detector_category_description_1[] |
771 | 157 = |
158 { | |
159 { XD_LISP_OBJECT, offsetof (struct detector_category, sym) }, | |
160 { XD_END } | |
161 }; | |
162 | |
1204 | 163 static const struct sized_memory_description struct_detector_category_description = |
771 | 164 { |
165 sizeof (struct detector_category), | |
166 struct_detector_category_description_1 | |
428 | 167 }; |
168 | |
1204 | 169 static const struct memory_description detector_category_dynarr_description_1[] = |
771 | 170 { |
171 XD_DYNARR_DESC (detector_category_dynarr, | |
172 &struct_detector_category_description), | |
173 { XD_END } | |
174 }; | |
175 | |
1204 | 176 static const struct sized_memory_description detector_category_dynarr_description = { |
771 | 177 sizeof (detector_category_dynarr), |
178 detector_category_dynarr_description_1 | |
179 }; | |
180 | |
1204 | 181 static const struct memory_description struct_detector_description_1[] |
771 | 182 = |
183 { | |
2367 | 184 { XD_BLOCK_PTR, offsetof (struct detector, cats), 1, |
2551 | 185 { &detector_category_dynarr_description } }, |
771 | 186 { XD_END } |
187 }; | |
188 | |
1204 | 189 static const struct sized_memory_description struct_detector_description = |
771 | 190 { |
191 sizeof (struct detector), | |
192 struct_detector_description_1 | |
193 }; | |
194 | |
1204 | 195 static const struct memory_description detector_dynarr_description_1[] = |
771 | 196 { |
197 XD_DYNARR_DESC (detector_dynarr, &struct_detector_description), | |
198 { XD_END } | |
199 }; | |
200 | |
1204 | 201 static const struct sized_memory_description detector_dynarr_description = { |
771 | 202 sizeof (detector_dynarr), |
203 detector_dynarr_description_1 | |
204 }; | |
428 | 205 |
206 Lisp_Object Qcoding_systemp; | |
207 | |
771 | 208 Lisp_Object Qraw_text; |
428 | 209 |
210 Lisp_Object Qmnemonic, Qeol_type; | |
211 Lisp_Object Qcr, Qcrlf, Qlf; | |
212 Lisp_Object Qeol_cr, Qeol_crlf, Qeol_lf; | |
213 Lisp_Object Qpost_read_conversion; | |
214 Lisp_Object Qpre_write_conversion; | |
215 | |
771 | 216 Lisp_Object Qtranslation_table_for_decode; |
217 Lisp_Object Qtranslation_table_for_encode; | |
218 Lisp_Object Qsafe_chars; | |
219 Lisp_Object Qsafe_charsets; | |
220 Lisp_Object Qmime_charset; | |
221 Lisp_Object Qvalid_codes; | |
222 | |
223 Lisp_Object Qno_conversion; | |
224 Lisp_Object Qconvert_eol; | |
440 | 225 Lisp_Object Qescape_quoted; |
771 | 226 Lisp_Object Qencode, Qdecode; |
227 | |
228 Lisp_Object Qconvert_eol_lf, Qconvert_eol_cr, Qconvert_eol_crlf; | |
229 Lisp_Object Qconvert_eol_autodetect; | |
230 | |
231 Lisp_Object Qnear_certainty, Qquite_probable, Qsomewhat_likely; | |
1494 | 232 Lisp_Object Qslightly_likely; |
771 | 233 Lisp_Object Qas_likely_as_unlikely, Qsomewhat_unlikely, Qquite_improbable; |
234 Lisp_Object Qnearly_impossible; | |
235 | |
236 Lisp_Object Qdo_eol, Qdo_coding; | |
237 | |
238 Lisp_Object Qcanonicalize_after_coding; | |
239 | |
1347 | 240 Lisp_Object QScoding_system_cookie; |
241 | |
4303 | 242 Lisp_Object Qposix_charset_to_coding_system_hash; |
243 | |
771 | 244 /* This is used to convert autodetected coding systems into existing |
245 systems. For example, the chain undecided->convert-eol-autodetect may | |
246 have its separate parts detected as mswindows-multibyte and | |
247 convert-eol-crlf, and the result needs to be mapped to | |
248 mswindows-multibyte-dos. */ | |
249 /* #### It's not clear we need this whole chain-canonicalize mechanism | |
250 any more. */ | |
251 static Lisp_Object Vchain_canonicalize_hash_table; | |
252 | |
253 #ifdef HAVE_ZLIB | |
254 Lisp_Object Qgzip; | |
428 | 255 #endif |
771 | 256 |
2297 | 257 /* Maps symbols (coding system names) to either coding system objects or |
258 (for aliases) other names. */ | |
771 | 259 static Lisp_Object Vcoding_system_hash_table; |
428 | 260 |
261 int enable_multibyte_characters; | |
262 | |
263 EXFUN (Fcopy_coding_system, 2); | |
264 | |
265 | |
266 /************************************************************************/ | |
771 | 267 /* Coding system object methods */ |
428 | 268 /************************************************************************/ |
269 | |
270 static Lisp_Object | |
271 mark_coding_system (Lisp_Object obj) | |
272 { | |
273 Lisp_Coding_System *codesys = XCODING_SYSTEM (obj); | |
274 | |
1204 | 275 #define MARKED_SLOT(x) mark_object (codesys->x); |
276 #include "coding-system-slots.h" | |
771 | 277 |
278 MAYBE_CODESYSMETH (codesys, mark, (obj)); | |
428 | 279 |
1204 | 280 return Qnil; |
428 | 281 } |
282 | |
283 static void | |
771 | 284 print_coding_system_properties (Lisp_Object obj, Lisp_Object printcharfun) |
285 { | |
286 Lisp_Coding_System *c = XCODING_SYSTEM (obj); | |
287 print_internal (c->methods->type, printcharfun, 1); | |
288 MAYBE_CODESYSMETH (c, print, (obj, printcharfun, 1)); | |
289 if (CODING_SYSTEM_EOL_TYPE (c) != EOL_AUTODETECT) | |
290 write_fmt_string_lisp (printcharfun, " eol-type=%s", | |
291 1, Fcoding_system_property (obj, Qeol_type)); | |
292 } | |
293 | |
294 static void | |
428 | 295 print_coding_system (Lisp_Object obj, Lisp_Object printcharfun, |
2286 | 296 int UNUSED (escapeflag)) |
428 | 297 { |
298 Lisp_Coding_System *c = XCODING_SYSTEM (obj); | |
299 if (print_readably) | |
4846 | 300 printing_unreadable_lcrecord (obj, 0); |
771 | 301 |
302 write_fmt_string_lisp (printcharfun, "#<coding-system %s ", 1, c->name); | |
303 print_coding_system_properties (obj, printcharfun); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
304 write_ascstring (printcharfun, ">"); |
428 | 305 } |
306 | |
771 | 307 /* Print an abbreviated version of a coding system (but still containing |
308 all the information), for use within a coding system print method. */ | |
309 | |
310 static void | |
311 print_coding_system_in_print_method (Lisp_Object cs, Lisp_Object printcharfun, | |
2286 | 312 int UNUSED (escapeflag)) |
771 | 313 { |
800 | 314 write_fmt_string_lisp (printcharfun, "%s[", 1, XCODING_SYSTEM_NAME (cs)); |
771 | 315 print_coding_system_properties (cs, printcharfun); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
316 write_ascstring (printcharfun, "]"); |
771 | 317 } |
318 | |
3263 | 319 #ifndef NEW_GC |
428 | 320 static void |
321 finalize_coding_system (void *header, int for_disksave) | |
322 { | |
771 | 323 Lisp_Object cs = wrap_coding_system ((Lisp_Coding_System *) header); |
428 | 324 /* Since coding systems never go away, this function is not |
325 necessary. But it would be necessary if we changed things | |
326 so that coding systems could go away. */ | |
327 if (!for_disksave) /* see comment in lstream.c */ | |
771 | 328 MAYBE_XCODESYSMETH (cs, finalize, (cs)); |
329 } | |
3263 | 330 #endif /* not NEW_GC */ |
771 | 331 |
332 static Bytecount | |
333 sizeof_coding_system (const void *header) | |
334 { | |
335 const Lisp_Coding_System *p = (const Lisp_Coding_System *) header; | |
336 return offsetof (Lisp_Coding_System, data) + p->methods->extra_data_size; | |
428 | 337 } |
338 | |
1204 | 339 static const struct memory_description coding_system_methods_description_1[] |
771 | 340 = { |
341 { XD_LISP_OBJECT, | |
342 offsetof (struct coding_system_methods, type) }, | |
343 { XD_LISP_OBJECT, | |
344 offsetof (struct coding_system_methods, predicate_symbol) }, | |
345 { XD_END } | |
346 }; | |
347 | |
1204 | 348 const struct sized_memory_description coding_system_methods_description = { |
771 | 349 sizeof (struct coding_system_methods), |
350 coding_system_methods_description_1 | |
351 }; | |
352 | |
1204 | 353 static const struct sized_memory_description coding_system_extra_description_map[] = |
354 { | |
355 { offsetof (Lisp_Coding_System, methods) }, | |
356 { offsetof (struct coding_system_methods, extra_description) }, | |
357 { -1 }, | |
771 | 358 }; |
359 | |
1204 | 360 static const struct memory_description coding_system_description[] = |
428 | 361 { |
2367 | 362 { XD_BLOCK_PTR, offsetof (Lisp_Coding_System, methods), 1, |
2551 | 363 { &coding_system_methods_description } }, |
1204 | 364 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (Lisp_Coding_System, x) }, |
365 #define MARKED_SLOT_ARRAY(slot, size) \ | |
366 { XD_LISP_OBJECT_ARRAY, offsetof (Lisp_Coding_System, slot), size }, | |
367 #include "coding-system-slots.h" | |
2367 | 368 { XD_BLOCK_ARRAY, offsetof (Lisp_Coding_System, data), 1, |
2551 | 369 { coding_system_extra_description_map } }, |
1204 | 370 { XD_END } |
771 | 371 }; |
372 | |
1204 | 373 static const struct memory_description coding_system_empty_extra_description_1[] = |
374 { | |
375 { XD_END } | |
376 }; | |
377 | |
378 const struct sized_memory_description coding_system_empty_extra_description = { | |
379 0, coding_system_empty_extra_description_1 | |
380 }; | |
381 | |
3263 | 382 #ifdef NEW_GC |
383 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("coding-system", coding_system, | |
384 1, /*dumpable-flag*/ | |
385 mark_coding_system, | |
386 print_coding_system, | |
387 0, 0, 0, coding_system_description, | |
388 sizeof_coding_system, | |
389 Lisp_Coding_System); | |
390 #else /* not NEW_GC */ | |
934 | 391 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("coding-system", coding_system, |
392 1, /*dumpable-flag*/ | |
393 mark_coding_system, | |
394 print_coding_system, | |
395 finalize_coding_system, | |
396 0, 0, coding_system_description, | |
397 sizeof_coding_system, | |
398 Lisp_Coding_System); | |
3263 | 399 #endif /* not NEW_GC */ |
771 | 400 |
401 /************************************************************************/ | |
402 /* Creating coding systems */ | |
403 /************************************************************************/ | |
404 | |
405 static struct coding_system_methods * | |
406 decode_coding_system_type (Lisp_Object type, Error_Behavior errb) | |
428 | 407 { |
771 | 408 int i; |
409 | |
410 for (i = 0; i < Dynarr_length (the_coding_system_type_entry_dynarr); i++) | |
428 | 411 { |
771 | 412 if (EQ (type, |
413 Dynarr_at (the_coding_system_type_entry_dynarr, i).meths->type)) | |
414 return Dynarr_at (the_coding_system_type_entry_dynarr, i).meths; | |
428 | 415 } |
771 | 416 |
417 maybe_invalid_constant ("Invalid coding system type", type, | |
418 Qcoding_system, errb); | |
419 | |
420 return 0; | |
428 | 421 } |
422 | |
771 | 423 static int |
424 valid_coding_system_type_p (Lisp_Object type) | |
428 | 425 { |
771 | 426 return decode_coding_system_type (type, ERROR_ME_NOT) != 0; |
427 } | |
428 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
429 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
430 static Lisp_Object Vdefault_query_coding_region_chartab_cache; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
431 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
432 /* Non-static because it's used in INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA. */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
433 Lisp_Object |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
434 default_query_method (Lisp_Object codesys, struct buffer *buf, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
435 Charbpos end, int flags) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
436 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
437 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:
4647
diff
changeset
|
438 Charbpos pos_byte = BYTE_BUF_PT (buf); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
439 Lisp_Object safe_charsets = XCODING_SYSTEM_SAFE_CHARSETS (codesys); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
440 Lisp_Object safe_chars = XCODING_SYSTEM_SAFE_CHARS (codesys), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
441 result = Qnil; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
442 enum query_coding_failure_reasons failed_reason, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
443 previous_failed_reason = query_coding_succeeded; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
444 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
445 /* safe-charsets of t means the coding system can encode everything. */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
446 if (EQ (Qnil, safe_chars)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
447 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
448 if (EQ (Qt, safe_charsets)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
449 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
450 return Qnil; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
451 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
452 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
453 /* If we've no information on what characters the coding system can |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
454 encode, give up. */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
455 if (EQ (Qnil, safe_charsets) && EQ (Qnil, safe_chars)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
456 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
457 return Qunbound; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
458 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
459 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
460 safe_chars = Fgethash (safe_charsets, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
461 Vdefault_query_coding_region_chartab_cache, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
462 Qnil); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
463 if (NILP (safe_chars)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
464 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
465 safe_chars = Fmake_char_table (Qgeneric); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
466 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
467 EXTERNAL_LIST_LOOP_2 (safe_charset, safe_charsets) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
468 Fput_char_table (safe_charset, Qt, safe_chars); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
469 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
470 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
471 Fputhash (safe_charsets, safe_chars, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
472 Vdefault_query_coding_region_chartab_cache); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
473 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
474 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
475 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
476 if (flags & QUERY_METHOD_HIGHLIGHT && |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
477 /* 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:
4647
diff
changeset
|
478 cleared properly: */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
479 !(UNBOUNDP (XSYMBOL (Qquery_coding_clear_highlights)->function))) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
480 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
481 /* 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:
4647
diff
changeset
|
482 allocated up to this point is safe_chars, and that's |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
483 reachable from its entry in |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
484 Vdefault_query_coding_region_chartab_cache */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
485 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:
4647
diff
changeset
|
486 wrap_buffer (buf)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
487 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
488 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
489 while (pos < end) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
490 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
491 Ichar ch = BYTE_BUF_FETCH_CHAR (buf, pos_byte); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
492 if (!EQ (Qnil, get_char_table (ch, safe_chars))) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
493 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
494 pos++; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
495 INC_BYTEBPOS (buf, pos_byte); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
496 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
497 else |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
498 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
499 fail_range_start = pos; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
500 while ((pos < end) && |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
501 (EQ (Qnil, get_char_table (ch, safe_chars)) |
4839
5f1c6ca4d05e
fix bad change to default_query_method, rewrite conditional for more correctness
Ben Wing <ben@xemacs.org>
parents:
4830
diff
changeset
|
502 && (failed_reason = query_coding_unencodable, |
5f1c6ca4d05e
fix bad change to default_query_method, rewrite conditional for more correctness
Ben Wing <ben@xemacs.org>
parents:
4830
diff
changeset
|
503 (previous_failed_reason == query_coding_succeeded |
5f1c6ca4d05e
fix bad change to default_query_method, rewrite conditional for more correctness
Ben Wing <ben@xemacs.org>
parents:
4830
diff
changeset
|
504 || previous_failed_reason == failed_reason)))) |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
505 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
506 pos++; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
507 INC_BYTEBPOS (buf, pos_byte); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
508 ch = BYTE_BUF_FETCH_CHAR (buf, pos_byte); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
509 previous_failed_reason = failed_reason; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
510 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
511 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
512 if (fail_range_start == pos) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
513 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
514 /* The character can actually be encoded; move on. */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
515 pos++; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
516 INC_BYTEBPOS (buf, pos_byte); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
517 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
518 else |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
519 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
520 assert (previous_failed_reason == query_coding_unencodable); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
521 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
522 if (flags & QUERY_METHOD_ERRORP) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
523 { |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
524 signal_error_2 |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
525 (Qtext_conversion_error, |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
526 "Cannot encode using coding system", |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
527 make_string_from_buffer (buf, fail_range_start, |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
528 pos - fail_range_start), |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
529 XCODING_SYSTEM_NAME (codesys)); |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
530 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
531 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
532 if (NILP (result)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
533 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
534 result = Fmake_range_table (Qstart_closed_end_open); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
535 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
536 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
537 fail_range_end = pos; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
538 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
539 Fput_range_table (make_int (fail_range_start), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
540 make_int (fail_range_end), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
541 Qunencodable, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
542 result); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
543 previous_failed_reason = query_coding_succeeded; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
544 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
545 if (flags & QUERY_METHOD_HIGHLIGHT) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
546 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
547 Lisp_Object extent |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
548 = Fmake_extent (make_int (fail_range_start), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
549 make_int (fail_range_end), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
550 wrap_buffer (buf)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
551 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
552 Fset_extent_priority |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
553 (extent, make_int (2 + mouse_highlight_priority)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
554 Fset_extent_face (extent, Qquery_coding_warning_face); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
555 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
556 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
557 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
558 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
559 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
560 return result; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
561 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
562 #else |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
563 Lisp_Object |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
564 default_query_method (Lisp_Object UNUSED (codesys), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
565 struct buffer * UNUSED (buf), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
566 Charbpos UNUSED (end), int UNUSED (flags)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
567 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
568 return Qnil; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
569 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
570 #endif /* defined MULE */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
571 |
771 | 572 DEFUN ("valid-coding-system-type-p", Fvalid_coding_system_type_p, 1, 1, 0, /* |
573 Given a CODING-SYSTEM-TYPE, return non-nil if it is valid. | |
574 Valid types depend on how XEmacs was compiled but may include | |
3025 | 575 `undecided', `chain', `integer', `ccl', `iso2022', `big5', `shift-jis', |
576 `utf-16', `ucs-4', `utf-8', etc. | |
771 | 577 */ |
578 (coding_system_type)) | |
579 { | |
580 return valid_coding_system_type_p (coding_system_type) ? Qt : Qnil; | |
581 } | |
582 | |
583 DEFUN ("coding-system-type-list", Fcoding_system_type_list, 0, 0, 0, /* | |
584 Return a list of valid coding system types. | |
585 */ | |
586 ()) | |
587 { | |
588 return Fcopy_sequence (Vcoding_system_type_list); | |
589 } | |
590 | |
591 void | |
592 add_entry_to_coding_system_type_list (struct coding_system_methods *meths) | |
593 { | |
594 struct coding_system_type_entry entry; | |
595 | |
596 entry.meths = meths; | |
597 Dynarr_add (the_coding_system_type_entry_dynarr, entry); | |
598 Vcoding_system_type_list = Fcons (meths->type, Vcoding_system_type_list); | |
428 | 599 } |
600 | |
601 DEFUN ("coding-system-p", Fcoding_system_p, 1, 1, 0, /* | |
602 Return t if OBJECT is a coding system. | |
603 A coding system is an object that defines how text containing multiple | |
604 character sets is encoded into a stream of (typically 8-bit) bytes. | |
605 The coding system is used to decode the stream into a series of | |
606 characters (which may be from multiple charsets) when the text is read | |
607 from a file or process, and is used to encode the text back into the | |
608 same format when it is written out to a file or process. | |
609 | |
610 For example, many ISO2022-compliant coding systems (such as Compound | |
611 Text, which is used for inter-client data under the X Window System) | |
612 use escape sequences to switch between different charsets -- Japanese | |
613 Kanji, for example, is invoked with "ESC $ ( B"; ASCII is invoked | |
614 with "ESC ( B"; and Cyrillic is invoked with "ESC - L". See | |
615 `make-coding-system' for more information. | |
616 | |
617 Coding systems are normally identified using a symbol, and the | |
618 symbol is accepted in place of the actual coding system object whenever | |
619 a coding system is called for. (This is similar to how faces work.) | |
620 */ | |
621 (object)) | |
622 { | |
623 return CODING_SYSTEMP (object) ? Qt : Qnil; | |
624 } | |
625 | |
4303 | 626 static Lisp_Object |
627 find_coding_system (Lisp_Object coding_system_or_name, | |
628 int do_autoloads) | |
629 { | |
630 Lisp_Object lookup; | |
631 | |
632 if (NILP (coding_system_or_name)) | |
633 coding_system_or_name = Qbinary; | |
634 else if (CODING_SYSTEMP (coding_system_or_name)) | |
635 return coding_system_or_name; | |
636 else | |
637 CHECK_SYMBOL (coding_system_or_name); | |
638 | |
639 while (1) | |
640 { | |
641 lookup = | |
642 Fgethash (coding_system_or_name, Vcoding_system_hash_table, Qnil); | |
643 | |
644 if (CONSP (lookup) && do_autoloads) | |
645 { | |
646 struct gcpro gcpro1; | |
647 int length; | |
648 DECLARE_EISTRING (desired_base); | |
649 DECLARE_EISTRING (warning_info); | |
650 | |
651 eicpy_lstr (desired_base, XSYMBOL_NAME (coding_system_or_name)); | |
652 | |
653 /* Work out the name of the base coding system. */ | |
654 length = eilen (desired_base); | |
655 if (length > (int)(sizeof ("-unix") - 1)) | |
656 { | |
657 if (0 == qxestrcmp ((UAscbyte *)"-unix", (eidata (desired_base)) | |
658 + (length - (sizeof ("-unix") - 1)))) | |
659 { | |
660 eidel (desired_base, length - (sizeof ("-unix") - 1), | |
661 -1, 5, 5); | |
662 } | |
663 } | |
664 else if (length > (int)(sizeof ("-dos") - 1)) | |
665 { | |
666 if ((0 == qxestrcmp ((UAscbyte *)"-dos", (eidata (desired_base)) | |
667 + (length - (sizeof ("-dos") - 1)))) || | |
668 (0 == qxestrcmp ((UAscbyte *)"-mac", (eidata (desired_base)) | |
669 + (length - (sizeof ("-mac") - 1))))) | |
670 { | |
671 eidel (desired_base, length - (sizeof ("-dos") - 1), -1, | |
672 4, 4); | |
673 } | |
674 } | |
675 | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
676 coding_system_or_name = intern_istring (eidata (desired_base)); |
4303 | 677 |
678 /* Remove this coding system and its subsidiary coding | |
679 systems from the hash, to avoid calling this code recursively. */ | |
680 Fremhash (coding_system_or_name, Vcoding_system_hash_table); | |
681 Fremhash (add_suffix_to_symbol(coding_system_or_name, "-unix"), | |
682 Vcoding_system_hash_table); | |
683 Fremhash (add_suffix_to_symbol(coding_system_or_name, "-dos"), | |
684 Vcoding_system_hash_table); | |
685 Fremhash (add_suffix_to_symbol(coding_system_or_name, "-mac"), | |
686 Vcoding_system_hash_table); | |
687 | |
688 eicpy_ascii (warning_info, "Error autoloading coding system "); | |
689 eicat_lstr (warning_info, XSYMBOL_NAME (coding_system_or_name)); | |
690 | |
691 /* Keep around the form so it doesn't disappear from under | |
692 #'eval's feet. */ | |
693 GCPRO1 (lookup); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
694 call1_trapping_problems ((const CIbyte *) eidata (warning_info), |
4303 | 695 Qeval, lookup, 0); |
696 UNGCPRO; | |
697 | |
698 lookup = | |
699 Fgethash (coding_system_or_name, Vcoding_system_hash_table, Qnil); | |
700 } | |
701 | |
702 if (CODING_SYSTEMP (lookup) || NILP (lookup)) | |
703 return lookup; | |
704 | |
705 coding_system_or_name = lookup; | |
706 } | |
707 } | |
708 | |
428 | 709 DEFUN ("find-coding-system", Ffind_coding_system, 1, 1, 0, /* |
710 Retrieve the coding system of the given name. | |
711 | |
712 If CODING-SYSTEM-OR-NAME is a coding-system object, it is simply | |
713 returned. Otherwise, CODING-SYSTEM-OR-NAME should be a symbol. | |
714 If there is no such coding system, nil is returned. Otherwise the | |
715 associated coding system object is returned. | |
716 */ | |
717 (coding_system_or_name)) | |
718 { | |
4303 | 719 return find_coding_system(coding_system_or_name, 1); |
720 } | |
721 | |
722 DEFUN ("autoload-coding-system", Fautoload_coding_system, 2, 2, 0, /* | |
723 Define SYMBOL as a coding-system that is loaded on demand. | |
724 | |
725 FORM is a form to evaluate to define the coding-system. | |
726 */ | |
727 (symbol, form)) | |
728 { | |
729 Lisp_Object lookup; | |
730 | |
731 CHECK_SYMBOL (symbol); | |
732 CHECK_CONS (form); | |
733 | |
734 lookup = find_coding_system (symbol, 0); | |
735 | |
736 if (!NILP (lookup) && | |
737 /* Allow autoloads to be redefined. */ | |
738 !CONSP (lookup)) | |
440 | 739 { |
4303 | 740 invalid_operation ("Cannot redefine existing coding system", |
741 symbol); | |
440 | 742 } |
4303 | 743 |
744 Fputhash (symbol, form, Vcoding_system_hash_table); | |
745 Fputhash (add_suffix_to_symbol(symbol, "-unix"), form, | |
746 Vcoding_system_hash_table); | |
747 Fputhash (add_suffix_to_symbol(symbol, "-dos"), form, | |
748 Vcoding_system_hash_table); | |
749 Fputhash (add_suffix_to_symbol(symbol, "-mac"), form, | |
750 Vcoding_system_hash_table); | |
751 | |
752 /* Tell the POSIX locale infrastructure about this coding system (though | |
753 unfortunately it'll be too late for the startup locale sniffing. */ | |
754 if (!UNBOUNDP (Qposix_charset_to_coding_system_hash)) | |
755 { | |
756 Lisp_Object val = Fsymbol_value (Qposix_charset_to_coding_system_hash); | |
757 DECLARE_EISTRING (minimal_name); | |
758 Ibyte *full_name; | |
759 int len = XSTRING_LENGTH (XSYMBOL_NAME (symbol)), i; | |
760 | |
761 if (!NILP (val)) | |
762 { | |
763 full_name = XSTRING_DATA (XSYMBOL_NAME (symbol)); | |
764 for (i = 0; i < len; ++i) | |
765 { | |
766 if (full_name[i] >= '0' && full_name[i] <= '9') | |
767 { | |
768 eicat_ch (minimal_name, full_name[i]); | |
769 } | |
770 else if (full_name[i] >= 'a' && full_name[i] <= 'z') | |
771 { | |
772 eicat_ch (minimal_name, full_name[i]); | |
773 } | |
774 else if (full_name[i] >= 'A' && full_name[i] <= 'Z') | |
775 { | |
776 eicat_ch (minimal_name, full_name[i] + | |
777 ('a' - 'A')); | |
778 } | |
779 } | |
780 | |
781 if (eilen (minimal_name)) | |
782 { | |
783 CHECK_HASH_TABLE (val); | |
784 Fputhash (eimake_string(minimal_name), symbol, val); | |
785 } | |
786 } | |
787 } | |
788 | |
789 return Qt; | |
428 | 790 } |
791 | |
792 DEFUN ("get-coding-system", Fget_coding_system, 1, 1, 0, /* | |
793 Retrieve the coding system of the given name. | |
794 Same as `find-coding-system' except that if there is no such | |
795 coding system, an error is signaled instead of returning nil. | |
796 */ | |
797 (name)) | |
798 { | |
799 Lisp_Object coding_system = Ffind_coding_system (name); | |
800 | |
801 if (NILP (coding_system)) | |
563 | 802 invalid_argument ("No such coding system", name); |
428 | 803 return coding_system; |
804 } | |
805 | |
771 | 806 int |
807 coding_system_is_binary (Lisp_Object coding_system) | |
808 { | |
809 Lisp_Coding_System *cs = XCODING_SYSTEM (coding_system); | |
810 return | |
811 (EQ (CODING_SYSTEM_TYPE (cs), Qno_conversion) && | |
812 CODING_SYSTEM_EOL_TYPE (cs) == EOL_LF && | |
813 EQ (CODING_SYSTEM_POST_READ_CONVERSION (cs), Qnil) && | |
814 EQ (CODING_SYSTEM_PRE_WRITE_CONVERSION (cs), Qnil)); | |
815 } | |
816 | |
817 static Lisp_Object | |
818 coding_system_real_canonical (Lisp_Object cs) | |
819 { | |
820 if (!NILP (XCODING_SYSTEM_CANONICAL (cs))) | |
821 return XCODING_SYSTEM_CANONICAL (cs); | |
822 return cs; | |
823 } | |
824 | |
825 /* Return true if coding system is of the "standard" type that decodes | |
826 bytes into characters (suitable for decoding a text file). */ | |
827 int | |
828 coding_system_is_for_text_file (Lisp_Object coding_system) | |
829 { | |
830 return (XCODESYSMETH_OR_GIVEN | |
831 (coding_system, conversion_end_type, | |
832 (coding_system_real_canonical (coding_system)), | |
833 DECODES_BYTE_TO_CHARACTER) == | |
834 DECODES_BYTE_TO_CHARACTER); | |
835 } | |
836 | |
837 static int | |
838 decoding_source_sink_type_is_char (Lisp_Object cs, enum source_or_sink sex) | |
839 { | |
840 enum source_sink_type type = | |
841 XCODESYSMETH_OR_GIVEN (cs, conversion_end_type, | |
842 (coding_system_real_canonical (cs)), | |
843 DECODES_BYTE_TO_CHARACTER); | |
844 if (sex == CODING_SOURCE) | |
845 return (type == DECODES_CHARACTER_TO_CHARACTER || | |
846 type == DECODES_CHARACTER_TO_BYTE); | |
847 else | |
848 return (type == DECODES_CHARACTER_TO_CHARACTER || | |
849 type == DECODES_BYTE_TO_CHARACTER); | |
850 } | |
851 | |
852 static int | |
853 encoding_source_sink_type_is_char (Lisp_Object cs, enum source_or_sink sex) | |
854 { | |
855 return decoding_source_sink_type_is_char (cs, | |
856 /* Sex change */ | |
857 sex == CODING_SOURCE ? | |
858 CODING_SINK : CODING_SOURCE); | |
859 } | |
860 | |
861 /* Like Ffind_coding_system() but check that the coding system is of the | |
862 "standard" type that decodes bytes into characters (suitable for | |
863 decoding a text file), and if not, returns an appropriate wrapper that | |
864 does. Also, if EOL_WRAP is non-zero, check whether this coding system | |
865 wants EOL auto-detection, and if so, wrap with a convert-eol coding | |
866 system to do this. */ | |
867 | |
868 Lisp_Object | |
869 find_coding_system_for_text_file (Lisp_Object name, int eol_wrap) | |
870 { | |
871 Lisp_Object coding_system = Ffind_coding_system (name); | |
872 Lisp_Object wrapper = coding_system; | |
873 | |
874 if (NILP (coding_system)) | |
875 return Qnil; | |
876 if (!coding_system_is_for_text_file (coding_system)) | |
877 { | |
878 wrapper = XCODING_SYSTEM_TEXT_FILE_WRAPPER (coding_system); | |
879 if (NILP (wrapper)) | |
880 { | |
881 Lisp_Object chain; | |
882 if (!decoding_source_sink_type_is_char (coding_system, CODING_SINK)) | |
883 chain = list2 (coding_system, Qbinary); | |
884 else | |
885 chain = list1 (coding_system); | |
886 if (decoding_source_sink_type_is_char (coding_system, CODING_SOURCE)) | |
887 chain = Fcons (Qbinary, chain); | |
888 wrapper = | |
889 make_internal_coding_system | |
890 (coding_system, | |
891 "internal-text-file-wrapper", | |
892 Qchain, | |
893 Qunbound, list4 (Qchain, chain, | |
894 Qcanonicalize_after_coding, coding_system)); | |
895 XCODING_SYSTEM_TEXT_FILE_WRAPPER (coding_system) = wrapper; | |
896 } | |
897 } | |
898 | |
899 if (!eol_wrap || XCODING_SYSTEM_EOL_TYPE (coding_system) != EOL_AUTODETECT) | |
900 return wrapper; | |
901 | |
902 coding_system = wrapper; | |
903 wrapper = XCODING_SYSTEM_AUTO_EOL_WRAPPER (coding_system); | |
904 if (!NILP (wrapper)) | |
905 return wrapper; | |
906 wrapper = | |
907 make_internal_coding_system | |
908 (coding_system, | |
909 "internal-auto-eol-wrapper", | |
910 Qundecided, Qunbound, | |
911 list4 (Qcoding_system, coding_system, | |
912 Qdo_eol, Qt)); | |
913 XCODING_SYSTEM_AUTO_EOL_WRAPPER (coding_system) = wrapper; | |
914 return wrapper; | |
915 } | |
916 | |
917 /* Like Fget_coding_system() but verify that the coding system is of the | |
918 "standard" type that decodes bytes into characters (suitable for | |
919 decoding a text file), and if not, returns an appropriate wrapper that | |
920 does. Also, if EOL_WRAP is non-zero, check whether this coding system | |
921 wants EOL auto-detection, and if so, wrap with a convert-eol coding | |
922 system to do this. */ | |
923 | |
924 Lisp_Object | |
925 get_coding_system_for_text_file (Lisp_Object name, int eol_wrap) | |
926 { | |
927 Lisp_Object coding_system = find_coding_system_for_text_file (name, | |
928 eol_wrap); | |
929 if (NILP (coding_system)) | |
930 invalid_argument ("No such coding system", name); | |
931 return coding_system; | |
932 } | |
933 | |
934 /* We store the coding systems in hash tables with the names as the | |
935 key and the actual coding system object as the value. Occasionally | |
936 we need to use them in a list format. These routines provide us | |
937 with that. */ | |
428 | 938 struct coding_system_list_closure |
939 { | |
940 Lisp_Object *coding_system_list; | |
771 | 941 int normal; |
942 int internal; | |
428 | 943 }; |
944 | |
945 static int | |
4303 | 946 add_coding_system_to_list_mapper (Lisp_Object key, Lisp_Object value, |
428 | 947 void *coding_system_list_closure) |
948 { | |
949 /* This function can GC */ | |
950 struct coding_system_list_closure *cscl = | |
951 (struct coding_system_list_closure *) coding_system_list_closure; | |
952 Lisp_Object *coding_system_list = cscl->coding_system_list; | |
953 | |
771 | 954 /* We can't just use VALUE because KEY might be an alias, and we need |
4303 | 955 the real coding system object. |
956 | |
957 Autoloaded coding systems have conses for their values, and can't be | |
958 internal coding systems, or coding system aliases. */ | |
959 if (CONSP (value) || | |
960 (XCODING_SYSTEM (Ffind_coding_system (key))->internal_p ? | |
961 cscl->internal : cscl->normal)) | |
771 | 962 *coding_system_list = Fcons (key, *coding_system_list); |
428 | 963 return 0; |
964 } | |
965 | |
2297 | 966 /* #### should we specify a conventional for "all coding systems"? */ |
771 | 967 DEFUN ("coding-system-list", Fcoding_system_list, 0, 1, 0, /* |
428 | 968 Return a list of the names of all defined coding systems. |
771 | 969 If INTERNAL is nil, only the normal (non-internal) coding systems are |
970 included. (Internal coding systems are created for various internal | |
971 purposes, such as implementing EOL types of CRLF and CR; generally, you do | |
972 not want to see these.) If it is t, only the internal coding systems are | |
973 included. If it is any other non-nil value both normal and internal are | |
974 included. | |
428 | 975 */ |
771 | 976 (internal)) |
428 | 977 { |
978 Lisp_Object coding_system_list = Qnil; | |
979 struct gcpro gcpro1; | |
980 struct coding_system_list_closure coding_system_list_closure; | |
981 | |
982 GCPRO1 (coding_system_list); | |
983 coding_system_list_closure.coding_system_list = &coding_system_list; | |
771 | 984 coding_system_list_closure.normal = !EQ (internal, Qt); |
985 coding_system_list_closure.internal = !NILP (internal); | |
428 | 986 elisp_maphash (add_coding_system_to_list_mapper, Vcoding_system_hash_table, |
987 &coding_system_list_closure); | |
988 UNGCPRO; | |
989 | |
990 return coding_system_list; | |
991 } | |
992 | |
993 DEFUN ("coding-system-name", Fcoding_system_name, 1, 1, 0, /* | |
994 Return the name of the given coding system. | |
995 */ | |
996 (coding_system)) | |
997 { | |
998 coding_system = Fget_coding_system (coding_system); | |
999 return XCODING_SYSTEM_NAME (coding_system); | |
1000 } | |
1001 | |
1002 static Lisp_Coding_System * | |
771 | 1003 allocate_coding_system (struct coding_system_methods *codesys_meths, |
1004 Bytecount data_size, | |
1005 Lisp_Object name) | |
428 | 1006 { |
771 | 1007 Bytecount total_size = offsetof (Lisp_Coding_System, data) + data_size; |
428 | 1008 Lisp_Coding_System *codesys = |
3024 | 1009 (Lisp_Coding_System *) BASIC_ALLOC_LCRECORD (total_size, |
1204 | 1010 &lrecord_coding_system); |
1011 | |
771 | 1012 codesys->methods = codesys_meths; |
1204 | 1013 #define MARKED_SLOT(x) codesys->x = Qnil; |
1014 #include "coding-system-slots.h" | |
1015 | |
771 | 1016 CODING_SYSTEM_EOL_TYPE (codesys) = EOL_LF; |
1017 CODING_SYSTEM_NAME (codesys) = name; | |
1018 | |
1019 MAYBE_CODESYSMETH (codesys, init, (wrap_coding_system (codesys))); | |
428 | 1020 |
1021 return codesys; | |
1022 } | |
1023 | |
771 | 1024 static enum eol_type |
1025 symbol_to_eol_type (Lisp_Object symbol) | |
1026 { | |
1027 CHECK_SYMBOL (symbol); | |
1028 if (NILP (symbol)) return EOL_AUTODETECT; | |
1029 if (EQ (symbol, Qlf)) return EOL_LF; | |
1030 if (EQ (symbol, Qcrlf)) return EOL_CRLF; | |
1031 if (EQ (symbol, Qcr)) return EOL_CR; | |
1032 | |
1033 invalid_constant ("Unrecognized eol type", symbol); | |
1204 | 1034 RETURN_NOT_REACHED (EOL_AUTODETECT); |
771 | 1035 } |
1036 | |
1037 static Lisp_Object | |
1038 eol_type_to_symbol (enum eol_type type) | |
1039 { | |
1040 switch (type) | |
1041 { | |
2500 | 1042 default: ABORT (); |
771 | 1043 case EOL_LF: return Qlf; |
1044 case EOL_CRLF: return Qcrlf; | |
1045 case EOL_CR: return Qcr; | |
1046 case EOL_AUTODETECT: return Qnil; | |
1047 } | |
1048 } | |
1049 | |
1050 struct subsidiary_type | |
1051 { | |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1052 const Ascbyte *extension; |
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1053 const Ascbyte *mnemonic_ext; |
771 | 1054 enum eol_type eol; |
1055 }; | |
1056 | |
1057 static struct subsidiary_type coding_subsidiary_list[] = | |
1058 { { "-unix", "", EOL_LF }, | |
1059 { "-dos", ":T", EOL_CRLF }, | |
1060 { "-mac", ":t", EOL_CR } }; | |
1061 | |
1062 /* kludge */ | |
428 | 1063 static void |
771 | 1064 setup_eol_coding_systems (Lisp_Object codesys) |
428 | 1065 { |
793 | 1066 int len = XSTRING_LENGTH (XSYMBOL (XCODING_SYSTEM_NAME (codesys))->name); |
2367 | 1067 Ibyte *codesys_name = alloca_ibytes (len + 7); |
771 | 1068 int mlen = -1; |
867 | 1069 Ibyte *codesys_mnemonic = 0; |
771 | 1070 Lisp_Object codesys_name_sym, sub_codesys; |
1071 int i; | |
1072 | |
1073 memcpy (codesys_name, | |
793 | 1074 XSTRING_DATA (XSYMBOL (XCODING_SYSTEM_NAME (codesys))->name), len); |
771 | 1075 |
1076 if (STRINGP (XCODING_SYSTEM_MNEMONIC (codesys))) | |
428 | 1077 { |
771 | 1078 mlen = XSTRING_LENGTH (XCODING_SYSTEM_MNEMONIC (codesys)); |
2367 | 1079 codesys_mnemonic = alloca_ibytes (mlen + 7); |
771 | 1080 memcpy (codesys_mnemonic, |
1081 XSTRING_DATA (XCODING_SYSTEM_MNEMONIC (codesys)), mlen); | |
1082 } | |
1083 | |
1084 /* Create three "subsidiary" coding systems, decoding data encoded using | |
1085 each of the three EOL types. We do this for each subsidiary by | |
1086 copying the original coding system, setting the EOL type | |
1087 appropriately, and setting the CANONICAL member of the new coding | |
1088 system to be a chain consisting of the original coding system followed | |
1089 by a convert-eol coding system to do the EOL decoding. For EOL type | |
1090 LF, however, we don't need any decoding, so we skip creating a | |
1091 CANONICAL. | |
1092 | |
1093 If the original coding system is not a text-type coding system | |
1094 (decodes byte->char), we need to coerce it to one by the appropriate | |
1095 wrapping in CANONICAL. */ | |
1096 | |
1097 for (i = 0; i < countof (coding_subsidiary_list); i++) | |
1098 { | |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1099 const Ascbyte *extension = coding_subsidiary_list[i].extension; |
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1100 const Ascbyte *mnemonic_ext = coding_subsidiary_list[i].mnemonic_ext; |
771 | 1101 enum eol_type eol = coding_subsidiary_list[i].eol; |
1102 | |
2367 | 1103 qxestrcpy_ascii (codesys_name + len, extension); |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1104 codesys_name_sym = intern_istring (codesys_name); |
771 | 1105 if (mlen != -1) |
2367 | 1106 qxestrcpy_ascii (codesys_mnemonic + mlen, mnemonic_ext); |
771 | 1107 |
1108 sub_codesys = Fcopy_coding_system (codesys, codesys_name_sym); | |
1109 if (mlen != -1) | |
1110 XCODING_SYSTEM_MNEMONIC (sub_codesys) = | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1111 build_istring (codesys_mnemonic); |
771 | 1112 |
1113 if (eol != EOL_LF) | |
1114 { | |
1115 Lisp_Object chain = list2 (get_coding_system_for_text_file | |
1116 (codesys, 0), | |
1117 eol == EOL_CR ? Qconvert_eol_cr : | |
1118 Qconvert_eol_crlf); | |
1119 Lisp_Object canon = | |
1120 make_internal_coding_system | |
1121 (sub_codesys, "internal-subsidiary-eol-wrapper", | |
1122 Qchain, Qunbound, | |
1123 mlen != -1 ? | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1124 list6 (Qmnemonic, build_istring (codesys_mnemonic), |
771 | 1125 Qchain, chain, |
1126 Qcanonicalize_after_coding, sub_codesys) : | |
1127 list4 (Qchain, chain, | |
1128 Qcanonicalize_after_coding, sub_codesys)); | |
1129 XCODING_SYSTEM_CANONICAL (sub_codesys) = canon; | |
1130 } | |
1131 XCODING_SYSTEM_EOL_TYPE (sub_codesys) = eol; | |
1132 XCODING_SYSTEM_SUBSIDIARY_PARENT (sub_codesys) = codesys; | |
1133 XCODING_SYSTEM (codesys)->eol[eol] = sub_codesys; | |
428 | 1134 } |
1135 } | |
1136 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1137 DEFUN ("coding-system-canonical-name-p", Fcoding_system_canonical_name_p, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1138 1, 1, 0, /* |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1139 Return t if OBJECT names a coding system, and is not a coding system alias. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1140 */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1141 (object)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1142 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1143 return CODING_SYSTEMP (Fgethash (object, Vcoding_system_hash_table, Qnil)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1144 ? Qt : Qnil; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1145 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1146 |
771 | 1147 /* Basic function to create new coding systems. For `make-coding-system', |
1148 NAME-OR-EXISTING is the NAME argument, PREFIX is null, and TYPE, | |
1149 DESCRIPTION, and PROPS are the same. All created coding systems are put | |
1150 in a hash table indexed by NAME. | |
1151 | |
1152 If PREFIX is a string, NAME-OR-EXISTING should specify an existing | |
1153 coding system (or nil), and an internal coding system will be created. | |
1154 The name of the coding system will be constructed by combining PREFIX | |
1155 with the name of the existing coding system (if given), and a number | |
1156 will be appended to insure uniqueness. In such a case, if Qunbound is | |
1157 given for DESCRIPTION, the description gets created based on the | |
1158 generated name. Also, if no mnemonic is given in the properties list, a | |
1159 mnemonic is created based on the generated name. | |
1160 | |
1161 For internal coding systems, the coding system is marked as internal | |
1162 (see `coding-system-list'), and no subsidiaries will be created or | |
1163 eol-wrapping will happen. Otherwise: | |
1164 | |
1165 -- if the eol-type property is `lf' or t, the coding system is merely | |
1166 created and returned. (For t, the coding system will be wrapped with | |
1167 an EOL autodetector when it's used to read a file.) | |
1168 | |
1169 -- if eol-type is `crlf' or `cr', after the coding system object is | |
1170 created, it will be wrapped in a chain with the appropriate | |
1171 convert-eol coding system (either `convert-eol-crlf' or | |
1172 `convert-eol-cr'), so that CRLF->LF or CR->LF conversion is done at | |
1173 decoding time, and the opposite at encoding time. The resulting | |
1174 chain becomes the CANONICAL field of the coding system object. | |
1175 | |
1176 -- if eol-type is nil or omitted, "subsidiaries" are generated: Three | |
1177 coding systems where the original coding system (before wrapping with | |
1178 convert-eol-autodetect) is either unwrapped or wrapped with | |
1179 convert-eol-crlf or convert-eol-cr, respectively, so that coding systems | |
1180 to handle LF, CRLF, and CR end-of-line indicators are created. (This | |
1181 crazy crap is based on existing behavior in other Mule versions, | |
1182 including FSF Emacs.) | |
1183 */ | |
428 | 1184 |
1185 static Lisp_Object | |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1186 make_coding_system_1 (Lisp_Object name_or_existing, const Ascbyte *prefix, |
771 | 1187 Lisp_Object type, Lisp_Object description, |
1188 Lisp_Object props) | |
428 | 1189 { |
771 | 1190 Lisp_Coding_System *cs; |
1191 int need_to_setup_eol_systems = 1; | |
1192 enum eol_type eol_wrapper = EOL_AUTODETECT; | |
1193 struct coding_system_methods *meths; | |
1194 Lisp_Object csobj; | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1195 Lisp_Object defmnem = Qnil, aliases = Qnil; |
771 | 1196 |
1197 if (NILP (type)) | |
1198 type = Qundecided; | |
1199 meths = decode_coding_system_type (type, ERROR_ME); | |
1200 | |
1201 if (prefix) | |
428 | 1202 { |
867 | 1203 Ibyte *newname = |
771 | 1204 emacs_sprintf_malloc (NULL, "%s-%s-%d", |
1205 prefix, | |
867 | 1206 NILP (name_or_existing) ? (Ibyte *) "nil" : |
771 | 1207 XSTRING_DATA (Fsymbol_name (XCODING_SYSTEM_NAME |
1208 (name_or_existing))), | |
1209 ++coding_system_tick); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1210 name_or_existing = intern_istring (newname); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
1211 xfree (newname); |
771 | 1212 |
1213 if (UNBOUNDP (description)) | |
1214 { | |
1215 newname = | |
1216 emacs_sprintf_malloc | |
1217 (NULL, "For Internal Use (%s)", | |
1218 XSTRING_DATA (Fsymbol_name (name_or_existing))); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1219 description = build_istring (newname); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
1220 xfree (newname); |
771 | 1221 } |
1222 | |
1223 newname = emacs_sprintf_malloc (NULL, "Int%d", coding_system_tick); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1224 defmnem = build_istring (newname); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
1225 xfree (newname); |
428 | 1226 } |
771 | 1227 else |
1228 CHECK_SYMBOL (name_or_existing); | |
1229 | |
4303 | 1230 /* See is there an entry for name_or_existing in the defined coding system |
1231 hash table. */ | |
1232 csobj = find_coding_system (name_or_existing, 0); | |
1233 /* Error if it's there and not an autoload form. */ | |
1234 if (!NILP (csobj) && !CONSP (csobj)) | |
771 | 1235 invalid_operation ("Cannot redefine existing coding system", |
4303 | 1236 name_or_existing); |
771 | 1237 |
1238 cs = allocate_coding_system (meths, meths->extra_data_size, | |
1239 name_or_existing); | |
793 | 1240 csobj = wrap_coding_system (cs); |
771 | 1241 |
1242 cs->internal_p = !!prefix; | |
1243 | |
1244 if (NILP (description)) | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1245 description = build_ascstring (""); |
771 | 1246 else |
1247 CHECK_STRING (description); | |
1248 CODING_SYSTEM_DESCRIPTION (cs) = description; | |
1249 | |
1250 if (!NILP (defmnem)) | |
1251 CODING_SYSTEM_MNEMONIC (cs) = defmnem; | |
1252 | |
1253 { | |
1254 EXTERNAL_PROPERTY_LIST_LOOP_3 (key, value, props) | |
1255 { | |
1256 int recognized = 1; | |
1257 | |
1258 if (EQ (key, Qmnemonic)) | |
1259 { | |
1260 if (!NILP (value)) | |
1261 CHECK_STRING (value); | |
1262 CODING_SYSTEM_MNEMONIC (cs) = value; | |
1263 } | |
1264 | |
1265 else if (EQ (key, Qdocumentation)) | |
1266 { | |
1267 if (!NILP (value)) | |
1268 CHECK_STRING (value); | |
1269 CODING_SYSTEM_DOCUMENTATION (cs) = value; | |
1270 } | |
1271 | |
1272 else if (EQ (key, Qeol_type)) | |
1273 { | |
1274 need_to_setup_eol_systems = NILP (value); | |
1275 if (EQ (value, Qt)) | |
1276 value = Qnil; | |
1277 eol_wrapper = symbol_to_eol_type (value); | |
1278 } | |
1279 | |
1280 else if (EQ (key, Qpost_read_conversion)) | |
1281 CODING_SYSTEM_POST_READ_CONVERSION (cs) = value; | |
1282 else if (EQ (key, Qpre_write_conversion)) | |
1283 CODING_SYSTEM_PRE_WRITE_CONVERSION (cs) = value; | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1284 else if (EQ (key, Qaliases)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1285 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1286 EXTERNAL_LIST_LOOP_2 (alias, value) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1287 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1288 CHECK_SYMBOL (alias); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1289 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1290 if (!NILP (Fcoding_system_canonical_name_p (alias))) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1291 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1292 invalid_change ("Symbol is the canonical name of a " |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1293 "coding system and cannot be redefined", |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1294 alias); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1295 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1296 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1297 aliases = value; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1298 } |
771 | 1299 /* FSF compatibility */ |
1300 else if (EQ (key, Qtranslation_table_for_decode)) | |
1301 ; | |
1302 else if (EQ (key, Qtranslation_table_for_encode)) | |
1303 ; | |
1304 else if (EQ (key, Qsafe_chars)) | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1305 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1306 CHECK_CHAR_TABLE (value); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1307 CODING_SYSTEM_SAFE_CHARS (cs) = value; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1308 } |
771 | 1309 else if (EQ (key, Qsafe_charsets)) |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1310 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1311 if (!EQ (Qt, value) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1312 /* Would be nice to actually do this check, but there are |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1313 some order conflicts with japanese.el and |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1314 mule-coding.el */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1315 && 0) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1316 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1317 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1318 EXTERNAL_LIST_LOOP_2 (safe_charset, value) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1319 CHECK_CHARSET (Ffind_charset (safe_charset)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1320 #endif |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1321 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1322 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1323 CODING_SYSTEM_SAFE_CHARSETS (cs) = value; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1324 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1325 else if (EQ (key, Qcategory)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1326 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1327 Fput (name_or_existing, intern ("coding-system-property"), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1328 Fplist_put (Fget (name_or_existing, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1329 intern ("coding-system-property"), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1330 Qnil), |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1331 Qcategory, value)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1332 } |
771 | 1333 else if (EQ (key, Qmime_charset)) |
1334 ; | |
1335 else if (EQ (key, Qvalid_codes)) | |
1336 ; | |
1337 else | |
1338 recognized = CODESYSMETH_OR_GIVEN (cs, putprop, | |
1339 (csobj, key, value), 0); | |
1340 | |
1341 if (!recognized) | |
1342 invalid_constant ("Unrecognized property", key); | |
1343 } | |
1344 } | |
1345 | |
1346 { | |
1347 XCODING_SYSTEM_CANONICAL (csobj) = | |
1348 CODESYSMETH_OR_GIVEN (cs, canonicalize, (csobj), Qnil); | |
1349 XCODING_SYSTEM_EOL_TYPE (csobj) = EOL_AUTODETECT; /* for copy-coding-system | |
1350 below */ | |
1351 | |
4303 | 1352 Fputhash (name_or_existing, csobj, Vcoding_system_hash_table); |
1353 | |
771 | 1354 if (need_to_setup_eol_systems && !cs->internal_p) |
1355 setup_eol_coding_systems (csobj); | |
1356 else if (eol_wrapper == EOL_CR || eol_wrapper == EOL_CRLF) | |
1357 { | |
1358 /* If a specific eol-type (other than LF) was specified, we handle | |
1359 this by converting the coding system into a chain that wraps the | |
1360 coding system along with a convert-eol system after it, in | |
1361 exactly that same switcheroo fashion that the normal | |
1362 canonicalize method works -- BUT we will run into a problem if | |
1363 we do it the obvious way, because when `chain' creates its | |
1364 substreams, the substream containing the coding system we're | |
1365 creating will have canonicalization expansion done on it, | |
1366 leading to infinite recursion. So we have to generate a new, | |
1367 internal coding system with the previous value of CANONICAL. */ | |
867 | 1368 Ibyte *newname = |
771 | 1369 emacs_sprintf_malloc |
1370 (NULL, "internal-eol-copy-%s-%d", | |
1371 XSTRING_DATA (Fsymbol_name (name_or_existing)), | |
1372 ++coding_system_tick); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
1373 Lisp_Object newnamesym = intern_istring (newname); |
771 | 1374 Lisp_Object copied = Fcopy_coding_system (csobj, newnamesym); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
1375 xfree (newname); |
771 | 1376 |
1377 XCODING_SYSTEM_CANONICAL (csobj) = | |
1378 make_internal_coding_system | |
1379 (csobj, | |
1380 "internal-eol-wrapper", | |
1381 Qchain, Qunbound, | |
1382 list4 (Qchain, | |
1383 list2 (copied, | |
1384 eol_wrapper == EOL_CR ? | |
1385 Qconvert_eol_cr : | |
1386 Qconvert_eol_crlf), | |
1387 Qcanonicalize_after_coding, | |
1388 csobj)); | |
1389 } | |
1390 XCODING_SYSTEM_EOL_TYPE (csobj) = eol_wrapper; | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1391 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1392 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1393 EXTERNAL_LIST_LOOP_2 (alias, aliases) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1394 Fdefine_coding_system_alias (alias, csobj); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1395 } |
771 | 1396 } |
1397 | |
1398 return csobj; | |
428 | 1399 } |
1400 | |
771 | 1401 Lisp_Object |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1402 make_internal_coding_system (Lisp_Object existing, const Ascbyte *prefix, |
771 | 1403 Lisp_Object type, Lisp_Object description, |
1404 Lisp_Object props) | |
1405 { | |
1406 return make_coding_system_1 (existing, prefix, type, description, props); | |
1407 } | |
428 | 1408 |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1409 DEFUN ("make-coding-system-internal", Fmake_coding_system_internal, 2, 4, 0, /* |
5083
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1410 Create a new coding system object, and register NAME as its name. |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1411 |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1412 With Mule support, this does much of the work of `make-coding-system'. |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1413 Without Mule support, it does all the work of that function, and an alias |
5083
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1414 exists, mapping `make-coding-system' to `make-coding-system-internal'. |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1415 |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1416 You'll need a Mule XEmacs to read the complete docstring. Or you can |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1417 just read it in make-coding-system.el; something like the following |
88f955fa5a7f
Back out revision c673987f5f3d, undump mule/make-coding-system.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5038
diff
changeset
|
1418 should work: |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1419 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
1420 \\[find-function-other-window] find-file RET \\[find-file] mule/make-coding-system.el RET |
771 | 1421 |
428 | 1422 */ |
771 | 1423 (name, type, description, props)) |
428 | 1424 { |
771 | 1425 return make_coding_system_1 (name, 0, type, description, props); |
428 | 1426 } |
1427 | |
1428 DEFUN ("copy-coding-system", Fcopy_coding_system, 2, 2, 0, /* | |
1429 Copy OLD-CODING-SYSTEM to NEW-NAME. | |
1430 If NEW-NAME does not name an existing coding system, a new one will | |
1431 be created. | |
771 | 1432 If you are using this function to create an alias, think again: |
1433 Use `define-coding-system-alias' instead. | |
428 | 1434 */ |
1435 (old_coding_system, new_name)) | |
1436 { | |
1437 Lisp_Object new_coding_system; | |
1438 old_coding_system = Fget_coding_system (old_coding_system); | |
771 | 1439 new_coding_system = |
4303 | 1440 UNBOUNDP (new_name) ? Qnil : find_coding_system (new_name, 0); |
428 | 1441 if (NILP (new_coding_system)) |
1442 { | |
793 | 1443 new_coding_system = |
1444 wrap_coding_system | |
1445 (allocate_coding_system | |
1446 (XCODING_SYSTEM (old_coding_system)->methods, | |
1447 XCODING_SYSTEM (old_coding_system)->methods->extra_data_size, | |
1448 new_name)); | |
771 | 1449 if (!UNBOUNDP (new_name)) |
1450 Fputhash (new_name, new_coding_system, Vcoding_system_hash_table); | |
428 | 1451 } |
771 | 1452 else if (XCODING_SYSTEM (old_coding_system)->methods != |
1453 XCODING_SYSTEM (new_coding_system)->methods) | |
1454 invalid_operation_2 ("Coding systems not same type", | |
1455 old_coding_system, new_coding_system); | |
428 | 1456 |
1457 { | |
1458 Lisp_Coding_System *to = XCODING_SYSTEM (new_coding_system); | |
1459 Lisp_Coding_System *from = XCODING_SYSTEM (old_coding_system); | |
3017 | 1460 COPY_SIZED_LCRECORD (to, from, sizeof_coding_system (from)); |
428 | 1461 to->name = new_name; |
1462 } | |
1463 return new_coding_system; | |
1464 } | |
1465 | |
2297 | 1466 /* #### Shouldn't this really be a find/get pair? */ |
1467 | |
440 | 1468 DEFUN ("coding-system-alias-p", Fcoding_system_alias_p, 1, 1, 0, /* |
1469 Return t if OBJECT is a coding system alias. | |
1470 All coding system aliases are created by `define-coding-system-alias'. | |
1471 */ | |
1472 (object)) | |
428 | 1473 { |
440 | 1474 return SYMBOLP (Fgethash (object, Vcoding_system_hash_table, Qzero)) |
1475 ? Qt : Qnil; | |
1476 } | |
1477 | |
1478 DEFUN ("coding-system-aliasee", Fcoding_system_aliasee, 1, 1, 0, /* | |
1479 Return the coding-system symbol for which symbol ALIAS is an alias. | |
1480 */ | |
1481 (alias)) | |
1482 { | |
1483 Lisp_Object aliasee = Fgethash (alias, Vcoding_system_hash_table, Qnil); | |
1484 if (SYMBOLP (aliasee)) | |
1485 return aliasee; | |
1486 else | |
563 | 1487 invalid_argument ("Symbol is not a coding system alias", alias); |
1204 | 1488 RETURN_NOT_REACHED (Qnil); |
440 | 1489 } |
1490 | |
1491 /* A maphash function, for removing dangling coding system aliases. */ | |
1492 static int | |
2286 | 1493 dangling_coding_system_alias_p (Lisp_Object UNUSED (alias), |
440 | 1494 Lisp_Object aliasee, |
1495 void *dangling_aliases) | |
1496 { | |
1497 if (SYMBOLP (aliasee) | |
1498 && NILP (Fgethash (aliasee, Vcoding_system_hash_table, Qnil))) | |
428 | 1499 { |
440 | 1500 (*(int *) dangling_aliases)++; |
1501 return 1; | |
428 | 1502 } |
440 | 1503 else |
1504 return 0; | |
1505 } | |
1506 | |
1507 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, 2, 2, 0, /* | |
1508 Define symbol ALIAS as an alias for coding system ALIASEE. | |
1509 | |
1510 You can use this function to redefine an alias that has already been defined, | |
1511 but you cannot redefine a name which is the canonical name for a coding system. | |
1512 \(a canonical name of a coding system is what is returned when you call | |
1513 `coding-system-name' on a coding system). | |
1514 | |
1515 ALIASEE itself can be an alias, which allows you to define nested aliases. | |
1516 | |
1517 You are forbidden, however, from creating alias loops or `dangling' aliases. | |
1518 These will be detected, and an error will be signaled if you attempt to do so. | |
1519 | |
1520 If ALIASEE is nil, then ALIAS will simply be undefined. | |
1521 | |
1522 See also `coding-system-alias-p', `coding-system-aliasee', | |
1523 and `coding-system-canonical-name-p'. | |
1524 */ | |
1525 (alias, aliasee)) | |
1526 { | |
2286 | 1527 Lisp_Object probe; |
440 | 1528 |
1529 CHECK_SYMBOL (alias); | |
1530 | |
1531 if (!NILP (Fcoding_system_canonical_name_p (alias))) | |
563 | 1532 invalid_change |
440 | 1533 ("Symbol is the canonical name of a coding system and cannot be redefined", |
1534 alias); | |
1535 | |
1536 if (NILP (aliasee)) | |
1537 { | |
771 | 1538 Lisp_Object subsidiary_unix = add_suffix_to_symbol (alias, "-unix"); |
1539 Lisp_Object subsidiary_dos = add_suffix_to_symbol (alias, "-dos"); | |
1540 Lisp_Object subsidiary_mac = add_suffix_to_symbol (alias, "-mac"); | |
440 | 1541 |
1542 Fremhash (alias, Vcoding_system_hash_table); | |
1543 | |
1544 /* Undefine subsidiary aliases, | |
1545 presumably created by a previous call to this function */ | |
1546 if (! NILP (Fcoding_system_alias_p (subsidiary_unix)) && | |
1547 ! NILP (Fcoding_system_alias_p (subsidiary_dos)) && | |
1548 ! NILP (Fcoding_system_alias_p (subsidiary_mac))) | |
1549 { | |
1550 Fdefine_coding_system_alias (subsidiary_unix, Qnil); | |
1551 Fdefine_coding_system_alias (subsidiary_dos, Qnil); | |
1552 Fdefine_coding_system_alias (subsidiary_mac, Qnil); | |
1553 } | |
1554 | |
1555 /* Undefine dangling coding system aliases. */ | |
1556 { | |
1557 int dangling_aliases; | |
1558 | |
1559 do { | |
1560 dangling_aliases = 0; | |
1561 elisp_map_remhash (dangling_coding_system_alias_p, | |
1562 Vcoding_system_hash_table, | |
1563 &dangling_aliases); | |
1564 } while (dangling_aliases > 0); | |
1565 } | |
1566 | |
1567 return Qnil; | |
1568 } | |
1569 | |
1570 if (CODING_SYSTEMP (aliasee)) | |
1571 aliasee = XCODING_SYSTEM_NAME (aliasee); | |
1572 | |
1573 /* Checks that aliasee names a coding-system */ | |
2286 | 1574 (void) Fget_coding_system (aliasee); |
440 | 1575 |
1576 /* Check for coding system alias loops */ | |
1577 if (EQ (alias, aliasee)) | |
563 | 1578 alias_loop: invalid_operation_2 |
440 | 1579 ("Attempt to create a coding system alias loop", alias, aliasee); |
1580 | |
1581 for (probe = aliasee; | |
1582 SYMBOLP (probe); | |
1583 probe = Fgethash (probe, Vcoding_system_hash_table, Qzero)) | |
1584 { | |
1585 if (EQ (probe, alias)) | |
1586 goto alias_loop; | |
1587 } | |
1588 | |
1589 Fputhash (alias, aliasee, Vcoding_system_hash_table); | |
1590 | |
1591 /* Set up aliases for subsidiaries. | |
2297 | 1592 #### There must be a better way to handle subsidiary coding systems. |
1593 Inquiring Minds Want To Know: shouldn't they always be chains? */ | |
440 | 1594 { |
1595 static const char *suffixes[] = { "-unix", "-dos", "-mac" }; | |
1596 int i; | |
1597 for (i = 0; i < countof (suffixes); i++) | |
1598 { | |
1599 Lisp_Object alias_subsidiary = | |
771 | 1600 add_suffix_to_symbol (alias, suffixes[i]); |
440 | 1601 Lisp_Object aliasee_subsidiary = |
771 | 1602 add_suffix_to_symbol (aliasee, suffixes[i]); |
440 | 1603 |
1604 if (! NILP (Ffind_coding_system (aliasee_subsidiary))) | |
1605 Fdefine_coding_system_alias (alias_subsidiary, aliasee_subsidiary); | |
1606 } | |
1607 } | |
428 | 1608 /* FSF return value is a vector of [ALIAS-unix ALIAS-dos ALIAS-mac], |
1609 but it doesn't look intentional, so I'd rather return something | |
1610 meaningful or nothing at all. */ | |
1611 return Qnil; | |
1612 } | |
1613 | |
1614 static Lisp_Object | |
771 | 1615 subsidiary_coding_system (Lisp_Object coding_system, enum eol_type type) |
428 | 1616 { |
1617 Lisp_Coding_System *cs = XCODING_SYSTEM (coding_system); | |
1618 Lisp_Object new_coding_system; | |
1619 | |
1620 switch (type) | |
1621 { | |
1622 case EOL_AUTODETECT: return coding_system; | |
1623 case EOL_LF: new_coding_system = CODING_SYSTEM_EOL_LF (cs); break; | |
1624 case EOL_CR: new_coding_system = CODING_SYSTEM_EOL_CR (cs); break; | |
1625 case EOL_CRLF: new_coding_system = CODING_SYSTEM_EOL_CRLF (cs); break; | |
2500 | 1626 default: ABORT (); return Qnil; |
428 | 1627 } |
1628 | |
1629 return NILP (new_coding_system) ? coding_system : new_coding_system; | |
1630 } | |
1631 | |
1632 DEFUN ("subsidiary-coding-system", Fsubsidiary_coding_system, 2, 2, 0, /* | |
1633 Return the subsidiary coding system of CODING-SYSTEM with eol type EOL-TYPE. | |
771 | 1634 The logically opposite operation is `coding-system-base'. |
428 | 1635 */ |
1636 (coding_system, eol_type)) | |
1637 { | |
771 | 1638 coding_system = get_coding_system_for_text_file (coding_system, 0); |
428 | 1639 |
1640 return subsidiary_coding_system (coding_system, | |
1641 symbol_to_eol_type (eol_type)); | |
1642 } | |
1643 | |
771 | 1644 DEFUN ("coding-system-base", Fcoding_system_base, |
1645 1, 1, 0, /* | |
1646 Return the base coding system of CODING-SYSTEM. | |
1647 If CODING-SYSTEM is a subsidiary, this returns its parent; otherwise, it | |
1648 returns CODING-SYSTEM. | |
1649 The logically opposite operation is `subsidiary-coding-system'. | |
1650 */ | |
1651 (coding_system)) | |
1652 { | |
1653 Lisp_Object base; | |
1654 | |
1655 coding_system = Fget_coding_system (coding_system); | |
1656 if (EQ (XCODING_SYSTEM_NAME (coding_system), Qbinary)) | |
1657 return Fget_coding_system (Qraw_text); /* hack! */ | |
1658 base = XCODING_SYSTEM_SUBSIDIARY_PARENT (coding_system); | |
1659 if (!NILP (base)) | |
1660 return base; | |
1661 return coding_system; | |
1662 } | |
1663 | |
1664 DEFUN ("coding-system-used-for-io", Fcoding_system_used_for_io, | |
1665 1, 1, 0, /* | |
1666 Return the coding system actually used for I/O. | |
1667 In some cases (e.g. when a particular EOL type is specified) this won't be | |
2297 | 1668 the coding system itself. This can be useful when trying to determine |
1669 precisely how data was decoded. | |
771 | 1670 */ |
1671 (coding_system)) | |
1672 { | |
1673 Lisp_Object canon; | |
1674 | |
1675 coding_system = Fget_coding_system (coding_system); | |
1676 canon = XCODING_SYSTEM_CANONICAL (coding_system); | |
1677 if (!NILP (canon)) | |
1678 return canon; | |
1679 return coding_system; | |
1680 } | |
1681 | |
428 | 1682 |
1683 /************************************************************************/ | |
1684 /* Coding system accessors */ | |
1685 /************************************************************************/ | |
1686 | |
771 | 1687 DEFUN ("coding-system-description", Fcoding_system_description, 1, 1, 0, /* |
1688 Return the description for CODING-SYSTEM. | |
1689 The `description' of a coding system is a short English phrase giving the | |
1690 name rendered according to English punctuation rules, plus possibly some | |
1691 explanatory text (typically in the form of a parenthetical phrase). The | |
1692 description is intended to be short enough that it can appear as a menu item, | |
1693 and clear enough to be recognizable even to someone who is assumed to have | |
1694 some basic familiarity with different encodings but may not know all the | |
1695 technical names; thus, for `cn-gb-2312' is described as "Chinese EUC" and | |
1696 `hz-gb-2312' is described as "Hz/ZW (Chinese)", where the actual name of | |
1697 the encoding is given, followed by a note that this is a Chinese encoding, | |
1698 because the great majority of people encountering this would have no idea | |
1699 what it is, and giving the language indicates whether the encoding should | |
1700 just be ignored or (conceivably) investigated more thoroughly. | |
428 | 1701 */ |
1702 (coding_system)) | |
1703 { | |
1704 coding_system = Fget_coding_system (coding_system); | |
771 | 1705 return XCODING_SYSTEM_DESCRIPTION (coding_system); |
428 | 1706 } |
1707 | |
1708 DEFUN ("coding-system-type", Fcoding_system_type, 1, 1, 0, /* | |
1709 Return the type of CODING-SYSTEM. | |
1710 */ | |
1711 (coding_system)) | |
1712 { | |
771 | 1713 coding_system = Fget_coding_system (coding_system); |
1714 return XCODING_SYSTEM_TYPE (coding_system); | |
428 | 1715 } |
1716 | |
1717 DEFUN ("coding-system-property", Fcoding_system_property, 2, 2, 0, /* | |
1718 Return the PROP property of CODING-SYSTEM. | |
1719 */ | |
1720 (coding_system, prop)) | |
1721 { | |
1722 coding_system = Fget_coding_system (coding_system); | |
1723 CHECK_SYMBOL (prop); | |
1724 | |
1725 if (EQ (prop, Qname)) | |
1726 return XCODING_SYSTEM_NAME (coding_system); | |
1727 else if (EQ (prop, Qtype)) | |
1728 return Fcoding_system_type (coding_system); | |
771 | 1729 else if (EQ (prop, Qdescription)) |
1730 return XCODING_SYSTEM_DESCRIPTION (coding_system); | |
428 | 1731 else if (EQ (prop, Qmnemonic)) |
1732 return XCODING_SYSTEM_MNEMONIC (coding_system); | |
771 | 1733 else if (EQ (prop, Qdocumentation)) |
1734 return XCODING_SYSTEM_DOCUMENTATION (coding_system); | |
428 | 1735 else if (EQ (prop, Qeol_type)) |
771 | 1736 return eol_type_to_symbol (XCODING_SYSTEM_EOL_TYPE |
1737 (coding_system)); | |
428 | 1738 else if (EQ (prop, Qeol_lf)) |
1739 return XCODING_SYSTEM_EOL_LF (coding_system); | |
1740 else if (EQ (prop, Qeol_crlf)) | |
1741 return XCODING_SYSTEM_EOL_CRLF (coding_system); | |
1742 else if (EQ (prop, Qeol_cr)) | |
1743 return XCODING_SYSTEM_EOL_CR (coding_system); | |
1744 else if (EQ (prop, Qpost_read_conversion)) | |
1745 return XCODING_SYSTEM_POST_READ_CONVERSION (coding_system); | |
1746 else if (EQ (prop, Qpre_write_conversion)) | |
1747 return XCODING_SYSTEM_PRE_WRITE_CONVERSION (coding_system); | |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4303
diff
changeset
|
1748 else if (EQ (prop, Qsafe_charsets)) |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4303
diff
changeset
|
1749 return XCODING_SYSTEM_SAFE_CHARSETS (coding_system); |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4303
diff
changeset
|
1750 else if (EQ (prop, Qsafe_chars)) |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4303
diff
changeset
|
1751 return XCODING_SYSTEM_SAFE_CHARS (coding_system); |
771 | 1752 else |
1753 { | |
1754 Lisp_Object value = CODESYSMETH_OR_GIVEN (XCODING_SYSTEM (coding_system), | |
1755 getprop, | |
1756 (coding_system, prop), | |
1757 Qunbound); | |
1758 if (UNBOUNDP (value)) | |
1759 invalid_constant ("Unrecognized property", prop); | |
1760 return value; | |
1761 } | |
1762 } | |
1763 | |
1764 | |
1765 /************************************************************************/ | |
1766 /* Coding stream functions */ | |
1767 /************************************************************************/ | |
1768 | |
1769 /* A coding stream is a stream used for encoding or decoding text. The | |
1770 coding-stream object keeps track of the actual coding system, the stream | |
1771 that is at the other end, and data that needs to be persistent across | |
1772 the lifetime of the stream. */ | |
1773 | |
1204 | 1774 extern const struct sized_memory_description chain_coding_stream_description; |
1775 extern const struct sized_memory_description undecided_coding_stream_description; | |
1776 | |
1777 static const struct memory_description coding_stream_data_description_1 []= { | |
2551 | 1778 { XD_BLOCK_PTR, chain_coding_system, 1, |
1779 { &chain_coding_stream_description } }, | |
1780 { XD_BLOCK_PTR, undecided_coding_system, 1, | |
1781 { &undecided_coding_stream_description } }, | |
1204 | 1782 { XD_END } |
1783 }; | |
1784 | |
1785 static const struct sized_memory_description coding_stream_data_description = { | |
1786 sizeof (void *), coding_stream_data_description_1 | |
1787 }; | |
1788 | |
1789 static const struct memory_description coding_lstream_description[] = { | |
1790 { XD_INT, offsetof (struct coding_stream, type) }, | |
1791 { XD_LISP_OBJECT, offsetof (struct coding_stream, orig_codesys) }, | |
1792 { XD_LISP_OBJECT, offsetof (struct coding_stream, codesys) }, | |
1793 { XD_LISP_OBJECT, offsetof (struct coding_stream, other_end) }, | |
1794 { XD_UNION, offsetof (struct coding_stream, data), | |
2551 | 1795 XD_INDIRECT (0, 0), { &coding_stream_data_description } }, |
1204 | 1796 { XD_END } |
1797 }; | |
1798 | |
1799 DEFINE_LSTREAM_IMPLEMENTATION_WITH_DATA ("coding", coding); | |
771 | 1800 |
1801 /* Encoding and decoding are parallel operations, so we create just one | |
1802 stream for both. "Decoding" may involve the extra step of autodetection | |
1803 of the data format, but that's only because of the conventional | |
1804 definition of decoding as converting from external- to | |
1805 internal-formatted data. | |
1806 | |
2297 | 1807 [[ REWRITE ME! ]] |
1808 | |
771 | 1809 #### We really need to abstract out the concept of "data formats" and |
1810 define "converters" that convert from and to specified formats, | |
1811 eliminating the idea of decoding and encoding. When specifying a | |
1812 conversion process, we need to give the data formats themselves, not the | |
1813 conversion processes -- e.g. a coding system called "Unicode->multibyte" | |
1814 converts in both directions, and we could auto-detect the format of data | |
1815 at either end. */ | |
1816 | |
1817 static Bytecount | |
1818 coding_reader (Lstream *stream, unsigned char *data, Bytecount size) | |
1819 { | |
1820 unsigned char *orig_data = data; | |
1821 Bytecount read_size; | |
1822 int error_occurred = 0; | |
1823 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
1824 | |
1825 /* We need to interface to coding_{de,en}code_1(), which expects to take | |
1826 some amount of data and store the result into a Dynarr. We have | |
1827 coding_{de,en}code_1() store into c->runoff, and take data from there | |
1828 as necessary. */ | |
1829 | |
1830 /* We loop until we have enough data, reading chunks from the other | |
1831 end and converting it. */ | |
1832 while (1) | |
1833 { | |
1834 /* Take data from convert_to if we can. Make sure to take at | |
1835 most SIZE bytes, and delete the data from convert_to. */ | |
1836 if (Dynarr_length (str->convert_to) > 0) | |
1837 { | |
1838 Bytecount chunk = | |
1839 min (size, (Bytecount) Dynarr_length (str->convert_to)); | |
4967 | 1840 memcpy (data, Dynarr_begin (str->convert_to), chunk); |
771 | 1841 Dynarr_delete_many (str->convert_to, 0, chunk); |
1842 data += chunk; | |
1843 size -= chunk; | |
1844 } | |
1845 | |
1846 if (size == 0) | |
1847 break; /* No more room for data */ | |
1848 | |
1849 if (str->eof) | |
1850 break; | |
1851 | |
1852 { | |
1853 /* Exhausted convert_to, so get some more. Read into convert_from, | |
1854 after existing "rejected" data from the last conversion. */ | |
1855 Bytecount rejected = Dynarr_length (str->convert_from); | |
1856 /* #### 1024 is arbitrary; we really need to separate 0 from EOF, | |
1857 and when we get 0, keep taking more data until we don't get 0 -- | |
1858 we don't know how much data the conversion routine might need | |
2297 | 1859 before it can generate any data of its own (eg, bzip2). */ |
814 | 1860 Bytecount readmore = |
1861 str->one_byte_at_a_time ? (Bytecount) 1 : | |
1862 max (size, (Bytecount) 1024); | |
771 | 1863 |
1864 Dynarr_add_many (str->convert_from, 0, readmore); | |
1865 read_size = Lstream_read (str->other_end, | |
1866 Dynarr_atp (str->convert_from, rejected), | |
1867 readmore); | |
1868 /* Trim size down to how much we actually got */ | |
5038 | 1869 Dynarr_set_lengthr (str->convert_from, rejected + max (0, read_size)); |
771 | 1870 } |
1871 | |
1872 if (read_size < 0) /* LSTREAM_ERROR */ | |
1873 { | |
1874 error_occurred = 1; | |
1875 break; | |
1876 } | |
1877 if (read_size == 0) /* LSTREAM_EOF */ | |
1878 /* There might be some more end data produced in the translation, | |
1879 so we set a flag and call the conversion method once more to | |
1880 output any final stuff it may be holding, any "go back to a sane | |
1881 state" escape sequences, etc. The conversion method is free to | |
1882 look at this flag, and we use it above to stop looping. */ | |
1883 str->eof = 1; | |
1884 { | |
1885 Bytecount processed; | |
1886 Bytecount to_process = Dynarr_length (str->convert_from); | |
1887 | |
1888 /* Convert the data, and save any rejected data in convert_from */ | |
1889 processed = | |
1890 XCODESYSMETH (str->codesys, convert, | |
4967 | 1891 (str, Dynarr_begin (str->convert_from), |
771 | 1892 str->convert_to, to_process)); |
1893 if (processed < 0) | |
1894 { | |
1895 error_occurred = 1; | |
1896 break; | |
1897 } | |
1898 assert (processed <= to_process); | |
1899 if (processed < to_process) | |
4967 | 1900 memmove (Dynarr_begin (str->convert_from), |
771 | 1901 Dynarr_atp (str->convert_from, processed), |
1902 to_process - processed); | |
5038 | 1903 Dynarr_set_lengthr (str->convert_from, to_process - processed); |
771 | 1904 } |
1905 } | |
1906 | |
1907 if (data - orig_data == 0) | |
1908 return error_occurred ? -1 : 0; | |
1909 else | |
1910 return data - orig_data; | |
1911 } | |
1912 | |
1913 static Bytecount | |
1914 coding_writer (Lstream *stream, const unsigned char *data, Bytecount size) | |
1915 { | |
1916 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
1917 | |
1918 /* Convert all our data into convert_to, and then attempt to write | |
1919 it all out to the other end. */ | |
1920 Dynarr_reset (str->convert_to); | |
1921 size = XCODESYSMETH (str->codesys, convert, | |
1922 (str, data, str->convert_to, size)); | |
4967 | 1923 if (Lstream_write (str->other_end, Dynarr_begin (str->convert_to), |
771 | 1924 Dynarr_length (str->convert_to)) < 0) |
1925 return -1; | |
1926 else | |
1927 /* The return value indicates how much of the incoming data was | |
1928 processed, not how many bytes were written. */ | |
1929 return size; | |
1930 } | |
1931 | |
1932 static int | |
1933 encode_decode_source_sink_type_is_char (Lisp_Object cs, | |
1934 enum source_or_sink sex, | |
1935 enum encode_decode direction) | |
1936 { | |
1937 return (direction == CODING_DECODE ? | |
1938 decoding_source_sink_type_is_char (cs, sex) : | |
1939 encoding_source_sink_type_is_char (cs, sex)); | |
1940 } | |
1941 | |
1942 /* Ensure that the convert methods only get full characters sent to them to | |
1943 convert if the source of that conversion is characters; and that no such | |
1944 full-character checking happens when the source is bytes. Keep in mind | |
1945 that (1) the conversion_end_type return values take the perspective of | |
1946 encoding; (2) the source for decoding is the same as the sink for | |
1947 encoding; (3) when writing, the data is given to us, and we set our own | |
1948 stream to be character mode or not; (4) when reading, the data comes | |
1949 from the other_end stream, and we set that one to be character mode or | |
1950 not. This is consistent with the comment above the prototype for | |
1951 Lstream_set_character_mode(), which lays out rules for who is allowed to | |
1952 modify the character type mode on a stream. | |
1953 | |
814 | 1954 If we're a read stream, we're always setting character mode on the |
1955 source, but we also set it on ourselves consistent with the flag that | |
1956 can disable this (see again the comment above | |
1957 Lstream_set_character_mode()). | |
1958 */ | |
771 | 1959 |
1960 static void | |
1961 set_coding_character_mode (Lstream *stream) | |
1962 { | |
1963 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
1964 Lstream *stream_to_set = | |
1965 stream->flags & LSTREAM_FL_WRITE ? stream : str->other_end; | |
1966 if (encode_decode_source_sink_type_is_char | |
1967 (str->codesys, CODING_SOURCE, str->direction)) | |
1968 Lstream_set_character_mode (stream_to_set); | |
1969 else | |
1970 Lstream_unset_character_mode (stream_to_set); | |
814 | 1971 if (str->set_char_mode_on_us_when_reading && |
1972 (stream->flags & LSTREAM_FL_READ)) | |
1973 { | |
1974 if (encode_decode_source_sink_type_is_char | |
1975 (str->codesys, CODING_SINK, str->direction)) | |
1976 Lstream_set_character_mode (stream); | |
1977 else | |
1978 Lstream_unset_character_mode (stream); | |
1979 } | |
771 | 1980 } |
1981 | |
1982 static Lisp_Object | |
1983 coding_marker (Lisp_Object stream) | |
1984 { | |
1985 struct coding_stream *str = CODING_STREAM_DATA (XLSTREAM (stream)); | |
1986 | |
1987 mark_object (str->orig_codesys); | |
1988 mark_object (str->codesys); | |
1989 MAYBE_XCODESYSMETH (str->codesys, mark_coding_stream, (str)); | |
1990 return wrap_lstream (str->other_end); | |
1991 } | |
1992 | |
1993 static int | |
1994 coding_rewinder (Lstream *stream) | |
1995 { | |
1996 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
1997 MAYBE_XCODESYSMETH (str->codesys, rewind_coding_stream, (str)); | |
1998 | |
1999 str->ch = 0; | |
2000 Dynarr_reset (str->convert_to); | |
2001 Dynarr_reset (str->convert_from); | |
2002 return Lstream_rewind (str->other_end); | |
2003 } | |
2004 | |
2005 static int | |
2006 coding_seekable_p (Lstream *stream) | |
2007 { | |
2008 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
2009 return Lstream_seekable_p (str->other_end); | |
2010 } | |
2011 | |
2012 static int | |
2013 coding_flusher (Lstream *stream) | |
2014 { | |
2015 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
2016 return Lstream_flush (str->other_end); | |
2017 } | |
2018 | |
2019 static int | |
2020 coding_closer (Lstream *stream) | |
2021 { | |
2022 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
2023 if (stream->flags & LSTREAM_FL_WRITE) | |
2024 { | |
2025 str->eof = 1; | |
2026 coding_writer (stream, 0, 0); | |
2027 str->eof = 0; | |
2028 } | |
2029 /* It's safe to free the runoff dynarrs now because they are used only | |
2030 during conversion. We need to keep the type-specific data around, | |
2031 though, because of canonicalize_after_coding. */ | |
2032 if (str->convert_to) | |
2033 { | |
2034 Dynarr_free (str->convert_to); | |
2035 str->convert_to = 0; | |
2036 } | |
2037 if (str->convert_from) | |
428 | 2038 { |
771 | 2039 Dynarr_free (str->convert_from); |
2040 str->convert_from = 0; | |
2041 } | |
2042 | |
800 | 2043 if (str->no_close_other) |
2044 return Lstream_flush (str->other_end); | |
2045 else | |
2046 return Lstream_close (str->other_end); | |
771 | 2047 } |
2048 | |
2049 static void | |
2050 coding_finalizer (Lstream *stream) | |
2051 { | |
2052 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
2053 | |
2054 assert (!str->finalized); | |
2055 MAYBE_XCODESYSMETH (str->codesys, finalize_coding_stream, (str)); | |
2056 if (str->data) | |
2057 { | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
2058 xfree (str->data); |
771 | 2059 str->data = 0; |
2060 } | |
2061 str->finalized = 1; | |
2062 } | |
2063 | |
2064 static Lisp_Object | |
2065 coding_stream_canonicalize_after_coding (Lstream *stream) | |
2066 { | |
2067 struct coding_stream *str = CODING_STREAM_DATA (stream); | |
2068 | |
2069 return XCODESYSMETH_OR_GIVEN (str->codesys, canonicalize_after_coding, | |
2070 (str), str->codesys); | |
2071 } | |
2072 | |
2073 Lisp_Object | |
2074 coding_stream_detected_coding_system (Lstream *stream) | |
2075 { | |
2076 Lisp_Object codesys = | |
2077 coding_stream_canonicalize_after_coding (stream); | |
2078 if (NILP (codesys)) | |
2079 return Fget_coding_system (Qidentity); | |
2080 return codesys; | |
2081 } | |
2082 | |
2083 Lisp_Object | |
2084 coding_stream_coding_system (Lstream *stream) | |
2085 { | |
2086 return CODING_STREAM_DATA (stream)->codesys; | |
2087 } | |
2088 | |
2089 /* Change the coding system associated with a stream. */ | |
2090 | |
2091 void | |
2092 set_coding_stream_coding_system (Lstream *lstr, Lisp_Object codesys) | |
2093 { | |
2094 struct coding_stream *str = CODING_STREAM_DATA (lstr); | |
2095 if (EQ (str->orig_codesys, codesys)) | |
2096 return; | |
2097 /* We do the equivalent of closing the stream, destroying it, and | |
2098 reinitializing it. This includes flushing out the data and signalling | |
2099 EOF, if we're a writing stream; we also replace the type-specific data | |
2100 with the data appropriate for the new coding system. */ | |
2101 if (!NILP (str->codesys)) | |
2102 { | |
2103 if (lstr->flags & LSTREAM_FL_WRITE) | |
2104 { | |
2105 Lstream_flush (lstr); | |
2106 str->eof = 1; | |
2107 coding_writer (lstr, 0, 0); | |
2108 str->eof = 0; | |
2109 } | |
2110 MAYBE_XCODESYSMETH (str->codesys, finalize_coding_stream, (str)); | |
2111 } | |
2112 str->orig_codesys = codesys; | |
2113 str->codesys = coding_system_real_canonical (codesys); | |
2114 | |
2115 if (str->data) | |
2116 { | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
2117 xfree (str->data); |
771 | 2118 str->data = 0; |
428 | 2119 } |
771 | 2120 if (XCODING_SYSTEM_METHODS (str->codesys)->coding_data_size) |
1204 | 2121 { |
2122 str->data = | |
2123 xmalloc_and_zero (XCODING_SYSTEM_METHODS (str->codesys)-> | |
2124 coding_data_size); | |
2125 str->type = XCODING_SYSTEM_METHODS (str->codesys)->enumtype; | |
2126 } | |
771 | 2127 MAYBE_XCODESYSMETH (str->codesys, init_coding_stream, (str)); |
2128 /* The new coding system may have different ideas regarding whether its | |
2129 ends are characters or bytes. */ | |
2130 set_coding_character_mode (lstr); | |
2131 } | |
2132 | |
2133 /* WARNING WARNING WARNING WARNING!!!!! If you open up a coding | |
2134 stream for writing, no automatic code detection will be performed. | |
2135 The reason for this is that automatic code detection requires a | |
2136 seekable input. Things will also fail if you open a coding | |
2137 stream for reading using a non-fully-specified coding system and | |
2138 a non-seekable input stream. */ | |
2139 | |
2140 static Lisp_Object | |
2141 make_coding_stream_1 (Lstream *stream, Lisp_Object codesys, | |
800 | 2142 const char *mode, enum encode_decode direction, |
802 | 2143 int flags) |
771 | 2144 { |
2145 Lstream *lstr = Lstream_new (lstream_coding, mode); | |
2146 struct coding_stream *str = CODING_STREAM_DATA (lstr); | |
2147 | |
2148 codesys = Fget_coding_system (codesys); | |
2149 xzero (*str); | |
2150 str->codesys = Qnil; | |
2151 str->orig_codesys = Qnil; | |
2152 str->us = lstr; | |
2153 str->other_end = stream; | |
2154 str->convert_to = Dynarr_new (unsigned_char); | |
2155 str->convert_from = Dynarr_new (unsigned_char); | |
2156 str->direction = direction; | |
814 | 2157 if (flags & LSTREAM_FL_NO_CLOSE_OTHER) |
802 | 2158 str->no_close_other = 1; |
814 | 2159 if (flags & LSTREAM_FL_READ_ONE_BYTE_AT_A_TIME) |
802 | 2160 str->one_byte_at_a_time = 1; |
814 | 2161 if (!(flags & LSTREAM_FL_NO_INIT_CHAR_MODE_WHEN_READING)) |
2162 str->set_char_mode_on_us_when_reading = 1; | |
802 | 2163 |
771 | 2164 set_coding_stream_coding_system (lstr, codesys); |
793 | 2165 return wrap_lstream (lstr); |
771 | 2166 } |
2167 | |
814 | 2168 /* FLAGS: |
2169 | |
2170 LSTREAM_FL_NO_CLOSE_OTHER | |
2171 Don't close STREAM (the stream at the other end) when this stream is | |
2172 closed. | |
2173 | |
2174 LSTREAM_FL_READ_ONE_BYTE_AT_A_TIME | |
2175 When reading from STREAM, read and process one byte at a time rather | |
2176 than in large chunks. This is for reading from TTY's, so we don't | |
2177 block. #### We should instead create a non-blocking filedesc stream | |
2178 that emulates the behavior as necessary using select(), when the | |
2179 fcntls don't work. (As seems to be the case on Cygwin.) | |
2180 | |
2181 LSTREAM_FL_NO_INIT_CHAR_MODE_WHEN_READING | |
2182 When reading from STREAM, read and process one byte at a time rather | |
2183 than in large chunks. This is for reading from TTY's, so we don't | |
2184 block. #### We should instead create a non-blocking filedesc stream | |
2185 that emulates the behavior as necessary using select(), when the | |
2186 fcntls don't work. (As seems to be the case on Cygwin.) | |
2187 */ | |
771 | 2188 Lisp_Object |
2189 make_coding_input_stream (Lstream *stream, Lisp_Object codesys, | |
802 | 2190 enum encode_decode direction, int flags) |
771 | 2191 { |
800 | 2192 return make_coding_stream_1 (stream, codesys, "r", direction, |
802 | 2193 flags); |
771 | 2194 } |
2195 | |
814 | 2196 /* FLAGS: |
2197 | |
2198 LSTREAM_FL_NO_CLOSE_OTHER | |
2199 Don't close STREAM (the stream at the other end) when this stream is | |
2200 closed. | |
2201 */ | |
771 | 2202 Lisp_Object |
2203 make_coding_output_stream (Lstream *stream, Lisp_Object codesys, | |
802 | 2204 enum encode_decode direction, int flags) |
771 | 2205 { |
800 | 2206 return make_coding_stream_1 (stream, codesys, "w", direction, |
802 | 2207 flags); |
771 | 2208 } |
2209 | |
2210 static Lisp_Object | |
2211 encode_decode_coding_region (Lisp_Object start, Lisp_Object end, | |
2212 Lisp_Object coding_system, Lisp_Object buffer, | |
2213 enum encode_decode direction) | |
2214 { | |
2215 Charbpos b, e; | |
2216 struct buffer *buf = decode_buffer (buffer, 0); | |
2217 Lisp_Object instream = Qnil, to_outstream = Qnil, outstream = Qnil; | |
2218 Lisp_Object from_outstream = Qnil, auto_outstream = Qnil; | |
2219 Lisp_Object lb_outstream = Qnil; | |
2220 Lisp_Object next; | |
2221 Lstream *istr, *ostr; | |
2222 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; | |
2223 struct gcpro ngcpro1; | |
2224 int source_char, sink_char; | |
2225 | |
2226 get_buffer_range_char (buf, start, end, &b, &e, 0); | |
2227 barf_if_buffer_read_only (buf, b, e); | |
2228 | |
2229 GCPRO5 (instream, to_outstream, outstream, from_outstream, lb_outstream); | |
2230 NGCPRO1 (auto_outstream); | |
2231 | |
2232 coding_system = Fget_coding_system (coding_system); | |
2233 source_char = encode_decode_source_sink_type_is_char (coding_system, | |
2234 CODING_SOURCE, | |
2235 direction); | |
2236 sink_char = encode_decode_source_sink_type_is_char (coding_system, | |
2237 CODING_SINK, | |
2238 direction); | |
2239 | |
2240 /* Order is IN <---> [TO] -> OUT -> [FROM] -> [AUTODETECT-EOL] -> LB */ | |
2241 instream = make_lisp_buffer_input_stream (buf, b, e, 0); | |
2242 next = lb_outstream = make_lisp_buffer_output_stream (buf, b, 0); | |
2243 | |
2244 if (direction == CODING_DECODE && | |
2245 XCODING_SYSTEM_EOL_TYPE (coding_system) == EOL_AUTODETECT) | |
2246 next = auto_outstream = | |
2247 make_coding_output_stream | |
800 | 2248 (XLSTREAM (next), Fget_coding_system (Qconvert_eol_autodetect), |
2249 CODING_DECODE, 0); | |
771 | 2250 |
2251 if (!sink_char) | |
2252 next = from_outstream = | |
800 | 2253 make_coding_output_stream (XLSTREAM (next), Qbinary, CODING_DECODE, 0); |
771 | 2254 outstream = make_coding_output_stream (XLSTREAM (next), coding_system, |
800 | 2255 direction, 0); |
771 | 2256 if (!source_char) |
428 | 2257 { |
771 | 2258 to_outstream = |
2259 make_coding_output_stream (XLSTREAM (outstream), | |
800 | 2260 Qbinary, CODING_ENCODE, 0); |
771 | 2261 ostr = XLSTREAM (to_outstream); |
2262 } | |
2263 else | |
2264 ostr = XLSTREAM (outstream); | |
2265 istr = XLSTREAM (instream); | |
2266 | |
2267 /* The chain of streams looks like this: | |
2268 | |
2297 | 2269 [BUFFER] <----- (( read from/send to loop )) |
771 | 2270 ------> [CHAR->BYTE i.e. ENCODE AS BINARY if source is |
2271 in bytes] | |
2272 ------> [ENCODE/DECODE AS SPECIFIED] | |
2273 ------> [BYTE->CHAR i.e. DECODE AS BINARY | |
2274 if sink is in bytes] | |
2275 ------> [AUTODETECT EOL if | |
2276 we're decoding and | |
2277 coding system calls | |
2278 for this] | |
2279 ------> [BUFFER] | |
2280 */ | |
2367 | 2281 |
2282 /* #### See comment | |
2283 | |
2284 EFFICIENCY OF CODING CONVERSION WITH MULTIPLE COPIES/CHAINS | |
2285 | |
2286 in text.c. | |
2287 */ | |
2288 | |
771 | 2289 while (1) |
2290 { | |
2291 char tempbuf[1024]; /* some random amount */ | |
2292 Charbpos newpos, even_newer_pos; | |
2293 Charbpos oldpos = lisp_buffer_stream_startpos (istr); | |
2294 Bytecount size_in_bytes = | |
2295 Lstream_read (istr, tempbuf, sizeof (tempbuf)); | |
2296 | |
2297 if (!size_in_bytes) | |
2298 break; | |
2299 newpos = lisp_buffer_stream_startpos (istr); | |
2300 Lstream_write (ostr, tempbuf, size_in_bytes); | |
2301 even_newer_pos = lisp_buffer_stream_startpos (istr); | |
2302 buffer_delete_range (buf, even_newer_pos - (newpos - oldpos), | |
2303 even_newer_pos, 0); | |
428 | 2304 } |
771 | 2305 |
2306 { | |
2307 Charcount retlen = | |
2308 lisp_buffer_stream_startpos (XLSTREAM (instream)) - b; | |
2309 Lstream_close (istr); | |
2310 Lstream_close (ostr); | |
2311 NUNGCPRO; | |
2312 UNGCPRO; | |
2313 Lstream_delete (istr); | |
2314 if (!NILP (from_outstream)) | |
2315 Lstream_delete (XLSTREAM (from_outstream)); | |
2316 Lstream_delete (XLSTREAM (outstream)); | |
2317 if (!NILP (to_outstream)) | |
2318 Lstream_delete (XLSTREAM (to_outstream)); | |
2319 if (!NILP (auto_outstream)) | |
2320 Lstream_delete (XLSTREAM (auto_outstream)); | |
2321 Lstream_delete (XLSTREAM (lb_outstream)); | |
2322 return make_int (retlen); | |
2323 } | |
2324 } | |
2325 | |
3302 | 2326 DEFUN ("decode-coding-region", Fdecode_coding_region, 3, 4, |
2327 "*r\nzDecode from coding system: \ni", /* | |
771 | 2328 Decode the text between START and END which is encoded in CODING-SYSTEM. |
2329 This is useful if you've read in encoded text from a file without decoding | |
2330 it (e.g. you read in a JIS-formatted file but used the `binary' or | |
2331 `no-conversion' coding system, so that it shows up as "^[$B!<!+^[(B"). | |
2332 Return length of decoded text. | |
3302 | 2333 BUFFER defaults to the current buffer if unspecified, and when interactive. |
771 | 2334 */ |
2335 (start, end, coding_system, buffer)) | |
2336 { | |
2337 return encode_decode_coding_region (start, end, coding_system, buffer, | |
2338 CODING_DECODE); | |
2339 } | |
2340 | |
3302 | 2341 DEFUN ("encode-coding-region", Fencode_coding_region, 3, 4, |
2342 "*r\nzEncode to coding system: \ni", /* | |
771 | 2343 Encode the text between START and END using CODING-SYSTEM. |
2344 This will, for example, convert Japanese characters into stuff such as | |
3302 | 2345 "^[$B!<!+^[(B" if you use the JIS encoding. Return length of encoded text. |
2346 BUFFER defaults to the current buffer if unspecified, and when interactive. | |
771 | 2347 */ |
2348 (start, end, coding_system, buffer)) | |
2349 { | |
2350 return encode_decode_coding_region (start, end, coding_system, buffer, | |
2351 CODING_ENCODE); | |
428 | 2352 } |
2353 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2354 DEFUN ("query-coding-region", Fquery_coding_region, 3, 7, 0, /* |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2355 Work out whether CODING-SYSTEM can losslessly encode a region. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2356 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2357 START and END are the beginning and end of the region to check. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2358 CODING-SYSTEM is the coding system to try. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2359 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2360 Optional argument BUFFER is the buffer to check, and defaults to the current |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2361 buffer. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2362 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2363 IGNORE-INVALID-SEQUENCESP, also an optional argument, says to treat XEmacs |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2364 characters which have an unambiguous encoded representation, despite being |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2365 undefined in what they represent, as encodable. These chiefly arise with |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2366 variable-length encodings like UTF-8 and UTF-16, where an invalid sequence |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2367 is passed through to XEmacs as a sequence of characters with a defined |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2368 correspondence to the octets on disk, but no non-error semantics; see the |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2369 `invalid-sequence-coding-system' argument to `set-language-info'. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2370 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2371 They can also arise with fixed-length encodings like ISO 8859-7, where |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2372 certain octets on disk have undefined values, and treating them as |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2373 corresponding to the ISO 8859-1 characters with the same numerical values |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2374 may lead to data that is not understood by other applications. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2375 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2376 Optional argument ERRORP says to signal a `text-conversion-error' if some |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2377 character in the region cannot be encoded, and defaults to nil. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2378 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2379 Optional argument HIGHLIGHT says to display unencodable characters in the |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2380 region using `query-coding-warning-face'. It defaults to nil. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2381 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2382 This function can return multiple values; the intention is that callers use |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2383 `multiple-value-bind' or the related CL multiple value functions to deal |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2384 with it. The first result is `t' if the region can be encoded using |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2385 CODING-SYSTEM, or `nil' if not. If the region cannot be encoded using |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2386 CODING-SYSTEM, the second result is a range table describing the positions |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2387 of the unencodable characters. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2388 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2389 Ranges that describe characters that would be ignored were |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2390 IGNORE-INVALID-SEQUENCESP non-nil map to the symbol `invalid-sequence'; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2391 other ranges map to the symbol `unencodable'. If IGNORE-INVALID-SEQUENCESP |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2392 is non-nil, all ranges will map to the symbol `unencodable'. See |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2393 `make-range-table' for more details of range tables. |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2394 */ |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2395 (start, end, coding_system, buffer, ignore_invalid_sequencesp, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2396 errorp, highlight)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2397 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2398 Charbpos b, e; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2399 struct buffer *buf = decode_buffer (buffer, 1); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2400 Lisp_Object result; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2401 int flags = 0, speccount = specpdl_depth (); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2402 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2403 coding_system = Fget_coding_system (coding_system); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2404 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2405 get_buffer_range_char (buf, start, end, &b, &e, 0); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2406 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2407 if (buf != current_buffer) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2408 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2409 record_unwind_protect (save_current_buffer_restore, Fcurrent_buffer ()); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2410 set_buffer_internal (buf); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2411 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2412 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2413 record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2414 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2415 BUF_SET_PT (buf, b); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2416 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2417 if (!NILP (ignore_invalid_sequencesp)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2418 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2419 flags |= QUERY_METHOD_IGNORE_INVALID_SEQUENCES; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2420 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2421 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2422 if (!NILP (errorp)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2423 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2424 flags |= QUERY_METHOD_ERRORP; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2425 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2426 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2427 if (!NILP (highlight)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2428 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2429 flags |= QUERY_METHOD_HIGHLIGHT; |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2430 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2431 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2432 result = XCODESYSMETH_OR_GIVEN (coding_system, query, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2433 (coding_system, buf, e, flags), Qunbound); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2434 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2435 if (UNBOUNDP (result)) |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2436 { |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2437 signal_error (Qtext_conversion_error, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2438 "Coding system doesn't say what it can encode", |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2439 XCODING_SYSTEM_NAME (coding_system)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2440 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2441 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2442 result = (NILP (result)) ? Qt : values2 (Qnil, result); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2443 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2444 return unbind_to_1 (speccount, result); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2445 } |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2446 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
2447 |
428 | 2448 |
2449 /************************************************************************/ | |
771 | 2450 /* Chain methods */ |
428 | 2451 /************************************************************************/ |
2452 | |
771 | 2453 /* #### Need a way to create "opposite-direction" coding systems. */ |
2454 | |
2455 /* Chain two or more coding systems together to make a combination coding | |
2456 system. */ | |
2457 | |
2458 struct chain_coding_system | |
2459 { | |
2460 /* List of coding systems, in decode order */ | |
2461 Lisp_Object *chain; | |
2462 /* Number of coding systems in list */ | |
2463 int count; | |
2464 /* Coding system to return as a result of canonicalize-after-coding */ | |
2465 Lisp_Object canonicalize_after_coding; | |
2466 }; | |
2467 | |
2468 struct chain_coding_stream | |
2469 { | |
2470 int initted; | |
2471 /* Lstreams for chain coding system */ | |
2472 Lisp_Object *lstreams; | |
2473 int lstream_count; | |
2474 }; | |
2475 | |
1204 | 2476 static const struct memory_description chain_coding_system_description[] = { |
2477 { XD_INT, offsetof (struct chain_coding_system, count) }, | |
2367 | 2478 { XD_BLOCK_PTR, offsetof (struct chain_coding_system, chain), |
2551 | 2479 XD_INDIRECT (0, 0), { &lisp_object_description } }, |
1204 | 2480 { XD_LISP_OBJECT, offsetof (struct chain_coding_system, |
2481 canonicalize_after_coding) }, | |
771 | 2482 { XD_END } |
2483 }; | |
2484 | |
1204 | 2485 static const struct memory_description chain_coding_stream_description_1 [] = { |
2486 { XD_INT, offsetof (struct chain_coding_stream, lstream_count) }, | |
2367 | 2487 { XD_BLOCK_PTR, offsetof (struct chain_coding_stream, lstreams), |
2551 | 2488 XD_INDIRECT (0, 0), { &lisp_object_description } }, |
771 | 2489 { XD_END } |
2490 }; | |
2491 | |
1204 | 2492 const struct sized_memory_description chain_coding_stream_description = { |
2493 sizeof (struct chain_coding_stream), chain_coding_stream_description_1 | |
2494 }; | |
2495 | |
2496 DEFINE_CODING_SYSTEM_TYPE_WITH_DATA (chain); | |
2497 | |
771 | 2498 static Lisp_Object |
2499 chain_canonicalize (Lisp_Object codesys) | |
2500 { | |
2501 /* We make use of the fact that this method is called at init time, after | |
2502 properties have been parsed. init_method is called too early. */ | |
2503 /* #### It's not clear we need this whole chain-canonicalize mechanism | |
2504 any more. */ | |
2505 Lisp_Object chain = Flist (XCODING_SYSTEM_CHAIN_COUNT (codesys), | |
2506 XCODING_SYSTEM_CHAIN_CHAIN (codesys)); | |
2507 chain = Fcons (XCODING_SYSTEM_PRE_WRITE_CONVERSION (codesys), | |
2508 Fcons (XCODING_SYSTEM_POST_READ_CONVERSION (codesys), | |
2509 chain)); | |
2510 Fputhash (chain, codesys, Vchain_canonicalize_hash_table); | |
2511 return codesys; | |
2512 } | |
2513 | |
2514 static Lisp_Object | |
2515 chain_canonicalize_after_coding (struct coding_stream *str) | |
2516 { | |
2517 Lisp_Object cac = | |
2518 XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (str->codesys); | |
2519 if (!NILP (cac)) | |
2520 return cac; | |
2521 return str->codesys; | |
2522 #if 0 | |
2523 struct chain_coding_stream *data = CODING_STREAM_TYPE_DATA (str, chain); | |
2524 Lisp_Object us = str->codesys, codesys; | |
2525 int i; | |
2526 Lisp_Object chain; | |
2527 Lisp_Object tail; | |
2528 int changed = 0; | |
2529 | |
2530 /* #### It's not clear we need this whole chain-canonicalize mechanism | |
2531 any more. */ | |
2532 if (str->direction == CODING_ENCODE || !data->initted) | |
2533 return us; | |
2534 | |
2535 chain = Flist (XCODING_SYSTEM_CHAIN_COUNT (us), | |
2536 XCODING_SYSTEM_CHAIN_CHAIN (us)); | |
2537 | |
2538 tail = chain; | |
2539 for (i = 0; i < XCODING_SYSTEM_CHAIN_COUNT (us); i++) | |
2540 { | |
2541 codesys = (coding_stream_canonicalize_after_coding | |
2542 (XLSTREAM (data->lstreams[i]))); | |
2543 if (!EQ (codesys, XCAR (tail))) | |
2544 changed = 1; | |
2545 XCAR (tail) = codesys; | |
2546 tail = XCDR (tail); | |
2547 } | |
2548 | |
2549 if (!changed) | |
2550 return us; | |
2551 | |
2552 chain = delq_no_quit (Qnil, chain); | |
2553 | |
2554 if (NILP (XCODING_SYSTEM_PRE_WRITE_CONVERSION (us)) && | |
2555 NILP (XCODING_SYSTEM_POST_READ_CONVERSION (us))) | |
2556 { | |
2557 if (NILP (chain)) | |
2558 return Qnil; | |
2559 if (NILP (XCDR (chain))) | |
2560 return XCAR (chain); | |
2561 } | |
2562 | |
2563 codesys = Fgethash (Fcons (XCODING_SYSTEM_PRE_WRITE_CONVERSION (us), | |
2564 Fcons (XCODING_SYSTEM_POST_READ_CONVERSION (us), | |
2565 chain)), Vchain_canonicalize_hash_table, | |
2566 Qnil); | |
2567 if (!NILP (codesys)) | |
2568 return codesys; | |
2569 return make_internal_coding_system | |
2570 (us, "internal-chain-canonicalizer-wrapper", | |
2571 Qchain, Qunbound, list2 (Qchain, chain)); | |
2572 #endif /* 0 */ | |
2573 } | |
2574 | |
2575 static void | |
2576 chain_init (Lisp_Object codesys) | |
2577 { | |
2578 XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (codesys) = Qnil; | |
2579 } | |
2580 | |
2581 static void | |
2582 chain_mark (Lisp_Object codesys) | |
2583 { | |
2584 int i; | |
2585 | |
2586 for (i = 0; i < XCODING_SYSTEM_CHAIN_COUNT (codesys); i++) | |
2587 mark_object (XCODING_SYSTEM_CHAIN_CHAIN (codesys)[i]); | |
2588 mark_object (XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (codesys)); | |
2589 } | |
2590 | |
2591 static void | |
2592 chain_mark_coding_stream_1 (struct chain_coding_stream *data) | |
2593 { | |
2594 int i; | |
2595 | |
2596 for (i = 0; i < data->lstream_count; i++) | |
2597 mark_object (data->lstreams[i]); | |
2598 } | |
2599 | |
2600 static void | |
2601 chain_mark_coding_stream (struct coding_stream *str) | |
2602 { | |
2603 chain_mark_coding_stream_1 (CODING_STREAM_TYPE_DATA (str, chain)); | |
2604 } | |
2605 | |
2606 static void | |
2607 chain_print (Lisp_Object cs, Lisp_Object printcharfun, int escapeflag) | |
2608 { | |
2609 int i; | |
2610 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2611 write_ascstring (printcharfun, "("); |
771 | 2612 for (i = 0; i < XCODING_SYSTEM_CHAIN_COUNT (cs); i++) |
2613 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2614 write_ascstring (printcharfun, i == 0 ? "" : "->"); |
771 | 2615 print_coding_system_in_print_method (XCODING_SYSTEM_CHAIN_CHAIN (cs)[i], |
2616 printcharfun, escapeflag); | |
2617 } | |
2618 { | |
2619 Lisp_Object cac = XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (cs); | |
2620 if (!NILP (cac)) | |
2621 { | |
2622 if (i > 0) | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2623 write_ascstring (printcharfun, " "); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2624 write_ascstring (printcharfun, "canonicalize-after-coding="); |
771 | 2625 print_coding_system_in_print_method (cac, printcharfun, escapeflag); |
2626 } | |
2627 } | |
2628 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2629 write_ascstring (printcharfun, ")"); |
771 | 2630 } |
2631 | |
2632 static void | |
2633 chain_rewind_coding_stream_1 (struct chain_coding_stream *data) | |
2634 { | |
2635 /* Each will rewind the next; there is always at least one stream (the | |
2636 dynarr stream at the end) if we're initted */ | |
2637 if (data->initted) | |
2638 Lstream_rewind (XLSTREAM (data->lstreams[0])); | |
2639 } | |
2640 | |
2641 static void | |
2642 chain_rewind_coding_stream (struct coding_stream *str) | |
2643 { | |
2644 chain_rewind_coding_stream_1 (CODING_STREAM_TYPE_DATA (str, chain)); | |
2645 } | |
2646 | |
2647 static void | |
2648 chain_init_coding_streams_1 (struct chain_coding_stream *data, | |
2649 unsigned_char_dynarr *dst, | |
2650 int ncodesys, Lisp_Object *codesys, | |
2651 enum encode_decode direction) | |
2652 { | |
2653 int i; | |
2654 Lisp_Object lstream_out; | |
2655 | |
2656 data->lstream_count = ncodesys + 1; | |
2657 data->lstreams = xnew_array (Lisp_Object, data->lstream_count); | |
2658 | |
2659 lstream_out = make_dynarr_output_stream (dst); | |
2660 Lstream_set_buffering (XLSTREAM (lstream_out), LSTREAM_UNBUFFERED, 0); | |
2661 data->lstreams[data->lstream_count - 1] = lstream_out; | |
2662 | |
2663 for (i = ncodesys - 1; i >= 0; i--) | |
2664 { | |
2665 data->lstreams[i] = | |
2666 make_coding_output_stream | |
2667 (XLSTREAM (lstream_out), | |
2668 codesys[direction == CODING_ENCODE ? ncodesys - (i + 1) : i], | |
800 | 2669 direction, 0); |
771 | 2670 lstream_out = data->lstreams[i]; |
2671 Lstream_set_buffering (XLSTREAM (lstream_out), LSTREAM_UNBUFFERED, | |
2672 0); | |
2673 } | |
2674 data->initted = 1; | |
2675 } | |
2676 | |
2677 static Bytecount | |
2678 chain_convert (struct coding_stream *str, const UExtbyte *src, | |
2679 unsigned_char_dynarr *dst, Bytecount n) | |
2680 { | |
2681 struct chain_coding_stream *data = CODING_STREAM_TYPE_DATA (str, chain); | |
2682 | |
2683 if (str->eof) | |
2684 { | |
2685 /* Each will close the next; there is always at least one stream (the | |
2686 dynarr stream at the end) if we're initted. We need to close now | |
2687 because more data may be generated. */ | |
2688 if (data->initted) | |
2689 Lstream_close (XLSTREAM (data->lstreams[0])); | |
2690 return n; | |
2691 } | |
2692 | |
2693 if (!data->initted) | |
2694 chain_init_coding_streams_1 | |
2695 (data, dst, XCODING_SYSTEM_CHAIN_COUNT (str->codesys), | |
2696 XCODING_SYSTEM_CHAIN_CHAIN (str->codesys), str->direction); | |
2697 | |
2698 if (Lstream_write (XLSTREAM (data->lstreams[0]), src, n) < 0) | |
2699 return -1; | |
2700 return n; | |
2701 } | |
2702 | |
2703 static void | |
2704 chain_finalize_coding_stream_1 (struct chain_coding_stream *data) | |
2705 { | |
2706 if (data->lstreams) | |
2707 { | |
2297 | 2708 /* During GC, these objects are unmarked, and are about to be freed. |
2709 We do NOT want them on the free list, and that will cause lots of | |
2710 nastiness including crashes. Just let them be freed normally. */ | |
771 | 2711 if (!gc_in_progress) |
2712 { | |
2713 int i; | |
2297 | 2714 /* Order of deletion is important here! Delete from the head of |
2715 the chain and work your way towards the tail. In general, | |
2716 when you delete an object, there should be *NO* pointers to it | |
2717 anywhere. Deleting back-to-front would be a problem because | |
2718 there are pointers going forward. If there were pointers in | |
2719 both directions, you'd have to disconnect the pointers to a | |
2720 particular object before deleting it. */ | |
771 | 2721 for (i = 0; i < data->lstream_count; i++) |
2722 Lstream_delete (XLSTREAM ((data->lstreams)[i])); | |
2723 } | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
2724 xfree (data->lstreams); |
771 | 2725 } |
2726 } | |
2727 | |
2728 static void | |
2729 chain_finalize_coding_stream (struct coding_stream *str) | |
2730 { | |
2731 chain_finalize_coding_stream_1 (CODING_STREAM_TYPE_DATA (str, chain)); | |
2732 } | |
2733 | |
2734 static void | |
2735 chain_finalize (Lisp_Object c) | |
2736 { | |
2737 if (XCODING_SYSTEM_CHAIN_CHAIN (c)) | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
2738 xfree (XCODING_SYSTEM_CHAIN_CHAIN (c)); |
771 | 2739 } |
2740 | |
428 | 2741 static int |
771 | 2742 chain_putprop (Lisp_Object codesys, Lisp_Object key, Lisp_Object value) |
2743 { | |
2744 if (EQ (key, Qchain)) | |
2745 { | |
2746 Lisp_Object *cslist; | |
2747 int count = 0; | |
2748 int i; | |
2749 | |
2367 | 2750 { |
2751 EXTERNAL_LIST_LOOP_2 (elt, value) | |
2752 { | |
2753 Fget_coding_system (elt); | |
2754 count++; | |
2755 } | |
2756 } | |
771 | 2757 |
2758 cslist = xnew_array (Lisp_Object, count); | |
2759 XCODING_SYSTEM_CHAIN_CHAIN (codesys) = cslist; | |
2760 | |
2761 count = 0; | |
2367 | 2762 { |
2763 EXTERNAL_LIST_LOOP_2 (elt, value) | |
2764 { | |
2765 cslist[count] = Fget_coding_system (elt); | |
2766 count++; | |
2767 } | |
2768 } | |
771 | 2769 |
2770 XCODING_SYSTEM_CHAIN_COUNT (codesys) = count; | |
2771 | |
2772 for (i = 0; i < count - 1; i++) | |
2773 { | |
2774 if (decoding_source_sink_type_is_char (cslist[i], CODING_SINK) != | |
2775 decoding_source_sink_type_is_char (cslist[i + 1], CODING_SOURCE)) | |
2776 invalid_argument_2 ("Sink of first must match source of second", | |
2777 cslist[i], cslist[i + 1]); | |
2778 } | |
2779 } | |
2780 else if (EQ (key, Qcanonicalize_after_coding)) | |
2781 XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (codesys) = | |
2782 Fget_coding_system (value); | |
2783 else | |
2784 return 0; | |
2785 return 1; | |
2786 } | |
2787 | |
2788 static Lisp_Object | |
2789 chain_getprop (Lisp_Object coding_system, Lisp_Object prop) | |
2790 { | |
2791 if (EQ (prop, Qchain)) | |
2792 { | |
2793 Lisp_Object result = Qnil; | |
2794 int i; | |
2795 | |
2796 for (i = 0; i < XCODING_SYSTEM_CHAIN_COUNT (coding_system); i++) | |
2797 result = Fcons (XCODING_SYSTEM_CHAIN_CHAIN (coding_system)[i], | |
2798 result); | |
2799 | |
2800 return Fnreverse (result); | |
2801 } | |
2802 else if (EQ (prop, Qcanonicalize_after_coding)) | |
2803 return XCODING_SYSTEM_CHAIN_CANONICALIZE_AFTER_CODING (coding_system); | |
2804 else | |
2805 return Qunbound; | |
2806 } | |
2807 | |
2808 static enum source_sink_type | |
2809 chain_conversion_end_type (Lisp_Object codesys) | |
2810 { | |
2811 Lisp_Object *cslist = XCODING_SYSTEM_CHAIN_CHAIN (codesys); | |
2812 int n = XCODING_SYSTEM_CHAIN_COUNT (codesys); | |
2813 int charp_source, charp_sink; | |
2814 | |
2815 if (n == 0) | |
2816 return DECODES_BYTE_TO_BYTE; /* arbitrary */ | |
2817 charp_source = decoding_source_sink_type_is_char (cslist[0], CODING_SOURCE); | |
2818 charp_sink = decoding_source_sink_type_is_char (cslist[n - 1], CODING_SINK); | |
2819 | |
2820 switch (charp_source * 2 + charp_sink) | |
2821 { | |
2822 case 0: return DECODES_BYTE_TO_BYTE; | |
2823 case 1: return DECODES_BYTE_TO_CHARACTER; | |
2824 case 2: return DECODES_CHARACTER_TO_BYTE; | |
2825 case 3: return DECODES_CHARACTER_TO_CHARACTER; | |
2826 } | |
2827 | |
2500 | 2828 ABORT (); |
771 | 2829 return DECODES_BYTE_TO_BYTE; |
2830 } | |
2831 | |
2832 | |
2833 /************************************************************************/ | |
2834 /* No-conversion methods */ | |
2835 /************************************************************************/ | |
2836 | |
2837 /* "No conversion"; used for binary files. We use quotes because there | |
2838 really is some conversion being applied (it does byte<->char | |
2839 conversion), but it appears to the user as if the text is read in | |
2297 | 2840 without conversion. |
2841 | |
2842 #### Shouldn't we _call_ it that, then? And while we're at it, | |
2843 separate it into "to_internal" and "to_external"? */ | |
771 | 2844 DEFINE_CODING_SYSTEM_TYPE (no_conversion); |
2845 | |
2846 /* This is used when reading in "binary" files -- i.e. files that may | |
2847 contain all 256 possible byte values and that are not to be | |
2848 interpreted as being in any particular encoding. */ | |
2849 static Bytecount | |
2850 no_conversion_convert (struct coding_stream *str, | |
2851 const UExtbyte *src, | |
2852 unsigned_char_dynarr *dst, Bytecount n) | |
2853 { | |
2854 UExtbyte c; | |
2855 unsigned int ch = str->ch; | |
2856 Bytecount orign = n; | |
2857 | |
2858 if (str->direction == CODING_DECODE) | |
2859 { | |
2860 while (n--) | |
2861 { | |
2862 c = *src++; | |
2863 | |
2864 DECODE_ADD_BINARY_CHAR (c, dst); | |
2865 } | |
2866 | |
2867 if (str->eof) | |
2868 DECODE_OUTPUT_PARTIAL_CHAR (ch, dst); | |
2869 } | |
2870 else | |
2871 { | |
2872 | |
2873 while (n--) | |
2874 { | |
2875 c = *src++; | |
826 | 2876 if (byte_ascii_p (c)) |
771 | 2877 { |
2878 assert (ch == 0); | |
2879 Dynarr_add (dst, c); | |
2880 } | |
2881 #ifdef MULE | |
867 | 2882 else if (ibyte_leading_byte_p (c)) |
771 | 2883 { |
2884 assert (ch == 0); | |
2885 if (c == LEADING_BYTE_LATIN_ISO8859_1 || | |
2886 c == LEADING_BYTE_CONTROL_1) | |
2887 ch = c; | |
2888 else | |
2297 | 2889 /* #### This is just plain unacceptable. */ |
771 | 2890 Dynarr_add (dst, '~'); /* untranslatable character */ |
2891 } | |
2892 else | |
2893 { | |
2894 if (ch == LEADING_BYTE_LATIN_ISO8859_1) | |
2895 Dynarr_add (dst, c); | |
2896 else if (ch == LEADING_BYTE_CONTROL_1) | |
2897 { | |
2898 assert (c < 0xC0); | |
2899 Dynarr_add (dst, c - 0x20); | |
2900 } | |
2901 /* else it should be the second or third byte of an | |
2902 untranslatable character, so ignore it */ | |
2903 ch = 0; | |
2904 } | |
2905 #endif /* MULE */ | |
2906 | |
2907 } | |
2908 } | |
2909 | |
2910 str->ch = ch; | |
2911 return orign; | |
2912 } | |
2913 | |
2914 DEFINE_DETECTOR (no_conversion); | |
2915 DEFINE_DETECTOR_CATEGORY (no_conversion, no_conversion); | |
2916 | |
2917 struct no_conversion_detector | |
2918 { | |
2919 int dummy; | |
2920 }; | |
2921 | |
2922 static void | |
2286 | 2923 no_conversion_detect (struct detection_state *st, const UExtbyte *UNUSED (src), |
2924 Bytecount UNUSED (n)) | |
771 | 2925 { |
2926 /* Hack until we get better handling of this stuff! */ | |
2927 DET_RESULT (st, no_conversion) = DET_SLIGHTLY_LIKELY; | |
2928 } | |
2929 | |
2930 | |
2931 /************************************************************************/ | |
2932 /* Convert-eol methods */ | |
2933 /************************************************************************/ | |
2934 | |
2935 /* This is used to handle end-of-line (EOL) differences. It is | |
2819 | 2936 character-to-character, and works (when encoding) *BEFORE* sending data to |
2937 the main encoding routine -- thus, that routine must handle different EOL | |
2938 types itself if it does line-oriented type processing. This is unavoidable | |
2939 because we don't know whether the output of the main encoding routine is | |
2940 ASCII compatible (UTF-16 is definitely not, for example). [[ sjt sez this | |
2941 is bogus. There should be _no_ EOL processing (or processing of any kind) | |
2942 after conversion to external. ]] | |
771 | 2943 |
793 | 2944 There is one parameter: `subtype', either `cr', `lf', `crlf', or nil. |
771 | 2945 */ |
2946 | |
2947 struct convert_eol_coding_system | |
2948 { | |
2949 enum eol_type subtype; | |
2132 | 2950 int dummy; /* On some architectures (eg ia64) the portable dumper can |
2951 produce unaligned access errors without this field. Probably | |
2952 because the combined structure of this structure and | |
2953 Lisp_Coding_System is not properly aligned. */ | |
771 | 2954 }; |
2955 | |
2956 #define CODING_SYSTEM_CONVERT_EOL_SUBTYPE(codesys) \ | |
2957 (CODING_SYSTEM_TYPE_DATA (codesys, convert_eol)->subtype) | |
2958 #define XCODING_SYSTEM_CONVERT_EOL_SUBTYPE(codesys) \ | |
2959 (XCODING_SYSTEM_TYPE_DATA (codesys, convert_eol)->subtype) | |
2960 | |
2961 struct convert_eol_coding_stream | |
2962 { | |
2963 enum eol_type actual; | |
2964 }; | |
2965 | |
1204 | 2966 static const struct memory_description |
771 | 2967 convert_eol_coding_system_description[] = { |
2968 { XD_END } | |
2969 }; | |
2970 | |
1204 | 2971 DEFINE_CODING_SYSTEM_TYPE_WITH_DATA (convert_eol); |
2972 | |
771 | 2973 static void |
2286 | 2974 convert_eol_print (Lisp_Object cs, Lisp_Object printcharfun, |
2975 int UNUSED (escapeflag)) | |
771 | 2976 { |
2977 struct convert_eol_coding_system *data = | |
2978 XCODING_SYSTEM_TYPE_DATA (cs, convert_eol); | |
2979 | |
2980 write_fmt_string (printcharfun, "(%s)", | |
2981 data->subtype == EOL_LF ? "lf" : | |
2982 data->subtype == EOL_CRLF ? "crlf" : | |
2983 data->subtype == EOL_CR ? "cr" : | |
793 | 2984 data->subtype == EOL_AUTODETECT ? "nil" : |
2500 | 2985 (ABORT(), "")); |
771 | 2986 } |
2987 | |
2988 static enum source_sink_type | |
2286 | 2989 convert_eol_conversion_end_type (Lisp_Object UNUSED (codesys)) |
771 | 2990 { |
2991 return DECODES_CHARACTER_TO_CHARACTER; | |
2992 } | |
2993 | |
2994 static int | |
2995 convert_eol_putprop (Lisp_Object codesys, | |
2996 Lisp_Object key, | |
2997 Lisp_Object value) | |
2998 { | |
2999 struct convert_eol_coding_system *data = | |
3000 XCODING_SYSTEM_TYPE_DATA (codesys, convert_eol); | |
3001 | |
3002 if (EQ (key, Qsubtype)) | |
3003 { | |
3004 if (EQ (value, Qlf) /* || EQ (value, Qunix) */) | |
3005 data->subtype = EOL_LF; | |
3006 else if (EQ (value, Qcrlf) /* || EQ (value, Qdos) */) | |
3007 data->subtype = EOL_CRLF; | |
3008 else if (EQ (value, Qcr) /* || EQ (value, Qmac) */) | |
3009 data->subtype = EOL_CR; | |
793 | 3010 else if (EQ (value, Qnil)) |
771 | 3011 data->subtype = EOL_AUTODETECT; |
3012 else invalid_constant ("Unrecognized eol type", value); | |
3013 } | |
3014 else | |
3015 return 0; | |
3016 return 1; | |
3017 } | |
3018 | |
3019 static Lisp_Object | |
3020 convert_eol_getprop (Lisp_Object coding_system, Lisp_Object prop) | |
3021 { | |
3022 struct convert_eol_coding_system *data = | |
3023 XCODING_SYSTEM_TYPE_DATA (coding_system, convert_eol); | |
3024 | |
3025 if (EQ (prop, Qsubtype)) | |
3026 { | |
3027 switch (data->subtype) | |
3028 { | |
3029 case EOL_LF: return Qlf; | |
3030 case EOL_CRLF: return Qcrlf; | |
3031 case EOL_CR: return Qcr; | |
793 | 3032 case EOL_AUTODETECT: return Qnil; |
2500 | 3033 default: ABORT (); |
771 | 3034 } |
3035 } | |
3036 | |
3037 return Qunbound; | |
3038 } | |
3039 | |
3040 static void | |
3041 convert_eol_init_coding_stream (struct coding_stream *str) | |
3042 { | |
3043 struct convert_eol_coding_stream *data = | |
3044 CODING_STREAM_TYPE_DATA (str, convert_eol); | |
3045 data->actual = XCODING_SYSTEM_CONVERT_EOL_SUBTYPE (str->codesys); | |
3046 } | |
3047 | |
3048 static Bytecount | |
867 | 3049 convert_eol_convert (struct coding_stream *str, const Ibyte *src, |
771 | 3050 unsigned_char_dynarr *dst, Bytecount n) |
3051 { | |
3052 if (str->direction == CODING_DECODE) | |
3053 { | |
3054 struct convert_eol_coding_stream *data = | |
3055 CODING_STREAM_TYPE_DATA (str, convert_eol); | |
3056 | |
3057 if (data->actual == EOL_AUTODETECT) | |
3058 { | |
3059 Bytecount n2 = n; | |
867 | 3060 const Ibyte *src2 = src; |
771 | 3061 |
3062 for (; n2; n2--) | |
3063 { | |
867 | 3064 Ibyte c = *src2++; |
771 | 3065 if (c == '\n') |
3066 { | |
3067 data->actual = EOL_LF; | |
3068 break; | |
3069 } | |
3070 else if (c == '\r') | |
3071 { | |
3072 if (n2 == 1) | |
3073 { | |
3074 /* If we're seeing a '\r' at the end of the data, then | |
3075 reject the '\r' right now so it doesn't become an | |
3076 issue in the code below -- unless we're at the end of | |
3077 the stream, in which case we can't do that (because | |
3078 then the '\r' will never get written out), and in any | |
3079 case we should be recognizing it at EOL_CR format. */ | |
3080 if (str->eof) | |
3081 data->actual = EOL_CR; | |
3082 else | |
3083 n--; | |
3084 break; | |
3085 } | |
3086 else if (*src2 == '\n') | |
3087 data->actual = EOL_CRLF; | |
3088 else | |
3089 data->actual = EOL_CR; | |
3090 break; | |
3091 } | |
3092 } | |
3093 } | |
3094 | |
3095 /* str->eof is set, the caller reached EOF on the other end and has | |
3096 no new data to give us. The only data we get is the data we | |
3097 rejected from last time. */ | |
3098 if (data->actual == EOL_LF || data->actual == EOL_AUTODETECT || | |
3099 (str->eof)) | |
3100 Dynarr_add_many (dst, src, n); | |
3101 else | |
3102 { | |
867 | 3103 const Ibyte *end = src + n; |
771 | 3104 while (1) |
3105 { | |
3106 /* Find the next section with no \r and add it. */ | |
867 | 3107 const Ibyte *runstart = src; |
3108 src = (Ibyte *) memchr (src, '\r', end - src); | |
771 | 3109 if (!src) |
3110 src = end; | |
3111 Dynarr_add_many (dst, runstart, src - runstart); | |
3112 /* Stop if at end ... */ | |
3113 if (src == end) | |
3114 break; | |
3115 /* ... else, translate as necessary. */ | |
3116 src++; | |
3117 if (data->actual == EOL_CR) | |
3118 Dynarr_add (dst, '\n'); | |
3119 /* We need to be careful here with CRLF. If we see a CR at the | |
3120 end of the data, we don't know if it's part of a CRLF, so we | |
3121 reject it. Otherwise: If it's part of a CRLF, eat it and | |
3122 loop; the following LF gets added next time around. If it's | |
3123 not part of a CRLF, add the CR and loop. The following | |
3124 character will be processed in the next loop iteration. This | |
3125 correctly handles a sequence like CR+CR+LF. */ | |
3126 else if (src == end) | |
3127 return n - 1; /* reject the CR at the end; we'll get it again | |
3128 next time the convert method is called */ | |
3129 else if (*src != '\n') | |
3130 Dynarr_add (dst, '\r'); | |
3131 } | |
3132 } | |
3133 | |
3134 return n; | |
3135 } | |
3136 else | |
3137 { | |
3138 enum eol_type subtype = | |
3139 XCODING_SYSTEM_CONVERT_EOL_SUBTYPE (str->codesys); | |
867 | 3140 const Ibyte *end = src + n; |
771 | 3141 |
3142 /* We try to be relatively efficient here. */ | |
3143 if (subtype == EOL_LF) | |
3144 Dynarr_add_many (dst, src, n); | |
3145 else | |
3146 { | |
3147 while (1) | |
3148 { | |
3149 /* Find the next section with no \n and add it. */ | |
867 | 3150 const Ibyte *runstart = src; |
3151 src = (Ibyte *) memchr (src, '\n', end - src); | |
771 | 3152 if (!src) |
3153 src = end; | |
3154 Dynarr_add_many (dst, runstart, src - runstart); | |
3155 /* Stop if at end ... */ | |
3156 if (src == end) | |
3157 break; | |
3158 /* ... else, skip over \n and add its translation. */ | |
3159 src++; | |
3160 Dynarr_add (dst, '\r'); | |
3161 if (subtype == EOL_CRLF) | |
3162 Dynarr_add (dst, '\n'); | |
3163 } | |
3164 } | |
3165 | |
3166 return n; | |
3167 } | |
3168 } | |
3169 | |
3170 static Lisp_Object | |
3171 convert_eol_canonicalize_after_coding (struct coding_stream *str) | |
3172 { | |
3173 struct convert_eol_coding_stream *data = | |
3174 CODING_STREAM_TYPE_DATA (str, convert_eol); | |
3175 | |
3176 if (str->direction == CODING_ENCODE) | |
3177 return str->codesys; | |
3178 | |
3179 switch (data->actual) | |
3180 { | |
3181 case EOL_LF: return Fget_coding_system (Qconvert_eol_lf); | |
3182 case EOL_CRLF: return Fget_coding_system (Qconvert_eol_crlf); | |
3183 case EOL_CR: return Fget_coding_system (Qconvert_eol_cr); | |
3184 case EOL_AUTODETECT: return str->codesys; | |
2500 | 3185 default: ABORT (); return Qnil; |
771 | 3186 } |
3187 } | |
3188 | |
3189 | |
3190 /************************************************************************/ | |
3191 /* Undecided methods */ | |
3192 /************************************************************************/ | |
3193 | |
3194 /* Do autodetection. We can autodetect the EOL type only, the coding | |
3195 system only, or both. We only do autodetection when decoding; when | |
3196 encoding, we just pass the data through. | |
3197 | |
3198 When doing just EOL detection, a coding system can be specified; if so, | |
3199 we will decode this data through the coding system before doing EOL | |
3200 detection. The reason for specifying this is so that | |
3201 canonicalize-after-coding works: We will canonicalize the specified | |
3202 coding system into the appropriate EOL type. When doing both coding and | |
3203 EOL detection, we do similar canonicalization, and also catch situations | |
3204 where the EOL type is overspecified, i.e. the detected coding system | |
3205 specifies an EOL type, and either switch to the equivalent | |
3206 non-EOL-processing coding system (if possible), or terminate EOL | |
3207 detection and use the specified EOL type. This prevents data from being | |
3208 EOL-processed twice. | |
3209 */ | |
3210 | |
3211 struct undecided_coding_system | |
3212 { | |
3213 int do_eol, do_coding; | |
3214 Lisp_Object cs; | |
3215 }; | |
3216 | |
3217 struct undecided_coding_stream | |
3218 { | |
3219 Lisp_Object actual; | |
3220 /* Either 2 or 3 lstreams here; see undecided_convert */ | |
3221 struct chain_coding_stream c; | |
3222 | |
3223 struct detection_state *st; | |
3224 }; | |
3225 | |
1204 | 3226 static const struct memory_description undecided_coding_system_description[] = { |
3227 { XD_LISP_OBJECT, offsetof (struct undecided_coding_system, cs) }, | |
771 | 3228 { XD_END } |
3229 }; | |
3230 | |
1204 | 3231 static const struct memory_description undecided_coding_stream_description_1 [] = { |
3232 { XD_LISP_OBJECT, offsetof (struct undecided_coding_stream, actual) }, | |
2367 | 3233 { XD_BLOCK_ARRAY, offsetof (struct undecided_coding_stream, c), |
2551 | 3234 1, { &chain_coding_stream_description } }, |
1204 | 3235 { XD_END } |
3236 }; | |
3237 | |
3238 const struct sized_memory_description undecided_coding_stream_description = { | |
3239 sizeof (struct undecided_coding_stream), undecided_coding_stream_description_1 | |
3240 }; | |
3241 | |
3242 DEFINE_CODING_SYSTEM_TYPE_WITH_DATA (undecided); | |
3243 | |
771 | 3244 static void |
3245 undecided_init (Lisp_Object codesys) | |
3246 { | |
3247 struct undecided_coding_system *data = | |
3248 XCODING_SYSTEM_TYPE_DATA (codesys, undecided); | |
3249 | |
3250 data->cs = Qnil; | |
3251 } | |
3252 | |
3253 static void | |
3254 undecided_mark (Lisp_Object codesys) | |
3255 { | |
3256 struct undecided_coding_system *data = | |
3257 XCODING_SYSTEM_TYPE_DATA (codesys, undecided); | |
3258 | |
3259 mark_object (data->cs); | |
3260 } | |
3261 | |
3262 static void | |
3263 undecided_print (Lisp_Object cs, Lisp_Object printcharfun, int escapeflag) | |
3264 { | |
3265 struct undecided_coding_system *data = | |
3266 XCODING_SYSTEM_TYPE_DATA (cs, undecided); | |
3267 int need_space = 0; | |
3268 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3269 write_ascstring (printcharfun, "("); |
771 | 3270 if (data->do_eol) |
3271 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3272 write_ascstring (printcharfun, "do-eol"); |
771 | 3273 need_space = 1; |
3274 } | |
3275 if (data->do_coding) | |
3276 { | |
3277 if (need_space) | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3278 write_ascstring (printcharfun, " "); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3279 write_ascstring (printcharfun, "do-coding"); |
771 | 3280 need_space = 1; |
3281 } | |
3282 if (!NILP (data->cs)) | |
3283 { | |
3284 if (need_space) | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3285 write_ascstring (printcharfun, " "); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3286 write_ascstring (printcharfun, "coding-system="); |
771 | 3287 print_coding_system_in_print_method (data->cs, printcharfun, escapeflag); |
3288 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3289 write_ascstring (printcharfun, ")"); |
771 | 3290 } |
3291 | |
3292 static void | |
3293 undecided_mark_coding_stream (struct coding_stream *str) | |
3294 { | |
1204 | 3295 mark_object (CODING_STREAM_TYPE_DATA (str, undecided)->actual); |
771 | 3296 chain_mark_coding_stream_1 (&CODING_STREAM_TYPE_DATA (str, undecided)->c); |
3297 } | |
3298 | |
3299 static int | |
3300 undecided_putprop (Lisp_Object codesys, Lisp_Object key, Lisp_Object value) | |
3301 { | |
3302 struct undecided_coding_system *data = | |
3303 XCODING_SYSTEM_TYPE_DATA (codesys, undecided); | |
3304 | |
3305 if (EQ (key, Qdo_eol)) | |
3306 data->do_eol = 1; | |
3307 else if (EQ (key, Qdo_coding)) | |
3308 data->do_coding = 1; | |
3309 else if (EQ (key, Qcoding_system)) | |
3310 data->cs = get_coding_system_for_text_file (value, 0); | |
3311 else | |
3312 return 0; | |
3313 return 1; | |
3314 } | |
3315 | |
3316 static Lisp_Object | |
3317 undecided_getprop (Lisp_Object codesys, Lisp_Object prop) | |
3318 { | |
3319 struct undecided_coding_system *data = | |
3320 XCODING_SYSTEM_TYPE_DATA (codesys, undecided); | |
3321 | |
3322 if (EQ (prop, Qdo_eol)) | |
3323 return data->do_eol ? Qt : Qnil; | |
3324 if (EQ (prop, Qdo_coding)) | |
3325 return data->do_coding ? Qt : Qnil; | |
3326 if (EQ (prop, Qcoding_system)) | |
3327 return data->cs; | |
3328 return Qunbound; | |
3329 } | |
3330 | |
3331 static struct detection_state * | |
3332 allocate_detection_state (void) | |
3333 { | |
3334 int i; | |
3335 Bytecount size = MAX_ALIGN_SIZE (sizeof (struct detection_state)); | |
3336 struct detection_state *block; | |
3337 | |
3338 for (i = 0; i < coding_detector_count; i++) | |
3339 size += MAX_ALIGN_SIZE (Dynarr_at (all_coding_detectors, i).data_size); | |
3340 | |
3341 block = (struct detection_state *) xmalloc_and_zero (size); | |
3342 | |
3343 size = MAX_ALIGN_SIZE (sizeof (struct detection_state)); | |
3344 for (i = 0; i < coding_detector_count; i++) | |
3345 { | |
3346 block->data_offset[i] = size; | |
3347 size += MAX_ALIGN_SIZE (Dynarr_at (all_coding_detectors, i).data_size); | |
3348 } | |
3349 | |
3350 return block; | |
3351 } | |
3352 | |
3353 static void | |
3354 free_detection_state (struct detection_state *st) | |
3355 { | |
3356 int i; | |
3357 | |
3358 for (i = 0; i < coding_detector_count; i++) | |
3359 { | |
3360 if (Dynarr_at (all_coding_detectors, i).finalize_detection_state_method) | |
3361 Dynarr_at (all_coding_detectors, i).finalize_detection_state_method | |
3362 (st); | |
3363 } | |
3364 | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4967
diff
changeset
|
3365 xfree (st); |
771 | 3366 } |
3367 | |
3368 static int | |
3369 coding_category_symbol_to_id (Lisp_Object symbol) | |
428 | 3370 { |
3371 int i; | |
3372 | |
3373 CHECK_SYMBOL (symbol); | |
771 | 3374 for (i = 0; i < coding_detector_count; i++) |
3375 { | |
3376 detector_category_dynarr *cats = | |
3377 Dynarr_at (all_coding_detectors, i).cats; | |
3378 int j; | |
3379 | |
3380 for (j = 0; j < Dynarr_length (cats); j++) | |
3381 if (EQ (Dynarr_at (cats, j).sym, symbol)) | |
3382 return Dynarr_at (cats, j).id; | |
3383 } | |
3384 | |
563 | 3385 invalid_constant ("Unrecognized coding category", symbol); |
1204 | 3386 RETURN_NOT_REACHED (0); |
428 | 3387 } |
3388 | |
771 | 3389 static Lisp_Object |
3390 coding_category_id_to_symbol (int id) | |
428 | 3391 { |
3392 int i; | |
771 | 3393 |
3394 for (i = 0; i < coding_detector_count; i++) | |
3395 { | |
3396 detector_category_dynarr *cats = | |
3397 Dynarr_at (all_coding_detectors, i).cats; | |
3398 int j; | |
3399 | |
3400 for (j = 0; j < Dynarr_length (cats); j++) | |
3401 if (id == Dynarr_at (cats, j).id) | |
3402 return Dynarr_at (cats, j).sym; | |
3403 } | |
3404 | |
2500 | 3405 ABORT (); |
771 | 3406 return Qnil; /* (usually) not reached */ |
428 | 3407 } |
3408 | |
771 | 3409 static Lisp_Object |
3410 detection_result_number_to_symbol (enum detection_result result) | |
428 | 3411 { |
1494 | 3412 /* let compiler warn if not all enumerators are handled */ |
3413 switch (result) { | |
3414 #define FROB(sym, num) case num: return (sym) | |
771 | 3415 FROB (Qnear_certainty, DET_NEAR_CERTAINTY); |
3416 FROB (Qquite_probable, DET_QUITE_PROBABLE); | |
3417 FROB (Qsomewhat_likely, DET_SOMEWHAT_LIKELY); | |
1494 | 3418 FROB (Qslightly_likely, DET_SLIGHTLY_LIKELY); |
771 | 3419 FROB (Qas_likely_as_unlikely, DET_AS_LIKELY_AS_UNLIKELY); |
3420 FROB (Qsomewhat_unlikely, DET_SOMEWHAT_UNLIKELY); | |
3421 FROB (Qquite_improbable, DET_QUITE_IMPROBABLE); | |
3422 FROB (Qnearly_impossible, DET_NEARLY_IMPOSSIBLE); | |
3423 #undef FROB | |
1494 | 3424 } |
771 | 3425 |
2500 | 3426 ABORT (); |
771 | 3427 return Qnil; /* (usually) not reached */ |
3428 } | |
3429 | |
778 | 3430 #if 0 /* not used */ |
771 | 3431 static enum detection_result |
3432 detection_result_symbol_to_number (Lisp_Object symbol) | |
3433 { | |
1494 | 3434 /* using switch here would be bad style, and doesn't help */ |
771 | 3435 #define FROB(sym, num) if (EQ (symbol, sym)) return (num) |
3436 FROB (Qnear_certainty, DET_NEAR_CERTAINTY); | |
3437 FROB (Qquite_probable, DET_QUITE_PROBABLE); | |
3438 FROB (Qsomewhat_likely, DET_SOMEWHAT_LIKELY); | |
1494 | 3439 FROB (Qslightly_likely, DET_SLIGHTLY_LIKELY); |
771 | 3440 FROB (Qas_likely_as_unlikely, DET_AS_LIKELY_AS_UNLIKELY); |
3441 FROB (Qsomewhat_unlikely, DET_SOMEWHAT_UNLIKELY); | |
3442 FROB (Qquite_improbable, DET_QUITE_IMPROBABLE); | |
3443 FROB (Qnearly_impossible, DET_NEARLY_IMPOSSIBLE); | |
3444 #undef FROB | |
3445 | |
3446 invalid_constant ("Unrecognized detection result", symbol); | |
3447 return ((enum detection_result) 0); /* not reached */ | |
3448 } | |
778 | 3449 #endif /* 0 */ |
771 | 3450 |
3451 /* Set all detection results for a given detector to a specified value. */ | |
3452 void | |
3453 set_detection_results (struct detection_state *st, int detector, int given) | |
3454 { | |
3455 detector_category_dynarr *cats = | |
3456 Dynarr_at (all_coding_detectors, detector).cats; | |
3457 int i; | |
3458 | |
3459 for (i = 0; i < Dynarr_length (cats); i++) | |
3460 st->categories[Dynarr_at (cats, i).id] = given; | |
3461 } | |
428 | 3462 |
3463 static int | |
3464 acceptable_control_char_p (int c) | |
3465 { | |
3466 switch (c) | |
3467 { | |
3468 /* Allow and ignore control characters that you might | |
3469 reasonably see in a text file */ | |
3470 case '\r': | |
3471 case '\n': | |
3472 case '\t': | |
3473 case 7: /* bell */ | |
3474 case 8: /* backspace */ | |
3475 case 11: /* vertical tab */ | |
3476 case 12: /* form feed */ | |
3477 case 26: /* MS-DOS C-z junk */ | |
3478 case 31: /* '^_' -- for info */ | |
3479 return 1; | |
3480 default: | |
3481 return 0; | |
3482 } | |
3483 } | |
3484 | |
771 | 3485 #ifdef DEBUG_XEMACS |
3486 | |
3487 static UExtbyte | |
3488 hex_digit_to_char (int digit) | |
428 | 3489 { |
771 | 3490 if (digit < 10) |
3491 return digit + '0'; | |
3492 else | |
3493 return digit - 10 + 'A'; | |
428 | 3494 } |
3495 | |
771 | 3496 static void |
3497 output_bytes_in_ascii_and_hex (const UExtbyte *src, Bytecount n) | |
428 | 3498 { |
3425 | 3499 Extbyte *ascii = alloca_array (Extbyte, n + 1); |
3500 Extbyte *hex = alloca_array (Extbyte, 3 * n + 1); | |
771 | 3501 int i; |
3413 | 3502 DECLARE_EISTRING (eistr_ascii); |
3503 DECLARE_EISTRING (eistr_hex); | |
771 | 3504 |
3505 for (i = 0; i < n; i++) | |
428 | 3506 { |
3425 | 3507 Extbyte c = src[i]; |
771 | 3508 if (c < 0x20) |
3509 ascii[i] = '.'; | |
428 | 3510 else |
771 | 3511 ascii[i] = c; |
3512 hex[3 * i] = hex_digit_to_char (c >> 4); | |
3513 hex[3 * i + 1] = hex_digit_to_char (c & 0xF); | |
3514 hex[3 * i + 2] = ' '; | |
428 | 3515 } |
771 | 3516 ascii[i] = '\0'; |
3517 hex[3 * i - 1] = '\0'; | |
3413 | 3518 |
3519 eicpy_ext(eistr_hex, hex, Qbinary); | |
3520 eicpy_ext(eistr_ascii, ascii, Qbinary); | |
3521 | |
3425 | 3522 stderr_out ("%s %s", eidata(eistr_ascii), eidata(eistr_hex)); |
428 | 3523 } |
3524 | |
771 | 3525 #endif /* DEBUG_XEMACS */ |
3526 | |
3527 /* Attempt to determine the encoding of the given text. Before calling | |
3528 this function for the first time, you must zero out the detection state. | |
428 | 3529 |
3530 Returns: | |
3531 | |
771 | 3532 0 == keep going |
3533 1 == stop | |
428 | 3534 */ |
3535 | |
3536 static int | |
771 | 3537 detect_coding_type (struct detection_state *st, const UExtbyte *src, |
3538 Bytecount n) | |
428 | 3539 { |
771 | 3540 Bytecount n2 = n; |
3541 const UExtbyte *src2 = src; | |
3542 int i; | |
3543 | |
3544 #ifdef DEBUG_XEMACS | |
3545 if (!NILP (Vdebug_coding_detection)) | |
3546 { | |
3547 int bytes = min (16, n); | |
3548 stderr_out ("detect_coding_type: processing %ld bytes\n", n); | |
3549 stderr_out ("First %d: ", bytes); | |
3550 output_bytes_in_ascii_and_hex (src, bytes); | |
3551 stderr_out ("\nLast %d: ", bytes); | |
3552 output_bytes_in_ascii_and_hex (src + n - bytes, bytes); | |
3553 stderr_out ("\n"); | |
3554 } | |
3555 #endif /* DEBUG_XEMACS */ | |
428 | 3556 if (!st->seen_non_ascii) |
3557 { | |
771 | 3558 for (; n2; n2--, src2++) |
428 | 3559 { |
771 | 3560 UExtbyte c = *src2; |
428 | 3561 if ((c < 0x20 && !acceptable_control_char_p (c)) || c >= 0x80) |
3562 { | |
3563 st->seen_non_ascii = 1; | |
3564 break; | |
3565 } | |
3566 } | |
3567 } | |
3568 | |
771 | 3569 for (i = 0; i < coding_detector_count; i++) |
3570 Dynarr_at (all_coding_detectors, i).detect_method (st, src, n); | |
3571 | |
3572 st->bytes_seen += n; | |
3573 | |
3574 #ifdef DEBUG_XEMACS | |
3575 if (!NILP (Vdebug_coding_detection)) | |
3576 { | |
3577 stderr_out ("seen_non_ascii: %d\n", st->seen_non_ascii); | |
1494 | 3578 if (coding_detector_category_count <= 0) |
3579 stderr_out ("found %d detector categories\n", | |
3580 coding_detector_category_count); | |
771 | 3581 for (i = 0; i < coding_detector_category_count; i++) |
3582 stderr_out_lisp | |
3583 ("%s: %s\n", | |
3584 2, | |
3585 coding_category_id_to_symbol (i), | |
3586 detection_result_number_to_symbol ((enum detection_result) | |
3587 st->categories[i])); | |
3588 } | |
3589 #endif /* DEBUG_XEMACS */ | |
3590 | |
3591 { | |
3592 int not_unlikely = 0; | |
3593 int retval; | |
3594 | |
3595 for (i = 0; i < coding_detector_category_count; i++) | |
3596 if (st->categories[i] >= 0) | |
3597 not_unlikely++; | |
3598 | |
3599 retval = (not_unlikely <= 1 | |
3600 #if 0 /* this is bogus */ | |
3601 || st->bytes_seen >= MAX_BYTES_PROCESSED_FOR_DETECTION | |
428 | 3602 #endif |
771 | 3603 ); |
3604 | |
3605 #ifdef DEBUG_XEMACS | |
3606 if (!NILP (Vdebug_coding_detection)) | |
3607 stderr_out ("detect_coding_type: returning %d (%s)\n", | |
3608 retval, retval ? "stop" : "keep going"); | |
3609 #endif /* DEBUG_XEMACS */ | |
3610 | |
3611 return retval; | |
428 | 3612 } |
3613 } | |
3614 | |
3615 static Lisp_Object | |
771 | 3616 detected_coding_system (struct detection_state *st) |
428 | 3617 { |
771 | 3618 int i; |
3619 int even = 1; | |
3620 | |
3621 if (st->seen_non_ascii) | |
3622 { | |
3623 for (i = 0; i < coding_detector_category_count; i++) | |
3624 if (st->categories[i] != DET_AS_LIKELY_AS_UNLIKELY) | |
3625 { | |
3626 even = 0; | |
3627 break; | |
3628 } | |
3629 } | |
3630 | |
3631 /* #### Here we are ignoring the results of detection when it's all | |
3632 ASCII. This is obviously a bad thing. But we need to fix up the | |
3633 existing detection methods somewhat before we can switch. */ | |
3634 if (even) | |
428 | 3635 { |
3636 /* If the file was entirely or basically ASCII, use the | |
3637 default value of `buffer-file-coding-system'. */ | |
3638 Lisp_Object retval = | |
3639 XBUFFER (Vbuffer_defaults)->buffer_file_coding_system; | |
3640 if (!NILP (retval)) | |
3641 { | |
771 | 3642 retval = find_coding_system_for_text_file (retval, 0); |
428 | 3643 if (NILP (retval)) |
3644 { | |
3645 warn_when_safe | |
3646 (Qbad_variable, Qwarning, | |
3647 "Invalid `default-buffer-file-coding-system', set to nil"); | |
3648 XBUFFER (Vbuffer_defaults)->buffer_file_coding_system = Qnil; | |
3649 } | |
3650 } | |
3651 if (NILP (retval)) | |
4100 | 3652 retval = Fget_coding_system (Qbinary); |
428 | 3653 return retval; |
3654 } | |
3655 else | |
3656 { | |
771 | 3657 int likelihood; |
3658 Lisp_Object retval = Qnil; | |
3659 | |
3660 /* Look through the coding categories first by likelihood and then by | |
3661 priority and find the first one that is allowed. */ | |
3662 | |
3663 for (likelihood = DET_HIGHEST; likelihood >= DET_LOWEST; likelihood--) | |
428 | 3664 { |
771 | 3665 for (i = 0; i < coding_detector_category_count; i++) |
3666 { | |
3667 int cat = coding_category_by_priority[i]; | |
3668 if (st->categories[cat] == likelihood && | |
3669 !NILP (coding_category_system[cat])) | |
3670 { | |
3671 retval = (get_coding_system_for_text_file | |
3672 (coding_category_system[cat], 0)); | |
3673 if (likelihood < DET_AS_LIKELY_AS_UNLIKELY) | |
3674 warn_when_safe_lispobj | |
3675 (intern ("detection"), | |
793 | 3676 Qwarning, |
771 | 3677 emacs_sprintf_string_lisp |
3678 ( | |
3679 "Detected coding %s is unlikely to be correct (likelihood == `%s')", | |
3680 Qnil, 2, XCODING_SYSTEM_NAME (retval), | |
3681 detection_result_number_to_symbol | |
3682 ((enum detection_result) likelihood))); | |
3683 return retval; | |
3684 } | |
3685 } | |
428 | 3686 } |
771 | 3687 |
3688 return Fget_coding_system (Qraw_text); | |
428 | 3689 } |
3690 } | |
3691 | |
1347 | 3692 /* Look for a coding system in the string (skipping over leading |
3693 blanks). If found, return it, otherwise nil. */ | |
3694 | |
3695 static Lisp_Object | |
2531 | 3696 snarf_coding_system (const UExtbyte *p, Bytecount len) |
1347 | 3697 { |
3698 Bytecount n; | |
2531 | 3699 UExtbyte *name; |
1347 | 3700 |
3701 while (*p == ' ' || *p == '\t') p++, len--; | |
3702 len = min (len, 1000); | |
3703 name = alloca_ibytes (len + 1); | |
3704 memcpy (name, p, len); | |
3705 name[len] = '\0'; | |
3706 | |
3707 /* Get coding system name */ | |
3708 /* Characters valid in a MIME charset name (rfc 1521), | |
3709 and in a Lisp symbol name. */ | |
3710 n = qxestrspn (name, | |
3711 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
3712 "abcdefghijklmnopqrstuvwxyz" | |
3713 "0123456789" | |
3714 "!$%&*+-.^_{|}~"); | |
3715 if (n > 0) | |
3716 { | |
3717 name[n] = '\0'; | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
3718 /* This call to intern_istring() is OK because we already verified that |
2531 | 3719 there are only ASCII characters in the string */ |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
3720 return find_coding_system_for_text_file (intern_istring ((Ibyte *) name), 0); |
1347 | 3721 } |
3722 | |
3723 return Qnil; | |
3724 } | |
3725 | |
428 | 3726 /* Given a seekable read stream and potential coding system and EOL type |
3727 as specified, do any autodetection that is called for. If the | |
3728 coding system and/or EOL type are not `autodetect', they will be left | |
3729 alone; but this function will never return an autodetect coding system | |
3730 or EOL type. | |
3731 | |
3732 This function does not automatically fetch subsidiary coding systems; | |
3733 that should be unnecessary with the explicit eol-type argument. */ | |
3734 | |
3735 #define LENGTH(string_constant) (sizeof (string_constant) - 1) | |
3736 | |
771 | 3737 static Lisp_Object |
3738 unwind_free_detection_state (Lisp_Object opaque) | |
3739 { | |
3740 struct detection_state *st = | |
3741 (struct detection_state *) get_opaque_ptr (opaque); | |
3742 free_detection_state (st); | |
3743 free_opaque_ptr (opaque); | |
3744 return Qnil; | |
3745 } | |
3746 | |
1347 | 3747 /* #### This duplicates code in `find-coding-system-magic-cookie-in-file' |
3748 in files.el. Look into combining them. */ | |
3749 | |
771 | 3750 static Lisp_Object |
3751 look_for_coding_system_magic_cookie (const UExtbyte *data, Bytecount len) | |
428 | 3752 { |
771 | 3753 const UExtbyte *p; |
3754 const UExtbyte *scan_end; | |
2531 | 3755 Bytecount cookie_len; |
771 | 3756 |
3757 /* Look for initial "-*-"; mode line prefix */ | |
3758 for (p = data, | |
3759 scan_end = data + len - LENGTH ("-*-coding:?-*-"); | |
3760 p <= scan_end | |
3761 && *p != '\n' | |
3762 && *p != '\r'; | |
3763 p++) | |
3764 if (*p == '-' && *(p+1) == '*' && *(p+2) == '-') | |
3765 { | |
3766 const UExtbyte *local_vars_beg = p + 3; | |
3767 /* Look for final "-*-"; mode line suffix */ | |
3768 for (p = local_vars_beg, | |
3769 scan_end = data + len - LENGTH ("-*-"); | |
3770 p <= scan_end | |
428 | 3771 && *p != '\n' |
3772 && *p != '\r'; | |
771 | 3773 p++) |
3774 if (*p == '-' && *(p+1) == '*' && *(p+2) == '-') | |
3775 { | |
3776 const UExtbyte *suffix = p; | |
3777 /* Look for "coding:" */ | |
3778 for (p = local_vars_beg, | |
3779 scan_end = suffix - LENGTH ("coding:?"); | |
3780 p <= scan_end; | |
3781 p++) | |
3782 if (memcmp ("coding:", p, LENGTH ("coding:")) == 0 | |
3783 && (p == local_vars_beg | |
3784 || (*(p-1) == ' ' || | |
3785 *(p-1) == '\t' || | |
3786 *(p-1) == ';'))) | |
3787 { | |
3788 p += LENGTH ("coding:"); | |
1347 | 3789 return snarf_coding_system (p, suffix - p); |
771 | 3790 break; |
3791 } | |
3792 break; | |
3793 } | |
3794 break; | |
3795 } | |
3796 | |
2531 | 3797 /* Look for ;;;###coding system */ |
3798 | |
3799 cookie_len = LENGTH (";;;###coding system: "); | |
3800 | |
3801 for (p = data, | |
3802 scan_end = data + len - cookie_len; | |
3803 p <= scan_end; | |
3804 p++) | |
1347 | 3805 { |
2531 | 3806 if (*p == ';' && !memcmp (p, ";;;###coding system: ", cookie_len)) |
3807 { | |
3808 const UExtbyte *suffix; | |
3809 | |
3810 p += cookie_len; | |
3811 suffix = p; | |
3812 while (suffix < scan_end && !isspace (*suffix)) | |
3813 suffix++; | |
3814 return snarf_coding_system (p, suffix - p); | |
3815 } | |
1347 | 3816 } |
3817 | |
3818 return Qnil; | |
771 | 3819 } |
3820 | |
3821 static Lisp_Object | |
3822 determine_real_coding_system (Lstream *stream) | |
3823 { | |
3824 struct detection_state *st = allocate_detection_state (); | |
3825 int depth = record_unwind_protect (unwind_free_detection_state, | |
3826 make_opaque_ptr (st)); | |
3827 UExtbyte buf[4096]; | |
3828 Bytecount nread = Lstream_read (stream, buf, sizeof (buf)); | |
3829 Lisp_Object coding_system = look_for_coding_system_magic_cookie (buf, nread); | |
3830 | |
3831 if (NILP (coding_system)) | |
3832 { | |
3833 while (1) | |
3834 { | |
3835 if (detect_coding_type (st, buf, nread)) | |
428 | 3836 break; |
771 | 3837 nread = Lstream_read (stream, buf, sizeof (buf)); |
3838 if (nread == 0) | |
3839 break; | |
428 | 3840 } |
771 | 3841 |
3842 coding_system = detected_coding_system (st); | |
428 | 3843 } |
3844 | |
3845 Lstream_rewind (stream); | |
771 | 3846 |
3847 unbind_to (depth); | |
3848 return coding_system; | |
3849 } | |
3850 | |
3851 static void | |
3852 undecided_init_coding_stream (struct coding_stream *str) | |
3853 { | |
3854 struct undecided_coding_stream *data = | |
3855 CODING_STREAM_TYPE_DATA (str, undecided); | |
3856 struct undecided_coding_system *csdata = | |
3857 XCODING_SYSTEM_TYPE_DATA (str->codesys, undecided); | |
3858 | |
3859 data->actual = Qnil; | |
3860 | |
3861 if (str->direction == CODING_DECODE) | |
3862 { | |
3863 Lstream *lst = str->other_end; | |
3864 | |
3865 if ((lst->flags & LSTREAM_FL_READ) && | |
3866 Lstream_seekable_p (lst) && | |
3867 csdata->do_coding) | |
3868 /* We can determine the coding system now. */ | |
3869 data->actual = determine_real_coding_system (lst); | |
3870 } | |
1494 | 3871 |
3872 #ifdef DEBUG_XEMACS | |
3873 if (!NILP (Vdebug_coding_detection)) | |
3874 stderr_out_lisp ("detected coding system: %s\n", 1, data->actual); | |
3875 #endif /* DEBUG_XEMACS */ | |
771 | 3876 } |
3877 | |
3878 static void | |
3879 undecided_rewind_coding_stream (struct coding_stream *str) | |
3880 { | |
3881 chain_rewind_coding_stream_1 (&CODING_STREAM_TYPE_DATA (str, undecided)->c); | |
3882 } | |
3883 | |
3884 static void | |
3885 undecided_finalize_coding_stream (struct coding_stream *str) | |
3886 { | |
3887 struct undecided_coding_stream *data = | |
3888 CODING_STREAM_TYPE_DATA (str, undecided); | |
3889 | |
3890 chain_finalize_coding_stream_1 | |
3891 (&CODING_STREAM_TYPE_DATA (str, undecided)->c); | |
3892 if (data->st) | |
3893 free_detection_state (data->st); | |
3894 } | |
3895 | |
3896 static Lisp_Object | |
3897 undecided_canonicalize (Lisp_Object codesys) | |
3898 { | |
3899 struct undecided_coding_system *csdata = | |
3900 XCODING_SYSTEM_TYPE_DATA (codesys, undecided); | |
3901 if (!csdata->do_eol && !csdata->do_coding) | |
3902 return NILP (csdata->cs) ? Fget_coding_system (Qbinary) : csdata->cs; | |
3903 if (csdata->do_eol && !csdata->do_coding && NILP (csdata->cs)) | |
3904 return Fget_coding_system (Qconvert_eol_autodetect); | |
3905 return codesys; | |
3906 } | |
3907 | |
3908 static Bytecount | |
3909 undecided_convert (struct coding_stream *str, const UExtbyte *src, | |
3910 unsigned_char_dynarr *dst, Bytecount n) | |
3911 { | |
3912 int first_time = 0; | |
3913 | |
3914 if (str->direction == CODING_DECODE) | |
3915 { | |
3916 /* At this point, we have only the following possibilities: | |
3917 | |
3918 do_eol && do_coding | |
3919 do_coding only | |
3920 do_eol only and a coding system was specified | |
3921 | |
3922 Other possibilities are removed during undecided_canonicalize. | |
3923 | |
3924 Therefore, our substreams are either | |
3925 | |
3926 lstream_coding -> lstream_dynarr, or | |
3927 lstream_coding -> lstream_eol -> lstream_dynarr. | |
3928 */ | |
3929 struct undecided_coding_system *csdata = | |
3930 XCODING_SYSTEM_TYPE_DATA (str->codesys, undecided); | |
3931 struct undecided_coding_stream *data = | |
3932 CODING_STREAM_TYPE_DATA (str, undecided); | |
3933 | |
3934 if (str->eof) | |
3935 { | |
3936 /* Each will close the next. We need to close now because more | |
3937 data may be generated. */ | |
3938 if (data->c.initted) | |
3939 Lstream_close (XLSTREAM (data->c.lstreams[0])); | |
3940 return n; | |
3941 } | |
3942 | |
3943 if (!data->c.initted) | |
3944 { | |
3945 data->c.lstream_count = csdata->do_eol ? 3 : 2; | |
3946 data->c.lstreams = xnew_array (Lisp_Object, data->c.lstream_count); | |
3947 | |
3948 data->c.lstreams[data->c.lstream_count - 1] = | |
3949 make_dynarr_output_stream (dst); | |
3950 Lstream_set_buffering | |
3951 (XLSTREAM (data->c.lstreams[data->c.lstream_count - 1]), | |
3952 LSTREAM_UNBUFFERED, 0); | |
3953 if (csdata->do_eol) | |
3954 { | |
3955 data->c.lstreams[1] = | |
3956 make_coding_output_stream | |
3957 (XLSTREAM (data->c.lstreams[data->c.lstream_count - 1]), | |
3958 Fget_coding_system (Qconvert_eol_autodetect), | |
800 | 3959 CODING_DECODE, 0); |
771 | 3960 Lstream_set_buffering |
3961 (XLSTREAM (data->c.lstreams[1]), | |
3962 LSTREAM_UNBUFFERED, 0); | |
3963 } | |
3964 | |
3965 data->c.lstreams[0] = | |
3966 make_coding_output_stream | |
3967 (XLSTREAM (data->c.lstreams[1]), | |
3968 /* Substitute binary if we need to detect the encoding */ | |
3969 csdata->do_coding ? Qbinary : csdata->cs, | |
800 | 3970 CODING_DECODE, 0); |
771 | 3971 Lstream_set_buffering (XLSTREAM (data->c.lstreams[0]), |
3972 LSTREAM_UNBUFFERED, 0); | |
3973 | |
3974 first_time = 1; | |
3975 data->c.initted = 1; | |
3976 } | |
3977 | |
3978 /* If necessary, do encoding-detection now. We do this when we're a | |
3979 writing stream or a non-seekable reading stream, meaning that we | |
3980 can't just process the whole input, rewind, and start over. */ | |
3981 | |
3982 if (csdata->do_coding) | |
3983 { | |
3984 int actual_was_nil = NILP (data->actual); | |
3985 if (NILP (data->actual)) | |
3986 { | |
3987 if (!data->st) | |
3988 data->st = allocate_detection_state (); | |
3989 if (first_time) | |
3990 /* #### This is cheesy. What we really ought to do is buffer | |
3991 up a certain minimum amount of data to get a better result. | |
3992 */ | |
3993 data->actual = look_for_coding_system_magic_cookie (src, n); | |
3994 if (NILP (data->actual)) | |
3995 { | |
3996 /* #### This is cheesy. What we really ought to do is buffer | |
3997 up a certain minimum amount of data so as to get a less | |
3998 random result when doing subprocess detection. */ | |
3999 detect_coding_type (data->st, src, n); | |
4000 data->actual = detected_coding_system (data->st); | |
4100 | 4001 /* kludge to prevent infinite recursion */ |
4002 if (XCODING_SYSTEM(data->actual)->methods->enumtype == undecided_coding_system) | |
4003 data->actual = Fget_coding_system (Qbinary); | |
771 | 4004 } |
4005 } | |
4006 /* We need to set the detected coding system if we actually have | |
4007 such a coding system but didn't before. That is the case | |
4008 either when we just detected it in the previous code or when | |
4009 it was detected during undecided_init_coding_stream(). We | |
4010 can check for that using first_time. */ | |
4011 if (!NILP (data->actual) && (actual_was_nil || first_time)) | |
4012 { | |
4013 /* If the detected coding system doesn't allow for EOL | |
4014 autodetection, try to get the equivalent that does; | |
4015 otherwise, disable EOL detection (overriding whatever | |
4016 may already have been detected). */ | |
4017 if (XCODING_SYSTEM_EOL_TYPE (data->actual) != EOL_AUTODETECT) | |
4018 { | |
4019 if (!NILP (XCODING_SYSTEM_SUBSIDIARY_PARENT (data->actual))) | |
4020 data->actual = | |
4021 XCODING_SYSTEM_SUBSIDIARY_PARENT (data->actual); | |
4022 else if (data->c.lstream_count == 3) | |
4023 set_coding_stream_coding_system | |
4024 (XLSTREAM (data->c.lstreams[1]), | |
4025 Fget_coding_system (Qidentity)); | |
4026 } | |
4027 set_coding_stream_coding_system | |
4028 (XLSTREAM (data->c.lstreams[0]), data->actual); | |
4029 } | |
4030 } | |
4031 | |
4032 if (Lstream_write (XLSTREAM (data->c.lstreams[0]), src, n) < 0) | |
4033 return -1; | |
4034 return n; | |
4035 } | |
4036 else | |
4037 return no_conversion_convert (str, src, dst, n); | |
4038 } | |
4039 | |
4040 static Lisp_Object | |
4041 undecided_canonicalize_after_coding (struct coding_stream *str) | |
4042 { | |
4043 struct undecided_coding_stream *data = | |
4044 CODING_STREAM_TYPE_DATA (str, undecided); | |
4045 Lisp_Object ret, eolret; | |
4046 | |
4047 if (str->direction == CODING_ENCODE) | |
4048 return str->codesys; | |
4049 | |
4050 if (!data->c.initted) | |
4647
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
4051 return str->codesys; |
771 | 4052 |
4053 ret = coding_stream_canonicalize_after_coding | |
4054 (XLSTREAM (data->c.lstreams[0])); | |
4055 if (NILP (ret)) | |
4647
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
4056 ret = str->codesys; |
771 | 4057 if (XCODING_SYSTEM_EOL_TYPE (ret) != EOL_AUTODETECT) |
4058 return ret; | |
4059 eolret = coding_stream_canonicalize_after_coding | |
4060 (XLSTREAM (data->c.lstreams[1])); | |
4061 if (!EQ (XCODING_SYSTEM_TYPE (eolret), Qconvert_eol)) | |
4062 return ret; | |
4063 return | |
4064 Fsubsidiary_coding_system (ret, Fcoding_system_property (eolret, | |
4065 Qsubtype)); | |
4066 } | |
4067 | |
4068 | |
4069 /************************************************************************/ | |
4070 /* Lisp interface: Coding category functions and detection */ | |
4071 /************************************************************************/ | |
4072 | |
4073 DEFUN ("coding-category-list", Fcoding_category_list, 0, 0, 0, /* | |
4074 Return a list of all recognized coding categories. | |
4075 */ | |
4076 ()) | |
4077 { | |
4078 int i; | |
4079 Lisp_Object list = Qnil; | |
4080 | |
4081 for (i = 0; i < coding_detector_count; i++) | |
4082 { | |
4083 detector_category_dynarr *cats = | |
4084 Dynarr_at (all_coding_detectors, i).cats; | |
4085 int j; | |
4086 | |
4087 for (j = 0; j < Dynarr_length (cats); j++) | |
4088 list = Fcons (Dynarr_at (cats, j).sym, list); | |
4089 } | |
4090 | |
4091 return Fnreverse (list); | |
4092 } | |
4093 | |
4094 DEFUN ("set-coding-priority-list", Fset_coding_priority_list, 1, 1, 0, /* | |
4095 Change the priority order of the coding categories. | |
4096 LIST should be list of coding categories, in descending order of | |
4097 priority. Unspecified coding categories will be lower in priority | |
4098 than all specified ones, in the same relative order they were in | |
4099 previously. | |
4100 */ | |
4101 (list)) | |
4102 { | |
4103 int *category_to_priority = | |
4104 alloca_array (int, coding_detector_category_count); | |
4105 int i, j; | |
4106 | |
4107 /* First generate a list that maps coding categories to priorities. */ | |
4108 | |
4109 for (i = 0; i < coding_detector_category_count; i++) | |
4110 category_to_priority[i] = -1; | |
4111 | |
4112 /* Highest priority comes from the specified list. */ | |
4113 i = 0; | |
2367 | 4114 { |
4115 EXTERNAL_LIST_LOOP_2 (elt, list) | |
4116 { | |
4117 int cat = coding_category_symbol_to_id (elt); | |
4118 | |
4119 if (category_to_priority[cat] >= 0) | |
4120 sferror ("Duplicate coding category in list", elt); | |
4121 category_to_priority[cat] = i++; | |
4122 } | |
4123 } | |
771 | 4124 |
4125 /* Now go through the existing categories by priority to retrieve | |
4126 the categories not yet specified and preserve their priority | |
4127 order. */ | |
4128 for (j = 0; j < coding_detector_category_count; j++) | |
4129 { | |
4130 int cat = coding_category_by_priority[j]; | |
4131 if (category_to_priority[cat] < 0) | |
4132 category_to_priority[cat] = i++; | |
4133 } | |
4134 | |
4135 /* Now we need to construct the inverse of the mapping we just | |
4136 constructed. */ | |
4137 | |
4138 for (i = 0; i < coding_detector_category_count; i++) | |
4139 coding_category_by_priority[category_to_priority[i]] = i; | |
4140 | |
4141 /* Phew! That was confusing. */ | |
4142 return Qnil; | |
4143 } | |
4144 | |
4145 DEFUN ("coding-priority-list", Fcoding_priority_list, 0, 0, 0, /* | |
4146 Return a list of coding categories in descending order of priority. | |
4147 */ | |
4148 ()) | |
4149 { | |
4150 int i; | |
4151 Lisp_Object list = Qnil; | |
4152 | |
4153 for (i = 0; i < coding_detector_category_count; i++) | |
4154 list = | |
4155 Fcons (coding_category_id_to_symbol (coding_category_by_priority[i]), | |
4156 list); | |
4157 return Fnreverse (list); | |
4158 } | |
4159 | |
4160 DEFUN ("set-coding-category-system", Fset_coding_category_system, 2, 2, 0, /* | |
4161 Change the coding system associated with a coding category. | |
4162 */ | |
4163 (coding_category, coding_system)) | |
4164 { | |
4165 coding_category_system[coding_category_symbol_to_id (coding_category)] = | |
4166 Fget_coding_system (coding_system); | |
4167 return Qnil; | |
4168 } | |
4169 | |
4170 DEFUN ("coding-category-system", Fcoding_category_system, 1, 1, 0, /* | |
4171 Return the coding system associated with a coding category. | |
4172 */ | |
4173 (coding_category)) | |
4174 { | |
4175 Lisp_Object sys = | |
4176 coding_category_system[coding_category_symbol_to_id (coding_category)]; | |
4177 | |
4178 if (!NILP (sys)) | |
4179 return XCODING_SYSTEM_NAME (sys); | |
4180 return Qnil; | |
4181 } | |
4182 | |
800 | 4183 /* Detect the encoding of STREAM. Assumes stream is at the begnning and will |
4184 read through to the end of STREAM, leaving it there but open. */ | |
4185 | |
771 | 4186 Lisp_Object |
4187 detect_coding_stream (Lisp_Object stream) | |
4188 { | |
4189 Lisp_Object val = Qnil; | |
4190 struct gcpro gcpro1, gcpro2, gcpro3; | |
4191 UExtbyte random_buffer[65536]; | |
4192 Lisp_Object binary_instream = | |
4193 make_coding_input_stream | |
4194 (XLSTREAM (stream), Qbinary, | |
814 | 4195 CODING_ENCODE, LSTREAM_FL_NO_CLOSE_OTHER); |
771 | 4196 Lisp_Object decstream = |
4197 make_coding_input_stream | |
4198 (XLSTREAM (binary_instream), | |
800 | 4199 Qundecided, CODING_DECODE, 0); |
771 | 4200 Lstream *decstr = XLSTREAM (decstream); |
4201 | |
4202 GCPRO3 (decstream, stream, binary_instream); | |
4203 /* Read and discard all data; detection happens as a side effect of this, | |
4204 and we examine what was detected afterwards. */ | |
4205 while (Lstream_read (decstr, random_buffer, sizeof (random_buffer)) > 0) | |
4206 ; | |
4207 | |
4208 val = coding_stream_detected_coding_system (decstr); | |
4209 Lstream_close (decstr); | |
4210 Lstream_delete (decstr); | |
4211 Lstream_delete (XLSTREAM (binary_instream)); | |
4212 UNGCPRO; | |
4213 return val; | |
428 | 4214 } |
4215 | |
4216 DEFUN ("detect-coding-region", Fdetect_coding_region, 2, 3, 0, /* | |
4217 Detect coding system of the text in the region between START and END. | |
444 | 4218 Return a list of possible coding systems ordered by priority. |
3025 | 4219 If only ASCII characters are found, return `undecided' or one of |
428 | 4220 its subsidiary coding systems according to a detected end-of-line |
4221 type. Optional arg BUFFER defaults to the current buffer. | |
4222 */ | |
4223 (start, end, buffer)) | |
4224 { | |
4225 Lisp_Object val = Qnil; | |
4226 struct buffer *buf = decode_buffer (buffer, 0); | |
665 | 4227 Charbpos b, e; |
771 | 4228 Lisp_Object lb_instream; |
428 | 4229 |
4230 get_buffer_range_char (buf, start, end, &b, &e, 0); | |
4231 lb_instream = make_lisp_buffer_input_stream (buf, b, e, 0); | |
771 | 4232 |
4233 val = detect_coding_stream (lb_instream); | |
4234 Lstream_delete (XLSTREAM (lb_instream)); | |
428 | 4235 return val; |
4236 } | |
4237 | |
4238 | |
771 | 4239 |
4240 #ifdef DEBUG_XEMACS | |
4241 | |
428 | 4242 /************************************************************************/ |
771 | 4243 /* Internal methods */ |
4244 /************************************************************************/ | |
4245 | |
4246 /* Raw (internally-formatted) data. */ | |
4247 DEFINE_CODING_SYSTEM_TYPE (internal); | |
428 | 4248 |
665 | 4249 static Bytecount |
2286 | 4250 internal_convert (struct coding_stream *UNUSED (str), const UExtbyte *src, |
771 | 4251 unsigned_char_dynarr *dst, Bytecount n) |
4252 { | |
4253 Bytecount orign = n; | |
4254 Dynarr_add_many (dst, src, n); | |
4255 return orign; | |
4256 } | |
4257 | |
4258 #endif /* DEBUG_XEMACS */ | |
4259 | |
4260 | |
4261 | |
4262 #ifdef HAVE_ZLIB | |
4263 | |
4264 /************************************************************************/ | |
4265 /* Gzip methods */ | |
4266 /************************************************************************/ | |
4267 | |
4268 struct gzip_coding_system | |
428 | 4269 { |
771 | 4270 int level; /* 0 through 9, or -1 for default */ |
4271 }; | |
4272 | |
4273 #define CODING_SYSTEM_GZIP_LEVEL(codesys) \ | |
4274 (CODING_SYSTEM_TYPE_DATA (codesys, gzip)->level) | |
4275 #define XCODING_SYSTEM_GZIP_LEVEL(codesys) \ | |
4276 (XCODING_SYSTEM_TYPE_DATA (codesys, gzip)->level) | |
4277 | |
4278 struct gzip_coding_stream | |
428 | 4279 { |
771 | 4280 z_stream stream; |
4281 int stream_initted; | |
4282 int reached_eof; /* #### this should be handled by the caller, once we | |
4283 return LSTREAM_EOF */ | |
4284 }; | |
4285 | |
1204 | 4286 static const struct memory_description |
771 | 4287 gzip_coding_system_description[] = { |
4288 { XD_END } | |
4289 }; | |
4290 | |
1204 | 4291 DEFINE_CODING_SYSTEM_TYPE_WITH_DATA (gzip); |
4292 | |
771 | 4293 enum source_sink_type |
4294 gzip_conversion_end_type (Lisp_Object codesys) | |
4295 { | |
4296 return DECODES_BYTE_TO_BYTE; | |
428 | 4297 } |
4298 | |
4299 static void | |
771 | 4300 gzip_init (Lisp_Object codesys) |
4301 { | |
4302 struct gzip_coding_system *data = XCODING_SYSTEM_TYPE_DATA (codesys, gzip); | |
4303 data->level = -1; | |
4304 } | |
4305 | |
4306 static void | |
4307 gzip_print (Lisp_Object cs, Lisp_Object printcharfun, int escapeflag) | |
428 | 4308 { |
771 | 4309 struct gzip_coding_system *data = XCODING_SYSTEM_TYPE_DATA (cs, gzip); |
4310 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4311 write_ascstring (printcharfun, "("); |
771 | 4312 if (data->level == -1) |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4313 write_ascstring (printcharfun, "default"); |
771 | 4314 else |
4315 print_internal (make_int (data->level), printcharfun, 0); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4316 write_ascstring (printcharfun, ")"); |
428 | 4317 } |
4318 | |
4319 static int | |
771 | 4320 gzip_putprop (Lisp_Object codesys, Lisp_Object key, Lisp_Object value) |
428 | 4321 { |
771 | 4322 struct gzip_coding_system *data = XCODING_SYSTEM_TYPE_DATA (codesys, gzip); |
4323 | |
4324 if (EQ (key, Qlevel)) | |
428 | 4325 { |
771 | 4326 if (EQ (value, Qdefault)) |
4327 data->level = -1; | |
4328 else | |
428 | 4329 { |
771 | 4330 CHECK_INT (value); |
4331 check_int_range (XINT (value), 0, 9); | |
4332 data->level = XINT (value); | |
428 | 4333 } |
4334 } | |
4335 else | |
771 | 4336 return 0; |
4337 return 1; | |
428 | 4338 } |
4339 | |
4340 static Lisp_Object | |
771 | 4341 gzip_getprop (Lisp_Object coding_system, Lisp_Object prop) |
428 | 4342 { |
771 | 4343 struct gzip_coding_system *data = |
4344 XCODING_SYSTEM_TYPE_DATA (coding_system, gzip); | |
4345 | |
4346 if (EQ (prop, Qlevel)) | |
428 | 4347 { |
771 | 4348 if (data->level == -1) |
4349 return Qdefault; | |
4350 return make_int (data->level); | |
428 | 4351 } |
771 | 4352 |
4353 return Qunbound; | |
428 | 4354 } |
4355 | |
4356 static void | |
771 | 4357 gzip_init_coding_stream (struct coding_stream *str) |
428 | 4358 { |
771 | 4359 struct gzip_coding_stream *data = CODING_STREAM_TYPE_DATA (str, gzip); |
4360 if (data->stream_initted) | |
428 | 4361 { |
771 | 4362 if (str->direction == CODING_DECODE) |
4363 inflateEnd (&data->stream); | |
4364 else | |
4365 deflateEnd (&data->stream); | |
4366 data->stream_initted = 0; | |
428 | 4367 } |
771 | 4368 data->reached_eof = 0; |
428 | 4369 } |
4370 | |
4371 static void | |
771 | 4372 gzip_rewind_coding_stream (struct coding_stream *str) |
428 | 4373 { |
771 | 4374 gzip_init_coding_stream (str); |
428 | 4375 } |
4376 | |
771 | 4377 static Bytecount |
4378 gzip_convert (struct coding_stream *str, | |
4379 const UExtbyte *src, | |
4380 unsigned_char_dynarr *dst, Bytecount n) | |
428 | 4381 { |
771 | 4382 struct gzip_coding_stream *data = CODING_STREAM_TYPE_DATA (str, gzip); |
4383 int zerr; | |
4384 if (str->direction == CODING_DECODE) | |
428 | 4385 { |
771 | 4386 if (data->reached_eof) |
4387 return n; /* eat the data */ | |
4388 | |
4389 if (!data->stream_initted) | |
428 | 4390 { |
771 | 4391 xzero (data->stream); |
4392 if (inflateInit (&data->stream) != Z_OK) | |
4393 return LSTREAM_ERROR; | |
4394 data->stream_initted = 1; | |
428 | 4395 } |
771 | 4396 |
4397 data->stream.next_in = (Bytef *) src; | |
4398 data->stream.avail_in = n; | |
4399 | |
4400 /* Normally we stop when we've fed all data to the decompressor; but | |
4401 if we're at the end of the input, and the decompressor hasn't | |
4402 reported EOF, we need to keep going, as there might be more output | |
4403 to generate. Z_OK from the decompressor means input was processed | |
4404 or output was generated; if neither, we break out of the loop. | |
4405 Other return values are: | |
4406 | |
4407 Z_STREAM_END EOF from decompressor | |
4408 Z_DATA_ERROR Corrupted data | |
4409 Z_BUF_ERROR No progress possible (this should happen if | |
4410 we try to feed it an incomplete file) | |
4411 Z_MEM_ERROR Out of memory | |
4412 Z_STREAM_ERROR (should never happen) | |
4413 Z_NEED_DICT (#### when will this happen?) | |
4414 */ | |
4415 while (data->stream.avail_in > 0 || str->eof) | |
4416 { | |
4417 /* Reserve an output buffer of the same size as the input buffer; | |
4418 if that's not enough, we keep reserving the same size. */ | |
4419 Bytecount reserved = n; | |
4420 Dynarr_add_many (dst, 0, reserved); | |
4421 /* Careful here! Don't retrieve the pointer until after | |
4422 reserving the space, or it might be bogus */ | |
4423 data->stream.next_out = | |
4424 Dynarr_atp (dst, Dynarr_length (dst) - reserved); | |
4425 data->stream.avail_out = reserved; | |
4426 zerr = inflate (&data->stream, Z_NO_FLUSH); | |
4427 /* Lop off the unused portion */ | |
5038 | 4428 Dynarr_set_lengthr (dst, Dynarr_length (dst) - data->stream.avail_out); |
771 | 4429 if (zerr != Z_OK) |
4430 break; | |
4431 } | |
4432 | |
4433 if (zerr == Z_STREAM_END) | |
4434 data->reached_eof = 1; | |
4435 | |
4436 if ((Bytecount) data->stream.avail_in < n) | |
4437 return n - data->stream.avail_in; | |
4438 | |
4439 if (zerr == Z_OK || zerr == Z_STREAM_END) | |
4440 return 0; | |
4441 | |
4442 return LSTREAM_ERROR; | |
428 | 4443 } |
4444 else | |
4445 { | |
771 | 4446 if (!data->stream_initted) |
4447 { | |
4448 int level = XCODING_SYSTEM_GZIP_LEVEL (str->codesys); | |
4449 xzero (data->stream); | |
4450 if (deflateInit (&data->stream, | |
4451 level == -1 ? Z_DEFAULT_COMPRESSION : level) != | |
4452 Z_OK) | |
4453 return LSTREAM_ERROR; | |
4454 data->stream_initted = 1; | |
428 | 4455 } |
771 | 4456 |
4457 data->stream.next_in = (Bytef *) src; | |
4458 data->stream.avail_in = n; | |
4459 | |
4460 /* Normally we stop when we've fed all data to the compressor; but if | |
4461 we're at the end of the input, and the compressor hasn't reported | |
4462 EOF, we need to keep going, as there might be more output to | |
4463 generate. (To signal EOF on our end, we set the FLUSH parameter | |
4464 to Z_FINISH; when all data is output, Z_STREAM_END will be | |
4465 returned.) Z_OK from the compressor means input was processed or | |
4466 output was generated; if neither, we break out of the loop. Other | |
4467 return values are: | |
4468 | |
4469 Z_STREAM_END EOF from compressor | |
4470 Z_BUF_ERROR No progress possible (should never happen) | |
4471 Z_STREAM_ERROR (should never happen) | |
4472 */ | |
4473 while (data->stream.avail_in > 0 || str->eof) | |
4474 { | |
4475 /* Reserve an output buffer of the same size as the input buffer; | |
4476 if that's not enough, we keep reserving the same size. */ | |
4477 Bytecount reserved = n; | |
4478 Dynarr_add_many (dst, 0, reserved); | |
4479 /* Careful here! Don't retrieve the pointer until after | |
4480 reserving the space, or it might be bogus */ | |
4481 data->stream.next_out = | |
4482 Dynarr_atp (dst, Dynarr_length (dst) - reserved); | |
4483 data->stream.avail_out = reserved; | |
4484 zerr = | |
4485 deflate (&data->stream, | |
4486 str->eof ? Z_FINISH : Z_NO_FLUSH); | |
4487 /* Lop off the unused portion */ | |
5038 | 4488 Dynarr_set_lengthr (dst, Dynarr_length (dst) - data->stream.avail_out); |
771 | 4489 if (zerr != Z_OK) |
4490 break; | |
4491 } | |
4492 | |
4493 if ((Bytecount) data->stream.avail_in < n) | |
4494 return n - data->stream.avail_in; | |
4495 | |
4496 if (zerr == Z_OK || zerr == Z_STREAM_END) | |
4497 return 0; | |
4498 | |
4499 return LSTREAM_ERROR; | |
428 | 4500 } |
4501 } | |
4502 | |
771 | 4503 #endif /* HAVE_ZLIB */ |
428 | 4504 |
4505 | |
4506 /************************************************************************/ | |
4507 /* Initialization */ | |
4508 /************************************************************************/ | |
4509 | |
4510 void | |
4511 syms_of_file_coding (void) | |
4512 { | |
442 | 4513 INIT_LRECORD_IMPLEMENTATION (coding_system); |
4514 | |
771 | 4515 DEFSUBR (Fvalid_coding_system_type_p); |
4516 DEFSUBR (Fcoding_system_type_list); | |
428 | 4517 DEFSUBR (Fcoding_system_p); |
4303 | 4518 DEFSUBR (Fautoload_coding_system); |
428 | 4519 DEFSUBR (Ffind_coding_system); |
4520 DEFSUBR (Fget_coding_system); | |
4521 DEFSUBR (Fcoding_system_list); | |
4522 DEFSUBR (Fcoding_system_name); | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4523 DEFSUBR (Fmake_coding_system_internal); |
428 | 4524 DEFSUBR (Fcopy_coding_system); |
440 | 4525 DEFSUBR (Fcoding_system_canonical_name_p); |
4526 DEFSUBR (Fcoding_system_alias_p); | |
4527 DEFSUBR (Fcoding_system_aliasee); | |
428 | 4528 DEFSUBR (Fdefine_coding_system_alias); |
4529 DEFSUBR (Fsubsidiary_coding_system); | |
771 | 4530 DEFSUBR (Fcoding_system_base); |
4531 DEFSUBR (Fcoding_system_used_for_io); | |
428 | 4532 |
4533 DEFSUBR (Fcoding_system_type); | |
771 | 4534 DEFSUBR (Fcoding_system_description); |
428 | 4535 DEFSUBR (Fcoding_system_property); |
4536 | |
4537 DEFSUBR (Fcoding_category_list); | |
4538 DEFSUBR (Fset_coding_priority_list); | |
4539 DEFSUBR (Fcoding_priority_list); | |
4540 DEFSUBR (Fset_coding_category_system); | |
4541 DEFSUBR (Fcoding_category_system); | |
4542 | |
4543 DEFSUBR (Fdetect_coding_region); | |
4544 DEFSUBR (Fdecode_coding_region); | |
4545 DEFSUBR (Fencode_coding_region); | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4546 DEFSUBR (Fquery_coding_region); |
563 | 4547 DEFSYMBOL_MULTIWORD_PREDICATE (Qcoding_systemp); |
4548 DEFSYMBOL (Qno_conversion); | |
771 | 4549 DEFSYMBOL (Qconvert_eol); |
4550 DEFSYMBOL (Qconvert_eol_autodetect); | |
4551 DEFSYMBOL (Qconvert_eol_lf); | |
4552 DEFSYMBOL (Qconvert_eol_cr); | |
4553 DEFSYMBOL (Qconvert_eol_crlf); | |
563 | 4554 DEFSYMBOL (Qraw_text); |
771 | 4555 |
563 | 4556 DEFSYMBOL (Qmnemonic); |
4557 DEFSYMBOL (Qeol_type); | |
4558 DEFSYMBOL (Qpost_read_conversion); | |
4559 DEFSYMBOL (Qpre_write_conversion); | |
4560 | |
771 | 4561 DEFSYMBOL (Qtranslation_table_for_decode); |
4562 DEFSYMBOL (Qtranslation_table_for_encode); | |
4563 DEFSYMBOL (Qsafe_chars); | |
4564 DEFSYMBOL (Qsafe_charsets); | |
4565 DEFSYMBOL (Qmime_charset); | |
4566 DEFSYMBOL (Qvalid_codes); | |
4567 | |
563 | 4568 DEFSYMBOL (Qcr); |
4569 DEFSYMBOL (Qlf); | |
4570 DEFSYMBOL (Qcrlf); | |
4571 DEFSYMBOL (Qeol_cr); | |
4572 DEFSYMBOL (Qeol_lf); | |
4573 DEFSYMBOL (Qeol_crlf); | |
4574 DEFSYMBOL (Qencode); | |
4575 DEFSYMBOL (Qdecode); | |
428 | 4576 |
771 | 4577 DEFSYMBOL (Qnear_certainty); |
4578 DEFSYMBOL (Qquite_probable); | |
4579 DEFSYMBOL (Qsomewhat_likely); | |
1494 | 4580 DEFSYMBOL (Qslightly_likely); |
771 | 4581 DEFSYMBOL (Qas_likely_as_unlikely); |
4582 DEFSYMBOL (Qsomewhat_unlikely); | |
4583 DEFSYMBOL (Qquite_improbable); | |
4584 DEFSYMBOL (Qnearly_impossible); | |
4585 | |
4586 DEFSYMBOL (Qdo_eol); | |
4587 DEFSYMBOL (Qdo_coding); | |
4588 | |
4589 DEFSYMBOL (Qcanonicalize_after_coding); | |
4590 | |
4303 | 4591 DEFSYMBOL (Qposix_charset_to_coding_system_hash); |
4592 | |
771 | 4593 DEFSYMBOL (Qescape_quoted); |
4594 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4595 DEFSYMBOL (Qquery_coding_warning_face); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4596 DEFSYMBOL (Qaliases); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4597 DEFSYMBOL (Qcharset_skip_chars_string); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4598 |
771 | 4599 #ifdef HAVE_ZLIB |
4600 DEFSYMBOL (Qgzip); | |
4601 #endif | |
4602 | |
428 | 4603 } |
4604 | |
4605 void | |
4606 lstream_type_create_file_coding (void) | |
4607 { | |
771 | 4608 LSTREAM_HAS_METHOD (coding, reader); |
4609 LSTREAM_HAS_METHOD (coding, writer); | |
4610 LSTREAM_HAS_METHOD (coding, rewinder); | |
4611 LSTREAM_HAS_METHOD (coding, seekable_p); | |
4612 LSTREAM_HAS_METHOD (coding, marker); | |
4613 LSTREAM_HAS_METHOD (coding, flusher); | |
4614 LSTREAM_HAS_METHOD (coding, closer); | |
4615 LSTREAM_HAS_METHOD (coding, finalizer); | |
4616 } | |
4617 | |
4618 void | |
4619 coding_system_type_create (void) | |
4620 { | |
4621 int i; | |
4622 | |
4623 staticpro (&Vcoding_system_hash_table); | |
4624 Vcoding_system_hash_table = | |
4625 make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ); | |
4626 | |
4627 the_coding_system_type_entry_dynarr = Dynarr_new (coding_system_type_entry); | |
2367 | 4628 dump_add_root_block_ptr (&the_coding_system_type_entry_dynarr, |
771 | 4629 &csted_description); |
4630 | |
4631 Vcoding_system_type_list = Qnil; | |
4632 staticpro (&Vcoding_system_type_list); | |
4633 | |
4634 /* Initialize to something reasonable ... */ | |
4635 for (i = 0; i < MAX_DETECTOR_CATEGORIES; i++) | |
4636 { | |
4637 coding_category_system[i] = Qnil; | |
1204 | 4638 dump_add_root_lisp_object (&coding_category_system[i]); |
771 | 4639 coding_category_by_priority[i] = i; |
4640 } | |
4641 | |
4642 dump_add_opaque (coding_category_by_priority, | |
4643 sizeof (coding_category_by_priority)); | |
4644 | |
4645 all_coding_detectors = Dynarr_new2 (detector_dynarr, struct detector); | |
2367 | 4646 dump_add_root_block_ptr (&all_coding_detectors, |
771 | 4647 &detector_dynarr_description); |
4648 | |
4649 dump_add_opaque_int (&coding_system_tick); | |
4650 dump_add_opaque_int (&coding_detector_count); | |
4651 dump_add_opaque_int (&coding_detector_category_count); | |
4652 | |
4653 INITIALIZE_CODING_SYSTEM_TYPE (no_conversion, | |
4654 "no-conversion-coding-system-p"); | |
4655 CODING_SYSTEM_HAS_METHOD (no_conversion, convert); | |
4656 | |
4657 INITIALIZE_DETECTOR (no_conversion); | |
4658 DETECTOR_HAS_METHOD (no_conversion, detect); | |
4659 INITIALIZE_DETECTOR_CATEGORY (no_conversion, no_conversion); | |
4660 | |
4661 INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA (convert_eol, | |
4662 "convert-eol-coding-system-p"); | |
4663 CODING_SYSTEM_HAS_METHOD (convert_eol, print); | |
4664 CODING_SYSTEM_HAS_METHOD (convert_eol, convert); | |
4665 CODING_SYSTEM_HAS_METHOD (convert_eol, getprop); | |
4666 CODING_SYSTEM_HAS_METHOD (convert_eol, putprop); | |
4667 CODING_SYSTEM_HAS_METHOD (convert_eol, conversion_end_type); | |
4668 CODING_SYSTEM_HAS_METHOD (convert_eol, canonicalize_after_coding); | |
4669 CODING_SYSTEM_HAS_METHOD (convert_eol, init_coding_stream); | |
4670 | |
4671 INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA (undecided, | |
4672 "undecided-coding-system-p"); | |
4673 CODING_SYSTEM_HAS_METHOD (undecided, init); | |
4674 CODING_SYSTEM_HAS_METHOD (undecided, mark); | |
4675 CODING_SYSTEM_HAS_METHOD (undecided, print); | |
4676 CODING_SYSTEM_HAS_METHOD (undecided, convert); | |
4677 CODING_SYSTEM_HAS_METHOD (undecided, putprop); | |
4678 CODING_SYSTEM_HAS_METHOD (undecided, getprop); | |
4679 CODING_SYSTEM_HAS_METHOD (undecided, init_coding_stream); | |
4680 CODING_SYSTEM_HAS_METHOD (undecided, rewind_coding_stream); | |
4681 CODING_SYSTEM_HAS_METHOD (undecided, finalize_coding_stream); | |
4682 CODING_SYSTEM_HAS_METHOD (undecided, mark_coding_stream); | |
4683 CODING_SYSTEM_HAS_METHOD (undecided, canonicalize); | |
4684 CODING_SYSTEM_HAS_METHOD (undecided, canonicalize_after_coding); | |
4685 | |
4686 INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA (chain, "chain-coding-system-p"); | |
4687 | |
4688 CODING_SYSTEM_HAS_METHOD (chain, print); | |
4689 CODING_SYSTEM_HAS_METHOD (chain, canonicalize); | |
4690 CODING_SYSTEM_HAS_METHOD (chain, init); | |
4691 CODING_SYSTEM_HAS_METHOD (chain, mark); | |
4692 CODING_SYSTEM_HAS_METHOD (chain, mark_coding_stream); | |
4693 CODING_SYSTEM_HAS_METHOD (chain, convert); | |
4694 CODING_SYSTEM_HAS_METHOD (chain, rewind_coding_stream); | |
4695 CODING_SYSTEM_HAS_METHOD (chain, finalize_coding_stream); | |
4696 CODING_SYSTEM_HAS_METHOD (chain, finalize); | |
4697 CODING_SYSTEM_HAS_METHOD (chain, putprop); | |
4698 CODING_SYSTEM_HAS_METHOD (chain, getprop); | |
4699 CODING_SYSTEM_HAS_METHOD (chain, conversion_end_type); | |
4700 CODING_SYSTEM_HAS_METHOD (chain, canonicalize_after_coding); | |
4701 | |
4702 #ifdef DEBUG_XEMACS | |
4703 INITIALIZE_CODING_SYSTEM_TYPE (internal, "internal-coding-system-p"); | |
4704 CODING_SYSTEM_HAS_METHOD (internal, convert); | |
4705 #endif | |
4706 | |
4707 #ifdef HAVE_ZLIB | |
4708 INITIALIZE_CODING_SYSTEM_TYPE_WITH_DATA (gzip, "gzip-coding-system-p"); | |
4709 CODING_SYSTEM_HAS_METHOD (gzip, conversion_end_type); | |
4710 CODING_SYSTEM_HAS_METHOD (gzip, convert); | |
4711 CODING_SYSTEM_HAS_METHOD (gzip, init); | |
4712 CODING_SYSTEM_HAS_METHOD (gzip, print); | |
4713 CODING_SYSTEM_HAS_METHOD (gzip, init_coding_stream); | |
4714 CODING_SYSTEM_HAS_METHOD (gzip, rewind_coding_stream); | |
4715 CODING_SYSTEM_HAS_METHOD (gzip, putprop); | |
4716 CODING_SYSTEM_HAS_METHOD (gzip, getprop); | |
4717 #endif | |
4718 } | |
4719 | |
4720 void | |
4721 reinit_coding_system_type_create (void) | |
4722 { | |
4723 REINITIALIZE_CODING_SYSTEM_TYPE (no_conversion); | |
4724 REINITIALIZE_CODING_SYSTEM_TYPE (convert_eol); | |
4725 REINITIALIZE_CODING_SYSTEM_TYPE (undecided); | |
4726 REINITIALIZE_CODING_SYSTEM_TYPE (chain); | |
4727 #if 0 | |
4728 REINITIALIZE_CODING_SYSTEM_TYPE (text_file_wrapper); | |
4729 #endif /* 0 */ | |
4730 #ifdef DEBUG_XEMACS | |
4731 REINITIALIZE_CODING_SYSTEM_TYPE (internal); | |
4732 #endif | |
4733 #ifdef HAVE_ZLIB | |
4734 REINITIALIZE_CODING_SYSTEM_TYPE (gzip); | |
4735 #endif | |
4736 } | |
4737 | |
4738 void | |
4739 reinit_vars_of_file_coding (void) | |
4740 { | |
428 | 4741 } |
4742 | |
4743 void | |
4744 vars_of_file_coding (void) | |
4745 { | |
771 | 4746 /* We always have file-coding support */ |
428 | 4747 Fprovide (intern ("file-coding")); |
4748 | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4749 QScoding_system_cookie = build_ascstring (";;;###coding system: "); |
1347 | 4750 staticpro (&QScoding_system_cookie); |
4751 | |
1242 | 4752 #ifdef HAVE_DEFAULT_EOL_DETECTION |
2297 | 4753 /* #### Find a more appropriate place for this comment. |
4754 WARNING: The existing categories are intimately tied to the function | |
1242 | 4755 `coding-system-category' in coding.el. If you change a category, or |
4756 change the layout of any coding system associated with a category, you | |
4757 need to check that function and make sure it's written properly. */ | |
4758 | |
4759 Fprovide (intern ("unix-default-eol-detection")); | |
4760 #endif | |
4761 | |
428 | 4762 DEFVAR_LISP ("keyboard-coding-system", &Vkeyboard_coding_system /* |
3142 | 4763 Default coding system used for TTY and X11 keyboard input. |
4764 Under X11, used only to interpet the character for a key event when that | |
4765 event has a KeySym of NoSymbol but does have an associated string keysym, | |
4766 something that's seen with input methods. | |
4767 | |
4768 If you need to set these things to different coding systems, call the | |
4769 function `set-console-tty-coding-system' for the TTY and use this variable | |
4770 for X11. | |
428 | 4771 */ ); |
4772 Vkeyboard_coding_system = Qnil; | |
4773 | |
4774 DEFVAR_LISP ("terminal-coding-system", &Vterminal_coding_system /* | |
4775 Coding system used for TTY display output. | |
4776 Not used under a windowing system. | |
4777 */ ); | |
4778 Vterminal_coding_system = Qnil; | |
4779 | |
4780 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read /* | |
440 | 4781 Overriding coding system used when reading from a file or process. |
4782 You should bind this variable with `let', but do not set it globally. | |
4783 If this is non-nil, it specifies the coding system that will be used | |
4784 to decode input on read operations, such as from a file or process. | |
4785 It overrides `buffer-file-coding-system-for-read', | |
428 | 4786 `insert-file-contents-pre-hook', etc. Use those variables instead of |
440 | 4787 this one for permanent changes to the environment. */ ); |
428 | 4788 Vcoding_system_for_read = Qnil; |
4789 | |
4790 DEFVAR_LISP ("coding-system-for-write", | |
4791 &Vcoding_system_for_write /* | |
440 | 4792 Overriding coding system used when writing to a file or process. |
4793 You should bind this variable with `let', but do not set it globally. | |
4794 If this is non-nil, it specifies the coding system that will be used | |
4795 to encode output for write operations, such as to a file or process. | |
4796 It overrides `buffer-file-coding-system', `write-region-pre-hook', etc. | |
4797 Use those variables instead of this one for permanent changes to the | |
4798 environment. */ ); | |
428 | 4799 Vcoding_system_for_write = Qnil; |
4800 | |
4801 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system /* | |
4802 Coding system used to convert pathnames when accessing files. | |
4803 */ ); | |
4804 Vfile_name_coding_system = Qnil; | |
4805 | |
4806 DEFVAR_BOOL ("enable-multibyte-characters", &enable_multibyte_characters /* | |
771 | 4807 Setting this has no effect. It is purely for FSF compatibility. |
428 | 4808 */ ); |
4809 enable_multibyte_characters = 1; | |
771 | 4810 |
4811 Vchain_canonicalize_hash_table = | |
4812 make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL); | |
4813 staticpro (&Vchain_canonicalize_hash_table); | |
4814 | |
4815 #ifdef DEBUG_XEMACS | |
4816 DEFVAR_LISP ("debug-coding-detection", &Vdebug_coding_detection /* | |
4817 If non-nil, display debug information about detection operations in progress. | |
4818 Information is displayed on stderr. | |
4819 */ ); | |
4820 Vdebug_coding_detection = Qnil; | |
4821 #endif | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4822 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4823 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4824 Vdefault_query_coding_region_chartab_cache |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4825 = make_lisp_hash_table (25, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4826 staticpro (&Vdefault_query_coding_region_chartab_cache); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4827 #endif |
428 | 4828 } |
4829 | |
2297 | 4830 /* #### reformat this for consistent appearance? */ |
4831 | |
428 | 4832 void |
4833 complex_vars_of_file_coding (void) | |
4834 { | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4835 Fmake_coding_system_internal |
771 | 4836 (Qconvert_eol_cr, Qconvert_eol, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4837 build_defer_string ("Convert CR to LF"), |
771 | 4838 nconc2 (list6 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4839 build_defer_string ( |
771 | 4840 "Converts CR (used to mark the end of a line on Macintosh systems) to LF\n" |
4841 "(used internally and under Unix to mark the end of a line)."), | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4842 Qmnemonic, build_ascstring ("CR->LF"), |
771 | 4843 Qsubtype, Qcr), |
4844 /* VERY IMPORTANT! Tell make-coding-system not to generate | |
4845 subsidiaries -- it needs the coding systems we're creating | |
4846 to do so! */ | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4847 list4 (Qeol_type, Qlf, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4848 Qsafe_charsets, Qt))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4849 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4850 Fmake_coding_system_internal |
771 | 4851 (Qconvert_eol_lf, Qconvert_eol, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4852 build_defer_string ("Convert LF to LF (do nothing)"), |
771 | 4853 nconc2 (list6 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4854 build_defer_string ( |
771 | 4855 "Do nothing."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4856 Qmnemonic, build_ascstring ("LF->LF"), |
771 | 4857 Qsubtype, Qlf), |
4858 /* VERY IMPORTANT! Tell make-coding-system not to generate | |
4859 subsidiaries -- it needs the coding systems we're creating | |
4860 to do so! */ | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4861 list4 (Qeol_type, Qlf, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4862 Qsafe_charsets, Qt))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4863 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4864 Fmake_coding_system_internal |
771 | 4865 (Qconvert_eol_crlf, Qconvert_eol, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4866 build_defer_string ("Convert CRLF to LF"), |
771 | 4867 nconc2 (list6 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4868 build_defer_string ( |
771 | 4869 "Converts CR+LF (used to mark the end of a line on Macintosh systems) to LF\n" |
4870 "(used internally and under Unix to mark the end of a line)."), | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4871 Qmnemonic, build_ascstring ("CRLF->LF"), |
771 | 4872 Qsubtype, Qcrlf), |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4873 |
771 | 4874 /* VERY IMPORTANT! Tell make-coding-system not to generate |
4875 subsidiaries -- it needs the coding systems we're creating | |
4876 to do so! */ | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4877 list4 (Qeol_type, Qlf, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4878 Qsafe_charsets, Qt))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4879 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4880 Fmake_coding_system_internal |
771 | 4881 (Qconvert_eol_autodetect, Qconvert_eol, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4882 build_defer_string ("Autodetect EOL type"), |
771 | 4883 nconc2 (list6 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4884 build_defer_string ( |
771 | 4885 "Autodetect the end-of-line type."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4886 Qmnemonic, build_ascstring ("Auto-EOL"), |
793 | 4887 Qsubtype, Qnil), |
771 | 4888 /* VERY IMPORTANT! Tell make-coding-system not to generate |
4889 subsidiaries -- it needs the coding systems we're creating | |
4890 to do so! */ | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4891 list4 (Qeol_type, Qlf, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4892 Qsafe_charsets, Qt))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4893 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4894 Fmake_coding_system_internal |
771 | 4895 (Qundecided, Qundecided, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4896 build_defer_string ("Undecided (auto-detect)"), |
771 | 4897 nconc2 (list4 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4898 build_defer_string |
771 | 4899 ("Automatically detects the correct encoding."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4900 Qmnemonic, build_ascstring ("Auto")), |
771 | 4901 list6 (Qdo_eol, Qt, Qdo_coding, Qt, |
4902 /* We do EOL detection ourselves so we don't need to be | |
4903 wrapped in an EOL detector. (It doesn't actually hurt, | |
4904 though, I don't think.) */ | |
4905 Qeol_type, Qlf))); | |
4906 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4907 Fmake_coding_system_internal |
771 | 4908 (intern ("undecided-dos"), Qundecided, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4909 build_defer_string ("Undecided (auto-detect) (CRLF)"), |
771 | 4910 nconc2 (list4 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4911 build_defer_string |
771 | 4912 ("Automatically detects the correct encoding; EOL type of CRLF forced."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4913 Qmnemonic, build_ascstring ("Auto")), |
771 | 4914 list4 (Qdo_coding, Qt, |
4915 Qeol_type, Qcrlf))); | |
4916 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4917 Fmake_coding_system_internal |
771 | 4918 (intern ("undecided-unix"), Qundecided, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4919 build_defer_string ("Undecided (auto-detect) (LF)"), |
771 | 4920 nconc2 (list4 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4921 build_defer_string |
771 | 4922 ("Automatically detects the correct encoding; EOL type of LF forced."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4923 Qmnemonic, build_ascstring ("Auto")), |
771 | 4924 list4 (Qdo_coding, Qt, |
4925 Qeol_type, Qlf))); | |
4926 | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4927 Fmake_coding_system_internal |
771 | 4928 (intern ("undecided-mac"), Qundecided, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4929 build_defer_string ("Undecided (auto-detect) (CR)"), |
771 | 4930 nconc2 (list4 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4931 build_defer_string |
771 | 4932 ("Automatically detects the correct encoding; EOL type of CR forced."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4933 Qmnemonic, build_ascstring ("Auto")), |
771 | 4934 list4 (Qdo_coding, Qt, |
4935 Qeol_type, Qcr))); | |
4936 | |
428 | 4937 /* Need to create this here or we're really screwed. */ |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4938 Fmake_coding_system_internal |
428 | 4939 (Qraw_text, Qno_conversion, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4940 build_defer_string ("Raw Text"), |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4941 nconc2 (list4 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4942 build_defer_string ("Raw text converts only line-break " |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4943 "codes, and acts otherwise like " |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4944 "`binary'."), |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4945 Qmnemonic, build_ascstring ("Raw")), |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4946 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4947 list2 (Qsafe_charsets, list3 (Vcharset_ascii, Vcharset_control_1, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4948 Vcharset_latin_iso8859_1)))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4949 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4950 #else |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4951 Qnil)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4952 #endif |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4953 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4954 Fmake_coding_system_internal |
428 | 4955 (Qbinary, Qno_conversion, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4956 build_defer_string ("Binary"), |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4957 nconc2 (list6 (Qdocumentation, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4958 build_defer_string ( |
771 | 4959 "This coding system is as close as it comes to doing no conversion.\n" |
4960 "On input, each byte is converted directly into the character\n" | |
4961 "with the corresponding code -- i.e. from the `ascii', `control-1',\n" | |
4962 "or `latin-1' character sets. On output, these characters are\n" | |
4963 "converted back to the corresponding bytes, and other characters\n" | |
4964 "are converted to the default character, i.e. `~'."), | |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4965 Qeol_type, Qlf, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4966 Qmnemonic, build_ascstring ("Binary")), |
4690
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4967 #ifdef MULE |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4968 list2 (Qsafe_charsets, list3 (Vcharset_ascii, Vcharset_control_1, |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4969 Vcharset_latin_iso8859_1)))); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4970 |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4971 #else |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4972 Qnil)); |
257b468bf2ca
Move the #'query-coding-region implementation to C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
4973 #endif |
428 | 4974 |
771 | 4975 /* Formerly aliased to raw-text! Completely bogus and not even the same |
4976 as FSF Emacs. */ | |
4977 Fdefine_coding_system_alias (Qno_conversion, Qbinary); | |
4978 Fdefine_coding_system_alias (intern ("no-conversion-unix"), | |
4979 intern ("raw-text-unix")); | |
4980 Fdefine_coding_system_alias (intern ("no-conversion-dos"), | |
4981 intern ("raw-text-dos")); | |
4982 Fdefine_coding_system_alias (intern ("no-conversion-mac"), | |
4983 intern ("raw-text-mac")); | |
4984 | |
1318 | 4985 /* These three below will get their defaults set correctly |
4986 in code-init.el. We init them now so we can handle stuff at dump | |
771 | 4987 time before we get to code-init.el. */ |
1318 | 4988 Fdefine_coding_system_alias (Qnative, Qbinary); |
440 | 4989 Fdefine_coding_system_alias (Qterminal, Qbinary); |
4990 Fdefine_coding_system_alias (Qkeyboard, Qbinary); | |
4991 | |
1318 | 4992 Fdefine_coding_system_alias (Qfile_name, Qnative); |
771 | 4993 Fdefine_coding_system_alias (Qidentity, Qconvert_eol_lf); |
4994 | |
428 | 4995 /* Need this for bootstrapping */ |
771 | 4996 coding_category_system[detector_category_no_conversion] = |
428 | 4997 Fget_coding_system (Qraw_text); |
4998 } |