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