* lisp/emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
[bpt/emacs.git] / lisp / emacs-lisp / shadow.el
CommitLineData
e8af40ee 1;;; shadow.el --- locate Emacs Lisp file shadowings
50584ac0 2
ab422c4d 3;; Copyright (C) 1995, 2001-2013 Free Software Foundation, Inc.
50584ac0
KH
4
5;; Author: Terry Jones <terry@santafe.edu>
6;; Keywords: lisp
7;; Created: 15 December 1995
8
9;; This file is part of GNU Emacs.
10
d6cba7ae 11;; GNU Emacs is free software: you can redistribute it and/or modify
50584ac0 12;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
50584ac0
KH
15
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.
20
21;; You should have received a copy of the GNU General Public License
d6cba7ae 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
50584ac0
KH
23
24;;; Commentary:
b578f267 25
d15f9a2b 26;; The functions in this file detect (`load-path-shadows-find')
50584ac0
KH
27;; and display (`list-load-path-shadows') potential load-path
28;; problems that arise when Emacs Lisp files "shadow" each other.
29;;
30;; For example, a file XXX.el early in one's load-path will shadow
31;; a file with the same name in a later load-path directory. When
32;; this is unintentional, it may result in problems that could have
33;; been easily avoided. This occurs often (to me) when installing a
34;; new version of emacs and something in the site-lisp directory
35;; has been updated and added to the emacs distribution. The old
36;; version, now outdated, shadows the new one. This is obviously
37;; undesirable.
38;;
39;; The `list-load-path-shadows' function was run when you installed
40;; this version of emacs. To run it by hand in emacs:
41;;
50584ac0
KH
42;; M-x list-load-path-shadows
43;;
44;; or run it non-interactively via:
45;;
7ba65108 46;; emacs -batch -f list-load-path-shadows
50584ac0
KH
47;;
48;; Thanks to Francesco Potorti` <pot@cnuce.cnr.it> for suggestions,
49;; rewritings & speedups.
50
51;;; Code:
52\f
4e2ad9ea 53(defgroup lisp-shadow nil
666b9413 54 "Locate Emacs Lisp file shadowings."
e5d49589 55 :prefix "load-path-shadows-"
666b9413
SE
56 :group 'lisp)
57
e5d49589
GM
58(define-obsolete-variable-alias 'shadows-compare-text-p
59 'load-path-shadows-compare-text "23.3")
60
61(defcustom load-path-shadows-compare-text nil
7ba65108 62 "If non-nil, then shadowing files are reported only if their text differs.
666b9413
SE
63This is slower, but filters out some innocuous shadowing."
64 :type 'boolean
4e2ad9ea 65 :group 'lisp-shadow)
b7797a3e 66
d15f9a2b 67(defun load-path-shadows-find (&optional path)
50584ac0
KH
68 "Return a list of Emacs Lisp files that create shadows.
69This function does the work for `list-load-path-shadows'.
70
71We traverse PATH looking for shadows, and return a \(possibly empty\)
72even-length list of files. A file in this list at position 2i shadows
73the file in position 2i+1. Emacs Lisp file suffixes \(.el and .elc\)
74are stripped from the file names in the list.
75
76See the documentation for `list-load-path-shadows' for further information."
50584ac0
KH
77 (let (true-names ; List of dirs considered.
78 shadows ; List of shadowings, to be returned.
79 files ; File names ever seen, with dirs.
80 dir ; The dir being currently scanned.
81 curr-files ; This dir's Emacs Lisp files.
82 orig-dir ; Where the file was first seen.
83 files-seen-this-dir ; Files seen so far in this dir.
84 file) ; The current file.
b16ff465
GM
85 (dolist (pp (or path load-path))
86 (setq dir (directory-file-name (file-truename (or pp "."))))
50584ac0
KH
87 (if (member dir true-names)
88 ;; We have already considered this PATH redundant directory.
f5bb9196 89 ;; Show the redundancy if we are interactive, unless the PATH
50584ac0
KH
90 ;; dir is nil or "." (these redundant directories are just a
91 ;; result of the current working directory, and are therefore
92 ;; not always redundant).
93 (or noninteractive
b16ff465
GM
94 (and pp
95 (not (string= pp "."))
96 (message "Ignoring redundant directory %s" pp)))
b7797a3e 97
50584ac0 98 (setq true-names (append true-names (list dir)))
b16ff465 99 (setq dir (directory-file-name (or pp ".")))
50584ac0 100 (setq curr-files (if (file-accessible-directory-p dir)
da49096f 101 (directory-files dir nil ".\\.elc?\\(\\.gz\\)?$" t)))
50584ac0
KH
102 (and curr-files
103 (not noninteractive)
c2b7bdc2 104 (message "Checking %d files in %s..." (length curr-files) dir))
b7797a3e 105
50584ac0
KH
106 (setq files-seen-this-dir nil)
107
b16ff465 108 (dolist (file curr-files)
50584ac0 109
da49096f
AS
110 (if (string-match "\\.gz$" file)
111 (setq file (substring file 0 -3)))
50584ac0
KH
112 (setq file (substring
113 file 0 (if (string= (substring file -1) "c") -4 -3)))
114
5017dcaa
RS
115 ;; FILE now contains the current file name, with no suffix.
116 (unless (or (member file files-seen-this-dir)
117 ;; Ignore these files.
e935c6a2 118 (member file '("subdirs" "leim-list")))
50584ac0
KH
119 ;; File has not been seen yet in this directory.
120 ;; This test prevents us declaring that XXX.el shadows
121 ;; XXX.elc (or vice-versa) when they are in the same directory.
122 (setq files-seen-this-dir (cons file files-seen-this-dir))
a1506d29 123
50584ac0
KH
124 (if (setq orig-dir (assoc file files))
125 ;; This file was seen before, we have a shadowing.
b7797a3e
KH
126 ;; Report it unless the files are identical.
127 (let ((base1 (concat (cdr orig-dir) "/" file))
128 (base2 (concat dir "/" file)))
e5d49589
GM
129 (if (not (and load-path-shadows-compare-text
130 (load-path-shadows-same-file-or-nonexistent
b7797a3e
KH
131 (concat base1 ".el") (concat base2 ".el"))
132 ;; This is a bit strict, but safe.
e5d49589 133 (load-path-shadows-same-file-or-nonexistent
b7797a3e 134 (concat base1 ".elc") (concat base2 ".elc"))))
3a6a40e5
RS
135 (setq shadows
136 (append shadows (list base1 base2)))))
50584ac0
KH
137
138 ;; Not seen before, add it to the list of seen files.
b16ff465 139 (setq files (cons (cons file dir) files)))))))
50584ac0
KH
140 ;; Return the list of shadowings.
141 shadows))
142
d15f9a2b
GM
143(define-obsolete-function-alias 'find-emacs-lisp-shadows
144 'load-path-shadows-find "23.3")
145
b7797a3e
KH
146;; Return true if neither file exists, or if both exist and have identical
147;; contents.
e5d49589 148(defun load-path-shadows-same-file-or-nonexistent (f1 f2)
b7797a3e
KH
149 (let ((exists1 (file-exists-p f1))
150 (exists2 (file-exists-p f2)))
151 (or (and (not exists1) (not exists2))
152 (and exists1 exists2
153 (or (equal (file-truename f1) (file-truename f2))
154 ;; As a quick test, avoiding spawning a process, compare file
155 ;; sizes.
156 (and (= (nth 7 (file-attributes f1))
157 (nth 7 (file-attributes f2)))
15502042 158 (eq 0 (call-process "cmp" nil nil nil "-s" f1 f2))))))))
7b9235ad 159
06d9ef85 160(defvar load-path-shadows-font-lock-keywords
511fd0b2
GM
161 ;; The idea is that shadows of files supplied with Emacs are more
162 ;; serious than various versions of external packages shadowing each
163 ;; other.
7b9235ad 164 `((,(format "hides \\(%s.*\\)"
511fd0b2
GM
165 (file-name-directory
166 (or (locate-library "simple")
167 (file-name-as-directory
168 (expand-file-name "../lisp" data-directory)))))
7b9235ad 169 . (1 font-lock-warning-face)))
ac44263a 170 "Keywords to highlight in `load-path-shadows-mode'.")
7b9235ad 171
ac44263a 172(define-derived-mode load-path-shadows-mode fundamental-mode "LP-Shadows"
7b9235ad
GM
173 "Major mode for load-path shadows buffer."
174 (set (make-local-variable 'font-lock-defaults)
06d9ef85 175 '((load-path-shadows-font-lock-keywords)))
7b9235ad
GM
176 (setq buffer-undo-list t
177 buffer-read-only t))
178
179;; TODO use text-properties instead, a la dired.
180(require 'button)
06d9ef85 181(define-button-type 'load-path-shadows-find-file
7b9235ad
GM
182 'follow-link t
183;; 'face 'default
184 'action (lambda (button)
185 (let ((file (concat (button-get button 'shadow-file) ".el")))
186 (or (file-exists-p file)
187 (setq file (concat file ".gz")))
188 (if (file-readable-p file)
189 (pop-to-buffer (find-file-noselect file))
190 (error "Cannot read file"))))
191 'help-echo "mouse-2, RET: find this file")
192
50584ac0
KH
193\f
194;;;###autoload
7ba65108 195(defun list-load-path-shadows (&optional stringp)
0f93e41f 196 "Display a list of Emacs Lisp files that shadow other files.
50584ac0 197
7ba65108
GM
198If STRINGP is non-nil, returns any shadows as a string.
199Otherwise, if interactive shows any shadows in a `*Shadows*' buffer;
200else prints messages listing any shadows.
201
f5bb9196
JB
202This function lists potential load path problems. Directories in
203the `load-path' variable are searched, in order, for Emacs Lisp
0f93e41f
RS
204files. When a previously encountered file name is found again, a
205message is displayed indicating that the later file is \"hidden\" by
50584ac0
KH
206the earlier.
207
208For example, suppose `load-path' is set to
209
e6ea1f6c 210\(\"/usr/share/emacs/site-lisp\" \"/usr/share/emacs/24.3/lisp\")
50584ac0
KH
211
212and that each of these directories contains a file called XXX.el. Then
213XXX.el in the site-lisp directory is referred to by all of:
e6ea1f6c 214\(require 'XXX), (autoload .... \"XXX\"), (load-library \"XXX\") etc.
50584ac0 215
e6ea1f6c
GM
216The first XXX.el file prevents Emacs from seeing the second (unless
217the second is loaded explicitly via `load-file').
50584ac0
KH
218
219When not intended, such shadowings can be the source of subtle
220problems. For example, the above situation may have arisen because the
32a37bc6 221XXX package was not distributed with versions of Emacs prior to
e6ea1f6c 22224.3. A system administrator downloaded XXX from elsewhere and installed
32a37bc6 223it. Later, XXX was updated and included in the Emacs distribution.
e6ea1f6c
GM
224Unless the system administrator checks for this, the new version of XXX
225will be hidden behind the old (which may no longer work with the new
226Emacs version).
50584ac0
KH
227
228This function performs these checks and flags all possible
229shadowings. Because a .el file may exist without a corresponding .elc
e6ea1f6c
GM
230\(or vice-versa), these suffixes are essentially ignored. A file
231XXX.elc in an early directory (that does not contain XXX.el) is
50584ac0
KH
232considered to shadow a later file XXX.el, and vice-versa.
233
7ba65108 234Shadowings are located by calling the (non-interactive) companion
d15f9a2b 235function, `load-path-shadows-find'."
50584ac0 236 (interactive)
e6ea1f6c
GM
237 (let* ((shadows (load-path-shadows-find load-path))
238 (n (/ (length shadows) 2))
239 (msg (format "%s Emacs Lisp load-path shadowing%s found"
240 (if (zerop n) "No" (concat "\n" (number-to-string n)))
241 (if (= n 1) " was" "s were"))))
242 (with-temp-buffer
243 (while shadows
244 (insert (format "%s hides %s\n" (car shadows)
245 (car (cdr shadows))))
246 (setq shadows (cdr (cdr shadows))))
247 (if stringp
248 (buffer-string)
249 (if (called-interactively-p 'interactive)
250 ;; We are interactive.
251 ;; Create the *Shadows* buffer and display shadowings there.
252 (let ((string (buffer-string)))
253 (with-current-buffer (get-buffer-create "*Shadows*")
254 (display-buffer (current-buffer))
255 (load-path-shadows-mode) ; run after-change-major-mode-hook
256 (let ((inhibit-read-only t))
257 (erase-buffer)
258 (insert string)
259 (insert msg "\n")
260 (while (re-search-backward "\\(^.*\\) hides \\(.*$\\)"
261 nil t)
262 (dotimes (i 2)
263 (make-button (match-beginning (1+ i))
264 (match-end (1+ i))
265 'type 'load-path-shadows-find-file
266 'shadow-file
267 (match-string (1+ i)))))
268 (goto-char (point-max)))))
269 ;; We are non-interactive, print shadows via message.
270 (unless (zerop n)
271 (message "This site has duplicate Lisp libraries with the same name.
5017dcaa
RS
272If a locally-installed Lisp library overrides a library in the Emacs release,
273that can cause trouble, and you should probably remove the locally-installed
248a9f6d 274version unless you know what you are doing.\n")
e6ea1f6c
GM
275 (goto-char (point-min))
276 ;; Mimic the previous behavior of using lots of messages.
277 ;; I think one single message would look better...
278 (while (not (eobp))
279 (message "%s" (buffer-substring (line-beginning-position)
280 (line-end-position)))
281 (forward-line 1))
282 (message "%s" msg)))))))
50584ac0
KH
283
284(provide 'shadow)
285
286;;; shadow.el ends here