Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / textmodes / reftex-global.el
blob4311c99923eb47a553f92752f74f7928068be916
1 ;;; reftex-global.el --- operations on entire documents with RefTeX
3 ;; Copyright (C) 1997-2014 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <dominik@science.uva.nl>
6 ;; Maintainer: auctex-devel@gnu.org
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;;; Code:
27 (eval-when-compile (require 'cl))
28 (provide 'reftex-global)
29 (require 'reftex)
30 ;;;
32 (defun reftex-create-tags-file ()
33 "Create TAGS file by running `etags' on the current document.
34 The TAGS file is also immediately visited with `visit-tags-table'."
35 (interactive)
36 (reftex-access-scan-info current-prefix-arg)
37 (let* ((master (reftex-TeX-master-file))
38 (files (reftex-all-document-files))
39 (cmd (format "etags %s" (mapconcat 'shell-quote-argument
40 files " "))))
41 (with-current-buffer (reftex-get-file-buffer-force master)
42 (message "Running etags to create TAGS file...")
43 (shell-command cmd)
44 (visit-tags-table "TAGS"))))
46 ;; History of grep commands.
47 (defvar reftex-grep-history nil)
48 (defvar reftex-grep-command "grep -n "
49 "Last grep command used in \\[reftex-grep-document]; default for next grep.")
51 (defun reftex-grep-document (grep-cmd)
52 "Run grep query through all files related to this document.
53 With prefix arg, force to rescan document.
54 No active TAGS table is required."
56 (interactive
57 (list (read-from-minibuffer "Run grep on document (like this): "
58 reftex-grep-command nil nil
59 'reftex-grep-history)))
60 (reftex-access-scan-info current-prefix-arg)
61 (let* ((files (reftex-all-document-files t))
62 (cmd (format
63 "%s %s" grep-cmd
64 (mapconcat 'identity files " "))))
65 (grep cmd)))
67 (defun reftex-search-document (&optional regexp)
68 "Regexp search through all files of the current document.
69 Starts always in the master file. Stops when a match is found.
70 To continue searching for next match, use command \\[tags-loop-continue].
71 No active TAGS table is required."
72 (interactive)
73 (let ((default (reftex-this-word)))
74 (unless regexp
75 (setq regexp (read-string (format "Search regexp in document [%s]: "
76 default))))
77 (if (string= regexp "") (setq regexp (regexp-quote default)))
79 (reftex-access-scan-info current-prefix-arg)
80 (tags-search regexp (list 'reftex-all-document-files))))
82 (defun reftex-query-replace-document (&optional from to delimited)
83 "Do `query-replace-regexp' of FROM with TO over the entire document.
84 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
85 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
86 with the command \\[tags-loop-continue].
87 No active TAGS table is required."
88 (interactive)
89 (let ((default (reftex-this-word)))
90 (unless from
91 (setq from (read-string (format "Replace regexp in document [%s]: "
92 default)))
93 (if (string= from "") (setq from (regexp-quote default))))
94 (unless to
95 (setq to (read-string (format "Replace regexp %s with: " from))))
96 (reftex-access-scan-info current-prefix-arg)
97 (tags-query-replace from to (or delimited current-prefix-arg)
98 (list 'reftex-all-document-files))))
100 (defvar TeX-master)
101 (defvar isearch-next-buffer-function)
103 (defun reftex-find-duplicate-labels ()
104 "Produce a list of all duplicate labels in the document."
106 (interactive)
108 ;; Rescan the document to make sure
109 (reftex-access-scan-info t)
111 (let ((master (reftex-TeX-master-file))
112 (cnt 0)
113 (dlist
114 (mapcar
115 (lambda (x)
116 (let (x1)
117 (cond
118 ((memq (car x)
119 '(toc bof eof bib thebib label-numbers xr xr-doc
120 master-dir file-error bibview-cache appendix
121 is-multi index))
122 nil)
124 (setq x1 (reftex-all-assoc-string
125 (car x) (symbol-value reftex-docstruct-symbol)))
126 (if (< 1 (length x1))
127 (append (list (car x))
128 (mapcar (lambda(x)
129 (abbreviate-file-name (nth 3 x)))
130 x1))
131 (list nil))))))
132 (reftex-uniquify-by-car (symbol-value reftex-docstruct-symbol)))))
134 (setq dlist (reftex-uniquify-by-car dlist))
135 (if (null dlist) (error "No duplicate labels in document"))
136 (switch-to-buffer-other-window "*Duplicate Labels*")
137 (set (make-local-variable 'TeX-master) master)
138 (erase-buffer)
139 (insert " MULTIPLE LABELS IN CURRENT DOCUMENT:\n")
140 (insert
141 " Move point to label and type `r' to run a query-replace on the label\n"
142 " and its references. Type `q' to exit this buffer.\n\n")
143 (insert " LABEL FILE\n")
144 (insert " -------------------------------------------------------------\n")
145 (use-local-map (make-sparse-keymap))
146 (local-set-key [?q] (lambda () "Kill this buffer." (interactive)
147 (kill-buffer (current-buffer)) (delete-window)))
148 (local-set-key [?r] 'reftex-change-label)
149 (while dlist
150 (when (and (car (car dlist))
151 (cdr (car dlist)))
152 (incf cnt)
153 (insert (mapconcat 'identity (car dlist) "\n ") "\n"))
154 (pop dlist))
155 (goto-char (point-min))
156 (when (= cnt 0)
157 (kill-buffer (current-buffer))
158 (delete-window)
159 (message "Document does not contain duplicate labels."))))
161 (defun reftex-change-label (&optional from to)
162 "Run `query-replace-regexp' of FROM with TO in all macro arguments.
163 Works on the entire multifile document.
164 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
165 with the command \\[tags-loop-continue].
166 No active TAGS table is required."
167 (interactive)
168 (let ((default (reftex-this-word "-a-zA-Z0-9_*.:")))
169 (unless from
170 (setq from (read-string (format "Replace label globally [%s]: "
171 default))))
172 (if (string= from "") (setq from default))
173 (unless to
174 (setq to (read-string (format "Replace label %s with: "
175 from))))
176 (reftex-query-replace-document
177 (concat "{" (regexp-quote from) "}")
178 (format "{%s}" to))))
180 (defun reftex-renumber-simple-labels ()
181 "Renumber all simple labels in the document to make them sequentially.
182 Simple labels are the ones created by RefTeX, consisting only of the
183 prefix and a number. After the command completes, all these labels will
184 have sequential numbers throughout the document. Any references to
185 the labels will be changed as well. For this, RefTeX looks at the
186 arguments of any macros which either start or end in the string `ref'.
187 This command should be used with care, in particular in multifile
188 documents. You should not use it if another document refers to this
189 one with the `xr' package."
190 (interactive)
191 ;; Rescan the entire document
192 (reftex-access-scan-info 1)
193 ;; Get some insurance
194 (if (and (reftex-is-multi)
195 (not (yes-or-no-p "Replacing all simple labels in multiple files is risky. Continue? ")))
196 (error "Abort"))
197 ;; Make the translation list
198 (let* ((re-core (concat "\\("
199 (mapconcat 'cdr reftex-typekey-to-prefix-alist "\\|")
200 "\\)"))
201 (label-re (concat "\\`" re-core "\\([0-9]+\\)\\'"))
202 (search-re (concat "[{,]\\(" re-core "\\([0-9]+\\)\\)[,}]"))
203 (error-fmt "Undefined label or reference %s. Ignore and continue? ")
204 (label-numbers-alist (mapcar (lambda (x) (cons (cdr x) 0))
205 reftex-typekey-to-prefix-alist))
206 (files (reftex-all-document-files))
207 (list (symbol-value reftex-docstruct-symbol))
208 translate-alist n entry label new-label nr-cell changed-sequence)
210 (while (setq entry (pop list))
211 (when (and (stringp (car entry))
212 (string-match label-re (car entry)))
213 (setq label (car entry)
214 nr-cell (assoc (match-string 1 (car entry))
215 label-numbers-alist))
216 (if (assoc label translate-alist)
217 (error "Duplicate label %s" label))
218 (setq new-label (concat (match-string 1 (car entry))
219 (int-to-string (incf (cdr nr-cell)))))
220 (push (cons label new-label) translate-alist)
221 (or (string= label new-label) (setq changed-sequence t))))
223 (unless changed-sequence
224 (error "Simple labels are already in correct sequence"))
226 (reftex-ensure-write-access (reftex-all-document-files))
228 ;; Save all document buffers before this operation
229 (reftex-save-all-document-buffers)
231 ;; First test to check for errors.
232 (setq n (reftex-translate
233 files search-re translate-alist error-fmt 'test))
235 ;; Now the real thing.
236 (if (yes-or-no-p
237 (format "Replace %d items at %d places in %d files? "
238 (length translate-alist) n (length files)))
239 (progn
240 (let ((inhibit-quit t)) ;; Do not disturb...
241 (reftex-translate
242 files search-re translate-alist error-fmt nil)
243 (setq quit-flag nil))
244 (if (and (reftex-is-multi)
245 (yes-or-no-p "Save entire document? "))
246 (reftex-save-all-document-buffers))
247 ;; Rescan again...
248 (reftex-access-scan-info 1)
249 (message "Done replacing simple labels."))
250 (message "No replacements done"))))
252 (defun reftex-translate (files search-re translate-alist error-fmt test)
253 ;; In FILES, look for SEARCH-RE and replace match 1 of it with
254 ;; its association in TRANSLATE-ALIST.
255 ;; If we do not find an association and TEST is non-nil, query
256 ;; to ignore the problematic string.
257 ;; If TEST is nil, it is ignored without query.
258 ;; Return the number of replacements.
259 (let ((n 0) file label match-data buf macro pos cell)
260 (while (setq file (pop files))
261 (setq buf (reftex-get-file-buffer-force file))
262 (unless buf
263 (error "No such file %s" file))
264 (set-buffer buf)
265 (save-excursion
266 (save-restriction
267 (widen)
268 (goto-char (point-min))
269 (while (re-search-forward search-re nil t)
270 (backward-char)
271 (save-excursion
272 (setq label (reftex-match-string 1)
273 cell (assoc label translate-alist)
274 match-data (match-data)
275 macro (reftex-what-macro 1)
276 pos (cdr macro))
277 (goto-char (or pos (point)))
278 (when (and macro
279 (or (looking-at "\\\\ref")
280 (looking-at "\\\\[a-zA-Z]*ref\\(range\\)?[^a-zA-Z]")
281 (looking-at "\\\\ref[a-zA-Z]*[^a-zA-Z]")
282 (looking-at (format
283 reftex-find-label-regexp-format
284 (regexp-quote label)))))
285 ;; OK, we should replace it.
286 (set-match-data match-data)
287 (cond
288 ((and test (not cell))
289 ;; We've got a problem
290 (unwind-protect
291 (progn
292 (reftex-highlight 1 (match-beginning 0) (match-end 0))
293 (ding)
294 (or (y-or-n-p (format error-fmt label))
295 (error "Abort")))
296 (reftex-unhighlight 1)))
297 ((and test cell)
298 (incf n))
299 ((and (not test) cell)
300 ;; Replace
301 (goto-char (match-beginning 1))
302 (delete-region (match-beginning 1) (match-end 1))
303 (insert (cdr cell)))
304 (t nil))))))))
307 (defun reftex-save-all-document-buffers ()
308 "Save all documents associated with the current document.
309 The function is useful after a global action like replacing or renumbering
310 labels."
311 (interactive)
312 (let ((files (reftex-all-document-files))
313 file buffer)
314 (save-current-buffer
315 (while (setq file (pop files))
316 (setq buffer (reftex-get-buffer-visiting file))
317 (when buffer
318 (set-buffer buffer)
319 (save-buffer))))))
321 (defun reftex-ensure-write-access (files)
322 "Make sure we have write access to all files in FILES.
323 Also checks if buffers visiting the files are in read-only mode."
324 (let (file buf)
325 (while (setq file (pop files))
326 (unless (file-exists-p file)
327 (ding)
328 (or (y-or-n-p (format "No such file %s. Continue? " file))
329 (error "Abort")))
330 (unless (file-writable-p file)
331 (ding)
332 (or (y-or-n-p (format "No write access to %s. Continue? " file))
333 (error "Abort")))
334 (when (and (setq buf (reftex-get-buffer-visiting file))
335 (with-current-buffer buf
336 buffer-read-only))
337 (ding)
338 (or (y-or-n-p (format "Buffer %s is read-only. Continue? "
339 (buffer-name buf)))
340 (error "Abort"))))))
342 ;;; Multi-file RefTeX Isearch
344 ;; `reftex-isearch-wrap-function', `reftex-isearch-push-state-function',
345 ;; `reftex-isearch-pop-state-function', `reftex-isearch-isearch-search'
346 ;; functions remain here only for backward-compatibility with Emacs 22
347 ;; and are obsolete since Emacs 23 that supports a single function
348 ;; variable `multi-isearch-next-buffer-function'.
350 (defun reftex-isearch-wrap-function ()
351 (switch-to-buffer
352 (funcall isearch-next-buffer-function (current-buffer) t))
353 (goto-char (if isearch-forward (point-min) (point-max))))
355 (defun reftex-isearch-push-state-function ()
356 `(lambda (cmd)
357 (reftex-isearch-pop-state-function cmd ,(current-buffer))))
359 (defun reftex-isearch-pop-state-function (cmd buffer)
360 (switch-to-buffer buffer))
362 (defun reftex-isearch-isearch-search (string bound noerror)
363 (let ((nxt-buff nil)
364 (search-fun (isearch-search-fun-default)))
366 (funcall search-fun string bound noerror)
367 (unless bound
368 (condition-case nil
369 (when isearch-next-buffer-function
370 (while (not (funcall search-fun string bound noerror))
371 (cond
372 (isearch-forward
373 (setq nxt-buff
374 (funcall isearch-next-buffer-function
375 (current-buffer)))
376 (if (not nxt-buff)
377 (progn
378 (error "Wrap forward"))
379 (switch-to-buffer nxt-buff)
380 (goto-char (point-min))))
382 (setq nxt-buff
383 (funcall isearch-next-buffer-function
384 (current-buffer)))
385 (if (not nxt-buff)
386 (progn
387 (error "Wrap backward"))
388 (switch-to-buffer nxt-buff)
389 (goto-char (point-max))))))
390 (point))
391 (error nil))))))
393 ;; This function is called when isearch reaches the end of a
394 ;; buffer. For reftex what we want to do is not wrap to the
395 ;; beginning, but switch to the next buffer in the logical order of
396 ;; the document. This function looks through list of files in the
397 ;; document (reftex-all-document-files), searches for the current
398 ;; buffer and switches to the next/previous one in the logical order
399 ;; of the document. If WRAPP is true then wrap the search to the
400 ;; beginning/end of the file list, depending of the search direction.
401 (defun reftex-isearch-switch-to-next-file (crt-buf &optional wrapp)
402 (reftex-access-scan-info)
403 (let ((cb (buffer-file-name crt-buf))
404 (flist (reftex-all-document-files)))
405 (when flist
406 (if wrapp
407 (unless isearch-forward
408 (setq flist (last flist)))
409 (unless isearch-forward
410 (setq flist (reverse flist)))
411 (while (not (string= (car flist) cb))
412 (setq flist (cdr flist)))
413 (setq flist (cdr flist)))
414 (when flist
415 (find-file-noselect (car flist))))))
417 ;;;###autoload
418 (defun reftex-isearch-minor-mode (&optional arg)
419 "When on, isearch searches the whole document, not only the current file.
420 This minor mode allows isearch to search through all the files of
421 the current TeX document.
423 With no argument, this command toggles
424 `reftex-isearch-minor-mode'. With a prefix argument ARG, turn
425 `reftex-isearch-minor-mode' on if ARG is positive, otherwise turn it off."
426 (interactive "P")
427 (let ((old-reftex-isearch-minor-mode reftex-isearch-minor-mode))
428 (setq reftex-isearch-minor-mode
429 (not (or (and (null arg) reftex-isearch-minor-mode)
430 (<= (prefix-numeric-value arg) 0))))
431 (unless (eq reftex-isearch-minor-mode old-reftex-isearch-minor-mode)
432 (if reftex-isearch-minor-mode
433 (progn
434 (dolist (crt-buf (buffer-list))
435 (with-current-buffer crt-buf
436 (when reftex-mode
437 (if (boundp 'multi-isearch-next-buffer-function)
438 (set (make-local-variable
439 'multi-isearch-next-buffer-function)
440 'reftex-isearch-switch-to-next-file)
441 (set (make-local-variable 'isearch-wrap-function)
442 'reftex-isearch-wrap-function)
443 (set (make-local-variable 'isearch-search-fun-function)
444 (lambda () 'reftex-isearch-isearch-search))
445 (set (make-local-variable 'isearch-push-state-function)
446 'reftex-isearch-push-state-function)
447 (set (make-local-variable 'isearch-next-buffer-function)
448 'reftex-isearch-switch-to-next-file))
449 (setq reftex-isearch-minor-mode t))))
450 (add-hook 'reftex-mode-hook 'reftex-isearch-minor-mode))
451 (dolist (crt-buf (buffer-list))
452 (with-current-buffer crt-buf
453 (when reftex-mode
454 (if (boundp 'multi-isearch-next-buffer-function)
455 (kill-local-variable 'multi-isearch-next-buffer-function)
456 (kill-local-variable 'isearch-wrap-function)
457 (kill-local-variable 'isearch-search-fun-function)
458 (kill-local-variable 'isearch-push-state-function)
459 (kill-local-variable 'isearch-next-buffer-function))
460 (setq reftex-isearch-minor-mode nil))))
461 (remove-hook 'reftex-mode-hook 'reftex-isearch-minor-mode)))
462 ;; Force mode line redisplay.
463 (set-buffer-modified-p (buffer-modified-p))))
465 (add-minor-mode 'reftex-isearch-minor-mode "/I" nil nil
466 'reftex-isearch-minor-mode)
468 ;;; reftex-global.el ends here