1 ;;; informat.el --- info support functions package for Emacs
3 ;; Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 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, or (at your option)
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; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; Nowadays, the Texinfo formatting commands always tagify a buffer
29 ;; (as does `makeinfo') since @anchor commands need tag tables.
35 (declare-function texinfo-format-refill
"texinfmt" ())
38 (defun Info-tagify (&optional input-buffer-name
)
39 "Create or update Info file tag table in current buffer or in a region."
41 ;; Save and restore point and restrictions.
42 ;; save-restrictions would not work
43 ;; because it records the old max relative to the end.
44 ;; We record it relative to the beginning.
46 (message "Tagifying region in %s ..." input-buffer-name
)
48 "Tagifying %s ..." (file-name-nondirectory (buffer-file-name))))
49 (let ((omin (point-min))
51 (nomax (= (point-max) (1+ (buffer-size))))
56 (goto-char (point-min))
57 (if (search-forward "\^_\nIndirect:\n" nil t
)
59 "Cannot tagify split info file. Run this before splitting.")
69 "@anchor" ; match-string 2 matches @anchor
71 "\\(-no\\|-yes\\)" ; match-string 3 matches -no or -yes
80 "[^}]+" ; match-string 6 matches arg to anchor
93 "\n\\(File:[ \t]*\\([^,\n\t]*\\)[,\t\n]+[ \t\n]*\\)?"
96 "[^,\n\t]*" ; match-string 13 matches arg to node name
103 (while (re-search-forward regexp nil t
)
104 (if (string-equal "@anchor" (match-string 2))
106 ;; kludge lest lose match-data
107 (if (string-equal "-yes" (match-string 3))
111 (concat "Ref: " (match-string 6))
115 ;; set start and end so texinfo-format-refill works
116 (let ((texinfo-command-start (match-beginning 0))
117 (texinfo-command-end (match-end 0)))
118 (texinfo-format-refill))
119 (delete-region (match-beginning 0) (match-end 0))))
120 ;; else this is a Node
123 (concat "Node: " (match-string-no-properties 13))
124 (1+ (match-beginning 10)))
127 (goto-char (point-max))
129 (let ((buffer-read-only nil
))
130 (if (search-forward "\^_\nEnd tag table\n" nil t
)
132 (search-backward "\nTag table:\n")
134 (delete-region (point) end
)))
135 (goto-char (point-max))
138 (insert "\^_\f\nTag table:\n")
139 (if (eq major-mode
'info-mode
)
140 (move-marker Info-tag-table-marker
(point)))
141 (setq tag-list
(nreverse tag-list
))
143 (insert (car (car tag-list
)) ?
\177)
144 (princ (car (cdr (car tag-list
))) (current-buffer))
146 (setq tag-list
(cdr tag-list
)))
147 (insert "\^_\nEnd tag table\n")))))
149 (narrow-to-region omin
(if nomax
(1+ (buffer-size))
150 (min omax
(point-max))))))
151 (if input-buffer-name
152 (message "Tagifying region in %s done" input-buffer-name
)
154 "Tagifying %s done" (file-name-nondirectory (buffer-file-name)))))
159 "Split an info file into an indirect file plus bounded-size subfiles.
160 Each subfile will be up to 50,000 characters plus one node.
162 To use this command, first visit a large Info file that has a tag
163 table. The buffer is modified into a (small) indirect info file which
164 should be saved in place of the original visited file.
166 The subfiles are written in the same directory the original file is
167 in, with names generated by appending `-' and a number to the original
168 file name. The indirect file still functions as an Info file, but it
169 contains just the tag table and a directory of subfiles."
172 (if (< (buffer-size) 70000)
173 (error "This is too small to be worth splitting"))
174 (goto-char (point-min))
175 (search-forward "\^_")
177 (let ((start (point))
182 (filename (file-name-sans-versions buffer-file-name
)))
183 (goto-char (point-max))
185 (setq buffer-read-only nil
)
186 (or (search-forward "\^_\nEnd tag table\n" nil t
)
187 (error "Tag table required; use M-x Info-tagify"))
188 (search-backward "\nTag table:\n")
189 (if (looking-at "\nTag table:\n\^_")
190 (error "Tag table is just a skeleton; use M-x Info-tagify"))
194 (narrow-to-region (point-min) (point))
195 (goto-char (point-min))
196 (while (< (1+ (point)) (point-max))
197 (goto-char (min (+ (point) 50000) (point-max)))
198 (search-forward "\^_" nil
'move
)
200 (cons (list (+ start chars-deleted
)
201 (concat (file-name-nondirectory filename
)
202 (format "-%d" subfile-number
)))
204 ;; Put a newline at end of split file, to make Unix happier.
206 (write-region (point-min) (point)
207 (concat filename
(format "-%d" subfile-number
)))
208 (delete-region (1- (point)) (point))
209 ;; Back up over the final ^_.
211 (setq chars-deleted
(+ chars-deleted
(- (point) start
)))
212 (delete-region start
(point))
213 (setq subfile-number
(1+ subfile-number
))))
216 (insert (nth 1 (car subfiles
))
217 (format ": %d" (1- (car (car subfiles
))))
219 (setq subfiles
(cdr subfiles
)))
221 (insert "\^_\nIndirect:\n")
222 (search-forward "\nTag Table:\n")
223 (insert "(Indirect)\n")))
225 (defvar Info-validate-allnodes
)
226 (defvar Info-validate-thisnode
)
227 (defvar Info-validate-lossages
)
230 (defun Info-validate ()
231 "Check current buffer for validity as an Info file.
232 Check that every node pointer points to an existing node."
237 (goto-char (point-min))
238 (if (search-forward "\nTag table:\n(Indirect)\n" nil t
)
239 (error "Don't yet know how to validate indirect info files: \"%s\""
240 (buffer-name (current-buffer))))
241 (goto-char (point-min))
242 (let ((Info-validate-allnodes '(("*")))
243 (regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
246 (Info-validate-lossages ()))
247 (while (search-forward "\n\^_" nil t
)
251 (if (re-search-backward regexp beg t
)
252 (let ((name (downcase
253 (buffer-substring-no-properties
256 (goto-char (match-end 1))
257 (skip-chars-backward " \t")
259 (if (assoc name Info-validate-allnodes
)
260 (setq Info-validate-lossages
261 (cons (list name
"Duplicate node-name" nil
)
262 Info-validate-lossages
))
263 (setq Info-validate-allnodes
267 (and (re-search-backward
268 "prev[ious]*:" beg t
)
270 (goto-char (match-end 0))
272 (Info-following-node-name)))))
274 Info-validate-allnodes
)))))))
275 (goto-char (point-min))
276 (while (search-forward "\n\^_" nil t
)
279 Info-validate-thisnode next
)
281 (if (re-search-backward regexp beg t
)
283 (let ((md (match-data)))
284 (search-forward "\n\^_" nil
'move
)
285 (narrow-to-region beg
(point))
287 (setq Info-validate-thisnode
(downcase
288 (buffer-substring-no-properties
291 (goto-char (match-end 1))
292 (skip-chars-backward " \t")
295 (and (search-backward "next:" nil t
)
296 (setq next
(Info-validate-node-name "invalid Next"))
297 (assoc next Info-validate-allnodes
)
298 (if (equal (car (cdr (assoc next Info-validate-allnodes
)))
299 Info-validate-thisnode
)
300 ;; allow multiple `next' pointers to one node
301 (let ((tem Info-validate-lossages
))
303 (if (and (equal (car (cdr (car tem
)))
304 "should have Previous")
305 (equal (car (car tem
))
307 (setq Info-validate-lossages
308 (delq (car tem
) Info-validate-lossages
)))
309 (setq tem
(cdr tem
))))
310 (setq Info-validate-lossages
312 "should have Previous"
313 Info-validate-thisnode
)
314 Info-validate-lossages
))))
316 (if (re-search-backward "prev[ious]*:" nil t
)
317 (Info-validate-node-name "invalid Previous"))
319 (if (search-backward "up:" nil t
)
320 (Info-validate-node-name "invalid Up"))
321 (if (re-search-forward "\n* Menu:" nil t
)
322 (while (re-search-forward "\n\\* " nil t
)
323 (Info-validate-node-name
324 (concat "invalid menu item "
325 (buffer-substring (point)
327 (skip-chars-forward "^:")
329 (Info-extract-menu-node-name))))
330 (goto-char (point-min))
331 (while (re-search-forward "\\*note[ \n]*[^:\t]*:" nil t
)
332 (goto-char (+ (match-beginning 0) 5))
333 (skip-chars-forward " \n")
334 (Info-validate-node-name
335 (concat "invalid reference "
336 (buffer-substring (point)
338 (skip-chars-forward "^:")
340 (Info-extract-menu-node-name "Bad format cross-reference")))))))
341 (setq tags-losing
(not (Info-validate-tags-table)))
342 (if (or Info-validate-lossages tags-losing
)
343 (with-output-to-temp-buffer " *problems in info file*"
344 (while Info-validate-lossages
346 (princ (car (car Info-validate-lossages
)))
348 (let ((tem (nth 1 (car Info-validate-lossages
))))
349 (cond ((string-match "\n" tem
)
350 (princ (substring tem
0 (match-beginning 0)))
354 (if (nth 2 (car Info-validate-lossages
))
357 (let ((tem (nth 2 (car Info-validate-lossages
))))
358 (cond ((string-match "\n" tem
)
359 (princ (substring tem
0 (match-beginning 0)))
364 (setq Info-validate-lossages
(cdr Info-validate-lossages
)))
365 (if tags-losing
(princ "\nTags table must be recomputed\n")))
366 ;; Here if info file is valid.
367 ;; If we already made a list of problems, clear it out.
369 (if (get-buffer " *problems in info file*")
371 (set-buffer " *problems in info file*")
372 (kill-buffer (current-buffer)))))
373 (message "File appears valid"))))))
375 (defun Info-validate-node-name (kind &optional name
)
378 (goto-char (match-end 0))
379 (skip-chars-forward " \t")
380 (if (= (following-char) ?\
()
383 (buffer-substring-no-properties
386 (skip-chars-forward "^,\t\n")
387 (skip-chars-backward " ")
391 (setq name
(downcase name
))
392 (or (and (> (length name
) 0) (= (aref name
0) ?\
())
393 (assoc name Info-validate-allnodes
)
394 (setq Info-validate-lossages
395 (cons (list Info-validate-thisnode kind name
)
396 Info-validate-lossages
))))
399 (defun Info-validate-tags-table ()
400 (goto-char (point-min))
401 (if (not (search-forward "\^_\nEnd tag table\n" nil t
))
404 (let* ((end (match-beginning 0))
405 (start (progn (search-backward "\nTag table:\n")
408 (setq tem Info-validate-allnodes
)
411 (or (equal (car (car tem
)) "*")
412 (search-forward (concat "Node: "
417 (setq tem
(cdr tem
)))
418 (goto-char (1+ start
))
419 (while (looking-at ".*Node: \\(.*\\)\177\\([0-9]+\\)$")
420 (setq tem
(downcase (buffer-substring-no-properties
423 (setq tem
(assoc tem Info-validate-allnodes
))
426 (goto-char (match-beginning 2))
427 (setq tem
(- (car (cdr (cdr tem
)))
428 (read (current-buffer))))
429 (if (> tem
0) tem
(- tem
)))))
432 (if (looking-at "\^_\n")
434 (or (looking-at "End tag table\n")
439 (defun batch-info-validate ()
440 "Runs `Info-validate' on the files remaining on the command line.
441 Must be used only with -batch, and kills Emacs on completion.
442 Each file will be processed even if an error occurred previously.
443 For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\""
444 (if (not noninteractive
)
445 (error "batch-info-validate may only be used -batch"))
446 (let ((version-control t
)
447 (auto-save-default nil
)
448 (find-file-run-dired nil
)
449 (kept-old-versions 259259)
450 (kept-new-versions 259259))
454 (while command-line-args-left
455 (setq file
(expand-file-name (car command-line-args-left
)))
456 (cond ((not (file-exists-p file
))
457 (message ">> %s does not exist!" file
)
459 command-line-args-left
(cdr command-line-args-left
)))
460 ((file-directory-p file
)
461 (setq command-line-args-left
(nconc (directory-files file
)
462 (cdr command-line-args-left
))))
464 (setq files
(cons file files
)
465 command-line-args-left
(cdr command-line-args-left
)))))
467 (setq file
(car files
)
472 (if buffer-file-name
(kill-buffer (current-buffer)))
474 (buffer-disable-undo (current-buffer))
475 (set-buffer-modified-p nil
)
477 (let ((case-fold-search nil
))
478 (goto-char (point-max))
479 (cond ((search-backward "\n\^_\^L\nTag table:\n" nil t
)
480 (message "%s already tagified" file
))
481 ((< (point-max) 30000)
482 (message "%s too small to bother tagifying" file
))
485 (let ((loss-name " *problems in info file*"))
486 (message "Checking validity of info file %s..." file
)
487 (if (get-buffer loss-name
)
488 (kill-buffer loss-name
))
490 (if (not (get-buffer loss-name
))
491 nil
;(message "Checking validity of info file %s... OK" file)
492 (message "----------------------------------------------------------------------")
493 (message ">> PROBLEMS IN INFO FILE %s" file
)
495 (set-buffer loss-name
)
496 (princ (buffer-substring-no-properties
497 (point-min) (point-max))))
498 (message "----------------------------------------------------------------------")
499 (setq error
1 lose t
)))
500 (if (and (buffer-modified-p)
502 (progn (message "Saving modified %s" file
)
504 (error (message ">> Error: %s" (prin1-to-string err
))))))
505 (kill-emacs error
))))
509 ;;; arch-tag: 581c440e-5be1-4f31-b005-2d5824bbf569
510 ;;; informat.el ends here