(pc-select-selection-keys-only, pc-selection-mode): Fix spellings in docstrings.
[bpt/emacs.git] / lisp / format.el
CommitLineData
a8581027 1;;; format.el --- read and save files in multiple formats
b578f267 2
bb3bd74c 3;; Copyright (c) 1994, 1995, 1997, 1999, 2004 Free Software Foundation
029894b9 4
823139fb 5;; Author: Boris Goldowsky <boris@gnu.org>
029894b9
BG
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 2, or (at your option)
12;; any later version.
b578f267 13
029894b9
BG
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
b578f267 18
029894b9 19;; You should have received a copy of the GNU General Public License
b578f267
EN
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22;; Boston, MA 02111-1307, USA.
029894b9
BG
23
24;;; Commentary:
b578f267
EN
25
26;; This file defines a unified mechanism for saving & loading files stored
27;; in different formats. `format-alist' contains information that directs
029894b9 28;; Emacs to call an encoding or decoding function when reading or writing
823139fb 29;; files that match certain conditions.
029894b9 30;;
b578f267
EN
31;; When a file is visited, its format is determined by matching the
32;; beginning of the file against regular expressions stored in
33;; `format-alist'. If this fails, you can manually translate the buffer
34;; using `format-decode-buffer'. In either case, the formats used are
35;; listed in the variable `buffer-file-format', and become the default
36;; format for saving the buffer. To save a buffer in a different format,
37;; change this variable, or use `format-write-file'.
029894b9
BG
38;;
39;; Auto-save files are normally created in the same format as the visited
4a2255ad 40;; file, but the variable `buffer-auto-save-file-format' can be set to a
b578f267
EN
41;; particularly fast or otherwise preferred format to be used for
42;; auto-saving (or nil to do no encoding on auto-save files, but then you
43;; risk losing any text-properties in the buffer).
029894b9 44;;
b578f267
EN
45;; You can manually translate a buffer into or out of a particular format
46;; with the functions `format-encode-buffer' and `format-decode-buffer'.
47;; To translate just the region use the functions `format-encode-region'
823139fb 48;; and `format-decode-region'.
029894b9 49;;
b578f267
EN
50;; You can define a new format by writing the encoding and decoding
51;; functions, and adding an entry to `format-alist'. See enriched.el for
52;; an example of how to implement a file format. There are various
53;; functions defined in this file that may be useful for writing the
54;; encoding and decoding functions:
55;; * `format-annotate-region' and `format-deannotate-region' allow a
56;; single alist of information to be used for encoding and decoding.
57;; The alist defines a correspondence between strings in the file
58;; ("annotations") and text-properties in the buffer.
029894b9
BG
59;; * `format-replace-strings' is similarly useful for doing simple
60;; string->string translations in a reversible manner.
61
b578f267
EN
62;;; Code:
63
029894b9 64(put 'buffer-file-format 'permanent-local t)
4a2255ad 65(put 'buffer-auto-save-file-format 'permanent-local t)
029894b9 66
823139fb 67(defvar format-alist
8d0dd9d2 68 '((text/enriched "Extended MIME text/enriched format."
029894b9
BG
69 "Content-[Tt]ype:[ \t]*text/enriched"
70 enriched-decode enriched-encode t enriched-mode)
c84cf2bf 71 (plain "ISO 8859-1 standard format, no text properties."
029894b9
BG
72 ;; Plain only exists so that there is an obvious neutral choice in
73 ;; the completion list.
c84cf2bf 74 nil nil nil nil nil)
823139fb
DL
75 (ibm "IBM Code Page 850 (DOS)"
76 nil ; The original "1\\(^\\)" is obscure.
271af233 77 "recode -f ibm-pc:latin1" "recode -f latin1:ibm-pc" t nil)
823139fb
DL
78 (mac "Apple Macintosh"
79 nil
271af233 80 "recode -f mac:latin1" "recode -f latin1:mac" t nil)
823139fb
DL
81 (hp "HP Roman8"
82 nil
271af233 83 "recode -f roman8:latin1" "recode -f latin1:roman8" t nil)
823139fb
DL
84 (TeX "TeX (encoding)"
85 nil
c84cf2bf 86 iso-tex2iso iso-iso2tex t nil)
823139fb
DL
87 (gtex "German TeX (encoding)"
88 nil
c84cf2bf 89 iso-gtex2iso iso-iso2gtex t nil)
f1d6fe69 90 (html "HTML/SGML \"ISO 8879:1986//ENTITIES Added Latin 1//EN\" (encoding)"
823139fb 91 nil
f1d6fe69 92 iso-sgml2iso iso-iso2sgml t nil)
823139fb
DL
93 (rot13 "rot13"
94 nil
c84cf2bf 95 "tr a-mn-z n-za-m" "tr a-mn-z n-za-m" t nil)
823139fb
DL
96 (duden "Duden Ersatzdarstellung"
97 nil
98 "diac" iso-iso2duden t nil)
99 (de646 "German ASCII (ISO 646)"
100 nil
271af233 101 "recode -f iso646-ge:latin1" "recode -f latin1:iso646-ge" t nil)
823139fb
DL
102 (denet "net German"
103 nil
c84cf2bf 104 iso-german iso-cvt-read-only t nil)
823139fb
DL
105 (esnet "net Spanish"
106 nil
8d0dd9d2 107 iso-spanish iso-cvt-read-only t nil))
029894b9
BG
108 "List of information about understood file formats.
109Elements are of the form \(NAME DOC-STR REGEXP FROM-FN TO-FN MODIFY MODE-FN).
d1ae737b 110
029894b9 111NAME is a symbol, which is stored in `buffer-file-format'.
d1ae737b 112
029894b9
BG
113DOC-STR should be a single line providing more information about the
114 format. It is currently unused, but in the future will be shown to
115 the user if they ask for more information.
d1ae737b 116
029894b9 117REGEXP is a regular expression to match against the beginning of the file;
823139fb
DL
118 it should match only files in that format. Use nil to avoid
119 matching at all for formats for which this isn't appropriate to
120 require explicit encoding/decoding.
d1ae737b 121
823139fb 122FROM-FN is called to decode files in that format; it gets two args, BEGIN
029894b9
BG
123 and END, and can make any modifications it likes, returning the new
124 end. It must make sure that the beginning of the file no longer
125 matches REGEXP, or else it will get called again.
d1ae737b
RS
126 Alternatively, FROM-FN can be a string, which specifies a shell command
127 (including options) to be used as a filter to perform the conversion.
128
d1abb42f
RS
129TO-FN is called to encode a region into that format; it is passed three
130 arguments: BEGIN, END, and BUFFER. BUFFER is the original buffer that
131 the data being written came from, which the function could use, for
132 example, to find the values of local variables. TO-FN should either
133 return a list of annotations like `write-region-annotate-functions',
134 or modify the region and return the new end.
d1ae737b
RS
135 Alternatively, TO-FN can be a string, which specifies a shell command
136 (including options) to be used as a filter to perform the conversion.
137
d1abb42f
RS
138MODIFY, if non-nil, means the TO-FN wants to modify the region. If nil,
139 TO-FN will not make any changes but will instead return a list of
823139fb 140 annotations.
d1ae737b 141
3e224645
EZ
142MODE-FN, if specified, is called when visiting a file with that format.
143 It is called with a single positive argument, on the assumption
34f30f79
RS
144 that it turns on some Emacs mode.
145
146PRESERVE, if non-nil, means that `format-write-file' should not remove
147 this format from `buffer-file-formats'.")
029894b9
BG
148
149;;; Basic Functions (called from Lisp)
150
c84cf2bf
RS
151(defun format-encode-run-method (method from to &optional buffer)
152 "Translate using function or shell script METHOD the text from FROM to TO.
153If METHOD is a string, it is a shell command;
154otherwise, it should be a Lisp function.
155BUFFER should be the buffer that the output originally came from."
156 (if (stringp method)
823139fb 157 (let ((error-buff (get-buffer-create "*Format Errors*"))
7cc45a35 158 (coding-system-for-read 'no-conversion)
823139fb
DL
159 format-alist)
160 (with-current-buffer error-buff
161 (widen)
162 (erase-buffer))
10fa0073
GM
163 (if (and (zerop (save-window-excursion
164 (shell-command-on-region from to method t t
165 error-buff)))
823139fb
DL
166 ;; gzip gives zero exit status with bad args, for instance.
167 (zerop (with-current-buffer error-buff
168 (buffer-size))))
169 (bury-buffer error-buff)
170 (switch-to-buffer-other-window error-buff)
10fa0073 171 (error "Format encoding failed")))
c84cf2bf
RS
172 (funcall method from to buffer)))
173
174(defun format-decode-run-method (method from to &optional buffer)
175 "Decode using function or shell script METHOD the text from FROM to TO.
823139fb
DL
176If METHOD is a string, it is a shell command; otherwise, it should be
177a Lisp function. Decoding is done for the given BUFFER."
c84cf2bf 178 (if (stringp method)
823139fb 179 (let ((error-buff (get-buffer-create "*Format Errors*"))
7cc45a35 180 (coding-system-for-write 'no-conversion)
823139fb
DL
181 format-alist)
182 (with-current-buffer error-buff
183 (widen)
184 (erase-buffer))
185 ;; We should perhaps go via a temporary buffer and copy it
186 ;; back, in case of errors.
187 (if (and (zerop (save-window-excursion
188 (shell-command-on-region (point-min) (point-max)
189 method t t
190 error-buff)))
191 ;; gzip gives zero exit status with bad args, for instance.
192 (zerop (with-current-buffer error-buff
193 (buffer-size))))
194 (bury-buffer error-buff)
195 (switch-to-buffer-other-window error-buff)
196 (error "Format decoding failed"))
c84cf2bf
RS
197 (point))
198 (funcall method from to)))
199
10fa0073 200(defun format-annotate-function (format from to orig-buf format-count)
823139fb 201 "Return annotations for writing region as FORMAT.
029894b9
BG
202FORMAT is a symbol naming one of the formats defined in `format-alist',
203it must be a single symbol, not a list like `buffer-file-format'.
d1abb42f
RS
204FROM and TO delimit the region to be operated on in the current buffer.
205ORIG-BUF is the original buffer that the data came from.
10fa0073
GM
206
207FORMAT-COUNT is an integer specifying how many times this function has
208been called in the process of decoding ORIG-BUF.
209
029894b9
BG
210This function works like a function on `write-region-annotate-functions':
211it either returns a list of annotations, or returns with a different buffer
10fa0073
GM
212current, which contains the modified text to write. In the latter case,
213this function's value is nil.
029894b9
BG
214
215For most purposes, consider using `format-encode-region' instead."
10fa0073
GM
216 ;; This function is called by write-region (actually
217 ;; build_annotations) for each element of buffer-file-format.
029894b9
BG
218 (let* ((info (assq format format-alist))
219 (to-fn (nth 4 info))
220 (modify (nth 5 info)))
221 (if to-fn
222 (if modify
223 ;; To-function wants to modify region. Copy to safe place.
10fa0073 224 (let ((copy-buf (get-buffer-create (format " *Format Temp %d*"
8a2f1176
RS
225 format-count)))
226 (sel-disp selective-display)
5258c763
JB
227 (multibyte enable-multibyte-characters)
228 (coding-system buffer-file-coding-system))
8a2f1176
RS
229 (with-current-buffer copy-buf
230 (setq selective-display sel-disp)
5258c763
JB
231 (set-buffer-multibyte multibyte)
232 (setq buffer-file-coding-system coding-system))
029894b9
BG
233 (copy-to-buffer copy-buf from to)
234 (set-buffer copy-buf)
235 (format-insert-annotations write-region-annotations-so-far from)
c84cf2bf 236 (format-encode-run-method to-fn (point-min) (point-max) orig-buf)
029894b9
BG
237 nil)
238 ;; Otherwise just call function, it will return annotations.
d1abb42f 239 (funcall to-fn from to orig-buf)))))
029894b9
BG
240
241(defun format-decode (format length &optional visit-flag)
242 ;; This function is called by insert-file-contents whenever a file is read.
243 "Decode text from any known FORMAT.
823139fb 244FORMAT is a symbol appearing in `format-alist' or a list of such symbols,
029894b9
BG
245or nil, in which case this function tries to guess the format of the data by
246matching against the regular expressions in `format-alist'. After a match is
247found and the region decoded, the alist is searched again from the beginning
248for another match.
249
250Second arg LENGTH is the number of characters following point to operate on.
251If optional third arg VISIT-FLAG is true, set `buffer-file-format'
be227f22
SM
252to the reverted list of formats used, and call any mode functions defined
253for those formats.
029894b9
BG
254
255Returns the new length of the decoded region.
256
257For most purposes, consider using `format-decode-region' instead."
258 (let ((mod (buffer-modified-p))
10fa0073 259 (begin (point))
029894b9 260 (end (+ (point) length)))
10fa0073
GM
261 (unwind-protect
262 (progn
263 ;; Don't record undo information for the decoding.
71296446 264
10fa0073
GM
265 (if (null format)
266 ;; Figure out which format it is in, remember list in `format'.
267 (let ((try format-alist))
268 (while try
269 (let* ((f (car try))
270 (regexp (nth 2 f))
271 (p (point)))
272 (if (and regexp (looking-at regexp)
273 (< (match-end 0) (+ begin length)))
274 (progn
be227f22 275 (push (car f) format)
10fa0073
GM
276 ;; Decode it
277 (if (nth 3 f)
278 (setq end (format-decode-run-method (nth 3 f) begin end)))
279 ;; Call visit function if required
280 (if (and visit-flag (nth 6 f)) (funcall (nth 6 f) 1))
281 ;; Safeguard against either of the functions changing pt.
282 (goto-char p)
283 ;; Rewind list to look for another format
284 (setq try format-alist))
285 (setq try (cdr try))))))
286 ;; Deal with given format(s)
287 (or (listp format) (setq format (list format)))
288 (let ((do format) f)
289 (while do
290 (or (setq f (assq (car do) format-alist))
bb3bd74c 291 (error "Unknown format %s" (car do)))
10fa0073
GM
292 ;; Decode:
293 (if (nth 3 f)
294 (setq end (format-decode-run-method (nth 3 f) begin end)))
295 ;; Call visit function if required
296 (if (and visit-flag (nth 6 f)) (funcall (nth 6 f) 1))
be227f22
SM
297 (setq do (cdr do))))
298 ;; Encode in the opposite order.
299 (setq format (reverse format)))
10fa0073
GM
300 (if visit-flag
301 (setq buffer-file-format format)))
71296446 302
021cfbea
GM
303 (set-buffer-modified-p mod))
304
10fa0073 305 ;; Return new length of region
029894b9
BG
306 (- end begin)))
307
308;;;
309;;; Interactive functions & entry points
310;;;
311
312(defun format-decode-buffer (&optional format)
313 "Translate the buffer from some FORMAT.
314If the format is not specified, this function attempts to guess.
823139fb 315`buffer-file-format' is set to the format used, and any mode-functions
029894b9
BG
316for the format are called."
317 (interactive
318 (list (format-read "Translate buffer from format (default: guess): ")))
319 (save-excursion
320 (goto-char (point-min))
321 (format-decode format (buffer-size) t)))
322
323(defun format-decode-region (from to &optional format)
324 "Decode the region from some format.
325Arg FORMAT is optional; if omitted the format will be determined by looking
326for identifying regular expressions at the beginning of the region."
327 (interactive
823139fb 328 (list (region-beginning) (region-end)
029894b9
BG
329 (format-read "Translate region from format (default: guess): ")))
330 (save-excursion
331 (goto-char from)
332 (format-decode format (- to from) nil)))
333
334(defun format-encode-buffer (&optional format)
335 "Translate the buffer into FORMAT.
336FORMAT defaults to `buffer-file-format'. It is a symbol naming one of the
337formats defined in `format-alist', or a list of such symbols."
338 (interactive
339 (list (format-read (format "Translate buffer to format (default %s): "
340 buffer-file-format))))
341 (format-encode-region (point-min) (point-max) format))
342
343(defun format-encode-region (beg end &optional format)
823139fb 344 "Translate the region into some FORMAT.
029894b9
BG
345FORMAT defaults to `buffer-file-format', it is a symbol naming
346one of the formats defined in `format-alist', or a list of such symbols."
823139fb
DL
347 (interactive
348 (list (region-beginning) (region-end)
349 (format-read (format "Translate region to format (default %s): "
350 buffer-file-format))))
351 (if (null format) (setq format buffer-file-format))
352 (if (symbolp format) (setq format (list format)))
353 (save-excursion
354 (goto-char end)
355 (let ((cur-buf (current-buffer))
356 (end (point-marker)))
357 (while format
358 (let* ((info (assq (car format) format-alist))
359 (to-fn (nth 4 info))
360 (modify (nth 5 info))
361 result)
362 (if to-fn
363 (if modify
364 (setq end (format-encode-run-method to-fn beg end
365 (current-buffer)))
366 (format-insert-annotations
367 (funcall to-fn beg end (current-buffer)))))
368 (setq format (cdr format)))))))
029894b9 369
8c5fe07f 370(defun format-write-file (filename format &optional confirm)
823139fb 371 "Write current buffer into file FILENAME using some FORMAT.
8c5fe07f 372Make buffer visit that file and set the format as the default for future
029894b9 373saves. If the buffer is already visiting a file, you can specify a directory
8c5fe07f
LT
374name as FILENAME, to write a file of the same old name in that directory.
375
376If optional third arg CONFIRM is non-nil, this function asks for
377confirmation before overwriting an existing file. Interactively,
378confirmation is required unless you supply a prefix argument."
029894b9
BG
379 (interactive
380 ;; Same interactive spec as write-file, plus format question.
381 (let* ((file (if buffer-file-name
382 (read-file-name "Write file: "
383 nil nil nil nil)
384 (read-file-name "Write file: "
385 (cdr (assq 'default-directory
386 (buffer-local-variables)))
387 nil nil (buffer-name))))
823139fb 388 (fmt (format-read (format "Write file `%s' in format: "
029894b9 389 (file-name-nondirectory file)))))
8c5fe07f 390 (list file fmt (not current-prefix-arg))))
34f30f79
RS
391 (let ((old-formats buffer-file-format)
392 preserve-formats)
393 (dolist (fmt old-formats)
394 (let ((aelt (assq fmt format-alist)))
395 (if (nth 7 aelt)
396 (push fmt preserve-formats))))
397 (setq buffer-file-format format)
398 (dolist (fmt preserve-formats)
399 (unless (memq fmt buffer-file-format)
400 (setq buffer-file-format (append buffer-file-format (list fmt))))))
8c5fe07f 401 (write-file filename confirm))
029894b9 402
ce6af52b 403(defun format-find-file (filename format)
823139fb 404 "Find the file FILENAME using data format FORMAT.
ce6af52b
KH
405If FORMAT is nil then do not do any format conversion."
406 (interactive
407 ;; Same interactive spec as write-file, plus format question.
408 (let* ((file (read-file-name "Find file: "))
823139fb 409 (fmt (format-read (format "Read file `%s' in format: "
ce6af52b
KH
410 (file-name-nondirectory file)))))
411 (list file fmt)))
412 (let ((format-alist nil))
413 (find-file filename))
414 (if format
415 (format-decode-buffer format)))
416
417(defun format-insert-file (filename format &optional beg end)
823139fb 418 "Insert the contents of file FILENAME using data format FORMAT.
ce6af52b
KH
419If FORMAT is nil then do not do any format conversion.
420The optional third and fourth arguments BEG and END specify
421the part of the file to read.
422
423The return value is like the value of `insert-file-contents':
19e580b4 424a list (ABSOLUTE-FILE-NAME SIZE)."
ce6af52b
KH
425 (interactive
426 ;; Same interactive spec as write-file, plus format question.
427 (let* ((file (read-file-name "Find file: "))
823139fb 428 (fmt (format-read (format "Read file `%s' in format: "
ce6af52b
KH
429 (file-name-nondirectory file)))))
430 (list file fmt)))
431 (let (value size)
432 (let ((format-alist nil))
433 (setq value (insert-file-contents filename nil beg end))
434 (setq size (nth 1 value)))
435 (if format
c84cf2bf 436 (setq size (format-decode format size)
19e580b4 437 value (list (car value) size)))
ce6af52b
KH
438 value))
439
029894b9
BG
440(defun format-read (&optional prompt)
441 "Read and return the name of a format.
442Return value is a list, like `buffer-file-format'; it may be nil.
443Formats are defined in `format-alist'. Optional arg is the PROMPT to use."
444 (let* ((table (mapcar (lambda (x) (list (symbol-name (car x))))
445 format-alist))
446 (ans (completing-read (or prompt "Format: ") table nil t)))
447 (if (not (equal "" ans)) (list (intern ans)))))
448
449
450;;;
451;;; Below are some functions that may be useful in writing encoding and
452;;; decoding functions for use in format-alist.
453;;;
454
455(defun format-replace-strings (alist &optional reverse beg end)
456 "Do multiple replacements on the buffer.
d0fc7e3b 457ALIST is a list of (FROM . TO) pairs, which should be proper arguments to
029894b9 458`search-forward' and `replace-match' respectively.
d0fc7e3b 459Optional 2nd arg REVERSE, if non-nil, means the pairs are (TO . FROM), so that
029894b9 460you can use the same list in both directions if it contains only literal
823139fb
DL
461strings.
462Optional args BEG and END specify a region of the buffer on which to operate."
029894b9
BG
463 (save-excursion
464 (save-restriction
465 (or beg (setq beg (point-min)))
466 (if end (narrow-to-region (point-min) end))
467 (while alist
468 (let ((from (if reverse (cdr (car alist)) (car (car alist))))
2c3ac81d 469 (to (if reverse (car (car alist)) (cdr (car alist)))))
029894b9
BG
470 (goto-char beg)
471 (while (search-forward from nil t)
472 (goto-char (match-beginning 0))
473 (insert to)
474 (set-text-properties (- (point) (length to)) (point)
475 (text-properties-at (point)))
476 (delete-region (point) (+ (point) (- (match-end 0)
477 (match-beginning 0)))))
478 (setq alist (cdr alist)))))))
479
480;;; Some list-manipulation functions that we need.
481
482(defun format-delq-cons (cons list)
823139fb
DL
483 "Remove the given CONS from LIST by side effect and return the new LIST.
484Since CONS could be the first element of LIST, write
485`\(setq foo \(format-delq-cons element foo))' to be sure of changing
486the value of `foo'."
029894b9
BG
487 (if (eq cons list)
488 (cdr list)
489 (let ((p list))
490 (while (not (eq (cdr p) cons))
e8af40ee 491 (if (null p) (error "format-delq-cons: not an element"))
029894b9
BG
492 (setq p (cdr p)))
493 ;; Now (cdr p) is the cons to delete
494 (setcdr p (cdr cons))
495 list)))
71296446 496
029894b9
BG
497(defun format-make-relatively-unique (a b)
498 "Delete common elements of lists A and B, return as pair.
499Compares using `equal'."
500 (let* ((acopy (copy-sequence a))
501 (bcopy (copy-sequence b))
502 (tail acopy))
503 (while tail
504 (let ((dup (member (car tail) bcopy))
505 (next (cdr tail)))
506 (if dup (setq acopy (format-delq-cons tail acopy)
507 bcopy (format-delq-cons dup bcopy)))
508 (setq tail next)))
509 (cons acopy bcopy)))
510
511(defun format-common-tail (a b)
512 "Given two lists that have a common tail, return it.
513Compares with `equal', and returns the part of A that is equal to the
514equivalent part of B. If even the last items of the two are not equal,
515returns nil."
516 (let ((la (length a))
517 (lb (length b)))
518 ;; Make sure they are the same length
823139fb 519 (if (> la lb)
029894b9
BG
520 (setq a (nthcdr (- la lb) a))
521 (setq b (nthcdr (- lb la) b))))
522 (while (not (equal a b))
523 (setq a (cdr a)
524 b (cdr b)))
525 a)
526
f0a6c717
GM
527(defun format-proper-list-p (list)
528 "Return t if LIST is a proper list.
529A proper list is a list ending with a nil cdr, not with an atom "
530 (when (listp list)
531 (while (consp list)
532 (setq list (cdr list)))
533 (null list)))
534
029894b9
BG
535(defun format-reorder (items order)
536 "Arrange ITEMS to following partial ORDER.
537Elements of ITEMS equal to elements of ORDER will be rearranged to follow the
538ORDER. Unmatched items will go last."
539 (if order
540 (let ((item (member (car order) items)))
541 (if item
823139fb 542 (cons (car item)
029894b9
BG
543 (format-reorder (format-delq-cons item items)
544 (cdr order)))
545 (format-reorder items (cdr order))))
546 items))
547
548(put 'face 'format-list-valued t) ; These text-properties take values
549(put 'unknown 'format-list-valued t) ; that are lists, the elements of which
550 ; should be considered separately.
551 ; See format-deannotate-region and
552 ; format-annotate-region.
553
f3bbef87
GM
554;; This text property has list values, but they are treated atomically.
555
556(put 'display 'format-list-atomic-p t)
557
029894b9
BG
558;;;
559;;; Decoding
560;;;
561
562(defun format-deannotate-region (from to translations next-fn)
563 "Translate annotations in the region into text properties.
823139fb 564This sets text properties between FROM to TO as directed by the
029894b9
BG
565TRANSLATIONS and NEXT-FN arguments.
566
567NEXT-FN is a function that searches forward from point for an annotation.
568It should return a list of 4 elements: \(BEGIN END NAME POSITIVE). BEGIN and
569END are buffer positions bounding the annotation, NAME is the name searched
570for in TRANSLATIONS, and POSITIVE should be non-nil if this annotation marks
571the beginning of a region with some property, or nil if it ends the region.
572NEXT-FN should return nil if there are no annotations after point.
573
574The basic format of the TRANSLATIONS argument is described in the
575documentation for the `format-annotate-region' function. There are some
576additional things to keep in mind for decoding, though:
577
578When an annotation is found, the TRANSLATIONS list is searched for a
579text-property name and value that corresponds to that annotation. If the
580text-property has several annotations associated with it, it will be used only
581if the other annotations are also in effect at that point. The first match
582found whose annotations are all present is used.
583
584The text property thus determined is set to the value over the region between
585the opening and closing annotations. However, if the text-property name has a
586non-nil `format-list-valued' property, then the value will be consed onto the
587surrounding value of the property, rather than replacing that value.
588
589There are some special symbols that can be used in the \"property\" slot of
590the TRANSLATIONS list: PARAMETER and FUNCTION \(spelled in uppercase).
591Annotations listed under the pseudo-property PARAMETER are considered to be
592arguments of the immediately surrounding annotation; the text between the
593opening and closing parameter annotations is deleted from the buffer but saved
92308d3a
RS
594as a string.
595
596The surrounding annotation should be listed under the pseudo-property
597FUNCTION. Instead of inserting a text-property for this annotation,
598the function listed in the VALUE slot is called to make whatever
599changes are appropriate. It can also return a list of the form
600\(START LOC PROP VALUE) which specifies a property to put on. The
601function's first two arguments are the START and END locations, and
602the rest of the arguments are any PARAMETERs found in that region.
029894b9
BG
603
604Any annotations that are found by NEXT-FN but not defined by TRANSLATIONS
605are saved as values of the `unknown' text-property \(which is list-valued).
606The TRANSLATIONS list should usually contain an entry of the form
607 \(unknown \(nil format-annotate-value))
608to write these unknown annotations back into the file."
609 (save-excursion
610 (save-restriction
611 (narrow-to-region (point-min) to)
612 (goto-char from)
613 (let (next open-ans todo loc unknown-ans)
614 (while (setq next (funcall next-fn))
615 (let* ((loc (nth 0 next))
616 (end (nth 1 next))
617 (name (nth 2 next))
618 (positive (nth 3 next))
619 (found nil))
620
621 ;; Delete the annotation
622 (delete-region loc end)
22828206
RS
623 (cond
624 ;; Positive annotations are stacked, remembering location
be227f22 625 (positive (push `(,name ((,loc . nil))) open-ans))
22828206
RS
626 ;; It is a negative annotation:
627 ;; Close the top annotation & add its text property.
628 ;; If the file's nesting is messed up, the close might not match
629 ;; the top thing on the open-annotations stack.
630 ;; If no matching annotation is open, just ignore the close.
631 ((not (assoc name open-ans))
632 (message "Extra closing annotation (%s) in file" name))
633 ;; If one is open, but not on the top of the stack, close
634 ;; the things in between as well. Set `found' when the real
635 ;; one is closed.
636 (t
637 (while (not found)
638 (let* ((top (car open-ans)) ; first on stack: should match.
639 (top-name (car top)) ; text property name
640 (top-extents (nth 1 top)) ; property regions
641 (params (cdr (cdr top))) ; parameters
642 (aalist translations)
643 (matched nil))
644 (if (equal name top-name)
645 (setq found t)
646 (message "Improper nesting in file."))
647 ;; Look through property names in TRANSLATIONS
648 (while aalist
649 (let ((prop (car (car aalist)))
650 (alist (cdr (car aalist))))
651 ;; And look through values for each property
652 (while alist
653 (let ((value (car (car alist)))
654 (ans (cdr (car alist))))
655 (if (member top-name ans)
656 ;; This annotation is listed, but still have to
657 ;; check if multiple annotations are satisfied
658 (if (member nil (mapcar (lambda (r)
659 (assoc r open-ans))
660 ans))
661 nil ; multiple ans not satisfied
662 ;; If there are multiple annotations going
663 ;; into one text property, split up the other
664 ;; annotations so they apply individually to
665 ;; the other regions.
666 (setcdr (car top-extents) loc)
667 (let ((to-split ans) this-one extents)
668 (while to-split
669 (setq this-one
670 (assoc (car to-split) open-ans)
671 extents (nth 1 this-one))
672 (if (not (eq this-one top))
673 (setcar (cdr this-one)
674 (format-subtract-regions
675 extents top-extents)))
676 (setq to-split (cdr to-split))))
677 ;; Set loop variables to nil so loop
678 ;; will exit.
679 (setq alist nil aalist nil matched t
680 ;; pop annotation off stack.
681 open-ans (cdr open-ans))
682 (let ((extents top-extents)
683 (start (car (car top-extents)))
684 (loc (cdr (car top-extents))))
685 (while extents
686 (cond
687 ;; Check for pseudo-properties
688 ((eq prop 'PARAMETER)
689 ;; A parameter of the top open ann:
690 ;; delete text and use as arg.
691 (if open-ans
692 ;; (If nothing open, discard).
693 (setq open-ans
694 (cons
695 (append (car open-ans)
696 (list
697 (buffer-substring
698 start loc)))
699 (cdr open-ans))))
700 (delete-region start loc))
701 ((eq prop 'FUNCTION)
702 ;; Not a property, but a function.
703 (let ((rtn
704 (apply value start loc params)))
be227f22 705 (if rtn (push rtn todo))))
22828206
RS
706 (t
707 ;; Normal property/value pair
708 (setq todo
709 (cons (list start loc prop value)
710 todo))))
711 (setq extents (cdr extents)
712 start (car (car extents))
713 loc (cdr (car extents))))))))
714 (setq alist (cdr alist))))
715 (setq aalist (cdr aalist)))
716 (if (not matched)
029894b9
BG
717 ;; Didn't find any match for the annotation:
718 ;; Store as value of text-property `unknown'.
22828206
RS
719 (let ((extents top-extents)
720 (start (car (car top-extents)))
0b140219 721 (loc (or (cdr (car top-extents)) loc)))
22828206
RS
722 (while extents
723 (setq open-ans (cdr open-ans)
724 todo (cons (list start loc 'unknown top-name)
725 todo)
726 unknown-ans (cons name unknown-ans)
727 extents (cdr extents)
728 start (car (car extents))
729 loc (cdr (car extents))))))))))))
029894b9
BG
730
731 ;; Once entire file has been scanned, add the properties.
732 (while todo
733 (let* ((item (car todo))
734 (from (nth 0 item))
735 (to (nth 1 item))
736 (prop (nth 2 item))
737 (val (nth 3 item)))
22828206
RS
738
739 (if (numberp val) ; add to ambient value if numeric
740 (format-property-increment-region from to prop val 0)
741 (put-text-property
029894b9 742 from to prop
22828206 743 (cond ((get prop 'format-list-valued) ; value gets consed onto
029894b9
BG
744 ; list-valued properties
745 (let ((prev (get-text-property from prop)))
746 (cons val (if (listp prev) prev (list prev)))))
22828206 747 (t val))))) ; normally, just set to val.
029894b9 748 (setq todo (cdr todo)))
22828206 749
029894b9
BG
750 (if unknown-ans
751 (message "Unknown annotations: %s" unknown-ans))))))
752
22828206 753(defun format-subtract-regions (minu subtra)
9c3054da 754 "Remove from the regions in MINUEND the regions in SUBTRAHEND.
d0fc7e3b 755A region is a dotted pair (FROM . TO). Both parameters are lists of
823139fb
DL
756regions. Each list must contain nonoverlapping, noncontiguous
757regions, in descending order. The result is also nonoverlapping,
758noncontiguous, and in descending order. The first element of MINUEND
759can have a cdr of nil, indicating that the end of that region is not
9c3054da
JB
760yet known.
761
762\(fn MINUEND SUBTRAHEND)"
22828206
RS
763 (let* ((minuend (copy-alist minu))
764 (subtrahend (copy-alist subtra))
765 (m (car minuend))
766 (s (car subtrahend))
767 results)
768 (while (and minuend subtrahend)
823139fb 769 (cond
22828206
RS
770 ;; The minuend starts after the subtrahend ends; keep it.
771 ((> (car m) (cdr s))
be227f22
SM
772 (push m results)
773 (setq minuend (cdr minuend)
22828206
RS
774 m (car minuend)))
775 ;; The minuend extends beyond the end of the subtrahend. Chop it off.
776 ((or (null (cdr m)) (> (cdr m) (cdr s)))
be227f22 777 (push (cons (1+ (cdr s)) (cdr m)) results)
22828206
RS
778 (setcdr m (cdr s)))
779 ;; The subtrahend starts after the minuend ends; throw it away.
780 ((< (cdr m) (car s))
781 (setq subtrahend (cdr subtrahend) s (car subtrahend)))
782 ;; The subtrahend extends beyond the end of the minuend. Chop it off.
783 (t ;(<= (cdr m) (cdr s)))
784 (if (>= (car m) (car s))
785 (setq minuend (cdr minuend) m (car minuend))
786 (setcdr m (1- (car s)))
787 (setq subtrahend (cdr subtrahend) s (car subtrahend))))))
788 (nconc (nreverse results) minuend)))
789
790;; This should probably go somewhere other than format.el. Then again,
791;; indent.el has alter-text-property. NOTE: We can also use
792;; next-single-property-change instead of text-property-not-all, but then
793;; we have to see if we passed TO.
794(defun format-property-increment-region (from to prop delta default)
823139fb
DL
795 "Over the region between FROM and TO increment property PROP by amount DELTA.
796DELTA may be negative. If property PROP is nil anywhere
22828206
RS
797in the region, it is treated as though it were DEFAULT."
798 (let ((cur from) val newval next)
799 (while cur
800 (setq val (get-text-property cur prop)
801 newval (+ (or val default) delta)
802 next (text-property-not-all cur to prop val))
803 (put-text-property cur (or next to) prop newval)
804 (setq cur next))))
805
029894b9
BG
806;;;
807;;; Encoding
808;;;
809
810(defun format-insert-annotations (list &optional offset)
811 "Apply list of annotations to buffer as `write-region' would.
812Inserts each element of the given LIST of buffer annotations at its
813appropriate place. Use second arg OFFSET if the annotations' locations are
814not relative to the beginning of the buffer: annotations will be inserted
9c3054da
JB
815at their location-OFFSET+1 \(ie, the offset is treated as the position of
816the first character in the buffer)."
823139fb 817 (if (not offset)
029894b9
BG
818 (setq offset 0)
819 (setq offset (1- offset)))
820 (let ((l (reverse list)))
821 (while l
822 (goto-char (- (car (car l)) offset))
823 (insert (cdr (car l)))
824 (setq l (cdr l)))))
825
826(defun format-annotate-value (old new)
0b1ce6ba 827 "Return OLD and NEW as a \(CLOSE . OPEN) annotation pair.
029894b9
BG
828Useful as a default function for TRANSLATIONS alist when the value of the text
829property is the name of the annotation that you want to use, as it is for the
830`unknown' text property."
831 (cons (if old (list old))
832 (if new (list new))))
833
823139fb 834(defun format-annotate-region (from to translations format-fn ignore)
029894b9
BG
835 "Generate annotations for text properties in the region.
836Searches for changes between FROM and TO, and describes them with a list of
837annotations as defined by alist TRANSLATIONS and FORMAT-FN. IGNORE lists text
838properties not to consider; any text properties that are neither ignored nor
839listed in TRANSLATIONS are warned about.
840If you actually want to modify the region, give the return value of this
841function to `format-insert-annotations'.
842
843Format of the TRANSLATIONS argument:
844
845Each element is a list whose car is a PROPERTY, and the following
d0fc7e3b
RS
846elements have the form (VALUE ANNOTATIONS...).
847Whenever the property takes on the value VALUE, the annotations
029894b9
BG
848\(as formatted by FORMAT-FN) are inserted into the file.
849When the property stops having that value, the matching negated annotation
850will be inserted \(it may actually be closed earlier and reopened, if
823139fb 851necessary, to keep proper nesting).
029894b9 852
d0fc7e3b 853If VALUE is a list, then each element of the list is dealt with
029894b9
BG
854separately.
855
856If a VALUE is numeric, then it is assumed that there is a single annotation
857and each occurrence of it increments the value of the property by that number.
858Thus, given the entry \(left-margin \(4 \"indent\")), if the left margin
859changes from 4 to 12, two <indent> annotations will be generated.
860
861If the VALUE is nil, then instead of annotations, a function should be
862specified. This function is used as a default: it is called for all
863transitions not explicitly listed in the table. The function is called with
864two arguments, the OLD and NEW values of the property. It should return
d0fc7e3b 865a cons cell (CLOSE . OPEN) as `format-annotate-single-property-change' does.
029894b9 866
d0fc7e3b 867The same TRANSLATIONS structure can be used in reverse for reading files."
029894b9
BG
868 (let ((all-ans nil) ; All annotations - becomes return value
869 (open-ans nil) ; Annotations not yet closed
870 (loc nil) ; Current location
871 (not-found nil)) ; Properties that couldn't be saved
872 (while (or (null loc)
873 (and (setq loc (next-property-change loc nil to))
874 (< loc to)))
875 (or loc (setq loc from))
823139fb 876 (let* ((ans (format-annotate-location loc (= loc from) ignore translations))
029894b9
BG
877 (neg-ans (format-reorder (aref ans 0) open-ans))
878 (pos-ans (aref ans 1))
879 (ignored (aref ans 2)))
880 (setq not-found (append ignored not-found)
881 ignore (append ignored ignore))
882 ;; First do the negative (closing) annotations
883 (while neg-ans
884 ;; Check if it's missing. This can happen (eg, a numeric property
885 ;; going negative can generate closing annotations before there are
886 ;; any open). Warn user & ignore.
887 (if (not (member (car neg-ans) open-ans))
888 (message "Can't close %s: not open." (car neg-ans))
889 (while (not (equal (car neg-ans) (car open-ans)))
890 ;; To close anno. N, need to first close ans 1 to N-1,
891 ;; remembering to re-open them later.
be227f22 892 (push (car open-ans) pos-ans)
823139fb 893 (setq all-ans
029894b9
BG
894 (cons (cons loc (funcall format-fn (car open-ans) nil))
895 all-ans))
896 (setq open-ans (cdr open-ans)))
897 ;; Now remove the one we're really interested in from open list.
898 (setq open-ans (cdr open-ans))
899 ;; And put the closing annotation here.
be227f22
SM
900 (push (cons loc (funcall format-fn (car neg-ans) nil))
901 all-ans))
029894b9
BG
902 (setq neg-ans (cdr neg-ans)))
903 ;; Now deal with positive (opening) annotations
904 (let ((p pos-ans))
905 (while pos-ans
be227f22
SM
906 (push (car pos-ans) open-ans)
907 (push (cons loc (funcall format-fn (car pos-ans) t))
908 all-ans)
029894b9
BG
909 (setq pos-ans (cdr pos-ans))))))
910
911 ;; Close any annotations still open
912 (while open-ans
823139fb 913 (setq all-ans
029894b9
BG
914 (cons (cons to (funcall format-fn (car open-ans) nil))
915 all-ans))
916 (setq open-ans (cdr open-ans)))
917 (if not-found
918 (message "These text properties could not be saved:\n %s"
919 not-found))
920 (nreverse all-ans)))
921
922;;; Internal functions for format-annotate-region.
923
823139fb
DL
924(defun format-annotate-location (loc all ignore translations)
925 "Return annotation(s) needed at location LOC.
9c3054da 926This includes any properties that change between LOC - 1 and LOC.
029894b9
BG
927If ALL is true, don't look at previous location, but generate annotations for
928all non-nil properties.
929Third argument IGNORE is a list of text-properties not to consider.
d0fc7e3b 930Use the TRANSLATIONS alist (see `format-annotate-region' for doc).
029894b9
BG
931
932Return value is a vector of 3 elements:
d0fc7e3b
RS
9331. List of annotations to close
9342. List of annotations to open.
9353. List of properties that were ignored or couldn't be annotated.
936
937The annotations in lists 1 and 2 need not be strings.
938They can be whatever the FORMAT-FN in `format-annotate-region'
939can handle. If that is `enriched-make-annotation', they can be
940either strings, or lists of the form (PARAMETER VALUE)."
029894b9
BG
941 (let* ((prev-loc (1- loc))
942 (before-plist (if all nil (text-properties-at prev-loc)))
943 (after-plist (text-properties-at loc))
944 p negatives positives prop props not-found)
945 ;; make list of all property names involved
946 (setq p before-plist)
947 (while p
948 (if (not (memq (car p) props))
be227f22 949 (push (car p) props))
029894b9
BG
950 (setq p (cdr (cdr p))))
951 (setq p after-plist)
952 (while p
953 (if (not (memq (car p) props))
be227f22 954 (push (car p) props))
029894b9
BG
955 (setq p (cdr (cdr p))))
956
957 (while props
be227f22 958 (setq prop (pop props))
029894b9
BG
959 (if (memq prop ignore)
960 nil ; If it's been ignored before, ignore it now.
961 (let ((before (if all nil (car (cdr (memq prop before-plist)))))
962 (after (car (cdr (memq prop after-plist)))))
963 (if (equal before after)
964 nil ; no change; ignore
965 (let ((result (format-annotate-single-property-change
823139fb 966 prop before after translations)))
029894b9 967 (if (not result)
be227f22 968 (push prop not-found)
029894b9
BG
969 (setq negatives (nconc negatives (car result))
970 positives (nconc positives (cdr result)))))))))
971 (vector negatives positives not-found)))
972
d0fc7e3b 973(defun format-annotate-single-property-change (prop old new translations)
823139fb 974 "Return annotations for property PROP changing from OLD to NEW.
d0fc7e3b
RS
975These are searched for in the translations alist TRANSLATIONS
976 (see `format-annotate-region' for the format).
029894b9
BG
977If NEW does not appear in the list, but there is a default function, then that
978function is called.
d0fc7e3b
RS
979Returns a cons of the form (CLOSE . OPEN)
980where CLOSE is a list of annotations to close
981and OPEN is a list of annotations to open.
982
983The annotations in CLOSE and OPEN need not be strings.
984They can be whatever the FORMAT-FN in `format-annotate-region'
985can handle. If that is `enriched-make-annotation', they can be
986either strings, or lists of the form (PARAMETER VALUE)."
987
988 (let ((prop-alist (cdr (assoc prop translations)))
029894b9
BG
989 default)
990 (if (not prop-alist)
991 nil
029894b9 992 ;; If either old or new is a list, have to treat both that way.
f0a6c717 993 (if (and (or (listp old) (listp new))
f3bbef87 994 (not (get prop 'format-list-atomic-p)))
f0a6c717
GM
995 (if (or (not (format-proper-list-p old))
996 (not (format-proper-list-p new)))
997 (format-annotate-atomic-property-change prop-alist old new)
998 (let* ((old (if (listp old) old (list old)))
999 (new (if (listp new) new (list new)))
1000 (tail (format-common-tail old new))
1001 close open)
1002 (while old
1003 (setq close
1004 (append (car (format-annotate-atomic-property-change
1005 prop-alist (car old) nil))
1006 close)
1007 old (cdr old)))
1008 (while new
1009 (setq open
1010 (append (cdr (format-annotate-atomic-property-change
1011 prop-alist nil (car new)))
1012 open)
1013 new (cdr new)))
1014 (format-make-relatively-unique close open)))
029894b9
BG
1015 (format-annotate-atomic-property-change prop-alist old new)))))
1016
1017(defun format-annotate-atomic-property-change (prop-alist old new)
1018 "Internal function annotate a single property change.
d0fc7e3b 1019PROP-ALIST is the relevant element of a TRANSLATIONS list.
029894b9 1020OLD and NEW are the values."
e5a60108
RS
1021 (let (num-ann)
1022 ;; If old and new values are numbers,
1023 ;; look for a number in PROP-ALIST.
5f525595
RS
1024 (if (and (or (null old) (numberp old))
1025 (or (null new) (numberp new)))
e5a60108
RS
1026 (progn
1027 (setq num-ann prop-alist)
1028 (while (and num-ann (not (numberp (car (car num-ann)))))
1029 (setq num-ann (cdr num-ann)))))
1030 (if num-ann
5f525595 1031 ;; Numerical annotation - use difference
34fbecde
RS
1032 (progn
1033 ;; If property is numeric, nil means 0
1034 (cond ((and (numberp old) (null new))
1035 (setq new 0))
1036 ((and (numberp new) (null old))
1037 (setq old 0)))
1038
1039 (let* ((entry (car num-ann))
1040 (increment (car entry))
1041 (n (ceiling (/ (float (- new old)) (float increment))))
1042 (anno (car (cdr entry))))
1043 (if (> n 0)
1044 (cons nil (make-list n anno))
1045 (cons (make-list (- n) anno) nil))))
e5a60108
RS
1046
1047 ;; Standard annotation
1048 (let ((close (and old (cdr (assoc old prop-alist))))
029894b9
BG
1049 (open (and new (cdr (assoc new prop-alist)))))
1050 (if (or close open)
1051 (format-make-relatively-unique close open)
1052 ;; Call "Default" function, if any
1053 (let ((default (assq nil prop-alist)))
1054 (if default
1055 (funcall (car (cdr default)) old new))))))))
1056
c84cf2bf 1057(provide 'format)
823139fb 1058
ab5796a9 1059;;; arch-tag: c387e9c7-a93d-47bf-89bc-8ca67e96755a
823139fb 1060;;; format.el ends here