]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/shadow.el
61daa21fcfa16d3ecbff7f2fd7afa58cdd4349c3
[gnu-emacs] / lisp / emacs-lisp / shadow.el
1 ;;; shadow.el --- locate Emacs Lisp file shadowings
2
3 ;; Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 ;; 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Author: Terry Jones <terry@santafe.edu>
7 ;; Keywords: lisp
8 ;; Created: 15 December 1995
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; The functions in this file detect (`load-path-shadows-find')
28 ;; and display (`list-load-path-shadows') potential load-path
29 ;; problems that arise when Emacs Lisp files "shadow" each other.
30 ;;
31 ;; For example, a file XXX.el early in one's load-path will shadow
32 ;; a file with the same name in a later load-path directory. When
33 ;; this is unintentional, it may result in problems that could have
34 ;; been easily avoided. This occurs often (to me) when installing a
35 ;; new version of emacs and something in the site-lisp directory
36 ;; has been updated and added to the emacs distribution. The old
37 ;; version, now outdated, shadows the new one. This is obviously
38 ;; undesirable.
39 ;;
40 ;; The `list-load-path-shadows' function was run when you installed
41 ;; this version of emacs. To run it by hand in emacs:
42 ;;
43 ;; M-x list-load-path-shadows
44 ;;
45 ;; or run it non-interactively via:
46 ;;
47 ;; emacs -batch -f list-load-path-shadows
48 ;;
49 ;; Thanks to Francesco Potorti` <pot@cnuce.cnr.it> for suggestions,
50 ;; rewritings & speedups.
51
52 ;;; Code:
53 \f
54 (defgroup lisp-shadow nil
55 "Locate Emacs Lisp file shadowings."
56 :prefix "load-path-shadows-"
57 :group 'lisp)
58
59 (define-obsolete-variable-alias 'shadows-compare-text-p
60 'load-path-shadows-compare-text "23.3")
61
62 (defcustom load-path-shadows-compare-text nil
63 "If non-nil, then shadowing files are reported only if their text differs.
64 This is slower, but filters out some innocuous shadowing."
65 :type 'boolean
66 :group 'lisp-shadow)
67
68 (defun load-path-shadows-find (&optional path)
69 "Return a list of Emacs Lisp files that create shadows.
70 This function does the work for `list-load-path-shadows'.
71
72 We traverse PATH looking for shadows, and return a \(possibly empty\)
73 even-length list of files. A file in this list at position 2i shadows
74 the file in position 2i+1. Emacs Lisp file suffixes \(.el and .elc\)
75 are stripped from the file names in the list.
76
77 See the documentation for `list-load-path-shadows' for further information."
78 (let (true-names ; List of dirs considered.
79 shadows ; List of shadowings, to be returned.
80 files ; File names ever seen, with dirs.
81 dir ; The dir being currently scanned.
82 curr-files ; This dir's Emacs Lisp files.
83 orig-dir ; Where the file was first seen.
84 files-seen-this-dir ; Files seen so far in this dir.
85 file) ; The current file.
86 (dolist (pp (or path load-path))
87 (setq dir (directory-file-name (file-truename (or pp "."))))
88 (if (member dir true-names)
89 ;; We have already considered this PATH redundant directory.
90 ;; Show the redundancy if we are interactive, unless the PATH
91 ;; dir is nil or "." (these redundant directories are just a
92 ;; result of the current working directory, and are therefore
93 ;; not always redundant).
94 (or noninteractive
95 (and pp
96 (not (string= pp "."))
97 (message "Ignoring redundant directory %s" pp)))
98
99 (setq true-names (append true-names (list dir)))
100 (setq dir (directory-file-name (or pp ".")))
101 (setq curr-files (if (file-accessible-directory-p dir)
102 (directory-files dir nil ".\\.elc?\\(\\.gz\\)?$" t)))
103 (and curr-files
104 (not noninteractive)
105 (message "Checking %d files in %s..." (length curr-files) dir))
106
107 (setq files-seen-this-dir nil)
108
109 (dolist (file curr-files)
110
111 (if (string-match "\\.gz$" file)
112 (setq file (substring file 0 -3)))
113 (setq file (substring
114 file 0 (if (string= (substring file -1) "c") -4 -3)))
115
116 ;; FILE now contains the current file name, with no suffix.
117 (unless (or (member file files-seen-this-dir)
118 ;; Ignore these files.
119 (member file '("subdirs" "leim-list")))
120 ;; File has not been seen yet in this directory.
121 ;; This test prevents us declaring that XXX.el shadows
122 ;; XXX.elc (or vice-versa) when they are in the same directory.
123 (setq files-seen-this-dir (cons file files-seen-this-dir))
124
125 (if (setq orig-dir (assoc file files))
126 ;; This file was seen before, we have a shadowing.
127 ;; Report it unless the files are identical.
128 (let ((base1 (concat (cdr orig-dir) "/" file))
129 (base2 (concat dir "/" file)))
130 (if (not (and load-path-shadows-compare-text
131 (load-path-shadows-same-file-or-nonexistent
132 (concat base1 ".el") (concat base2 ".el"))
133 ;; This is a bit strict, but safe.
134 (load-path-shadows-same-file-or-nonexistent
135 (concat base1 ".elc") (concat base2 ".elc"))))
136 (setq shadows
137 (append shadows (list base1 base2)))))
138
139 ;; Not seen before, add it to the list of seen files.
140 (setq files (cons (cons file dir) files)))))))
141 ;; Return the list of shadowings.
142 shadows))
143
144 (define-obsolete-function-alias 'find-emacs-lisp-shadows
145 'load-path-shadows-find "23.3")
146
147 ;; Return true if neither file exists, or if both exist and have identical
148 ;; contents.
149 (defun load-path-shadows-same-file-or-nonexistent (f1 f2)
150 (let ((exists1 (file-exists-p f1))
151 (exists2 (file-exists-p f2)))
152 (or (and (not exists1) (not exists2))
153 (and exists1 exists2
154 (or (equal (file-truename f1) (file-truename f2))
155 ;; As a quick test, avoiding spawning a process, compare file
156 ;; sizes.
157 (and (= (nth 7 (file-attributes f1))
158 (nth 7 (file-attributes f2)))
159 (eq 0 (call-process "cmp" nil nil nil "-s" f1 f2))))))))
160 \f
161 ;;;###autoload
162 (defun list-load-path-shadows (&optional stringp)
163 "Display a list of Emacs Lisp files that shadow other files.
164
165 If STRINGP is non-nil, returns any shadows as a string.
166 Otherwise, if interactive shows any shadows in a `*Shadows*' buffer;
167 else prints messages listing any shadows.
168
169 This function lists potential load path problems. Directories in
170 the `load-path' variable are searched, in order, for Emacs Lisp
171 files. When a previously encountered file name is found again, a
172 message is displayed indicating that the later file is \"hidden\" by
173 the earlier.
174
175 For example, suppose `load-path' is set to
176
177 \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\"\)
178
179 and that each of these directories contains a file called XXX.el. Then
180 XXX.el in the site-lisp directory is referred to by all of:
181 \(require 'XXX\), \(autoload .... \"XXX\"\), \(load-library \"XXX\"\) etc.
182
183 The first XXX.el file prevents Emacs from seeing the second \(unless
184 the second is loaded explicitly via `load-file'\).
185
186 When not intended, such shadowings can be the source of subtle
187 problems. For example, the above situation may have arisen because the
188 XXX package was not distributed with versions of Emacs prior to
189 19.30. An Emacs maintainer downloaded XXX from elsewhere and installed
190 it. Later, XXX was updated and included in the Emacs distribution.
191 Unless the Emacs maintainer checks for this, the new version of XXX
192 will be hidden behind the old \(which may no longer work with the new
193 Emacs version\).
194
195 This function performs these checks and flags all possible
196 shadowings. Because a .el file may exist without a corresponding .elc
197 \(or vice-versa\), these suffixes are essentially ignored. A file
198 XXX.elc in an early directory \(that does not contain XXX.el\) is
199 considered to shadow a later file XXX.el, and vice-versa.
200
201 Shadowings are located by calling the (non-interactive) companion
202 function, `load-path-shadows-find'."
203 (interactive)
204 (let* ((path (copy-sequence load-path))
205 (tem path)
206 toplevs)
207 ;; If we can find simple.el in two places,
208 (dolist (tt tem)
209 (if (or (file-exists-p (expand-file-name "simple.el" tt))
210 (file-exists-p (expand-file-name "simple.el.gz" tt)))
211 (setq toplevs (cons tt toplevs))))
212 (if (> (length toplevs) 1)
213 ;; Cut off our copy of load-path right before
214 ;; the last directory which has simple.el in it.
215 ;; This avoids loads of duplications between the source dir
216 ;; and the dir where these files were copied by installation.
217 (let ((break (car toplevs)))
218 (setq tem path)
219 (while tem
220 (if (eq (nth 1 tem) break)
221 (progn
222 (setcdr tem nil)
223 (setq tem nil)))
224 (setq tem (cdr tem)))))
225
226 (let* ((shadows (load-path-shadows-find path))
227 (n (/ (length shadows) 2))
228 (msg (format "%s Emacs Lisp load-path shadowing%s found"
229 (if (zerop n) "No" (concat "\n" (number-to-string n)))
230 (if (= n 1) " was" "s were"))))
231 (with-temp-buffer
232 (while shadows
233 (insert (format "%s hides %s\n" (car shadows)
234 (car (cdr shadows))))
235 (setq shadows (cdr (cdr shadows))))
236 (if stringp
237 (buffer-string)
238 (if (called-interactively-p 'interactive)
239 ;; We are interactive.
240 ;; Create the *Shadows* buffer and display shadowings there.
241 (let ((string (buffer-string)))
242 (with-current-buffer (get-buffer-create "*Shadows*")
243 (fundamental-mode) ;run after-change-major-mode-hook.
244 (display-buffer (current-buffer))
245 (setq buffer-undo-list t
246 buffer-read-only nil)
247 (erase-buffer)
248 (insert string)
249 (insert msg "\n")
250 (setq buffer-read-only t)))
251 ;; We are non-interactive, print shadows via message.
252 (unless (zerop n)
253 (message "This site has duplicate Lisp libraries with the same name.
254 If a locally-installed Lisp library overrides a library in the Emacs release,
255 that can cause trouble, and you should probably remove the locally-installed
256 version unless you know what you are doing.\n")
257 (goto-char (point-min))
258 ;; Mimic the previous behavior of using lots of messages.
259 ;; I think one single message would look better...
260 (while (not (eobp))
261 (message "%s" (buffer-substring (line-beginning-position)
262 (line-end-position)))
263 (forward-line 1))
264 (message "%s" msg))))))))
265
266 (provide 'shadow)
267
268 ;; arch-tag: 0480e8a7-62ed-4a12-a9f6-f44ded9b0830
269 ;;; shadow.el ends here