1 ;;; informat.el --- info support functions package for Emacs
3 ;; Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Nowadays, the Texinfo formatting commands always tagify a buffer
27 ;; (as does `makeinfo') since @anchor commands need tag tables.
33 (declare-function texinfo-format-refill
"texinfmt" ())
36 (defun Info-tagify (&optional input-buffer-name
)
37 "Create or update Info file tag table in current buffer or in a region."
39 ;; Save and restore point and restrictions.
40 ;; save-restrictions would not work
41 ;; because it records the old max relative to the end.
42 ;; We record it relative to the beginning.
44 (message "Tagifying region in %s ..." input-buffer-name
)
46 "Tagifying %s ..." (file-name-nondirectory (buffer-file-name))))
47 (let ((omin (point-min))
49 (nomax (= (point-max) (1+ (buffer-size))))
54 (goto-char (point-min))
55 (if (search-forward "\^_\nIndirect:\n" nil t
)
57 "Cannot tagify split info file. Run this before splitting.")
67 "@anchor" ; match-string 2 matches @anchor
69 "\\(-no\\|-yes\\)" ; match-string 3 matches -no or -yes
78 "[^}]+" ; match-string 6 matches arg to anchor
91 "\n\\(File:[ \t]*\\([^,\n\t]*\\)[,\t\n]+[ \t\n]*\\)?"
94 "[^,\n\t]*" ; match-string 13 matches arg to node name
101 (while (re-search-forward regexp nil t
)
102 (if (string-equal "@anchor" (match-string 2))
104 ;; kludge lest lose match-data
105 (if (string-equal "-yes" (match-string 3))
109 (concat "Ref: " (match-string 6))
113 ;; set start and end so texinfo-format-refill works
114 (let ((texinfo-command-start (match-beginning 0))
115 (texinfo-command-end (match-end 0)))
116 (texinfo-format-refill))
117 (delete-region (match-beginning 0) (match-end 0))))
118 ;; else this is a Node
121 (concat "Node: " (match-string-no-properties 13))
122 (1+ (match-beginning 10)))
125 (goto-char (point-max))
127 (let ((buffer-read-only nil
))
128 (if (search-forward "\^_\nEnd tag table\n" nil t
)
130 (search-backward "\nTag table:\n")
132 (delete-region (point) end
)))
133 (goto-char (point-max))
136 (insert "\^_\f\nTag table:\n")
137 (if (eq major-mode
'info-mode
)
138 (move-marker Info-tag-table-marker
(point)))
139 (setq tag-list
(nreverse tag-list
))
141 (insert (car (car tag-list
)) ?
\177)
142 (princ (car (cdr (car tag-list
))) (current-buffer))
144 (setq tag-list
(cdr tag-list
)))
145 (insert "\^_\nEnd tag table\n")))))
147 (narrow-to-region omin
(if nomax
(1+ (buffer-size))
148 (min omax
(point-max))))))
149 (if input-buffer-name
150 (message "Tagifying region in %s done" input-buffer-name
)
152 "Tagifying %s done" (file-name-nondirectory (buffer-file-name)))))
156 (defcustom Info-split-threshold
262144
157 "The number of characters by which `Info-split' splits an info file."
164 "Split an info file into an indirect file plus bounded-size subfiles.
165 Each subfile will be up to the number of characters that
166 `Info-split-threshold' specifies, plus one node.
168 To use this command, first visit a large Info file that has a tag
169 table. The buffer is modified into a (small) indirect info file which
170 should be saved in place of the original visited file.
172 The subfiles are written in the same directory the original file is
173 in, with names generated by appending `-' and a number to the original
174 file name. The indirect file still functions as an Info file, but it
175 contains just the tag table and a directory of subfiles."
178 (if (< (buffer-size) (+ 20000 Info-split-threshold
))
179 (error "This is too small to be worth splitting"))
180 (goto-char (point-min))
181 (search-forward "\^_")
183 (let ((start (point))
188 (filename (file-name-sans-versions buffer-file-name
)))
189 (goto-char (point-max))
191 (setq buffer-read-only nil
)
192 (or (search-forward "\^_\nEnd tag table\n" nil t
)
193 (error "Tag table required; use M-x Info-tagify"))
194 (search-backward "\nTag table:\n")
195 (if (looking-at "\nTag table:\n\^_")
196 (error "Tag table is just a skeleton; use M-x Info-tagify"))
200 (narrow-to-region (point-min) (point))
201 (goto-char (point-min))
202 (while (< (1+ (point)) (point-max))
203 (goto-char (min (+ (point) Info-split-threshold
) (point-max)))
204 (search-forward "\^_" nil
'move
)
206 (cons (list (+ start chars-deleted
)
207 (concat (file-name-nondirectory filename
)
208 (format "-%d" subfile-number
)))
210 ;; Put a newline at end of split file, to make Unix happier.
212 (write-region (point-min) (point)
213 (concat filename
(format "-%d" subfile-number
)))
214 (delete-region (1- (point)) (point))
215 ;; Back up over the final ^_.
217 (setq chars-deleted
(+ chars-deleted
(- (point) start
)))
218 (delete-region start
(point))
219 (setq subfile-number
(1+ subfile-number
))))
222 (insert (nth 1 (car subfiles
))
223 (format ": %d" (1- (car (car subfiles
))))
225 (setq subfiles
(cdr subfiles
)))
227 (insert "\^_\nIndirect:\n")
228 (search-forward "\nTag Table:\n")
229 (insert "(Indirect)\n")))
231 (defvar Info-validate-allnodes
)
232 (defvar Info-validate-thisnode
)
233 (defvar Info-validate-lossages
)
236 (defun Info-validate ()
237 "Check current buffer for validity as an Info file.
238 Check that every node pointer points to an existing node."
243 (goto-char (point-min))
244 (if (search-forward "\nTag table:\n(Indirect)\n" nil t
)
245 (error "Don't yet know how to validate indirect info files: \"%s\""
246 (buffer-name (current-buffer))))
247 (goto-char (point-min))
248 (let ((Info-validate-allnodes '(("*")))
249 (regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
252 (Info-validate-lossages ()))
253 (while (search-forward "\n\^_" nil t
)
257 (if (re-search-backward regexp beg t
)
258 (let ((name (downcase
259 (buffer-substring-no-properties
262 (goto-char (match-end 1))
263 (skip-chars-backward " \t")
265 (if (assoc name Info-validate-allnodes
)
266 (setq Info-validate-lossages
267 (cons (list name
"Duplicate node-name" nil
)
268 Info-validate-lossages
))
269 (setq Info-validate-allnodes
273 (and (re-search-backward
274 "prev[ious]*:" beg t
)
276 (goto-char (match-end 0))
278 (Info-following-node-name)))))
280 Info-validate-allnodes
)))))))
281 (goto-char (point-min))
282 (while (search-forward "\n\^_" nil t
)
285 Info-validate-thisnode next
)
287 (if (re-search-backward regexp beg t
)
289 (let ((md (match-data)))
290 (search-forward "\n\^_" nil
'move
)
291 (narrow-to-region beg
(point))
293 (setq Info-validate-thisnode
(downcase
294 (buffer-substring-no-properties
297 (goto-char (match-end 1))
298 (skip-chars-backward " \t")
301 (and (search-backward "next:" nil t
)
302 (setq next
(Info-validate-node-name "invalid Next"))
303 (assoc next Info-validate-allnodes
)
304 (if (equal (car (cdr (assoc next Info-validate-allnodes
)))
305 Info-validate-thisnode
)
306 ;; allow multiple `next' pointers to one node
307 (let ((tem Info-validate-lossages
))
309 (if (and (equal (car (cdr (car tem
)))
310 "should have Previous")
311 (equal (car (car tem
))
313 (setq Info-validate-lossages
314 (delq (car tem
) Info-validate-lossages
)))
315 (setq tem
(cdr tem
))))
316 (setq Info-validate-lossages
318 "should have Previous"
319 Info-validate-thisnode
)
320 Info-validate-lossages
))))
322 (if (re-search-backward "prev[ious]*:" nil t
)
323 (Info-validate-node-name "invalid Previous"))
325 (if (search-backward "up:" nil t
)
326 (Info-validate-node-name "invalid Up"))
327 (if (re-search-forward "\n* Menu:" nil t
)
328 (while (re-search-forward "\n\\* " nil t
)
329 (Info-validate-node-name
330 (concat "invalid menu item "
331 (buffer-substring (point)
333 (skip-chars-forward "^:")
335 (Info-extract-menu-node-name))))
336 (goto-char (point-min))
337 (while (re-search-forward "\\*note[ \n]*[^:\t]*:" nil t
)
338 (goto-char (+ (match-beginning 0) 5))
339 (skip-chars-forward " \n")
340 (Info-validate-node-name
341 (concat "invalid reference "
342 (buffer-substring (point)
344 (skip-chars-forward "^:")
346 (Info-extract-menu-node-name "Bad format cross-reference")))))))
347 (setq tags-losing
(not (Info-validate-tags-table)))
348 (if (or Info-validate-lossages tags-losing
)
349 (with-output-to-temp-buffer " *problems in info file*"
350 (while Info-validate-lossages
352 (princ (car (car Info-validate-lossages
)))
354 (let ((tem (nth 1 (car Info-validate-lossages
))))
355 (cond ((string-match "\n" tem
)
356 (princ (substring tem
0 (match-beginning 0)))
360 (if (nth 2 (car Info-validate-lossages
))
363 (let ((tem (nth 2 (car Info-validate-lossages
))))
364 (cond ((string-match "\n" tem
)
365 (princ (substring tem
0 (match-beginning 0)))
370 (setq Info-validate-lossages
(cdr Info-validate-lossages
)))
371 (if tags-losing
(princ "\nTags table must be recomputed\n")))
372 ;; Here if info file is valid.
373 ;; If we already made a list of problems, clear it out.
375 (if (get-buffer " *problems in info file*")
377 (set-buffer " *problems in info file*")
378 (kill-buffer (current-buffer)))))
379 (message "File appears valid"))))))
381 (defun Info-validate-node-name (kind &optional name
)
384 (goto-char (match-end 0))
385 (skip-chars-forward " \t")
386 (if (= (following-char) ?\
()
389 (buffer-substring-no-properties
392 (skip-chars-forward "^,\t\n")
393 (skip-chars-backward " ")
397 (setq name
(downcase name
))
398 (or (and (> (length name
) 0) (= (aref name
0) ?\
())
399 (assoc name Info-validate-allnodes
)
400 (setq Info-validate-lossages
401 (cons (list Info-validate-thisnode kind name
)
402 Info-validate-lossages
))))
405 (defun Info-validate-tags-table ()
406 (goto-char (point-min))
407 (if (not (search-forward "\^_\nEnd tag table\n" nil t
))
410 (let* ((end (match-beginning 0))
411 (start (progn (search-backward "\nTag table:\n")
414 (setq tem Info-validate-allnodes
)
417 (or (equal (car (car tem
)) "*")
418 (search-forward (concat "Node: "
423 (setq tem
(cdr tem
)))
424 (goto-char (1+ start
))
425 (while (looking-at ".*Node: \\(.*\\)\177\\([0-9]+\\)$")
426 (setq tem
(downcase (buffer-substring-no-properties
429 (setq tem
(assoc tem Info-validate-allnodes
))
432 (goto-char (match-beginning 2))
433 (setq tem
(- (car (cdr (cdr tem
)))
434 (read (current-buffer))))
435 (if (> tem
0) tem
(- tem
)))))
438 (if (looking-at "\^_\n")
440 (or (looking-at "End tag table\n")
445 (defun batch-info-validate ()
446 "Runs `Info-validate' on the files remaining on the command line.
447 Must be used only with -batch, and kills Emacs on completion.
448 Each file will be processed even if an error occurred previously.
449 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\""
450 (if (not noninteractive
)
451 (error "batch-info-validate may only be used -batch"))
452 (let ((version-control t
)
453 (auto-save-default nil
)
454 (find-file-run-dired nil
)
455 (kept-old-versions 259259)
456 (kept-new-versions 259259))
460 (while command-line-args-left
461 (setq file
(expand-file-name (car command-line-args-left
)))
462 (cond ((not (file-exists-p file
))
463 (message ">> %s does not exist!" file
)
465 command-line-args-left
(cdr command-line-args-left
)))
466 ((file-directory-p file
)
467 (setq command-line-args-left
(nconc (directory-files file
)
468 (cdr command-line-args-left
))))
470 (setq files
(cons file files
)
471 command-line-args-left
(cdr command-line-args-left
)))))
473 (setq file
(car files
)
478 (if buffer-file-name
(kill-buffer (current-buffer)))
480 (buffer-disable-undo (current-buffer))
481 (set-buffer-modified-p nil
)
483 (let ((case-fold-search nil
))
484 (goto-char (point-max))
485 (cond ((search-backward "\n\^_\^L\nTag table:\n" nil t
)
486 (message "%s already tagified" file
))
487 ((< (point-max) 30000)
488 (message "%s too small to bother tagifying" file
))
491 (let ((loss-name " *problems in info file*"))
492 (message "Checking validity of info file %s..." file
)
493 (if (get-buffer loss-name
)
494 (kill-buffer loss-name
))
496 (if (not (get-buffer loss-name
))
497 nil
;(message "Checking validity of info file %s... OK" file)
498 (message "----------------------------------------------------------------------")
499 (message ">> PROBLEMS IN INFO FILE %s" file
)
501 (set-buffer loss-name
)
502 (princ (buffer-substring-no-properties
503 (point-min) (point-max))))
504 (message "----------------------------------------------------------------------")
505 (setq error
1 lose t
)))
506 (if (and (buffer-modified-p)
508 (progn (message "Saving modified %s" file
)
510 (error (message ">> Error: %s" (prin1-to-string err
))))))
511 (kill-emacs error
))))
515 ;; arch-tag: 581c440e-5be1-4f31-b005-2d5824bbf569
516 ;;; informat.el ends here