(unload-feature): A bit of sanity check of
[bpt/emacs.git] / lisp / loadhist.el
CommitLineData
2b86d62c 1;;; loadhist.el --- lisp functions for working with feature groups
b578f267 2
0d30b337 3;; Copyright (C) 1995, 1998, 2000, 2002, 2003, 2004,
aaef169d 4;; 2005, 2006 Free Software Foundation, Inc.
2b86d62c
RS
5
6;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
53c1fa0f 7;; Maintainer: FSF
2b86d62c
RS
8;; Keywords: internal
9
131a0c01
KH
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 2, or (at your option)
15;; 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
b578f267 23;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
131a0c01 26
2b86d62c
RS
27;;; Commentary:
28
29;; These functions exploit the load-history system variable.
fde4581d
RS
30;; Entry points include `unload-feature', `symbol-file', and
31;; `feature-file', documented in the Emacs Lisp manual.
2b86d62c
RS
32
33;;; Code:
34
ab215e72
SM
35(eval-when-compile (require 'cl))
36
2b86d62c 37(defun feature-symbols (feature)
7dc2cc98
RS
38 "Return the file and list of definitions associated with FEATURE.
39The value is actually the element of `load-history'
40for the file that did (provide FEATURE)."
2b86d62c 41 (catch 'foundit
53c1fa0f
DL
42 (mapc (lambda (x)
43 (if (member (cons 'provide feature) (cdr x))
44 (throw 'foundit x)))
45 load-history)
2b86d62c
RS
46 nil))
47
48(defun feature-file (feature)
49 "Return the file name from which a given FEATURE was loaded.
50Actually, return the load argument, if any; this is sometimes the name of a
53c1fa0f
DL
51Lisp file without an extension. If the feature came from an `eval-buffer' on
52a buffer with no associated file, or an `eval-region', return nil."
2b86d62c 53 (if (not (featurep feature))
53c1fa0f 54 (error "%S is not a currently loaded feature" feature)
2b86d62c
RS
55 (car (feature-symbols feature))))
56
27af61fe 57(defun file-loadhist-lookup (file)
1c11da91
RS
58 "Return the `load-history' element for FILE.
59FILE can be a file name, or a library name.
60A library name is equivalent to the file name that `load-library' would load."
27af61fe
RS
61 ;; First look for FILE as given.
62 (let ((symbols (assoc file load-history)))
63 ;; Try converting a library name to an absolute file name.
64 (and (null symbols)
e18ce91d
LT
65 (let ((absname
66 (locate-file file load-path (get-load-suffixes))))
1c11da91
RS
67 (and absname (not (equal absname file))
68 (setq symbols (cdr (assoc absname load-history))))))
27af61fe
RS
69 symbols))
70
2b86d62c 71(defun file-provides (file)
1c11da91
RS
72 "Return the list of features provided by FILE as it was loaded.
73FILE can be a file name, or a library name.
74A library name is equivalent to the file name that `load-library' would load."
27af61fe 75 (let ((symbols (file-loadhist-lookup file))
53c1fa0f
DL
76 provides)
77 (mapc (lambda (x)
78 (if (and (consp x) (eq (car x) 'provide))
79 (setq provides (cons (cdr x) provides))))
80 symbols)
81 provides))
2b86d62c
RS
82
83(defun file-requires (file)
1c11da91
RS
84 "Return the list of features required by FILE as it was loaded.
85FILE can be a file name, or a library name.
86A library name is equivalent to the file name that `load-library' would load."
27af61fe 87 (let ((symbols (file-loadhist-lookup file))
53c1fa0f
DL
88 requires)
89 (mapc (lambda (x)
90 (if (and (consp x) (eq (car x) 'require))
91 (setq requires (cons (cdr x) requires))))
92 symbols)
93 requires))
94
95(defsubst file-set-intersect (p q)
96 "Return the set intersection of two lists."
2b86d62c 97 (let ((ret nil))
53c1fa0f
DL
98 (dolist (x p ret)
99 (if (memq x q) (setq ret (cons x ret))))
100 ret))
2b86d62c
RS
101
102(defun file-dependents (file)
e01ac82c 103 "Return the list of loaded libraries that depend on FILE.
1c11da91
RS
104This can include FILE itself.
105FILE can be a file name, or a library name.
106A library name is equivalent to the file name that `load-library' would load."
53c1fa0f
DL
107 (let ((provides (file-provides file))
108 (dependents nil))
109 (dolist (x load-history dependents)
110 (if (file-set-intersect provides (file-requires (car x)))
111 (setq dependents (cons (car x) dependents))))
112 dependents))
2b86d62c 113
d4708676 114(defun read-feature (prompt)
fde4581d
RS
115 "Read a feature name \(string\) from the minibuffer.
116Prompt with PROMPT and completing from `features', and
d4708676
RS
117return the feature \(symbol\)."
118 (intern (completing-read prompt
53c1fa0f
DL
119 (mapcar (lambda (feature)
120 (list (symbol-name feature)))
d4708676
RS
121 features)
122 nil t)))
123
28d02da1
RS
124(defvaralias 'loadhist-hook-functions 'unload-feature-special-hooks)
125(defvar unload-feature-special-hooks
28d8dff1 126 '(after-change-functions
7dc2cc98
RS
127 after-insert-file-functions auto-fill-function
128 before-change-functions blink-paren-function
129 buffer-access-fontify-functions command-line-functions
130 comment-indent-function kill-buffer-query-functions
131 kill-emacs-query-functions lisp-indent-function
132 mouse-position-function
133 redisplay-end-trigger-functions temp-buffer-show-function
134 window-scroll-functions window-size-change-functions
135 write-region-annotate-functions)
3eef341a 136 "A list of special hooks from Info node `(elisp)Standard Hooks'.
fde4581d
RS
137
138These are symbols with hook-type values whose names don't end in
139`-hook' or `-hooks', from which `unload-feature' tries to remove
140pertinent symbols.")
141
dffc4dfc
EZ
142(defvar unload-hook-features-list nil
143 "List of features of the package being unloaded.
144
145This is meant to be used by FEATURE-unload-hook hooks, see the
146documentation of `unload-feature' for details.")
147
2b86d62c
RS
148;;;###autoload
149(defun unload-feature (feature &optional force)
150 "Unload the library that provided FEATURE, restoring all its autoloads.
4370a375 151If the feature is required by any other loaded code, and prefix arg FORCE
8cb16ad1
EZ
152is nil, raise an error.
153
154This function tries to undo modifications made by the package to
155hooks. Packages may define a hook FEATURE-unload-hook that is called
156instead of the normal heuristics for doing this. Such a hook should
157undo all the relevant global state changes that may have been made by
158loading the package or executing functions in it. It has access to
159the package's feature list (before anything is unbound) in the
160variable `unload-hook-features-list' and could remove features from it
161in the event that the package has done something normally-ill-advised,
162such as redefining an Emacs function."
4370a375 163 (interactive (list (read-feature "Feature: ") current-prefix-arg))
191652f8
LK
164 (unless (featurep feature)
165 (error "%s is not a currently loaded feature" (symbol-name feature)))
166 (unless force
167 (let* ((file (feature-file feature))
168 (dependents (delete file (copy-sequence (file-dependents file)))))
169 (when dependents
170 (error "Loaded libraries %s depend on %s"
171 (prin1-to-string dependents) file))))
8cb16ad1 172 (let* ((unload-hook-features-list (feature-symbols feature))
191652f8 173 (file (pop unload-hook-features-list))
fde4581d
RS
174 (unload-hook (intern-soft (concat (symbol-name feature)
175 "-unload-hook"))))
176 ;; Try to avoid losing badly when hooks installed in critical
177 ;; places go away. (Some packages install things on
178 ;; `kill-buffer-hook', `activate-menubar-hook' and the like.)
557be036
RS
179 ;; First off, provide a clean way for package FOO to arrange
180 ;; this by adding hooks on the variable `FOO-unload-hook'.
fde4581d
RS
181 (if unload-hook
182 (run-hooks unload-hook)
183 ;; Otherwise, do our best. Look through the obarray for symbols
184 ;; which seem to be hook variables or special hook functions and
185 ;; remove anything from them which matches the feature-symbols
186 ;; about to get zapped. Obviously this won't get anonymous
187 ;; functions which the package might just have installed, and
188 ;; there might be other important state, but this tactic
189 ;; normally works.
190 (mapatoms
191 (lambda (x)
191652f8
LK
192 (when (and (boundp x)
193 (or (and (consp (symbol-value x)) ; Random hooks.
194 (string-match "-hooks?\\'" (symbol-name x)))
195 (memq x unload-feature-special-hooks))) ; Known abnormal hooks etc.
196 (dolist (y unload-hook-features-list)
bd0f9535
LK
197 (when (and (eq (car-safe y) 'defun)
198 (not (get (cdr y) 'autoload)))
199 (remove-hook x (cdr y)))))))
200 ;; Remove any feature-symbols from auto-mode-alist as well.
201 (dolist (y unload-hook-features-list)
202 (when (and (eq (car-safe y) 'defun)
203 (not (get (cdr y) 'autoload)))
204 (setq auto-mode-alist
205 (rassq-delete-all (cdr y) auto-mode-alist)))))
191652f8
LK
206 (when (fboundp 'elp-restore-function) ; remove ELP stuff first
207 (dolist (elt unload-hook-features-list)
208 (when (symbolp elt)
209 (elp-restore-function elt))))
210 (dolist (x unload-hook-features-list)
211 (if (consp x)
ab215e72 212 (case (car x)
bd0f9535 213 ;; Remove any feature names that this file provided.
ab215e72 214 (provide
bd0f9535 215 (setq features (delq (cdr x) features)))
ab215e72 216 (defun
bd0f9535
LK
217 (let ((fun (cdr x)))
218 (when (fboundp fun)
219 (when (fboundp 'ad-unadvise)
220 (ad-unadvise fun))
bd0f9535 221 (let ((aload (get fun 'autoload)))
ab215e72
SM
222 (if aload
223 (fset fun (cons 'autoload aload))
224 (fmakunbound fun))))))
225 (require nil)
226 (t (message "Unexpected element %s in load-history" x)))
191652f8
LK
227 ;; Kill local values as much as possible.
228 (dolist (buf (buffer-list))
229 (with-current-buffer buf
ab215e72
SM
230 (if (and (boundp x) (timerp (symbol-value x)))
231 (cancel-timer (symbol-value x)))
191652f8 232 (kill-local-variable x)))
ab215e72
SM
233 (if (and (boundp x) (timerp (symbol-value x)))
234 (cancel-timer (symbol-value x)))
191652f8
LK
235 ;; Get rid of the default binding if we can.
236 (unless (local-variable-if-set-p x)
237 (makunbound x))))
a5c31fa1 238 ;; Delete the load-history element for this file.
bd0f9535 239 (setq load-history (delq (assoc file load-history) load-history))))
2b86d62c
RS
240
241(provide 'loadhist)
242
ab215e72 243;; arch-tag: 70bb846a-c413-4f01-bf88-78dba4ac0798
2b86d62c 244;;; loadhist.el ends here