(Freverse): Simplify.
[bpt/emacs.git] / lisp / informat.el
CommitLineData
1a06eabd
ER
1;;; informat.el --- info support functions package for Emacs
2
3a801d0c
ER
3;; Copyright (C) 1986 Free Software Foundation, Inc.
4
e5167999 5;; Maintainer: FSF
fd7fa35a 6;; Keywords: help
e5167999 7
745bc783
JB
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
745bc783
JB
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
745bc783 24
e5167999
ER
25;;; Code:
26
745bc783
JB
27(require 'info)
28
29;;;###autoload
30(defun Info-tagify ()
31 "Create or update Info-file tag table in current buffer."
32 (interactive)
33 ;; Save and restore point and restrictions.
34 ;; save-restrictions would not work
35 ;; because it records the old max relative to the end.
36 ;; We record it relative to the beginning.
37 (message "Tagifying %s ..." (file-name-nondirectory (buffer-file-name)))
38 (let ((omin (point-min))
39 (omax (point-max))
40 (nomax (= (point-max) (1+ (buffer-size))))
41 (opoint (point)))
42 (unwind-protect
43 (progn
44 (widen)
45 (goto-char (point-min))
46 (if (search-forward "\^_\nIndirect:\n" nil t)
47 (message "Cannot tagify split info file")
4b3ed5e7 48 (let ((regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
745bc783
JB
49 (case-fold-search t)
50 list)
51 (while (search-forward "\n\^_" nil t)
6b1e3271
RS
52 ;; We want the 0-origin character position of the ^_.
53 ;; That is the same as the Emacs (1-origin) position
54 ;; of the newline before it.
55 (let ((beg (match-beginning 0)))
56 (forward-line 2)
745bc783
JB
57 (if (re-search-backward regexp beg t)
58 (setq list
e64d0760 59 (cons (list (buffer-substring-no-properties
745bc783
JB
60 (match-beginning 1)
61 (match-end 1))
62 beg)
63 list)))))
64 (goto-char (point-max))
65 (forward-line -8)
66 (let ((buffer-read-only nil))
67 (if (search-forward "\^_\nEnd tag table\n" nil t)
68 (let ((end (point)))
69 (search-backward "\nTag table:\n")
70 (beginning-of-line)
71 (delete-region (point) end)))
72 (goto-char (point-max))
73 (insert "\^_\f\nTag table:\n")
9304909e
RS
74 (if (eq major-mode 'info-mode)
75 (move-marker Info-tag-table-marker (point)))
745bc783
JB
76 (setq list (nreverse list))
77 (while list
78 (insert "Node: " (car (car list)) ?\177)
79 (princ (car (cdr (car list))) (current-buffer))
80 (insert ?\n)
81 (setq list (cdr list)))
82 (insert "\^_\nEnd tag table\n")))))
83 (goto-char opoint)
84 (narrow-to-region omin (if nomax (1+ (buffer-size))
85 (min omax (point-max))))))
86 (message "Tagifying %s ... done" (file-name-nondirectory (buffer-file-name))))
87\f
88;;;###autoload
89(defun Info-split ()
90 "Split an info file into an indirect file plus bounded-size subfiles.
91Each subfile will be up to 50,000 characters plus one node.
92
93To use this command, first visit a large Info file that has a tag
94table. The buffer is modified into a (small) indirect info file which
95should be saved in place of the original visited file.
96
97The subfiles are written in the same directory the original file is
98in, with names generated by appending `-' and a number to the original
99file name. The indirect file still functions as an Info file, but it
100contains just the tag table and a directory of subfiles."
101
102 (interactive)
103 (if (< (buffer-size) 70000)
104 (error "This is too small to be worth splitting"))
105 (goto-char (point-min))
106 (search-forward "\^_")
107 (forward-char -1)
108 (let ((start (point))
109 (chars-deleted 0)
110 subfiles
111 (subfile-number 1)
112 (case-fold-search t)
113 (filename (file-name-sans-versions buffer-file-name)))
114 (goto-char (point-max))
115 (forward-line -8)
116 (setq buffer-read-only nil)
117 (or (search-forward "\^_\nEnd tag table\n" nil t)
118 (error "Tag table required; use M-x Info-tagify"))
119 (search-backward "\nTag table:\n")
120 (if (looking-at "\nTag table:\n\^_")
121 (error "Tag table is just a skeleton; use M-x Info-tagify"))
122 (beginning-of-line)
123 (forward-char 1)
124 (save-restriction
125 (narrow-to-region (point-min) (point))
126 (goto-char (point-min))
127 (while (< (1+ (point)) (point-max))
128 (goto-char (min (+ (point) 50000) (point-max)))
129 (search-forward "\^_" nil 'move)
130 (setq subfiles
131 (cons (list (+ start chars-deleted)
132 (concat (file-name-nondirectory filename)
133 (format "-%d" subfile-number)))
134 subfiles))
135 ;; Put a newline at end of split file, to make Unix happier.
136 (insert "\n")
137 (write-region (point-min) (point)
138 (concat filename (format "-%d" subfile-number)))
139 (delete-region (1- (point)) (point))
140 ;; Back up over the final ^_.
141 (forward-char -1)
142 (setq chars-deleted (+ chars-deleted (- (point) start)))
143 (delete-region start (point))
144 (setq subfile-number (1+ subfile-number))))
145 (while subfiles
146 (goto-char start)
147 (insert (nth 1 (car subfiles))
a1a4d0bc 148 (format ": %d" (1- (car (car subfiles))))
745bc783
JB
149 "\n")
150 (setq subfiles (cdr subfiles)))
151 (goto-char start)
152 (insert "\^_\nIndirect:\n")
153 (search-forward "\nTag Table:\n")
154 (insert "(Indirect)\n")))
155\f
156;;;###autoload
157(defun Info-validate ()
158 "Check current buffer for validity as an Info file.
159Check that every node pointer points to an existing node."
160 (interactive)
161 (save-excursion
162 (save-restriction
163 (widen)
164 (goto-char (point-min))
165 (if (search-forward "\nTag table:\n(Indirect)\n" nil t)
166 (error "Don't yet know how to validate indirect info files: \"%s\""
167 (buffer-name (current-buffer))))
168 (goto-char (point-min))
169 (let ((allnodes '(("*")))
170 (regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
171 (case-fold-search t)
172 (tags-losing nil)
173 (lossages ()))
174 (while (search-forward "\n\^_" nil t)
175 (forward-line 1)
176 (let ((beg (point)))
177 (forward-line 1)
178 (if (re-search-backward regexp beg t)
179 (let ((name (downcase
e64d0760 180 (buffer-substring-no-properties
745bc783
JB
181 (match-beginning 1)
182 (progn
183 (goto-char (match-end 1))
184 (skip-chars-backward " \t")
185 (point))))))
186 (if (assoc name allnodes)
187 (setq lossages
188 (cons (list name "Duplicate node-name" nil)
189 lossages))
190 (setq allnodes
191 (cons (list name
192 (progn
193 (end-of-line)
194 (and (re-search-backward
195 "prev[ious]*:" beg t)
196 (progn
197 (goto-char (match-end 0))
198 (downcase
199 (Info-following-node-name)))))
200 beg)
201 allnodes)))))))
202 (goto-char (point-min))
203 (while (search-forward "\n\^_" nil t)
204 (forward-line 1)
205 (let ((beg (point))
206 thisnode next)
207 (forward-line 1)
208 (if (re-search-backward regexp beg t)
209 (save-restriction
210 (search-forward "\n\^_" nil 'move)
211 (narrow-to-region beg (point))
212 (setq thisnode (downcase
e64d0760 213 (buffer-substring-no-properties
745bc783
JB
214 (match-beginning 1)
215 (progn
216 (goto-char (match-end 1))
217 (skip-chars-backward " \t")
218 (point)))))
219 (end-of-line)
220 (and (search-backward "next:" nil t)
221 (setq next (Info-validate-node-name "invalid Next"))
222 (assoc next allnodes)
223 (if (equal (car (cdr (assoc next allnodes)))
224 thisnode)
225 ;; allow multiple `next' pointers to one node
226 (let ((tem lossages))
227 (while tem
228 (if (and (equal (car (cdr (car tem)))
229 "should have Previous")
230 (equal (car (car tem))
231 next))
232 (setq lossages (delq (car tem) lossages)))
233 (setq tem (cdr tem))))
234 (setq lossages
235 (cons (list next
236 "should have Previous"
237 thisnode)
238 lossages))))
239 (end-of-line)
240 (if (re-search-backward "prev[ious]*:" nil t)
241 (Info-validate-node-name "invalid Previous"))
242 (end-of-line)
243 (if (search-backward "up:" nil t)
244 (Info-validate-node-name "invalid Up"))
245 (if (re-search-forward "\n* Menu:" nil t)
246 (while (re-search-forward "\n\\* " nil t)
247 (Info-validate-node-name
248 (concat "invalid menu item "
249 (buffer-substring (point)
250 (save-excursion
251 (skip-chars-forward "^:")
252 (point))))
253 (Info-extract-menu-node-name))))
254 (goto-char (point-min))
255 (while (re-search-forward "\\*note[ \n]*[^:\t]*:" nil t)
256 (goto-char (+ (match-beginning 0) 5))
257 (skip-chars-forward " \n")
258 (Info-validate-node-name
259 (concat "invalid reference "
260 (buffer-substring (point)
261 (save-excursion
262 (skip-chars-forward "^:")
263 (point))))
264 (Info-extract-menu-node-name "Bad format cross-reference")))))))
265 (setq tags-losing (not (Info-validate-tags-table)))
266 (if (or lossages tags-losing)
267 (with-output-to-temp-buffer " *problems in info file*"
268 (while lossages
269 (princ "In node \"")
270 (princ (car (car lossages)))
271 (princ "\", ")
272 (let ((tem (nth 1 (car lossages))))
273 (cond ((string-match "\n" tem)
274 (princ (substring tem 0 (match-beginning 0)))
275 (princ "..."))
276 (t
277 (princ tem))))
278 (if (nth 2 (car lossages))
279 (progn
280 (princ ": ")
281 (let ((tem (nth 2 (car lossages))))
282 (cond ((string-match "\n" tem)
283 (princ (substring tem 0 (match-beginning 0)))
284 (princ "..."))
285 (t
286 (princ tem))))))
287 (terpri)
288 (setq lossages (cdr lossages)))
289 (if tags-losing (princ "\nTags table must be recomputed\n")))
290 ;; Here if info file is valid.
291 ;; If we already made a list of problems, clear it out.
292 (save-excursion
293 (if (get-buffer " *problems in info file*")
294 (progn
295 (set-buffer " *problems in info file*")
296 (kill-buffer (current-buffer)))))
297 (message "File appears valid"))))))
298
299(defun Info-validate-node-name (kind &optional name)
300 (if name
301 nil
302 (goto-char (match-end 0))
303 (skip-chars-forward " \t")
304 (if (= (following-char) ?\()
305 nil
306 (setq name
e64d0760 307 (buffer-substring-no-properties
745bc783
JB
308 (point)
309 (progn
310 (skip-chars-forward "^,\t\n")
311 (skip-chars-backward " ")
312 (point))))))
313 (if (null name)
314 nil
315 (setq name (downcase name))
316 (or (and (> (length name) 0) (= (aref name 0) ?\())
317 (assoc name allnodes)
318 (setq lossages
319 (cons (list thisnode kind name) lossages))))
320 name)
321
322(defun Info-validate-tags-table ()
323 (goto-char (point-min))
324 (if (not (search-forward "\^_\nEnd tag table\n" nil t))
325 t
326 (not (catch 'losing
327 (let* ((end (match-beginning 0))
328 (start (progn (search-backward "\nTag table:\n")
329 (1- (match-end 0))))
330 tem)
331 (setq tem allnodes)
332 (while tem
333 (goto-char start)
334 (or (equal (car (car tem)) "*")
335 (search-forward (concat "Node: "
336 (car (car tem))
337 "\177")
338 end t)
339 (throw 'losing 'x))
340 (setq tem (cdr tem)))
341 (goto-char (1+ start))
342 (while (looking-at ".*Node: \\(.*\\)\177\\([0-9]+\\)$")
e64d0760 343 (setq tem (downcase (buffer-substring-no-properties
745bc783
JB
344 (match-beginning 1)
345 (match-end 1))))
346 (setq tem (assoc tem allnodes))
347 (if (or (not tem)
348 (< 1000 (progn
349 (goto-char (match-beginning 2))
350 (setq tem (- (car (cdr (cdr tem)))
351 (read (current-buffer))))
352 (if (> tem 0) tem (- tem)))))
e64d0760
RS
353 (throw 'losing 'y))
354 (forward-line 1)))
355 (if (looking-at "\^_\n")
356 (forward-line 1))
745bc783
JB
357 (or (looking-at "End tag table\n")
358 (throw 'losing 'z))
359 nil))))
360\f
361;;;###autoload
362(defun batch-info-validate ()
363 "Runs `Info-validate' on the files remaining on the command line.
364Must be used only with -batch, and kills Emacs on completion.
365Each file will be processed even if an error occurred previously.
366For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\""
367 (if (not noninteractive)
368 (error "batch-info-validate may only be used -batch."))
369 (let ((version-control t)
370 (auto-save-default nil)
371 (find-file-run-dired nil)
372 (kept-old-versions 259259)
373 (kept-new-versions 259259))
374 (let ((error 0)
375 file
376 (files ()))
377 (while command-line-args-left
378 (setq file (expand-file-name (car command-line-args-left)))
379 (cond ((not (file-exists-p file))
380 (message ">> %s does not exist!" file)
381 (setq error 1
382 command-line-args-left (cdr command-line-args-left)))
383 ((file-directory-p file)
384 (setq command-line-args-left (nconc (directory-files file)
385 (cdr command-line-args-left))))
386 (t
387 (setq files (cons file files)
388 command-line-args-left (cdr command-line-args-left)))))
389 (while files
390 (setq file (car files)
391 files (cdr files))
392 (let ((lose nil))
393 (condition-case err
394 (progn
395 (if buffer-file-name (kill-buffer (current-buffer)))
396 (find-file file)
397 (buffer-disable-undo (current-buffer))
398 (set-buffer-modified-p nil)
399 (fundamental-mode)
400 (let ((case-fold-search nil))
401 (goto-char (point-max))
402 (cond ((search-backward "\n\^_\^L\nTag table:\n" nil t)
403 (message "%s already tagified" file))
404 ((< (point-max) 30000)
405 (message "%s too small to bother tagifying" file))
406 (t
e8a57935 407 (Info-tagify))))
745bc783
JB
408 (let ((loss-name " *problems in info file*"))
409 (message "Checking validity of info file %s..." file)
410 (if (get-buffer loss-name)
411 (kill-buffer loss-name))
412 (Info-validate)
413 (if (not (get-buffer loss-name))
414 nil ;(message "Checking validity of info file %s... OK" file)
415 (message "----------------------------------------------------------------------")
416 (message ">> PROBLEMS IN INFO FILE %s" file)
417 (save-excursion
418 (set-buffer loss-name)
e64d0760
RS
419 (princ (buffer-substring-no-properties
420 (point-min) (point-max))))
745bc783
JB
421 (message "----------------------------------------------------------------------")
422 (setq error 1 lose t)))
423 (if (and (buffer-modified-p)
424 (not lose))
425 (progn (message "Saving modified %s" file)
426 (save-buffer))))
427 (error (message ">> Error: %s" (prin1-to-string err))))))
428 (kill-emacs error))))
1a06eabd 429
896546cd
RS
430(provide 'informat)
431
1a06eabd 432;;; informat.el ends here