1 ;;; format.el --- read and save files in multiple formats
3 ;; Copyright (c) 1994, 1995, 1997, 1999 Free Software Foundation
5 ;; Author: Boris Goldowsky <boris@gnu.org>
7 ;; This file is part of GNU Emacs.
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)
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.
19 ;; You should have received a copy of the GNU General Public License
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.
26 ;; This file defines a unified mechanism for saving & loading files stored
27 ;; in different formats. `format-alist' contains information that directs
28 ;; Emacs to call an encoding or decoding function when reading or writing
29 ;; files that match certain conditions.
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'.
39 ;; Auto-save files are normally created in the same format as the visited
40 ;; file, but the variable `auto-save-file-format' can be set to a
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).
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'
48 ;; and `format-decode-region'.
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.
59 ;; * `format-replace-strings' is similarly useful for doing simple
60 ;; string->string translations in a reversible manner.
64 (put 'buffer-file-format
'permanent-local t
)
67 '((text/enriched
"Extended MIME text/enriched format."
68 "Content-[Tt]ype:[ \t]*text/enriched"
69 enriched-decode enriched-encode t enriched-mode
)
70 (plain "ISO 8859-1 standard format, no text properties."
71 ;; Plain only exists so that there is an obvious neutral choice in
72 ;; the completion list.
74 (ibm "IBM Code Page 850 (DOS)"
75 nil
; The original "1\\(^\\)" is obscure.
76 "recode -f ibm-pc:latin1" "recode -f latin1:ibm-pc" t nil
)
77 (mac "Apple Macintosh"
79 "recode -f mac:latin1" "recode -f latin1:mac" t nil
)
82 "recode -f roman8:latin1" "recode -f latin1:roman8" t nil
)
85 iso-tex2iso iso-iso2tex t nil
)
86 (gtex "German TeX (encoding)"
88 iso-gtex2iso iso-iso2gtex t nil
)
89 (html "HTML/SGML \"ISO 8879:1986//ENTITIES Added Latin 1//EN\" (encoding)"
91 iso-sgml2iso iso-iso2sgml t nil
)
94 "tr a-mn-z n-za-m" "tr a-mn-z n-za-m" t nil
)
95 (duden "Duden Ersatzdarstellung"
97 "diac" iso-iso2duden t nil
)
98 (de646 "German ASCII (ISO 646)"
100 "recode -f iso646-ge:latin1" "recode -f latin1:iso646-ge" t nil
)
103 iso-german iso-cvt-read-only t nil
)
106 iso-spanish iso-cvt-read-only t nil
))
107 "List of information about understood file formats.
108 Elements are of the form \(NAME DOC-STR REGEXP FROM-FN TO-FN MODIFY MODE-FN).
110 NAME is a symbol, which is stored in `buffer-file-format'.
112 DOC-STR should be a single line providing more information about the
113 format. It is currently unused, but in the future will be shown to
114 the user if they ask for more information.
116 REGEXP is a regular expression to match against the beginning of the file;
117 it should match only files in that format. Use nil to avoid
118 matching at all for formats for which this isn't appropriate to
119 require explicit encoding/decoding.
121 FROM-FN is called to decode files in that format; it gets two args, BEGIN
122 and END, and can make any modifications it likes, returning the new
123 end. It must make sure that the beginning of the file no longer
124 matches REGEXP, or else it will get called again.
125 Alternatively, FROM-FN can be a string, which specifies a shell command
126 (including options) to be used as a filter to perform the conversion.
128 TO-FN is called to encode a region into that format; it is passed three
129 arguments: BEGIN, END, and BUFFER. BUFFER is the original buffer that
130 the data being written came from, which the function could use, for
131 example, to find the values of local variables. TO-FN should either
132 return a list of annotations like `write-region-annotate-functions',
133 or modify the region and return the new end.
134 Alternatively, TO-FN can be a string, which specifies a shell command
135 (including options) to be used as a filter to perform the conversion.
137 MODIFY, if non-nil, means the TO-FN wants to modify the region. If nil,
138 TO-FN will not make any changes but will instead return a list of
141 MODE-FN, if specified, is called when visiting a file with that format.
142 It is called with a single positive argument, on the assumption
143 that it turns on some Emacs mode.
145 PRESERVE, if non-nil, means that `format-write-file' should not remove
146 this format from `buffer-file-formats'.")
148 ;;; Basic Functions (called from Lisp)
150 (defun format-encode-run-method (method from to
&optional buffer
)
151 "Translate using function or shell script METHOD the text from FROM to TO.
152 If METHOD is a string, it is a shell command;
153 otherwise, it should be a Lisp function.
154 BUFFER should be the buffer that the output originally came from."
156 (let ((error-buff (get-buffer-create "*Format Errors*"))
157 (coding-system-for-read 'no-conversion
)
159 (with-current-buffer error-buff
162 (if (and (zerop (save-window-excursion
163 (shell-command-on-region from to method t t
165 ;; gzip gives zero exit status with bad args, for instance.
166 (zerop (with-current-buffer error-buff
168 (bury-buffer error-buff
)
169 (switch-to-buffer-other-window error-buff
)
170 (error "Format encoding failed")))
171 (funcall method from to buffer
)))
173 (defun format-decode-run-method (method from to
&optional buffer
)
174 "Decode using function or shell script METHOD the text from FROM to TO.
175 If METHOD is a string, it is a shell command; otherwise, it should be
176 a Lisp function. Decoding is done for the given BUFFER."
178 (let ((error-buff (get-buffer-create "*Format Errors*"))
179 (coding-system-for-write 'no-conversion
)
181 (with-current-buffer error-buff
184 ;; We should perhaps go via a temporary buffer and copy it
185 ;; back, in case of errors.
186 (if (and (zerop (save-window-excursion
187 (shell-command-on-region (point-min) (point-max)
190 ;; gzip gives zero exit status with bad args, for instance.
191 (zerop (with-current-buffer error-buff
193 (bury-buffer error-buff
)
194 (switch-to-buffer-other-window error-buff
)
195 (error "Format decoding failed"))
197 (funcall method from to
)))
199 (defun format-annotate-function (format from to orig-buf format-count
)
200 "Return annotations for writing region as FORMAT.
201 FORMAT is a symbol naming one of the formats defined in `format-alist',
202 it must be a single symbol, not a list like `buffer-file-format'.
203 FROM and TO delimit the region to be operated on in the current buffer.
204 ORIG-BUF is the original buffer that the data came from.
206 FORMAT-COUNT is an integer specifying how many times this function has
207 been called in the process of decoding ORIG-BUF.
209 This function works like a function on `write-region-annotate-functions':
210 it either returns a list of annotations, or returns with a different buffer
211 current, which contains the modified text to write. In the latter case,
212 this function's value is nil.
214 For most purposes, consider using `format-encode-region' instead."
215 ;; This function is called by write-region (actually
216 ;; build_annotations) for each element of buffer-file-format.
217 (let* ((info (assq format format-alist
))
219 (modify (nth 5 info
)))
222 ;; To-function wants to modify region. Copy to safe place.
223 (let ((copy-buf (get-buffer-create (format " *Format Temp %d*"
225 (copy-to-buffer copy-buf from to
)
226 (set-buffer copy-buf
)
227 (format-insert-annotations write-region-annotations-so-far from
)
228 (format-encode-run-method to-fn
(point-min) (point-max) orig-buf
)
230 ;; Otherwise just call function, it will return annotations.
231 (funcall to-fn from to orig-buf
)))))
233 (defun format-decode (format length
&optional visit-flag
)
234 ;; This function is called by insert-file-contents whenever a file is read.
235 "Decode text from any known FORMAT.
236 FORMAT is a symbol appearing in `format-alist' or a list of such symbols,
237 or nil, in which case this function tries to guess the format of the data by
238 matching against the regular expressions in `format-alist'. After a match is
239 found and the region decoded, the alist is searched again from the beginning
242 Second arg LENGTH is the number of characters following point to operate on.
243 If optional third arg VISIT-FLAG is true, set `buffer-file-format'
244 to the list of formats used, and call any mode functions defined for those
247 Returns the new length of the decoded region.
249 For most purposes, consider using `format-decode-region' instead."
250 (let ((mod (buffer-modified-p))
252 (end (+ (point) length
)))
255 ;; Don't record undo information for the decoding.
258 ;; Figure out which format it is in, remember list in `format'.
259 (let ((try format-alist
))
264 (if (and regexp
(looking-at regexp
)
265 (< (match-end 0) (+ begin length
)))
267 (setq format
(cons (car f
) format
))
270 (setq end
(format-decode-run-method (nth 3 f
) begin end
)))
271 ;; Call visit function if required
272 (if (and visit-flag
(nth 6 f
)) (funcall (nth 6 f
) 1))
273 ;; Safeguard against either of the functions changing pt.
275 ;; Rewind list to look for another format
276 (setq try format-alist
))
277 (setq try
(cdr try
))))))
278 ;; Deal with given format(s)
279 (or (listp format
) (setq format
(list format
)))
282 (or (setq f
(assq (car do
) format-alist
))
283 (error "Unknown format" (car do
)))
286 (setq end
(format-decode-run-method (nth 3 f
) begin end
)))
287 ;; Call visit function if required
288 (if (and visit-flag
(nth 6 f
)) (funcall (nth 6 f
) 1))
289 (setq do
(cdr do
)))))
291 (setq buffer-file-format format
)))
293 (set-buffer-modified-p mod
))
295 ;; Return new length of region
299 ;;; Interactive functions & entry points
302 (defun format-decode-buffer (&optional format
)
303 "Translate the buffer from some FORMAT.
304 If the format is not specified, this function attempts to guess.
305 `buffer-file-format' is set to the format used, and any mode-functions
306 for the format are called."
308 (list (format-read "Translate buffer from format (default: guess): ")))
310 (goto-char (point-min))
311 (format-decode format
(buffer-size) t
)))
313 (defun format-decode-region (from to
&optional format
)
314 "Decode the region from some format.
315 Arg FORMAT is optional; if omitted the format will be determined by looking
316 for identifying regular expressions at the beginning of the region."
318 (list (region-beginning) (region-end)
319 (format-read "Translate region from format (default: guess): ")))
322 (format-decode format
(- to from
) nil
)))
324 (defun format-encode-buffer (&optional format
)
325 "Translate the buffer into FORMAT.
326 FORMAT defaults to `buffer-file-format'. It is a symbol naming one of the
327 formats defined in `format-alist', or a list of such symbols."
329 (list (format-read (format "Translate buffer to format (default %s): "
330 buffer-file-format
))))
331 (format-encode-region (point-min) (point-max) format
))
333 (defun format-encode-region (beg end
&optional format
)
334 "Translate the region into some FORMAT.
335 FORMAT defaults to `buffer-file-format', it is a symbol naming
336 one of the formats defined in `format-alist', or a list of such symbols."
338 (list (region-beginning) (region-end)
339 (format-read (format "Translate region to format (default %s): "
340 buffer-file-format
))))
341 (if (null format
) (setq format buffer-file-format
))
342 (if (symbolp format
) (setq format
(list format
)))
345 (let ((cur-buf (current-buffer))
346 (end (point-marker)))
348 (let* ((info (assq (car format
) format-alist
))
350 (modify (nth 5 info
))
354 (setq end
(format-encode-run-method to-fn beg end
356 (format-insert-annotations
357 (funcall to-fn beg end
(current-buffer)))))
358 (setq format
(cdr format
)))))))
360 (defun format-write-file (filename format
)
361 "Write current buffer into file FILENAME using some FORMAT.
362 Makes buffer visit that file and sets the format as the default for future
363 saves. If the buffer is already visiting a file, you can specify a directory
364 name as FILENAME, to write a file of the same old name in that directory."
366 ;; Same interactive spec as write-file, plus format question.
367 (let* ((file (if buffer-file-name
368 (read-file-name "Write file: "
370 (read-file-name "Write file: "
371 (cdr (assq 'default-directory
372 (buffer-local-variables)))
373 nil nil
(buffer-name))))
374 (fmt (format-read (format "Write file `%s' in format: "
375 (file-name-nondirectory file
)))))
377 (let ((old-formats buffer-file-format
)
379 (dolist (fmt old-formats
)
380 (let ((aelt (assq fmt format-alist
)))
382 (push fmt preserve-formats
))))
383 (setq buffer-file-format format
)
384 (dolist (fmt preserve-formats
)
385 (unless (memq fmt buffer-file-format
)
386 (setq buffer-file-format
(append buffer-file-format
(list fmt
))))))
387 (write-file filename
))
389 (defun format-find-file (filename format
)
390 "Find the file FILENAME using data format FORMAT.
391 If FORMAT is nil then do not do any format conversion."
393 ;; Same interactive spec as write-file, plus format question.
394 (let* ((file (read-file-name "Find file: "))
395 (fmt (format-read (format "Read file `%s' in format: "
396 (file-name-nondirectory file
)))))
398 (let ((format-alist nil
))
399 (find-file filename
))
401 (format-decode-buffer format
)))
403 (defun format-insert-file (filename format
&optional beg end
)
404 "Insert the contents of file FILENAME using data format FORMAT.
405 If FORMAT is nil then do not do any format conversion.
406 The optional third and fourth arguments BEG and END specify
407 the part of the file to read.
409 The return value is like the value of `insert-file-contents':
410 a list (ABSOLUTE-FILE-NAME . SIZE)."
412 ;; Same interactive spec as write-file, plus format question.
413 (let* ((file (read-file-name "Find file: "))
414 (fmt (format-read (format "Read file `%s' in format: "
415 (file-name-nondirectory file
)))))
418 (let ((format-alist nil
))
419 (setq value
(insert-file-contents filename nil beg end
))
420 (setq size
(nth 1 value
)))
422 (setq size
(format-decode format size
)
423 value
(cons (car value
) size
)))
426 (defun format-read (&optional prompt
)
427 "Read and return the name of a format.
428 Return value is a list, like `buffer-file-format'; it may be nil.
429 Formats are defined in `format-alist'. Optional arg is the PROMPT to use."
430 (let* ((table (mapcar (lambda (x) (list (symbol-name (car x
))))
432 (ans (completing-read (or prompt
"Format: ") table nil t
)))
433 (if (not (equal "" ans
)) (list (intern ans
)))))
437 ;;; Below are some functions that may be useful in writing encoding and
438 ;;; decoding functions for use in format-alist.
441 (defun format-replace-strings (alist &optional reverse beg end
)
442 "Do multiple replacements on the buffer.
443 ALIST is a list of (FROM . TO) pairs, which should be proper arguments to
444 `search-forward' and `replace-match' respectively.
445 Optional 2nd arg REVERSE, if non-nil, means the pairs are (TO . FROM), so that
446 you can use the same list in both directions if it contains only literal
448 Optional args BEG and END specify a region of the buffer on which to operate."
451 (or beg
(setq beg
(point-min)))
452 (if end
(narrow-to-region (point-min) end
))
454 (let ((from (if reverse
(cdr (car alist
)) (car (car alist
))))
455 (to (if reverse
(car (car alist
)) (cdr (car alist
)))))
457 (while (search-forward from nil t
)
458 (goto-char (match-beginning 0))
460 (set-text-properties (- (point) (length to
)) (point)
461 (text-properties-at (point)))
462 (delete-region (point) (+ (point) (- (match-end 0)
463 (match-beginning 0)))))
464 (setq alist
(cdr alist
)))))))
466 ;;; Some list-manipulation functions that we need.
468 (defun format-delq-cons (cons list
)
469 "Remove the given CONS from LIST by side effect and return the new LIST.
470 Since CONS could be the first element of LIST, write
471 `\(setq foo \(format-delq-cons element foo))' to be sure of changing
476 (while (not (eq (cdr p
) cons
))
477 (if (null p
) (error "format-delq-cons: not an element"))
479 ;; Now (cdr p) is the cons to delete
480 (setcdr p
(cdr cons
))
483 (defun format-make-relatively-unique (a b
)
484 "Delete common elements of lists A and B, return as pair.
485 Compares using `equal'."
486 (let* ((acopy (copy-sequence a
))
487 (bcopy (copy-sequence b
))
490 (let ((dup (member (car tail
) bcopy
))
492 (if dup
(setq acopy
(format-delq-cons tail acopy
)
493 bcopy
(format-delq-cons dup bcopy
)))
497 (defun format-common-tail (a b
)
498 "Given two lists that have a common tail, return it.
499 Compares with `equal', and returns the part of A that is equal to the
500 equivalent part of B. If even the last items of the two are not equal,
502 (let ((la (length a
))
504 ;; Make sure they are the same length
506 (setq a
(nthcdr (- la lb
) a
))
507 (setq b
(nthcdr (- lb la
) b
))))
508 (while (not (equal a b
))
513 (defun format-proper-list-p (list)
514 "Return t if LIST is a proper list.
515 A proper list is a list ending with a nil cdr, not with an atom "
518 (setq list
(cdr list
)))
521 (defun format-reorder (items order
)
522 "Arrange ITEMS to following partial ORDER.
523 Elements of ITEMS equal to elements of ORDER will be rearranged to follow the
524 ORDER. Unmatched items will go last."
526 (let ((item (member (car order
) items
)))
529 (format-reorder (format-delq-cons item items
)
531 (format-reorder items
(cdr order
))))
534 (put 'face
'format-list-valued t
) ; These text-properties take values
535 (put 'unknown
'format-list-valued t
) ; that are lists, the elements of which
536 ; should be considered separately.
537 ; See format-deannotate-region and
538 ; format-annotate-region.
540 ;; This text property has list values, but they are treated atomically.
542 (put 'display
'format-list-atomic-p t
)
548 (defun format-deannotate-region (from to translations next-fn
)
549 "Translate annotations in the region into text properties.
550 This sets text properties between FROM to TO as directed by the
551 TRANSLATIONS and NEXT-FN arguments.
553 NEXT-FN is a function that searches forward from point for an annotation.
554 It should return a list of 4 elements: \(BEGIN END NAME POSITIVE). BEGIN and
555 END are buffer positions bounding the annotation, NAME is the name searched
556 for in TRANSLATIONS, and POSITIVE should be non-nil if this annotation marks
557 the beginning of a region with some property, or nil if it ends the region.
558 NEXT-FN should return nil if there are no annotations after point.
560 The basic format of the TRANSLATIONS argument is described in the
561 documentation for the `format-annotate-region' function. There are some
562 additional things to keep in mind for decoding, though:
564 When an annotation is found, the TRANSLATIONS list is searched for a
565 text-property name and value that corresponds to that annotation. If the
566 text-property has several annotations associated with it, it will be used only
567 if the other annotations are also in effect at that point. The first match
568 found whose annotations are all present is used.
570 The text property thus determined is set to the value over the region between
571 the opening and closing annotations. However, if the text-property name has a
572 non-nil `format-list-valued' property, then the value will be consed onto the
573 surrounding value of the property, rather than replacing that value.
575 There are some special symbols that can be used in the \"property\" slot of
576 the TRANSLATIONS list: PARAMETER and FUNCTION \(spelled in uppercase).
577 Annotations listed under the pseudo-property PARAMETER are considered to be
578 arguments of the immediately surrounding annotation; the text between the
579 opening and closing parameter annotations is deleted from the buffer but saved
582 The surrounding annotation should be listed under the pseudo-property
583 FUNCTION. Instead of inserting a text-property for this annotation,
584 the function listed in the VALUE slot is called to make whatever
585 changes are appropriate. It can also return a list of the form
586 \(START LOC PROP VALUE) which specifies a property to put on. The
587 function's first two arguments are the START and END locations, and
588 the rest of the arguments are any PARAMETERs found in that region.
590 Any annotations that are found by NEXT-FN but not defined by TRANSLATIONS
591 are saved as values of the `unknown' text-property \(which is list-valued).
592 The TRANSLATIONS list should usually contain an entry of the form
593 \(unknown \(nil format-annotate-value))
594 to write these unknown annotations back into the file."
597 (narrow-to-region (point-min) to
)
599 (let (next open-ans todo loc unknown-ans
)
600 (while (setq next
(funcall next-fn
))
601 (let* ((loc (nth 0 next
))
604 (positive (nth 3 next
))
607 ;; Delete the annotation
608 (delete-region loc end
)
610 ;; Positive annotations are stacked, remembering location
611 (positive (setq open-ans
(cons `(,name
((,loc . nil
))) open-ans
)))
612 ;; It is a negative annotation:
613 ;; Close the top annotation & add its text property.
614 ;; If the file's nesting is messed up, the close might not match
615 ;; the top thing on the open-annotations stack.
616 ;; If no matching annotation is open, just ignore the close.
617 ((not (assoc name open-ans
))
618 (message "Extra closing annotation (%s) in file" name
))
619 ;; If one is open, but not on the top of the stack, close
620 ;; the things in between as well. Set `found' when the real
624 (let* ((top (car open-ans
)) ; first on stack: should match.
625 (top-name (car top
)) ; text property name
626 (top-extents (nth 1 top
)) ; property regions
627 (params (cdr (cdr top
))) ; parameters
628 (aalist translations
)
630 (if (equal name top-name
)
632 (message "Improper nesting in file."))
633 ;; Look through property names in TRANSLATIONS
635 (let ((prop (car (car aalist
)))
636 (alist (cdr (car aalist
))))
637 ;; And look through values for each property
639 (let ((value (car (car alist
)))
640 (ans (cdr (car alist
))))
641 (if (member top-name ans
)
642 ;; This annotation is listed, but still have to
643 ;; check if multiple annotations are satisfied
644 (if (member nil
(mapcar (lambda (r)
647 nil
; multiple ans not satisfied
648 ;; If there are multiple annotations going
649 ;; into one text property, split up the other
650 ;; annotations so they apply individually to
651 ;; the other regions.
652 (setcdr (car top-extents
) loc
)
653 (let ((to-split ans
) this-one extents
)
656 (assoc (car to-split
) open-ans
)
657 extents
(nth 1 this-one
))
658 (if (not (eq this-one top
))
659 (setcar (cdr this-one
)
660 (format-subtract-regions
661 extents top-extents
)))
662 (setq to-split
(cdr to-split
))))
663 ;; Set loop variables to nil so loop
665 (setq alist nil aalist nil matched t
666 ;; pop annotation off stack.
667 open-ans
(cdr open-ans
))
668 (let ((extents top-extents
)
669 (start (car (car top-extents
)))
670 (loc (cdr (car top-extents
))))
673 ;; Check for pseudo-properties
674 ((eq prop
'PARAMETER
)
675 ;; A parameter of the top open ann:
676 ;; delete text and use as arg.
678 ;; (If nothing open, discard).
681 (append (car open-ans
)
686 (delete-region start loc
))
688 ;; Not a property, but a function.
690 (apply value start loc params
)))
691 (if rtn
(setq todo
(cons rtn todo
)))))
693 ;; Normal property/value pair
695 (cons (list start loc prop value
)
697 (setq extents
(cdr extents
)
698 start
(car (car extents
))
699 loc
(cdr (car extents
))))))))
700 (setq alist
(cdr alist
))))
701 (setq aalist
(cdr aalist
)))
703 ;; Didn't find any match for the annotation:
704 ;; Store as value of text-property `unknown'.
705 (let ((extents top-extents
)
706 (start (car (car top-extents
)))
707 (loc (or (cdr (car top-extents
)) loc
)))
709 (setq open-ans
(cdr open-ans
)
710 todo
(cons (list start loc
'unknown top-name
)
712 unknown-ans
(cons name unknown-ans
)
713 extents
(cdr extents
)
714 start
(car (car extents
))
715 loc
(cdr (car extents
))))))))))))
717 ;; Once entire file has been scanned, add the properties.
719 (let* ((item (car todo
))
725 (if (numberp val
) ; add to ambient value if numeric
726 (format-property-increment-region from to prop val
0)
729 (cond ((get prop
'format-list-valued
) ; value gets consed onto
730 ; list-valued properties
731 (let ((prev (get-text-property from prop
)))
732 (cons val
(if (listp prev
) prev
(list prev
)))))
733 (t val
))))) ; normally, just set to val.
734 (setq todo
(cdr todo
)))
737 (message "Unknown annotations: %s" unknown-ans
))))))
739 (defun format-subtract-regions (minu subtra
)
740 "Remove from the regions in MINUend the regions in SUBTRAhend.
741 A region is a dotted pair (FROM . TO). Both parameters are lists of
742 regions. Each list must contain nonoverlapping, noncontiguous
743 regions, in descending order. The result is also nonoverlapping,
744 noncontiguous, and in descending order. The first element of MINUEND
745 can have a cdr of nil, indicating that the end of that region is not
747 (let* ((minuend (copy-alist minu
))
748 (subtrahend (copy-alist subtra
))
752 (while (and minuend subtrahend
)
754 ;; The minuend starts after the subtrahend ends; keep it.
756 (setq results
(cons m results
)
757 minuend
(cdr minuend
)
759 ;; The minuend extends beyond the end of the subtrahend. Chop it off.
760 ((or (null (cdr m
)) (> (cdr m
) (cdr s
)))
761 (setq results
(cons (cons (1+ (cdr s
)) (cdr m
)) results
))
763 ;; The subtrahend starts after the minuend ends; throw it away.
765 (setq subtrahend
(cdr subtrahend
) s
(car subtrahend
)))
766 ;; The subtrahend extends beyond the end of the minuend. Chop it off.
767 (t ;(<= (cdr m) (cdr s)))
768 (if (>= (car m
) (car s
))
769 (setq minuend
(cdr minuend
) m
(car minuend
))
770 (setcdr m
(1- (car s
)))
771 (setq subtrahend
(cdr subtrahend
) s
(car subtrahend
))))))
772 (nconc (nreverse results
) minuend
)))
774 ;; This should probably go somewhere other than format.el. Then again,
775 ;; indent.el has alter-text-property. NOTE: We can also use
776 ;; next-single-property-change instead of text-property-not-all, but then
777 ;; we have to see if we passed TO.
778 (defun format-property-increment-region (from to prop delta default
)
779 "Over the region between FROM and TO increment property PROP by amount DELTA.
780 DELTA may be negative. If property PROP is nil anywhere
781 in the region, it is treated as though it were DEFAULT."
782 (let ((cur from
) val newval next
)
784 (setq val
(get-text-property cur prop
)
785 newval
(+ (or val default
) delta
)
786 next
(text-property-not-all cur to prop val
))
787 (put-text-property cur
(or next to
) prop newval
)
794 (defun format-insert-annotations (list &optional offset
)
795 "Apply list of annotations to buffer as `write-region' would.
796 Inserts each element of the given LIST of buffer annotations at its
797 appropriate place. Use second arg OFFSET if the annotations' locations are
798 not relative to the beginning of the buffer: annotations will be inserted
799 at their location-OFFSET+1 \(ie, the offset is treated as the character number
800 of the first character in the buffer)."
803 (setq offset
(1- offset
)))
804 (let ((l (reverse list
)))
806 (goto-char (- (car (car l
)) offset
))
807 (insert (cdr (car l
)))
810 (defun format-annotate-value (old new
)
811 "Return OLD and NEW as a \(CLOSE . OPEN) annotation pair.
812 Useful as a default function for TRANSLATIONS alist when the value of the text
813 property is the name of the annotation that you want to use, as it is for the
814 `unknown' text property."
815 (cons (if old
(list old
))
816 (if new
(list new
))))
818 (defun format-annotate-region (from to translations format-fn ignore
)
819 "Generate annotations for text properties in the region.
820 Searches for changes between FROM and TO, and describes them with a list of
821 annotations as defined by alist TRANSLATIONS and FORMAT-FN. IGNORE lists text
822 properties not to consider; any text properties that are neither ignored nor
823 listed in TRANSLATIONS are warned about.
824 If you actually want to modify the region, give the return value of this
825 function to `format-insert-annotations'.
827 Format of the TRANSLATIONS argument:
829 Each element is a list whose car is a PROPERTY, and the following
830 elements have the form (VALUE ANNOTATIONS...).
831 Whenever the property takes on the value VALUE, the annotations
832 \(as formatted by FORMAT-FN) are inserted into the file.
833 When the property stops having that value, the matching negated annotation
834 will be inserted \(it may actually be closed earlier and reopened, if
835 necessary, to keep proper nesting).
837 If VALUE is a list, then each element of the list is dealt with
840 If a VALUE is numeric, then it is assumed that there is a single annotation
841 and each occurrence of it increments the value of the property by that number.
842 Thus, given the entry \(left-margin \(4 \"indent\")), if the left margin
843 changes from 4 to 12, two <indent> annotations will be generated.
845 If the VALUE is nil, then instead of annotations, a function should be
846 specified. This function is used as a default: it is called for all
847 transitions not explicitly listed in the table. The function is called with
848 two arguments, the OLD and NEW values of the property. It should return
849 a cons cell (CLOSE . OPEN) as `format-annotate-single-property-change' does.
851 The same TRANSLATIONS structure can be used in reverse for reading files."
852 (let ((all-ans nil
) ; All annotations - becomes return value
853 (open-ans nil
) ; Annotations not yet closed
854 (loc nil
) ; Current location
855 (not-found nil
)) ; Properties that couldn't be saved
856 (while (or (null loc
)
857 (and (setq loc
(next-property-change loc nil to
))
859 (or loc
(setq loc from
))
860 (let* ((ans (format-annotate-location loc
(= loc from
) ignore translations
))
861 (neg-ans (format-reorder (aref ans
0) open-ans
))
862 (pos-ans (aref ans
1))
863 (ignored (aref ans
2)))
864 (setq not-found
(append ignored not-found
)
865 ignore
(append ignored ignore
))
866 ;; First do the negative (closing) annotations
868 ;; Check if it's missing. This can happen (eg, a numeric property
869 ;; going negative can generate closing annotations before there are
870 ;; any open). Warn user & ignore.
871 (if (not (member (car neg-ans
) open-ans
))
872 (message "Can't close %s: not open." (car neg-ans
))
873 (while (not (equal (car neg-ans
) (car open-ans
)))
874 ;; To close anno. N, need to first close ans 1 to N-1,
875 ;; remembering to re-open them later.
876 (setq pos-ans
(cons (car open-ans
) pos-ans
))
878 (cons (cons loc
(funcall format-fn
(car open-ans
) nil
))
880 (setq open-ans
(cdr open-ans
)))
881 ;; Now remove the one we're really interested in from open list.
882 (setq open-ans
(cdr open-ans
))
883 ;; And put the closing annotation here.
885 (cons (cons loc
(funcall format-fn
(car neg-ans
) nil
))
887 (setq neg-ans
(cdr neg-ans
)))
888 ;; Now deal with positive (opening) annotations
891 (setq open-ans
(cons (car pos-ans
) open-ans
))
893 (cons (cons loc
(funcall format-fn
(car pos-ans
) t
))
895 (setq pos-ans
(cdr pos-ans
))))))
897 ;; Close any annotations still open
900 (cons (cons to
(funcall format-fn
(car open-ans
) nil
))
902 (setq open-ans
(cdr open-ans
)))
904 (message "These text properties could not be saved:\n %s"
908 ;;; Internal functions for format-annotate-region.
910 (defun format-annotate-location (loc all ignore translations
)
911 "Return annotation(s) needed at location LOC.
912 This includes any properties that change between LOC-1 and LOC.
913 If ALL is true, don't look at previous location, but generate annotations for
914 all non-nil properties.
915 Third argument IGNORE is a list of text-properties not to consider.
916 Use the TRANSLATIONS alist (see `format-annotate-region' for doc).
918 Return value is a vector of 3 elements:
919 1. List of annotations to close
920 2. List of annotations to open.
921 3. List of properties that were ignored or couldn't be annotated.
923 The annotations in lists 1 and 2 need not be strings.
924 They can be whatever the FORMAT-FN in `format-annotate-region'
925 can handle. If that is `enriched-make-annotation', they can be
926 either strings, or lists of the form (PARAMETER VALUE)."
927 (let* ((prev-loc (1- loc
))
928 (before-plist (if all nil
(text-properties-at prev-loc
)))
929 (after-plist (text-properties-at loc
))
930 p negatives positives prop props not-found
)
931 ;; make list of all property names involved
932 (setq p before-plist
)
934 (if (not (memq (car p
) props
))
935 (setq props
(cons (car p
) props
)))
936 (setq p
(cdr (cdr p
))))
939 (if (not (memq (car p
) props
))
940 (setq props
(cons (car p
) props
)))
941 (setq p
(cdr (cdr p
))))
944 (setq prop
(car props
)
946 (if (memq prop ignore
)
947 nil
; If it's been ignored before, ignore it now.
948 (let ((before (if all nil
(car (cdr (memq prop before-plist
)))))
949 (after (car (cdr (memq prop after-plist
)))))
950 (if (equal before after
)
951 nil
; no change; ignore
952 (let ((result (format-annotate-single-property-change
953 prop before after translations
)))
955 (setq not-found
(cons prop not-found
))
956 (setq negatives
(nconc negatives
(car result
))
957 positives
(nconc positives
(cdr result
)))))))))
958 (vector negatives positives not-found
)))
960 (defun format-annotate-single-property-change (prop old new translations
)
961 "Return annotations for property PROP changing from OLD to NEW.
962 These are searched for in the translations alist TRANSLATIONS
963 (see `format-annotate-region' for the format).
964 If NEW does not appear in the list, but there is a default function, then that
966 Returns a cons of the form (CLOSE . OPEN)
967 where CLOSE is a list of annotations to close
968 and OPEN is a list of annotations to open.
970 The annotations in CLOSE and OPEN need not be strings.
971 They can be whatever the FORMAT-FN in `format-annotate-region'
972 can handle. If that is `enriched-make-annotation', they can be
973 either strings, or lists of the form (PARAMETER VALUE)."
975 (let ((prop-alist (cdr (assoc prop translations
)))
979 ;; If either old or new is a list, have to treat both that way.
980 (if (and (or (listp old
) (listp new
))
981 (not (get prop
'format-list-atomic-p
)))
982 (if (or (not (format-proper-list-p old
))
983 (not (format-proper-list-p new
)))
984 (format-annotate-atomic-property-change prop-alist old new
)
985 (let* ((old (if (listp old
) old
(list old
)))
986 (new (if (listp new
) new
(list new
)))
987 (tail (format-common-tail old new
))
991 (append (car (format-annotate-atomic-property-change
992 prop-alist
(car old
) nil
))
997 (append (cdr (format-annotate-atomic-property-change
998 prop-alist nil
(car new
)))
1001 (format-make-relatively-unique close open
)))
1002 (format-annotate-atomic-property-change prop-alist old new
)))))
1004 (defun format-annotate-atomic-property-change (prop-alist old new
)
1005 "Internal function annotate a single property change.
1006 PROP-ALIST is the relevant element of a TRANSLATIONS list.
1007 OLD and NEW are the values."
1009 ;; If old and new values are numbers,
1010 ;; look for a number in PROP-ALIST.
1011 (if (and (or (null old
) (numberp old
))
1012 (or (null new
) (numberp new
)))
1014 (setq num-ann prop-alist
)
1015 (while (and num-ann
(not (numberp (car (car num-ann
)))))
1016 (setq num-ann
(cdr num-ann
)))))
1018 ;; Numerical annotation - use difference
1020 ;; If property is numeric, nil means 0
1021 (cond ((and (numberp old
) (null new
))
1023 ((and (numberp new
) (null old
))
1026 (let* ((entry (car num-ann
))
1027 (increment (car entry
))
1028 (n (ceiling (/ (float (- new old
)) (float increment
))))
1029 (anno (car (cdr entry
))))
1031 (cons nil
(make-list n anno
))
1032 (cons (make-list (- n
) anno
) nil
))))
1034 ;; Standard annotation
1035 (let ((close (and old
(cdr (assoc old prop-alist
))))
1036 (open (and new
(cdr (assoc new prop-alist
)))))
1038 (format-make-relatively-unique close open
)
1039 ;; Call "Default" function, if any
1040 (let ((default (assq nil prop-alist
)))
1042 (funcall (car (cdr default
)) old new
))))))))
1046 ;;; format.el ends here