2005-09-24 Emilio C. Lopes <eclig@gmx.net>
[emacs.git] / lisp / emacs-lisp / advice.el
blobce727c30d147e29920a88d138fbc5625e1587173
1 ;;; advice.el --- an overloading mechanism for Emacs Lisp functions
3 ;; Copyright (C) 1993, 1994, 2000, 2001, 2004,
4 ;; 2005 Free Software Foundation, Inc.
6 ;; Author: Hans Chalupsky <hans@cs.buffalo.edu>
7 ;; Maintainer: FSF
8 ;; Created: 12 Dec 1992
9 ;; Keywords: extensions, lisp, tools
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;; LCD Archive Entry:
29 ;; advice|Hans Chalupsky|hans@cs.buffalo.edu|
30 ;; Overloading mechanism for Emacs Lisp functions|
31 ;; 1994/08/05 03:42:04|2.14|~/packages/advice.el.Z|
34 ;;; Commentary:
36 ;; NOTE: This documentation is slightly out of date. In particular, all the
37 ;; references to Emacs-18 are obsolete now, because it is not any longer
38 ;; supported by this version of Advice.
40 ;; Advice is documented in the Emacs Lisp Manual.
42 ;; @ Introduction:
43 ;; ===============
44 ;; This package implements a full-fledged Lisp-style advice mechanism
45 ;; for Emacs Lisp. Advice is a clean and efficient way to modify the
46 ;; behavior of Emacs Lisp functions without having to keep personal
47 ;; modified copies of such functions around. A great number of such
48 ;; modifications can be achieved by treating the original function as a
49 ;; black box and specifying a different execution environment for it
50 ;; with a piece of advice. Think of a piece of advice as a kind of fancy
51 ;; hook that you can attach to any function/macro/subr.
53 ;; @ Highlights:
54 ;; =============
55 ;; - Clean definition of multiple, named before/around/after advices
56 ;; for functions, macros, subrs and special forms
57 ;; - Full control over the arguments an advised function will receive,
58 ;; the binding environment in which it will be executed, as well as the
59 ;; value it will return.
60 ;; - Allows re/definition of interactive behavior for functions and subrs
61 ;; - Every piece of advice can have its documentation string which will be
62 ;; combined with the original documentation of the advised function at
63 ;; call-time of `documentation' for proper command-key substitution.
64 ;; - The execution of every piece of advice can be protected against error
65 ;; and non-local exits in preceding code or advices.
66 ;; - Simple argument access either by name, or, more portable but as
67 ;; efficient, via access macros
68 ;; - Allows the specification of a different argument list for the advised
69 ;; version of a function.
70 ;; - Advised functions can be byte-compiled either at file-compile time
71 ;; (see preactivation) or activation time.
72 ;; - Separation of advice definition and activation
73 ;; - Forward advice is possible, that is
74 ;; as yet undefined or autoload functions can be advised without having to
75 ;; preload the file in which they are defined.
76 ;; - Forward redefinition is possible because around advice can be used to
77 ;; completely redefine a function.
78 ;; - A caching mechanism for advised definition provides for cheap deactivation
79 ;; and reactivation of advised functions.
80 ;; - Preactivation allows efficient construction and compilation of advised
81 ;; definitions at file compile time without giving up the flexibility of
82 ;; the advice mechanism.
83 ;; - En/disablement mechanism allows the use of different "views" of advised
84 ;; functions depending on what pieces of advice are currently en/disabled
85 ;; - Provides manipulation mechanisms for sets of advised functions via
86 ;; regular expressions that match advice names
88 ;; @ How to get Advice for Emacs-18:
89 ;; =================================
90 ;; `advice18.el', a version of Advice that also works in Emacs-18 is available
91 ;; either via anonymous ftp from `ftp.cs.buffalo.edu (128.205.32.9)' with
92 ;; pathname `/pub/Emacs/advice18.el', or from one of the Emacs Lisp archive
93 ;; sites, or send email to <hans@cs.buffalo.edu> and I'll mail it to you.
95 ;; @ Overview, or how to read this file:
96 ;; =====================================
97 ;; NOTE: This documentation is slightly out of date. In particular, all the
98 ;; references to Emacs-18 are obsolete now, because it is not any longer
99 ;; supported by this version of Advice. An up-to-date version will soon be
100 ;; available as an info file (thanks to the kind help of Jack Vinson and
101 ;; David M. Smith). Until then you can use `outline-mode' to help you read
102 ;; this documentation (set `outline-regexp' to `";; @+"').
104 ;; The four major sections of this file are:
106 ;; @ This initial information ...installation, customization etc.
107 ;; @ Advice documentation: ...general documentation
108 ;; @ Foo games: An advice tutorial ...teaches about Advice by example
109 ;; @ Advice implementation: ...actual code, yeah!!
111 ;; The latter three are actual headings which you can search for
112 ;; directly in case `outline-mode' doesn't work for you.
114 ;; @ Restrictions:
115 ;; ===============
116 ;; - This version of Advice only works for Emacs 19.26 and later. It uses
117 ;; new versions of the built-in functions `fset/defalias' which are not
118 ;; yet available in Lucid Emacs, hence, it won't work there.
119 ;; - Advised functions/macros/subrs will only exhibit their advised behavior
120 ;; when they are invoked via their function cell. This means that advice will
121 ;; not work for the following:
122 ;; + advised subrs that are called directly from other subrs or C-code
123 ;; + advised subrs that got replaced with their byte-code during
124 ;; byte-compilation (e.g., car)
125 ;; + advised macros which were expanded during byte-compilation before
126 ;; their advice was activated.
128 ;; @ Credits:
129 ;; ==========
130 ;; This package is an extension and generalization of packages such as
131 ;; insert-hooks.el written by Noah S. Friedman, and advise.el written by
132 ;; Raul J. Acevedo. Some ideas used in here come from these packages,
133 ;; others come from the various Lisp advice mechanisms I've come across
134 ;; so far, and a few are simply mine.
136 ;; @ Comments, suggestions, bug reports:
137 ;; =====================================
138 ;; If you find any bugs, have suggestions for new advice features, find the
139 ;; documentation wrong, confusing, incomplete, or otherwise unsatisfactory,
140 ;; have any questions about Advice, or have otherwise enlightening
141 ;; comments feel free to send me email at <hans@cs.buffalo.edu>.
143 ;; @ Safety Rules and Emergency Exits:
144 ;; ===================================
145 ;; Before we begin: CAUTION!!
146 ;; Advice provides you with a lot of rope to hang yourself on very
147 ;; easily accessible trees, so, here are a few important things you
148 ;; should know: Once Advice has been started with `ad-start-advice'
149 ;; (which happens automatically when you load this file), it
150 ;; generates an advised definition of the `documentation' function, and
151 ;; it will enable automatic advice activation when functions get defined.
152 ;; All of this can be undone at any time with `M-x ad-stop-advice'.
154 ;; If you experience any strange behavior/errors etc. that you attribute to
155 ;; Advice or to some ill-advised function do one of the following:
157 ;; - M-x ad-deactivate FUNCTION (if you have a definite suspicion what
158 ;; function gives you problems)
159 ;; - M-x ad-deactivate-all (if you don't have a clue what's going wrong)
160 ;; - M-x ad-stop-advice (if you think the problem is related to the
161 ;; advised functions used by Advice itself)
162 ;; - M-x ad-recover-normality (for real emergencies)
163 ;; - If none of the above solves your Advice-related problem go to another
164 ;; terminal, kill your Emacs process and send me some hate mail.
166 ;; The first three measures have restarts, i.e., once you've figured out
167 ;; the problem you can reactivate advised functions with either `ad-activate',
168 ;; `ad-activate-all', or `ad-start-advice'. `ad-recover-normality' unadvises
169 ;; everything so you won't be able to reactivate any advised functions, you'll
170 ;; have to stick with their standard incarnations for the rest of the session.
172 ;; IMPORTANT: With Advice loaded always do `M-x ad-deactivate-all' before
173 ;; you byte-compile a file, because advised special forms and macros can lead
174 ;; to unwanted compilation results. When you are done compiling use
175 ;; `M-x ad-activate-all' to go back to the advised state of all your
176 ;; advised functions.
178 ;; RELAX: Advice is pretty safe even if you are oblivious to the above.
179 ;; I use it extensively and haven't run into any serious trouble in a long
180 ;; time. Just wanted you to be warned.
182 ;; @ Customization:
183 ;; ================
185 ;; Look at the documentation of `ad-redefinition-action' for possible values
186 ;; of this variable. Its default value is `warn' which will print a warning
187 ;; message when an already defined advised function gets redefined with a
188 ;; new original definition and de/activated.
190 ;; Look at the documentation of `ad-default-compilation-action' for possible
191 ;; values of this variable. Its default value is `maybe' which will compile
192 ;; advised definitions during activation in case the byte-compiler is already
193 ;; loaded. Otherwise, it will leave them uncompiled.
195 ;; @ Motivation:
196 ;; =============
197 ;; Before I go on explaining how advice works, here are four simple examples
198 ;; how this package can be used. The first three are very useful, the last one
199 ;; is just a joke:
201 ;;(defadvice switch-to-buffer (before existing-buffers-only activate)
202 ;; "When called interactively switch to existing buffers only, unless
203 ;;when called with a prefix argument."
204 ;; (interactive
205 ;; (list (read-buffer "Switch to buffer: " (other-buffer)
206 ;; (null current-prefix-arg)))))
208 ;;(defadvice switch-to-buffer (around confirm-non-existing-buffers activate)
209 ;; "Switch to non-existing buffers only upon confirmation."
210 ;; (interactive "BSwitch to buffer: ")
211 ;; (if (or (get-buffer (ad-get-arg 0))
212 ;; (y-or-n-p (format "`%s' does not exist, create? " (ad-get-arg 0))))
213 ;; ad-do-it))
215 ;;(defadvice find-file (before existing-files-only activate)
216 ;; "Find existing files only"
217 ;; (interactive "fFind file: "))
219 ;;(defadvice car (around interactive activate)
220 ;; "Make `car' an interactive function."
221 ;; (interactive "xCar of list: ")
222 ;; ad-do-it
223 ;; (if (interactive-p)
224 ;; (message "%s" ad-return-value)))
227 ;; @ Advice documentation:
228 ;; =======================
229 ;; Below is general documentation of the various features of advice. For more
230 ;; concrete examples check the corresponding sections in the tutorial part.
232 ;; @@ Terminology:
233 ;; ===============
234 ;; - Emacs, Emacs-19: Emacs as released by the GNU Project
235 ;; - Lemacs: Lucid's version of Emacs with major version 19
236 ;; - v18: Any Emacs with major version 18 or built as an extension to that
237 ;; (such as Epoch)
238 ;; - v19: Any Emacs with major version 19
239 ;; - jwz: Jamie Zawinski - former keeper of Lemacs and creator of the optimizing
240 ;; byte-compiler used in v19s.
241 ;; - Advice: The name of this package.
242 ;; - advices: Short for "pieces of advice".
244 ;; @@ Defining a piece of advice with `defadvice':
245 ;; ===============================================
246 ;; The main means of defining a piece of advice is the macro `defadvice',
247 ;; there is no interactive way of specifying a piece of advice. A call to
248 ;; `defadvice' has the following syntax which is similar to the syntax of
249 ;; `defun/defmacro':
251 ;; (defadvice <function> (<class> <name> [<position>] [<arglist>] {<flags>}*)
252 ;; [ [<documentation-string>] [<interactive-form>] ]
253 ;; {<body-form>}* )
255 ;; <function> is the name of the function/macro/subr to be advised.
257 ;; <class> is the class of the advice which has to be one of `before',
258 ;; `around', `after', `activation' or `deactivation' (the last two allow
259 ;; definition of special act/deactivation hooks).
261 ;; <name> is the name of the advice which has to be a non-nil symbol.
262 ;; Names uniquely identify a piece of advice in a certain advice class,
263 ;; hence, advices can be redefined by defining an advice with the same class
264 ;; and name. Advice names are global symbols, hence, the same name space
265 ;; conventions used for function names should be applied.
267 ;; An optional <position> specifies where in the current list of advices of
268 ;; the specified <class> this new advice will be placed. <position> has to
269 ;; be either `first', `last' or a number that specifies a zero-based
270 ;; position (`first' is equivalent to 0). If no position is specified
271 ;; `first' will be used as a default. If this call to `defadvice' redefines
272 ;; an already existing advice (see above) then the position argument will
273 ;; be ignored and the position of the already existing advice will be used.
275 ;; An optional <arglist> which has to be a list can be used to define the
276 ;; argument list of the advised function. This argument list should of
277 ;; course be compatible with the argument list of the original function,
278 ;; otherwise functions that call the advised function with the original
279 ;; argument list in mind will break. If more than one advice specify an
280 ;; argument list then the first one (the one with the smallest position)
281 ;; found in the list of before/around/after advices will be used.
283 ;; <flags> is a list of symbols that specify further information about the
284 ;; advice. All flags can be specified with unambiguous initial substrings.
285 ;; `activate': Specifies that the advice information of the advised
286 ;; function should be activated right after this advice has been
287 ;; defined. In forward advices `activate' will be ignored.
288 ;; `protect': Specifies that this advice should be protected against
289 ;; non-local exits and errors in preceding code/advices.
290 ;; `compile': Specifies that the advised function should be byte-compiled.
291 ;; This flag will be ignored unless `activate' is also specified.
292 ;; `disable': Specifies that the defined advice should be disabled, hence,
293 ;; it will not be used in an activation until somebody enables it.
294 ;; `preactivate': Specifies that the advised function should get preactivated
295 ;; at macro-expansion/compile time of this `defadvice'. This
296 ;; generates a compiled advised definition according to the
297 ;; current advice state which will be used during activation
298 ;; if appropriate. Only use this if the `defadvice' gets
299 ;; actually compiled (with a v18 byte-compiler put the `defadvice'
300 ;; into the body of a `defun' to accomplish proper compilation).
302 ;; An optional <documentation-string> can be supplied to document the advice.
303 ;; On call of the `documentation' function it will be combined with the
304 ;; documentation strings of the original function and other advices.
306 ;; An optional <interactive-form> form can be supplied to change/add
307 ;; interactive behavior of the original function. If more than one advice
308 ;; has an `(interactive ...)' specification then the first one (the one
309 ;; with the smallest position) found in the list of before/around/after
310 ;; advices will be used.
312 ;; A possibly empty list of <body-forms> specifies the body of the advice in
313 ;; an implicit progn. The body of an advice can access/change arguments,
314 ;; the return value, the binding environment, and can have all sorts of
315 ;; other side effects.
317 ;; @@ Assembling advised definitions:
318 ;; ==================================
319 ;; Suppose a function/macro/subr/special-form has N pieces of before advice,
320 ;; M pieces of around advice and K pieces of after advice. Assuming none of
321 ;; the advices is protected, its advised definition will look like this
322 ;; (body-form indices correspond to the position of the respective advice in
323 ;; that advice class):
325 ;; ([macro] lambda <arglist>
326 ;; [ [<advised-docstring>] [(interactive ...)] ]
327 ;; (let (ad-return-value)
328 ;; {<before-0-body-form>}*
329 ;; ....
330 ;; {<before-N-1-body-form>}*
331 ;; {<around-0-body-form>}*
332 ;; {<around-1-body-form>}*
333 ;; ....
334 ;; {<around-M-1-body-form>}*
335 ;; (setq ad-return-value
336 ;; <apply original definition to <arglist>>)
337 ;; {<other-around-M-1-body-form>}*
338 ;; ....
339 ;; {<other-around-1-body-form>}*
340 ;; {<other-around-0-body-form>}*
341 ;; {<after-0-body-form>}*
342 ;; ....
343 ;; {<after-K-1-body-form>}*
344 ;; ad-return-value))
346 ;; Macros and special forms will be redefined as macros, hence the optional
347 ;; [macro] in the beginning of the definition.
349 ;; <arglist> is either the argument list of the original function or the
350 ;; first argument list defined in the list of before/around/after advices.
351 ;; The values of <arglist> variables can be accessed/changed in the body of
352 ;; an advice by simply referring to them by their original name, however,
353 ;; more portable argument access macros are also provided (see below). For
354 ;; subrs/special-forms for which neither explicit argument list definitions
355 ;; are available, nor their documentation strings contain such definitions
356 ;; (as they do v19s), `(&rest ad-subr-args)' will be used.
358 ;; <advised-docstring> is an optional, special documentation string which will
359 ;; be expanded into a proper documentation string upon call of `documentation'.
361 ;; (interactive ...) is an optional interactive form either taken from the
362 ;; original function or from a before/around/after advice. For advised
363 ;; interactive subrs that do not have an interactive form specified in any
364 ;; advice we have to use (interactive) and then call the subr interactively
365 ;; if the advised function was called interactively, because the
366 ;; interactive specification of subrs is not accessible. This is the only
367 ;; case where changing the values of arguments will not have an affect
368 ;; because they will be reset by the interactive specification of the subr.
369 ;; If this is a problem one can always specify an interactive form in a
370 ;; before/around/after advice to gain control over argument values that
371 ;; were supplied interactively.
373 ;; Then the body forms of the various advices in the various classes of advice
374 ;; are assembled in order. The forms of around advice L are normally part of
375 ;; one of the forms of around advice L-1. An around advice can specify where
376 ;; the forms of the wrapped or surrounded forms should go with the special
377 ;; keyword `ad-do-it', which will be substituted with a `progn' containing the
378 ;; forms of the surrounded code.
380 ;; The innermost part of the around advice onion is
381 ;; <apply original definition to <arglist>>
382 ;; whose form depends on the type of the original function. The variable
383 ;; `ad-return-value' will be set to its result. This variable is visible to
384 ;; all pieces of advice which can access and modify it before it gets returned.
386 ;; The semantic structure of advised functions that contain protected pieces
387 ;; of advice is the same. The only difference is that `unwind-protect' forms
388 ;; make sure that the protected advice gets executed even if some previous
389 ;; piece of advice had an error or a non-local exit. If any around advice is
390 ;; protected then the whole around advice onion will be protected.
392 ;; @@ Argument access in advised functions:
393 ;; ========================================
394 ;; As already mentioned, the simplest way to access the arguments of an
395 ;; advised function in the body of an advice is to refer to them by name. To
396 ;; do that, the advice programmer needs to know either the names of the
397 ;; argument variables of the original function, or the names used in the
398 ;; argument list redefinition given in a piece of advice. While this simple
399 ;; method might be sufficient in many cases, it has the disadvantage that it
400 ;; is not very portable because it hardcodes the argument names into the
401 ;; advice. If the definition of the original function changes the advice
402 ;; might break even though the code might still be correct. Situations like
403 ;; that arise, for example, if one advises a subr like `eval-region' which
404 ;; gets redefined in a non-advice style into a function by the edebug
405 ;; package. If the advice assumes `eval-region' to be a subr it might break
406 ;; once edebug is loaded. Similar situations arise when one wants to use the
407 ;; same piece of advice across different versions of Emacs. Some subrs in a
408 ;; v18 Emacs are functions in v19 and vice versa, but for the most part the
409 ;; semantics remain the same, hence, the same piece of advice might be usable
410 ;; in both Emacs versions.
412 ;; As a solution to that advice provides argument list access macros that get
413 ;; translated into the proper access forms at activation time, i.e., when the
414 ;; advised definition gets constructed. Access macros access actual arguments
415 ;; by position regardless of how these actual argument get distributed onto
416 ;; the argument variables of a function. The rational behind this is that in
417 ;; Emacs Lisp the semantics of an argument is strictly determined by its
418 ;; position (there are no keyword arguments).
420 ;; Suppose the function `foo' is defined as
422 ;; (defun foo (x y &optional z &rest r) ....)
424 ;; and is then called with
426 ;; (foo 0 1 2 3 4 5 6)
428 ;; which means that X=0, Y=1, Z=2 and R=(3 4 5 6). The assumption is that
429 ;; the semantics of an actual argument is determined by its position. It is
430 ;; this semantics that has to be known by the advice programmer. Then s/he
431 ;; can access these arguments in a piece of advice with some of the
432 ;; following macros (the arrows indicate what value they will return):
434 ;; (ad-get-arg 0) -> 0
435 ;; (ad-get-arg 1) -> 1
436 ;; (ad-get-arg 2) -> 2
437 ;; (ad-get-arg 3) -> 3
438 ;; (ad-get-args 2) -> (2 3 4 5 6)
439 ;; (ad-get-args 4) -> (4 5 6)
441 ;; `(ad-get-arg <position>)' will return the actual argument that was supplied
442 ;; at <position>, `(ad-get-args <position>)' will return the list of actual
443 ;; arguments supplied starting at <position>. Note that these macros can be
444 ;; used without any knowledge about the form of the actual argument list of
445 ;; the original function.
447 ;; Similarly, `(ad-set-arg <position> <value-form>)' can be used to set the
448 ;; value of the actual argument at <position> to <value-form>. For example,
450 ;; (ad-set-arg 5 "five")
452 ;; will have the effect that R=(3 4 "five" 6) once the original function is
453 ;; called. `(ad-set-args <position> <value-list-form>)' can be used to set
454 ;; the list of actual arguments starting at <position> to <value-list-form>.
455 ;; For example,
457 ;; (ad-set-args 0 '(5 4 3 2 1 0))
459 ;; will have the effect that X=5, Y=4, Z=3 and R=(2 1 0) once the original
460 ;; function is called.
462 ;; All these access macros are text macros rather than real Lisp macros. When
463 ;; the advised definition gets constructed they get replaced with actual access
464 ;; forms depending on the argument list of the advised function, i.e., after
465 ;; that argument access is in most cases as efficient as using the argument
466 ;; variable names directly.
468 ;; @@@ Accessing argument bindings of arbitrary functions:
469 ;; =======================================================
470 ;; Some functions (such as `trace-function' defined in trace.el) need a
471 ;; method of accessing the names and bindings of the arguments of an
472 ;; arbitrary advised function. To do that within an advice one can use the
473 ;; special keyword `ad-arg-bindings' which is a text macro that will be
474 ;; substituted with a form that will evaluate to a list of binding
475 ;; specifications, one for every argument variable. These binding
476 ;; specifications can then be examined in the body of the advice. For
477 ;; example, somewhere in an advice we could do this:
479 ;; (let* ((bindings ad-arg-bindings)
480 ;; (firstarg (car bindings))
481 ;; (secondarg (car (cdr bindings))))
482 ;; ;; Print info about first argument
483 ;; (print (format "%s=%s (%s)"
484 ;; (ad-arg-binding-field firstarg 'name)
485 ;; (ad-arg-binding-field firstarg 'value)
486 ;; (ad-arg-binding-field firstarg 'type)))
487 ;; ....)
489 ;; The `type' of an argument is either `required', `optional' or `rest'.
490 ;; Wherever `ad-arg-bindings' appears a form will be inserted that evaluates
491 ;; to the list of bindings, hence, in order to avoid multiple unnecessary
492 ;; evaluations one should always bind it to some variable.
494 ;; @@@ Argument list mapping:
495 ;; ==========================
496 ;; Because `defadvice' allows the specification of the argument list of the
497 ;; advised function we need a mapping mechanism that maps this argument list
498 ;; onto that of the original function. For example, somebody might specify
499 ;; `(sym newdef)' as the argument list of `fset', while advice might use
500 ;; `(&rest ad-subr-args)' as the argument list of the original function
501 ;; (depending on what Emacs version is used). Hence SYM and NEWDEF have to
502 ;; be properly mapped onto the &rest variable when the original definition is
503 ;; called. Advice automatically takes care of that mapping, hence, the advice
504 ;; programmer can specify an argument list without having to know about the
505 ;; exact structure of the original argument list as long as the new argument
506 ;; list takes a compatible number/magnitude of actual arguments.
508 ;; @@@ Definition of subr argument lists:
509 ;; ======================================
510 ;; When advice constructs the advised definition of a function it has to
511 ;; know the argument list of the original function. For functions and macros
512 ;; the argument list can be determined from the actual definition, however,
513 ;; for subrs there is no such direct access available. In Lemacs and for some
514 ;; subrs in Emacs-19 the argument list of a subr can be determined from
515 ;; its documentation string, in a v18 Emacs even that is not possible. If
516 ;; advice cannot at all determine the argument list of a subr it uses
517 ;; `(&rest ad-subr-args)' which will always work but is inefficient because
518 ;; it conses up arguments. The macro `ad-define-subr-args' can be used by
519 ;; the advice programmer to explicitly tell advice about the argument list
520 ;; of a certain subr, for example,
522 ;; (ad-define-subr-args 'fset '(sym newdef))
524 ;; is used by advice itself to tell a v18 Emacs about the arguments of `fset'.
525 ;; The following can be used to undo such a definition:
527 ;; (ad-undefine-subr-args 'fset)
529 ;; The argument list definition is stored on the property list of the subr
530 ;; name symbol. When an argument list could be determined from the
531 ;; documentation string it will be cached under that property. The general
532 ;; mechanism for looking up the argument list of a subr is the following:
533 ;; 1) look for a definition stored on the property list
534 ;; 2) if that failed try to infer it from the documentation string and
535 ;; if successful cache it on the property list
536 ;; 3) otherwise use `(&rest ad-subr-args)'
538 ;; @@ Activation and deactivation:
539 ;; ===============================
540 ;; The definition of an advised function does not change until all its advice
541 ;; gets actually activated. Activation can either happen with the `activate'
542 ;; flag specified in the `defadvice', with an explicit call or interactive
543 ;; invocation of `ad-activate', or if forward advice is enabled (i.e., the
544 ;; value of `ad-activate-on-definition' is t) at the time an already advised
545 ;; function gets defined.
547 ;; When a function gets first activated its original definition gets saved,
548 ;; all defined and enabled pieces of advice will get combined with the
549 ;; original definition, the resulting definition might get compiled depending
550 ;; on some conditions described below, and then the function will get
551 ;; redefined with the advised definition. This also means that undefined
552 ;; functions cannot get activated even though they might be already advised.
554 ;; The advised definition will get compiled either if `ad-activate' was called
555 ;; interactively with a prefix argument, or called explicitly with its second
556 ;; argument as t, or, if `ad-default-compilation-action' justifies it according
557 ;; to the current system state. If the advised definition was
558 ;; constructed during "preactivation" (see below) then that definition will
559 ;; be already compiled because it was constructed during byte-compilation of
560 ;; the file that contained the `defadvice' with the `preactivate' flag.
562 ;; `ad-deactivate' can be used to back-define an advised function to its
563 ;; original definition. It can be called interactively or directly. Because
564 ;; `ad-activate' caches the advised definition the function can be
565 ;; reactivated via `ad-activate' with only minor overhead (it is checked
566 ;; whether the current advice state is consistent with the cached
567 ;; definition, see the section on caching below).
569 ;; `ad-activate-regexp' and `ad-deactivate-regexp' can be used to de/activate
570 ;; all currently advised function that have a piece of advice with a name that
571 ;; contains a match for a regular expression. These functions can be used to
572 ;; de/activate sets of functions depending on certain advice naming
573 ;; conventions.
575 ;; Finally, `ad-activate-all' and `ad-deactivate-all' can be used to
576 ;; de/activate all currently advised functions. These are useful to
577 ;; (temporarily) return to an un/advised state.
579 ;; @@@ Reasons for the separation of advice definition and activation:
580 ;; ===================================================================
581 ;; As already mentioned, advising happens in two stages:
583 ;; 1) definition of various pieces of advice
584 ;; 2) activation of all advice currently defined and enabled
586 ;; The advantage of this is that various pieces of advice can be defined
587 ;; before they get combined into an advised definition which avoids
588 ;; unnecessary constructions of intermediate advised definitions. The more
589 ;; important advantage is that it allows the implementation of forward advice.
590 ;; Advice information for a certain function accumulates as the value of the
591 ;; `advice-info' property of the function symbol. This accumulation is
592 ;; completely independent of the fact that that function might not yet be
593 ;; defined. The special forms `defun' and `defmacro' have been advised to
594 ;; check whether the function/macro they defined had advice information
595 ;; associated with it. If so and forward advice is enabled, the original
596 ;; definition will be saved, and then the advice will be activated. When a
597 ;; file is loaded in a v18 Emacs the functions/macros it defines are also
598 ;; defined with calls to `defun/defmacro'. Hence, we can forward advise
599 ;; functions/macros which will be defined later during a load/autoload of some
600 ;; file (for compiled files generated by jwz's byte-compiler in a v19 Emacs
601 ;; this is slightly more complicated but the basic idea is the same).
603 ;; @@ Enabling/disabling pieces or sets of advice:
604 ;; ===============================================
605 ;; A major motivation for the development of this advice package was to bring
606 ;; a little bit more structure into the function overloading chaos in Emacs
607 ;; Lisp. Many packages achieve some of their functionality by adding a little
608 ;; bit (or a lot) to the standard functionality of some Emacs Lisp function.
609 ;; ange-ftp is a very popular package that achieves its magic by overloading
610 ;; most Emacs Lisp functions that deal with files. A popular function that's
611 ;; overloaded by many packages is `expand-file-name'. The situation that one
612 ;; function is multiply overloaded can arise easily.
614 ;; Once in a while it would be desirable to be able to disable some/all
615 ;; overloads of a particular package while keeping all the rest. Ideally -
616 ;; at least in my opinion - these overloads would all be done with advice,
617 ;; I know I am dreaming right now... In that ideal case the enable/disable
618 ;; mechanism of advice could be used to achieve just that.
620 ;; Every piece of advice is associated with an enablement flag. When the
621 ;; advised definition of a particular function gets constructed (e.g., during
622 ;; activation) only the currently enabled pieces of advice will be considered.
623 ;; This mechanism allows one to have different "views" of an advised function
624 ;; dependent on what pieces of advice are currently enabled.
626 ;; Another motivation for this mechanism is that it allows one to define a
627 ;; piece of advice for some function yet keep it dormant until a certain
628 ;; condition is met. Until then activation of the function will not make use
629 ;; of that piece of advice. Once the condition is met the advice can be
630 ;; enabled and a reactivation of the function will add its functionality as
631 ;; part of the new advised definition. For example, the advices of `defun'
632 ;; etc. used by advice itself will stay disabled until `ad-start-advice' is
633 ;; called and some variables have the proper values. Hence, if somebody
634 ;; else advised these functions too and activates them the advices defined
635 ;; by advice will get used only if they are intended to be used.
637 ;; The main interface to this mechanism are the interactive functions
638 ;; `ad-enable-advice' and `ad-disable-advice'. For example, the following
639 ;; would disable a particular advice of the function `foo':
641 ;; (ad-disable-advice 'foo 'before 'my-advice)
643 ;; This call by itself only changes the flag, to get the proper effect in
644 ;; the advised definition too one has to activate `foo' with
646 ;; (ad-activate 'foo)
648 ;; or interactively. To disable whole sets of advices one can use a regular
649 ;; expression mechanism. For example, let us assume that ange-ftp actually
650 ;; used advice to overload all its functions, and that it used the
651 ;; "ange-ftp-" prefix for all its advice names, then we could temporarily
652 ;; disable all its advices with
654 ;; (ad-disable-regexp "^ange-ftp-")
656 ;; and the following call would put that actually into effect:
658 ;; (ad-activate-regexp "^ange-ftp-")
660 ;; A saver way would have been to use
662 ;; (ad-update-regexp "^ange-ftp-")
664 ;; instead which would have only reactivated currently actively advised
665 ;; functions, but not functions that were currently deactivated. All these
666 ;; functions can also be called interactively.
668 ;; A certain piece of advice is considered a match if its name contains a
669 ;; match for the regular expression. To enable ange-ftp again we would use
670 ;; `ad-enable-regexp' and then activate or update again.
672 ;; @@ Forward advice, automatic advice activation:
673 ;; ===============================================
674 ;; Because most Emacs Lisp packages are loaded on demand via an autoload
675 ;; mechanism it is essential to be able to "forward advise" functions.
676 ;; Otherwise, proper advice definition and activation would make it necessary
677 ;; to preload every file that defines a certain function before it can be
678 ;; advised, which would partly defeat the purpose of the advice mechanism.
680 ;; In the following, "forward advice" always implies its automatic activation
681 ;; once a function gets defined, and not just the accumulation of advice
682 ;; information for a possibly undefined function.
684 ;; Advice implements forward advice mainly via the following: 1) Separation
685 ;; of advice definition and activation that makes it possible to accumulate
686 ;; advice information without having the original function already defined,
687 ;; 2) special versions of the built-in functions `fset/defalias' which check
688 ;; for advice information whenever they define a function. If advice
689 ;; information was found then the advice will immediately get activated when
690 ;; the function gets defined.
692 ;; Automatic advice activation means, that whenever a function gets defined
693 ;; with either `defun', `defmacro', `fset' or by loading a byte-compiled
694 ;; file, and the function has some advice-info stored with it then that
695 ;; advice will get activated right away.
697 ;; @@@ Enabling automatic advice activation:
698 ;; =========================================
699 ;; Automatic advice activation is enabled by default. It can be disabled by
700 ;; doint `M-x ad-stop-advice' and enabled again with `M-x ad-start-advice'.
702 ;; @@ Caching of advised definitions:
703 ;; ==================================
704 ;; After an advised definition got constructed it gets cached as part of the
705 ;; advised function's advice-info so it can be reused, for example, after an
706 ;; intermediate deactivation. Because the advice-info of a function might
707 ;; change between the time of caching and reuse a cached definition gets
708 ;; a cache-id associated with it so it can be verified whether the cached
709 ;; definition is still valid (the main application of this is preactivation
710 ;; - see below).
712 ;; When an advised function gets activated and a verifiable cached definition
713 ;; is available, then that definition will be used instead of creating a new
714 ;; advised definition from scratch. If you want to make sure that a new
715 ;; definition gets constructed then you should use `ad-clear-cache' before you
716 ;; activate the advised function.
718 ;; @@ Preactivation:
719 ;; =================
720 ;; Constructing an advised definition is moderately expensive. In a situation
721 ;; where one package defines a lot of advised functions it might be
722 ;; prohibitively expensive to do all the advised definition construction at
723 ;; runtime. Preactivation is a mechanism that allows compile-time construction
724 ;; of compiled advised definitions that can be activated cheaply during
725 ;; runtime. Preactivation uses the caching mechanism to do that. Here's how it
726 ;; works:
728 ;; When the byte-compiler compiles a `defadvice' that has the `preactivate'
729 ;; flag specified, it uses the current original definition of the advised
730 ;; function plus the advice specified in this `defadvice' (even if it is
731 ;; specified as disabled) and all other currently enabled pieces of advice to
732 ;; construct an advised definition and an identifying cache-id and makes them
733 ;; part of the `defadvice' expansion which will then be compiled by the
734 ;; byte-compiler (to ensure that in a v18 emacs you have to put the
735 ;; `defadvice' inside a `defun' to get it compiled and then you have to call
736 ;; that compiled `defun' in order to actually execute the `defadvice'). When
737 ;; the file with the compiled, preactivating `defadvice' gets loaded the
738 ;; precompiled advised definition will be cached on the advised function's
739 ;; advice-info. When it gets activated (can be immediately on execution of the
740 ;; `defadvice' or any time later) the cache-id gets checked against the
741 ;; current state of advice and if it is verified the precompiled definition
742 ;; will be used directly (the verification is pretty cheap). If it couldn't get
743 ;; verified a new advised definition for that function will be built from
744 ;; scratch, hence, the efficiency added by the preactivation mechanism does
745 ;; not at all impair the flexibility of the advice mechanism.
747 ;; MORAL: In order get all the efficiency out of preactivation the advice
748 ;; state of an advised function at the time the file with the
749 ;; preactivating `defadvice' gets byte-compiled should be exactly
750 ;; the same as it will be when the advice of that function gets
751 ;; actually activated. If it is not there is a high chance that the
752 ;; cache-id will not match and hence a new advised definition will
753 ;; have to be constructed at runtime.
755 ;; Preactivation and forward advice do not contradict each other. It is
756 ;; perfectly ok to load a file with a preactivating `defadvice' before the
757 ;; original definition of the advised function is available. The constructed
758 ;; advised definition will be used once the original function gets defined and
759 ;; its advice gets activated. The only constraint is that at the time the
760 ;; file with the preactivating `defadvice' got compiled the original function
761 ;; definition was available.
763 ;; TIPS: Here are some indications that a preactivation did not work the way
764 ;; you intended it to work:
765 ;; - Activation of the advised function takes longer than usual/expected
766 ;; - The byte-compiler gets loaded while an advised function gets
767 ;; activated
768 ;; - `byte-compile' is part of the `features' variable even though you
769 ;; did not use the byte-compiler
770 ;; Right now advice does not provide an elegant way to find out whether
771 ;; and why a preactivation failed. What you can do is to trace the
772 ;; function `ad-cache-id-verification-code' (with the function
773 ;; `trace-function-background' defined in my trace.el package) before
774 ;; any of your advised functions get activated. After they got
775 ;; activated check whether all calls to `ad-cache-id-verification-code'
776 ;; returned `verified' as a result. Other values indicate why the
777 ;; verification failed which should give you enough information to
778 ;; fix your preactivation/compile/load/activation sequence.
780 ;; IMPORTANT: There is one case (that I am aware of) that can make
781 ;; preactivation fail, i.e., a preconstructed advised definition that does
782 ;; NOT match the current state of advice gets used nevertheless. That case
783 ;; arises if one package defines a certain piece of advice which gets used
784 ;; during preactivation, and another package incompatibly redefines that
785 ;; very advice (i.e., same function/class/name), and it is the second advice
786 ;; that is available when the preconstructed definition gets activated, and
787 ;; that was the only definition of that advice so far (`ad-add-advice'
788 ;; catches advice redefinitions and clears the cache in such a case).
789 ;; Catching that would make the cache verification too expensive.
791 ;; MORAL-II: Redefining somebody else's advice is BAAAAD (to speak with
792 ;; George Walker Bush), and why would you redefine your own advice anyway?
793 ;; Advice is a mechanism to facilitate function redefinition, not advice
794 ;; redefinition (wait until I write Meta-Advice :-). If you really have
795 ;; to undo somebody else's advice try to write a "neutralizing" advice.
797 ;; @@ Advising macros and special forms and other dangerous things:
798 ;; ================================================================
799 ;; Look at the corresponding tutorial sections for more information on
800 ;; these topics. Here it suffices to point out that the special treatment
801 ;; of macros and special forms by the byte-compiler can lead to problems
802 ;; when they get advised. Macros can create problems because they get
803 ;; expanded at compile time, hence, they might not have all the necessary
804 ;; runtime support and such advice cannot be de/activated or changed as
805 ;; it is possible for functions. Special forms create problems because they
806 ;; have to be advised "into" macros, i.e., an advised special form is a
807 ;; implemented as a macro, hence, in most cases the byte-compiler will
808 ;; not recognize it as a special form anymore which can lead to very strange
809 ;; results.
811 ;; MORAL: - Only advise macros or special forms when you are absolutely sure
812 ;; what you are doing.
813 ;; - As a safety measure, always do `ad-deactivate-all' before you
814 ;; byte-compile a file to make sure that even if some inconsiderate
815 ;; person advised some special forms you'll get proper compilation
816 ;; results. After compilation do `ad-activate-all' to get back to
817 ;; the previous state.
819 ;; @@ Adding a piece of advice with `ad-add-advice':
820 ;; =================================================
821 ;; The non-interactive function `ad-add-advice' can be used to add a piece of
822 ;; advice to some function without using `defadvice'. This is useful if advice
823 ;; has to be added somewhere by a function (also look at `ad-make-advice').
825 ;; @@ Activation/deactivation advices, file load hooks:
826 ;; ====================================================
827 ;; There are two special classes of advice called `activation' and
828 ;; `deactivation'. The body forms of these advices are not included into the
829 ;; advised definition of a function, rather they are assembled into a hook
830 ;; form which will be evaluated whenever the advice-info of the advised
831 ;; function gets activated or deactivated. One application of this mechanism
832 ;; is to define file load hooks for files that do not provide such hooks
833 ;; (v19s already come with a general file-load-hook mechanism, v18s don't).
834 ;; For example, suppose you want to print a message whenever `file-x' gets
835 ;; loaded, and suppose the last function defined in `file-x' is
836 ;; `file-x-last-fn'. Then we can define the following advice:
838 ;; (defadvice file-x-last-fn (activation file-x-load-hook)
839 ;; "Executed whenever file-x is loaded"
840 ;; (if load-in-progress (message "Loaded file-x")))
842 ;; This will constitute a forward advice for function `file-x-last-fn' which
843 ;; will get activated when `file-x' is loaded (only if forward advice is
844 ;; enabled of course). Because there are no "real" pieces of advice
845 ;; available for it, its definition will not be changed, but the activation
846 ;; advice will be run during its activation which is equivalent to having a
847 ;; file load hook for `file-x'.
849 ;; @@ Summary of main advice concepts:
850 ;; ===================================
851 ;; - Definition:
852 ;; A piece of advice gets defined with `defadvice' and added to the
853 ;; `advice-info' property of a function.
854 ;; - Enablement:
855 ;; Every piece of advice has an enablement flag associated with it. Only
856 ;; enabled advices are considered during construction of an advised
857 ;; definition.
858 ;; - Activation:
859 ;; Redefine an advised function with its advised definition. Constructs
860 ;; an advised definition from scratch if no verifiable cached advised
861 ;; definition is available and caches it.
862 ;; - Deactivation:
863 ;; Back-define an advised function to its original definition.
864 ;; - Update:
865 ;; Reactivate an advised function but only if its advice is currently
866 ;; active. This can be used to bring all currently advised function up
867 ;; to date with the current state of advice without also activating
868 ;; currently deactivated functions.
869 ;; - Caching:
870 ;; Is the saving of an advised definition and an identifying cache-id so
871 ;; it can be reused, for example, for activation after deactivation.
872 ;; - Preactivation:
873 ;; Is the construction of an advised definition according to the current
874 ;; state of advice during byte-compilation of a file with a preactivating
875 ;; `defadvice'. That advised definition can then rather cheaply be used
876 ;; during activation without having to construct an advised definition
877 ;; from scratch at runtime.
879 ;; @@ Summary of interactive advice manipulation functions:
880 ;; ========================================================
881 ;; The following interactive functions can be used to manipulate the state
882 ;; of advised functions (all of them support completion on function names,
883 ;; advice classes and advice names):
885 ;; - ad-activate to activate the advice of a FUNCTION
886 ;; - ad-deactivate to deactivate the advice of a FUNCTION
887 ;; - ad-update to activate the advice of a FUNCTION unless it was not
888 ;; yet activated or is currently deactivated.
889 ;; - ad-unadvise deactivates a FUNCTION and removes all of its advice
890 ;; information, hence, it cannot be activated again
891 ;; - ad-recover tries to redefine a FUNCTION to its original definition and
892 ;; discards all advice information (a low-level `ad-unadvise').
893 ;; Use only in emergencies.
895 ;; - ad-remove-advice removes a particular piece of advice of a FUNCTION.
896 ;; You still have to do call `ad-activate' or `ad-update' to
897 ;; activate the new state of advice.
898 ;; - ad-enable-advice enables a particular piece of advice of a FUNCTION.
899 ;; - ad-disable-advice disables a particular piece of advice of a FUNCTION.
900 ;; - ad-enable-regexp maps over all currently advised functions and enables
901 ;; every advice whose name contains a match for a regular
902 ;; expression.
903 ;; - ad-disable-regexp disables matching advices.
905 ;; - ad-activate-regexp activates all advised function with a matching advice
906 ;; - ad-deactivate-regexp deactivates all advised function with matching advice
907 ;; - ad-update-regexp updates all advised function with a matching advice
908 ;; - ad-activate-all activates all advised functions
909 ;; - ad-deactivate-all deactivates all advised functions
910 ;; - ad-update-all updates all advised functions
911 ;; - ad-unadvise-all unadvises all advised functions
912 ;; - ad-recover-all recovers all advised functions
914 ;; - ad-compile byte-compiles a function/macro if it is compilable.
916 ;; @@ Summary of forms with special meanings when used within an advice:
917 ;; =====================================================================
918 ;; ad-return-value name of the return value variable (get/settable)
919 ;; ad-subr-args name of &rest argument variable used for advised
920 ;; subrs whose actual argument list cannot be
921 ;; determined (get/settable)
922 ;; (ad-get-arg <pos>), (ad-get-args <pos>),
923 ;; (ad-set-arg <pos> <value>), (ad-set-args <pos> <value-list>)
924 ;; argument access text macros to get/set the values of
925 ;; actual arguments at a certain position
926 ;; ad-arg-bindings text macro that returns the actual names, values
927 ;; and types of the arguments as a list of bindings. The
928 ;; order of the bindings corresponds to the order of the
929 ;; arguments. The individual fields of every binding (name,
930 ;; value and type) can be accessed with the function
931 ;; `ad-arg-binding-field' (see example above).
932 ;; ad-do-it text macro that identifies the place where the original
933 ;; or wrapped definition should go in an around advice
936 ;; @ Foo games: An advice tutorial
937 ;; ===============================
938 ;; The following tutorial was created in Emacs 18.59. Left-justified
939 ;; s-expressions are input forms followed by one or more result forms.
940 ;; First we have to start the advice magic:
942 ;; (ad-start-advice)
943 ;; nil
945 ;; We start by defining an innocent looking function `foo' that simply
946 ;; adds 1 to its argument X:
948 ;; (defun foo (x)
949 ;; "Add 1 to X."
950 ;; (1+ x))
951 ;; foo
953 ;; (foo 3)
954 ;; 4
956 ;; @@ Defining a simple piece of advice:
957 ;; =====================================
958 ;; Now let's define the first piece of advice for `foo'. To do that we
959 ;; use the macro `defadvice' which takes a function name, a list of advice
960 ;; specifiers and a list of body forms as arguments. The first element of
961 ;; the advice specifiers is the class of the advice, the second is its name,
962 ;; the third its position and the rest are some flags. The class of our
963 ;; first advice is `before', its name is `fg-add2', its position among the
964 ;; currently defined before advices (none so far) is `first', and the advice
965 ;; will be `activate'ed immediately. Advice names are global symbols, hence,
966 ;; the name space conventions used for function names should be applied. All
967 ;; advice names in this tutorial will be prefixed with `fg' for `Foo Games'
968 ;; (because everybody has the right to be inconsistent all the function names
969 ;; used in this tutorial do NOT follow this convention).
971 ;; In the body of an advice we can refer to the argument variables of the
972 ;; original function by name. Here we add 1 to X so the effect of calling
973 ;; `foo' will be to actually add 2. All of the advice definitions below only
974 ;; have one body form for simplicity, but there is no restriction to that
975 ;; extent. Every piece of advice can have a documentation string which will
976 ;; be combined with the documentation of the original function.
978 ;; (defadvice foo (before fg-add2 first activate)
979 ;; "Add 2 to X."
980 ;; (setq x (1+ x)))
981 ;; foo
983 ;; (foo 3)
984 ;; 5
986 ;; @@ Specifying the position of an advice:
987 ;; ========================================
988 ;; Now we define the second before advice which will cancel the effect of
989 ;; the previous advice. This time we specify the position as 0 which is
990 ;; equivalent to `first'. A number can be used to specify the zero-based
991 ;; position of an advice among the list of advices in the same class. This
992 ;; time we already have one before advice hence the position specification
993 ;; actually has an effect. So, after the following definition the position
994 ;; of the previous advice will be 1 even though we specified it with `first'
995 ;; above, the reason for this is that the position argument is relative to
996 ;; the currently defined pieces of advice which by now has changed.
998 ;; (defadvice foo (before fg-cancel-add2 0 activate)
999 ;; "Again only add 1 to X."
1000 ;; (setq x (1- x)))
1001 ;; foo
1003 ;; (foo 3)
1004 ;; 4
1006 ;; @@ Redefining a piece of advice:
1007 ;; ================================
1008 ;; Now we define an advice with the same class and same name but with a
1009 ;; different position. Defining an advice in a class in which an advice with
1010 ;; that name already exists is interpreted as a redefinition of that
1011 ;; particular advice, in which case the position argument will be ignored
1012 ;; and the previous position of the redefined piece of advice is used.
1013 ;; Advice flags can be specified with non-ambiguous initial substrings, hence,
1014 ;; from now on we'll use `act' instead of the verbose `activate'.
1016 ;; (defadvice foo (before fg-cancel-add2 last act)
1017 ;; "Again only add 1 to X."
1018 ;; (setq x (1- x)))
1019 ;; foo
1021 ;; @@ Assembly of advised documentation:
1022 ;; =====================================
1023 ;; The documentation strings of the various pieces of advice are assembled
1024 ;; in order which shows that advice `fg-cancel-add2' is still the first
1025 ;; `before' advice even though we specified position `last' above:
1027 ;; (documentation 'foo)
1028 ;; "Add 1 to X.
1030 ;; This function is advised with the following advice(s):
1032 ;; fg-cancel-add2 (before):
1033 ;; Again only add 1 to X.
1035 ;; fg-add2 (before):
1036 ;; Add 2 to X."
1038 ;; @@ Advising interactive behavior:
1039 ;; =================================
1040 ;; We can make a function interactive (or change its interactive behavior)
1041 ;; by specifying an interactive form in one of the before or around
1042 ;; advices (there could also be body forms in this advice). The particular
1043 ;; definition always assigns 5 as an argument to X which gives us 6 as a
1044 ;; result when we call foo interactively:
1046 ;; (defadvice foo (before fg-inter last act)
1047 ;; "Use 5 as argument when called interactively."
1048 ;; (interactive (list 5)))
1049 ;; foo
1051 ;; (call-interactively 'foo)
1052 ;; 6
1054 ;; If more than one advice have an interactive declaration, then the one of
1055 ;; the advice with the smallest position will be used (before advices go
1056 ;; before around and after advices), hence, the declaration below does
1057 ;; not have any effect:
1059 ;; (defadvice foo (before fg-inter2 last act)
1060 ;; (interactive (list 6)))
1061 ;; foo
1063 ;; (call-interactively 'foo)
1064 ;; 6
1066 ;; Let's have a look at what the definition of `foo' looks like now
1067 ;; (indentation added by hand for legibility):
1069 ;; (symbol-function 'foo)
1070 ;; (lambda (x)
1071 ;; "$ad-doc: foo$"
1072 ;; (interactive (list 5))
1073 ;; (let (ad-return-value)
1074 ;; (setq x (1- x))
1075 ;; (setq x (1+ x))
1076 ;; (setq ad-return-value (ad-Orig-foo x))
1077 ;; ad-return-value))
1079 ;; @@ Around advices:
1080 ;; ==================
1081 ;; Now we'll try some `around' advices. An around advice is a wrapper around
1082 ;; the original definition. It can shadow or establish bindings for the
1083 ;; original definition, and it can look at and manipulate the value returned
1084 ;; by the original function. The position of the special keyword `ad-do-it'
1085 ;; specifies where the code of the original function will be executed. The
1086 ;; keyword can appear multiple times which will result in multiple calls of
1087 ;; the original function in the resulting advised code. Note, that if we don't
1088 ;; specify a position argument (i.e., `first', `last' or a number), then
1089 ;; `first' (or 0) is the default):
1091 ;; (defadvice foo (around fg-times-2 act)
1092 ;; "First double X."
1093 ;; (let ((x (* x 2)))
1094 ;; ad-do-it))
1095 ;; foo
1097 ;; (foo 3)
1098 ;; 7
1100 ;; Around advices are assembled like onion skins where the around advice
1101 ;; with position 0 is the outermost skin and the advice at the last position
1102 ;; is the innermost skin which is directly wrapped around the call of the
1103 ;; original definition of the function. Hence, after the next `defadvice' we
1104 ;; will first multiply X by 2 then add 1 and then call the original
1105 ;; definition (i.e., add 1 again):
1107 ;; (defadvice foo (around fg-add-1 last act)
1108 ;; "Add 1 to X."
1109 ;; (let ((x (1+ x)))
1110 ;; ad-do-it))
1111 ;; foo
1113 ;; (foo 3)
1114 ;; 8
1116 ;; Again, let's see what the definition of `foo' looks like so far:
1118 ;; (symbol-function 'foo)
1119 ;; (lambda (x)
1120 ;; "$ad-doc: foo$"
1121 ;; (interactive (list 5))
1122 ;; (let (ad-return-value)
1123 ;; (setq x (1- x))
1124 ;; (setq x (1+ x))
1125 ;; (let ((x (* x 2)))
1126 ;; (let ((x (1+ x)))
1127 ;; (setq ad-return-value (ad-Orig-foo x))))
1128 ;; ad-return-value))
1130 ;; @@ Controlling advice activation:
1131 ;; =================================
1132 ;; In every `defadvice' so far we have used the flag `activate' to activate
1133 ;; the advice immediately after its definition, and that's what we want in
1134 ;; most cases. However, if we define multiple pieces of advice for a single
1135 ;; function then activating every advice immediately is inefficient. A
1136 ;; better way to do this is to only activate the last defined advice.
1137 ;; For example:
1139 ;; (defadvice foo (after fg-times-x)
1140 ;; "Multiply the result with X."
1141 ;; (setq ad-return-value (* ad-return-value x)))
1142 ;; foo
1144 ;; This still yields the same result as before:
1145 ;; (foo 3)
1146 ;; 8
1148 ;; Now we define another advice and activate which will also activate the
1149 ;; previous advice `fg-times-x'. Note the use of the special variable
1150 ;; `ad-return-value' in the body of the advice which is set to the result of
1151 ;; the original function. If we change its value then the value returned by
1152 ;; the advised function will be changed accordingly:
1154 ;; (defadvice foo (after fg-times-x-again act)
1155 ;; "Again multiply the result with X."
1156 ;; (setq ad-return-value (* ad-return-value x)))
1157 ;; foo
1159 ;; Now the advices have an effect:
1161 ;; (foo 3)
1162 ;; 72
1164 ;; @@ Protecting advice execution:
1165 ;; ===============================
1166 ;; Once in a while we define an advice to perform some cleanup action,
1167 ;; for example:
1169 ;; (defadvice foo (after fg-cleanup last act)
1170 ;; "Do some cleanup."
1171 ;; (print "Let's clean up now!"))
1172 ;; foo
1174 ;; However, in case of an error the cleanup won't be performed:
1176 ;; (condition-case error
1177 ;; (foo t)
1178 ;; (error 'error-in-foo))
1179 ;; error-in-foo
1181 ;; To make sure a certain piece of advice gets executed even if some error or
1182 ;; non-local exit occurred in any preceding code, we can protect it by using
1183 ;; the `protect' keyword. (if any of the around advices is protected then the
1184 ;; whole around advice onion will be protected):
1186 ;; (defadvice foo (after fg-cleanup prot act)
1187 ;; "Do some protected cleanup."
1188 ;; (print "Let's clean up now!"))
1189 ;; foo
1191 ;; Now the cleanup form will be executed even in case of an error:
1193 ;; (condition-case error
1194 ;; (foo t)
1195 ;; (error 'error-in-foo))
1196 ;; "Let's clean up now!"
1197 ;; error-in-foo
1199 ;; Again, let's see what `foo' looks like:
1201 ;; (symbol-function 'foo)
1202 ;; (lambda (x)
1203 ;; "$ad-doc: foo$"
1204 ;; (interactive (list 5))
1205 ;; (let (ad-return-value)
1206 ;; (unwind-protect
1207 ;; (progn (setq x (1- x))
1208 ;; (setq x (1+ x))
1209 ;; (let ((x (* x 2)))
1210 ;; (let ((x (1+ x)))
1211 ;; (setq ad-return-value (ad-Orig-foo x))))
1212 ;; (setq ad-return-value (* ad-return-value x))
1213 ;; (setq ad-return-value (* ad-return-value x)))
1214 ;; (print "Let's clean up now!"))
1215 ;; ad-return-value))
1217 ;; @@ Compilation of advised definitions:
1218 ;; ======================================
1219 ;; Finally, we can specify the `compile' keyword in a `defadvice' to say
1220 ;; that we want the resulting advised function to be byte-compiled
1221 ;; (`compile' will be ignored unless we also specified `activate'):
1223 ;; (defadvice foo (after fg-cleanup prot act comp)
1224 ;; "Do some protected cleanup."
1225 ;; (print "Let's clean up now!"))
1226 ;; foo
1228 ;; Now `foo' is byte-compiled:
1230 ;; (symbol-function 'foo)
1231 ;; (lambda (x)
1232 ;; "$ad-doc: foo$"
1233 ;; (interactive (byte-code "....." [5] 1))
1234 ;; (byte-code "....." [ad-return-value x nil ((byte-code "....." [print "Let's clean up now!"] 2)) * 2 ad-Orig-foo] 6))
1236 ;; (foo 3)
1237 ;; "Let's clean up now!"
1238 ;; 72
1240 ;; @@ Enabling and disabling pieces of advice:
1241 ;; ===========================================
1242 ;; Once in a while it is desirable to temporarily disable a piece of advice
1243 ;; so that it won't be considered during activation, for example, if two
1244 ;; different packages advise the same function and one wants to temporarily
1245 ;; neutralize the effect of the advice of one of the packages.
1247 ;; The following disables the after advice `fg-times-x' in the function `foo'.
1248 ;; All that does is to change a flag for this particular advice. All the
1249 ;; other information defining it will be left unchanged (e.g., its relative
1250 ;; position in this advice class, etc.).
1252 ;; (ad-disable-advice 'foo 'after 'fg-times-x)
1253 ;; nil
1255 ;; For this to have an effect we have to activate `foo':
1257 ;; (ad-activate 'foo)
1258 ;; foo
1260 ;; (foo 3)
1261 ;; "Let's clean up now!"
1262 ;; 24
1264 ;; If we want to disable all multiplication advices in `foo' we can use a
1265 ;; regular expression that matches the names of such advices. Actually, any
1266 ;; advice name that contains a match for the regular expression will be
1267 ;; called a match. A special advice class `any' can be used to consider
1268 ;; all advice classes:
1270 ;; (ad-disable-advice 'foo 'any "^fg-.*times")
1271 ;; nil
1273 ;; (ad-activate 'foo)
1274 ;; foo
1276 ;; (foo 3)
1277 ;; "Let's clean up now!"
1278 ;; 5
1280 ;; To enable the disabled advice we could use either `ad-enable-advice'
1281 ;; similar to `ad-disable-advice', or as an alternative `ad-enable-regexp'
1282 ;; which will enable matching advices in ALL currently advised functions.
1283 ;; Hence, this can be used to dis/enable advices made by a particular
1284 ;; package to a set of functions as long as that package obeys standard
1285 ;; advice name conventions. We prefixed all advice names with `fg-', hence
1286 ;; the following will do the trick (`ad-enable-regexp' returns the number
1287 ;; of matched advices):
1289 ;; (ad-enable-regexp "^fg-")
1290 ;; 9
1292 ;; The following will activate all currently active advised functions that
1293 ;; contain some advice matched by the regular expression. This is a save
1294 ;; way to update the activation of advised functions whose advice changed
1295 ;; in some way or other without accidentally also activating currently
1296 ;; deactivated functions:
1298 ;; (ad-update-regexp "^fg-")
1299 ;; nil
1301 ;; (foo 3)
1302 ;; "Let's clean up now!"
1303 ;; 72
1305 ;; Another use for the dis/enablement mechanism is to define a piece of advice
1306 ;; and keep it "dormant" until a particular condition is satisfied, i.e., until
1307 ;; then the advice will not be used during activation. The `disable' flag lets
1308 ;; one do that with `defadvice':
1310 ;; (defadvice foo (before fg-1-more dis)
1311 ;; "Add yet 1 more."
1312 ;; (setq x (1+ x)))
1313 ;; foo
1315 ;; (ad-activate 'foo)
1316 ;; foo
1318 ;; (foo 3)
1319 ;; "Let's clean up now!"
1320 ;; 72
1322 ;; (ad-enable-advice 'foo 'before 'fg-1-more)
1323 ;; nil
1325 ;; (ad-activate 'foo)
1326 ;; foo
1328 ;; (foo 3)
1329 ;; "Let's clean up now!"
1330 ;; 160
1332 ;; @@ Caching:
1333 ;; ===========
1334 ;; Advised definitions get cached to allow efficient activation/deactivation
1335 ;; without having to reconstruct them if nothing in the advice-info of a
1336 ;; function has changed. The following idiom can be used to temporarily
1337 ;; deactivate functions that have a piece of advice defined by a certain
1338 ;; package (we save the old definition to check out caching):
1340 ;; (setq old-definition (symbol-function 'foo))
1341 ;; (lambda (x) ....)
1343 ;; (ad-deactivate-regexp "^fg-")
1344 ;; nil
1346 ;; (foo 3)
1347 ;; 4
1349 ;; (ad-activate-regexp "^fg-")
1350 ;; nil
1352 ;; (eq old-definition (symbol-function 'foo))
1353 ;; t
1355 ;; (foo 3)
1356 ;; "Let's clean up now!"
1357 ;; 160
1359 ;; @@ Forward advice:
1360 ;; ==================
1361 ;; To enable automatic activation of forward advice we first have to set
1362 ;; `ad-activate-on-definition' to t and restart advice:
1364 ;; (setq ad-activate-on-definition t)
1365 ;; t
1367 ;; (ad-start-advice)
1368 ;; (ad-activate-defined-function)
1370 ;; Let's define a piece of advice for an undefined function:
1372 ;; (defadvice bar (before fg-sub-1-more act)
1373 ;; "Subtract one more from X."
1374 ;; (setq x (1- x)))
1375 ;; bar
1377 ;; `bar' is not yet defined:
1378 ;; (fboundp 'bar)
1379 ;; nil
1381 ;; Now we define it and the forward advice will get activated (only because
1382 ;; `ad-activate-on-definition' was t when we started advice above with
1383 ;; `ad-start-advice'):
1385 ;; (defun bar (x)
1386 ;; "Subtract 1 from X."
1387 ;; (1- x))
1388 ;; bar
1390 ;; (bar 4)
1391 ;; 2
1393 ;; Redefinition will activate any available advice if the value of
1394 ;; `ad-redefinition-action' is either `warn', `accept' or `discard':
1396 ;; (defun bar (x)
1397 ;; "Subtract 2 from X."
1398 ;; (- x 2))
1399 ;; bar
1401 ;; (bar 4)
1402 ;; 1
1404 ;; @@ Preactivation:
1405 ;; =================
1406 ;; Constructing advised definitions is moderately expensive, hence, it is
1407 ;; desirable to have a way to construct them at byte-compile time.
1408 ;; Preactivation is a mechanism that allows one to do that.
1410 ;; (defun fie (x)
1411 ;; "Multiply X by 2."
1412 ;; (* x 2))
1413 ;; fie
1415 ;; (defadvice fie (before fg-times-4 preact)
1416 ;; "Multiply X by 4."
1417 ;; (setq x (* x 2)))
1418 ;; fie
1420 ;; This advice did not affect `fie'...
1422 ;; (fie 2)
1423 ;; 4
1425 ;; ...but it constructed a cached definition that will be used once `fie' gets
1426 ;; activated as long as its current advice state is the same as it was during
1427 ;; preactivation:
1429 ;; (setq cached-definition (ad-get-cache-definition 'fie))
1430 ;; (lambda (x) ....)
1432 ;; (ad-activate 'fie)
1433 ;; fie
1435 ;; (eq cached-definition (symbol-function 'fie))
1436 ;; t
1438 ;; (fie 2)
1439 ;; 8
1441 ;; If you put a preactivating `defadvice' into a Lisp file that gets byte-
1442 ;; compiled then the constructed advised definition will get compiled by
1443 ;; the byte-compiler. For that to occur in a v18 emacs you have to put the
1444 ;; `defadvice' inside a `defun' because the v18 compiler does not compile
1445 ;; top-level forms other than `defun' or `defmacro', for example,
1447 ;; (defun fg-defadvice-fum ()
1448 ;; (defadvice fum (before fg-times-4 preact act)
1449 ;; "Multiply X by 4."
1450 ;; (setq x (* x 2))))
1451 ;; fg-defadvice-fum
1453 ;; So far, no `defadvice' for `fum' got executed, but when we compile
1454 ;; `fg-defadvice-fum' the `defadvice' will be expanded by the byte compiler.
1455 ;; In order for preactivation to be effective we have to have a proper
1456 ;; definition of `fum' around at preactivation time, hence, we define it now:
1458 ;; (defun fum (x)
1459 ;; "Multiply X by 2."
1460 ;; (* x 2))
1461 ;; fum
1463 ;; Now we compile the defining function which will construct an advised
1464 ;; definition during expansion of the `defadvice', compile it and store it
1465 ;; as part of the compiled `fg-defadvice-fum':
1467 ;; (ad-compile-function 'fg-defadvice-fum)
1468 ;; (lambda nil (byte-code ...))
1470 ;; `fum' is still completely unaffected:
1472 ;; (fum 2)
1473 ;; 4
1475 ;; (ad-get-advice-info 'fum)
1476 ;; nil
1478 ;; (fg-defadvice-fum)
1479 ;; fum
1481 ;; Now the advised version of `fum' is compiled because the compiled definition
1482 ;; constructed during preactivation was used, even though we did not specify
1483 ;; the `compile' flag:
1485 ;; (symbol-function 'fum)
1486 ;; (lambda (x)
1487 ;; "$ad-doc: fum$"
1488 ;; (byte-code "....." [ad-return-value x nil * 2 ad-Orig-fum] 4))
1490 ;; (fum 2)
1491 ;; 8
1493 ;; A preactivated definition will only be used if it matches the current
1494 ;; function definition and advice information. If it does not match it
1495 ;; will simply be discarded and a new advised definition will be constructed
1496 ;; from scratch. For example, let's first remove all advice-info for `fum':
1498 ;; (ad-unadvise 'fum)
1499 ;; (("fie") ("bar") ("foo") ...)
1501 ;; And now define a new piece of advice:
1503 ;; (defadvice fum (before fg-interactive act)
1504 ;; "Make fum interactive."
1505 ;; (interactive "nEnter x: "))
1506 ;; fum
1508 ;; When we now try to use a preactivation it will not be used because the
1509 ;; current advice state is different from the one at preactivation time. This
1510 ;; is no tragedy, everything will work as expected just not as efficient,
1511 ;; because a new advised definition has to be constructed from scratch:
1513 ;; (fg-defadvice-fum)
1514 ;; fum
1516 ;; A new uncompiled advised definition got constructed:
1518 ;; (ad-compiled-p (symbol-function 'fum))
1519 ;; nil
1521 ;; (fum 2)
1522 ;; 8
1524 ;; MORAL: To get all the efficiency out of preactivation the function
1525 ;; definition and advice state at preactivation time must be the same as the
1526 ;; state at activation time. Preactivation does work with forward advice, all
1527 ;; that's necessary is that the definition of the forward advised function is
1528 ;; available when the `defadvice' with the preactivation gets compiled.
1530 ;; @@ Portable argument access:
1531 ;; ============================
1532 ;; So far, we always used the actual argument variable names to access an
1533 ;; argument in a piece of advice. For many advice applications this is
1534 ;; perfectly ok and keeps advices simple. However, it decreases portability
1535 ;; of advices because it assumes specific argument variable names. For example,
1536 ;; if one advises a subr such as `eval-region' which then gets redefined by
1537 ;; some package (e.g., edebug) into a function with different argument names,
1538 ;; then a piece of advice written for `eval-region' that was written with
1539 ;; the subr arguments in mind will break. Similar situations arise when one
1540 ;; switches between major Emacs versions, e.g., certain subrs in v18 are
1541 ;; functions in v19 and vice versa. Also, in v19s subr argument lists
1542 ;; are available and will be used, while they are not available in v18.
1544 ;; Argument access text macros allow one to access arguments of an advised
1545 ;; function in a portable way without having to worry about all these
1546 ;; possibilities. These macros will be translated into the proper access forms
1547 ;; at activation time, hence, argument access will be as efficient as if
1548 ;; the arguments had been used directly in the definition of the advice.
1550 ;; (defun fuu (x y z)
1551 ;; "Add 3 numbers."
1552 ;; (+ x y z))
1553 ;; fuu
1555 ;; (fuu 1 1 1)
1556 ;; 3
1558 ;; Argument access macros specify actual arguments at a certain position.
1559 ;; Position 0 access the first actual argument, position 1 the second etc.
1560 ;; For example, the following advice adds 1 to each of the 3 arguments:
1562 ;; (defadvice fuu (before fg-add-1-to-all act)
1563 ;; "Adds 1 to all arguments."
1564 ;; (ad-set-arg 0 (1+ (ad-get-arg 0)))
1565 ;; (ad-set-arg 1 (1+ (ad-get-arg 1)))
1566 ;; (ad-set-arg 2 (1+ (ad-get-arg 2))))
1567 ;; fuu
1569 ;; (fuu 1 1 1)
1570 ;; 6
1572 ;; Now suppose somebody redefines `fuu' with a rest argument. Our advice
1573 ;; will still work because we used access macros (note, that automatic
1574 ;; advice activation is still in effect, hence, the redefinition of `fuu'
1575 ;; will automatically activate all its advice):
1577 ;; (defun fuu (&rest numbers)
1578 ;; "Add NUMBERS."
1579 ;; (apply '+ numbers))
1580 ;; fuu
1582 ;; (fuu 1 1 1)
1583 ;; 6
1585 ;; (fuu 1 1 1 1 1 1)
1586 ;; 9
1588 ;; What's important to notice is that argument access macros access actual
1589 ;; arguments regardless of how they got distributed onto argument variables.
1590 ;; In Emacs Lisp the semantics of an actual argument is determined purely
1591 ;; by position, hence, as long as nobody changes the semantics of what a
1592 ;; certain actual argument at a certain position means the access macros
1593 ;; will do the right thing.
1595 ;; Because of &rest arguments we need a second kind of access macro that
1596 ;; can access all actual arguments starting from a certain position:
1598 ;; (defadvice fuu (before fg-print-args act)
1599 ;; "Print all arguments."
1600 ;; (print (ad-get-args 0)))
1601 ;; fuu
1603 ;; (fuu 1 2 3 4 5)
1604 ;; (1 2 3 4 5)
1605 ;; 18
1607 ;; (defadvice fuu (before fg-set-args act)
1608 ;; "Swaps 2nd and 3rd arg and discards all the rest."
1609 ;; (ad-set-args 1 (list (ad-get-arg 2) (ad-get-arg 1))))
1610 ;; fuu
1612 ;; (fuu 1 2 3 4 4 4 4 4 4)
1613 ;; (1 3 2)
1614 ;; 9
1616 ;; (defun fuu (x y z)
1617 ;; "Add 3 numbers."
1618 ;; (+ x y z))
1620 ;; (fuu 1 2 3)
1621 ;; (1 3 2)
1622 ;; 9
1624 ;; @@ Defining the argument list of an advised function:
1625 ;; =====================================================
1626 ;; Once in a while it might be desirable to advise a function and additionally
1627 ;; give it an extra argument that controls the advised code, for example, one
1628 ;; might want to make an interactive function sensitive to a prefix argument.
1629 ;; For such cases `defadvice' allows the specification of an argument list
1630 ;; for the advised function. Similar to the redefinition of interactive
1631 ;; behavior, the first argument list specification found in the list of before/
1632 ;; around/after advices will be used. Of course, the specified argument list
1633 ;; should be downward compatible with the original argument list, otherwise
1634 ;; functions that call the advised function with the original argument list
1635 ;; in mind will break.
1637 ;; (defun fii (x)
1638 ;; "Add 1 to X."
1639 ;; (1+ x))
1640 ;; fii
1642 ;; Now we advise `fii' to use an optional second argument that controls the
1643 ;; amount of incrementation. A list following the (optional) position
1644 ;; argument of the advice will be interpreted as an argument list
1645 ;; specification. This means you cannot specify an empty argument list, and
1646 ;; why would you want to anyway?
1648 ;; (defadvice fii (before fg-inc-x (x &optional incr) act)
1649 ;; "Increment X by INCR (default is 1)."
1650 ;; (setq x (+ x (1- (or incr 1)))))
1651 ;; fii
1653 ;; (fii 3)
1654 ;; 4
1656 ;; (fii 3 2)
1657 ;; 5
1659 ;; @@ Specifying argument lists of subrs:
1660 ;; ======================================
1661 ;; The argument lists of subrs cannot be determined directly from Lisp.
1662 ;; This means that Advice has to use `(&rest ad-subr-args)' as the
1663 ;; argument list of the advised subr which is not very efficient. In Lemacs
1664 ;; subr argument lists can be determined from their documentation string, in
1665 ;; Emacs-19 this is the case for some but not all subrs. To accommodate
1666 ;; for the cases where the argument lists cannot be determined (e.g., in a
1667 ;; v18 Emacs) Advice comes with a specification mechanism that allows the
1668 ;; advice programmer to tell advice what the argument list of a certain subr
1669 ;; really is.
1671 ;; In a v18 Emacs the following will return the &rest idiom:
1673 ;; (ad-arglist (symbol-function 'car))
1674 ;; (&rest ad-subr-args)
1676 ;; To tell advice what the argument list of `car' really is we
1677 ;; can do the following:
1679 ;; (ad-define-subr-args 'car '(list))
1680 ;; ((list))
1682 ;; Now `ad-arglist' will return the proper argument list (this method is
1683 ;; actually used by advice itself for the advised definition of `fset'):
1685 ;; (ad-arglist (symbol-function 'car))
1686 ;; (list)
1688 ;; The defined argument list will be stored on the property list of the
1689 ;; subr name symbol. When advice looks for a subr argument list it first
1690 ;; checks for a definition on the property list, if that fails it tries
1691 ;; to infer it from the documentation string and caches it on the property
1692 ;; list if it was successful, otherwise `(&rest ad-subr-args)' will be used.
1694 ;; @@ Advising interactive subrs:
1695 ;; ==============================
1696 ;; For the most part there is no difference between advising functions and
1697 ;; advising subrs. There is one situation though where one might have to write
1698 ;; slightly different advice code for subrs than for functions. This case
1699 ;; arises when one wants to access subr arguments in a before/around advice
1700 ;; when the arguments were determined by an interactive call to the subr.
1701 ;; Advice cannot determine what `interactive' form determines the interactive
1702 ;; behavior of the subr, hence, when it calls the original definition in an
1703 ;; interactive subr invocation it has to use `call-interactively' to generate
1704 ;; the proper interactive behavior. Thus up to that call the arguments of the
1705 ;; interactive subr will be nil. For example, the following advice for
1706 ;; `kill-buffer' will not work in an interactive invocation...
1708 ;; (defadvice kill-buffer (before fg-kill-buffer-hook first act preact comp)
1709 ;; (my-before-kill-buffer-hook (ad-get-arg 0)))
1710 ;; kill-buffer
1712 ;; ...because the buffer argument will be nil in that case. The way out of
1713 ;; this dilemma is to provide an `interactive' specification that mirrors
1714 ;; the interactive behavior of the unadvised subr, for example, the following
1715 ;; will do the right thing even when `kill-buffer' is called interactively:
1717 ;; (defadvice kill-buffer (before fg-kill-buffer-hook first act preact comp)
1718 ;; (interactive "bKill buffer: ")
1719 ;; (my-before-kill-buffer-hook (ad-get-arg 0)))
1720 ;; kill-buffer
1722 ;; @@ Advising macros:
1723 ;; ===================
1724 ;; Advising macros is slightly different because there are two significant
1725 ;; time points in the invocation of a macro: Expansion and evaluation time.
1726 ;; For an advised macro instead of evaluating the original definition we
1727 ;; use `macroexpand', that is, changing argument values and binding
1728 ;; environments by pieces of advice has an affect during macro expansion
1729 ;; but not necessarily during evaluation. In particular, any side effects
1730 ;; of pieces of advice will occur during macro expansion. To also affect
1731 ;; the behavior during evaluation time one has to change the value of
1732 ;; `ad-return-value' in a piece of after advice. For example:
1734 ;; (defmacro foom (x)
1735 ;; (` (list (, x))))
1736 ;; foom
1738 ;; (foom '(a))
1739 ;; ((a))
1741 ;; (defadvice foom (before fg-print-x act)
1742 ;; "Print the value of X."
1743 ;; (print x))
1744 ;; foom
1746 ;; The following works as expected because evaluation immediately follows
1747 ;; macro expansion:
1749 ;; (foom '(a))
1750 ;; (quote (a))
1751 ;; ((a))
1753 ;; However, the printing happens during expansion (or byte-compile) time:
1755 ;; (macroexpand '(foom '(a)))
1756 ;; (quote (a))
1757 ;; (list (quote (a)))
1759 ;; If we want it to happen during evaluation time we have to do the
1760 ;; following (first remove the old advice):
1762 ;; (ad-remove-advice 'foom 'before 'fg-print-x)
1763 ;; nil
1765 ;; (defadvice foom (after fg-print-x act)
1766 ;; "Print the value of X."
1767 ;; (setq ad-return-value
1768 ;; (` (progn (print (, x))
1769 ;; (, ad-return-value)))))
1770 ;; foom
1772 ;; (macroexpand '(foom '(a)))
1773 ;; (progn (print (quote (a))) (list (quote (a))))
1775 ;; (foom '(a))
1776 ;; (a)
1777 ;; ((a))
1779 ;; While this method might seem somewhat cumbersome, it is very general
1780 ;; because it allows one to influence macro expansion as well as evaluation.
1781 ;; In general, advising macros should be a rather rare activity anyway, in
1782 ;; particular, because compile-time macro expansion takes away a lot of the
1783 ;; flexibility and effectiveness of the advice mechanism. Macros that were
1784 ;; compile-time expanded before the advice was activated will of course never
1785 ;; exhibit the advised behavior.
1787 ;; @@ Advising special forms:
1788 ;; ==========================
1789 ;; Now for something that should be even more rare than advising macros:
1790 ;; Advising special forms. Because special forms are irregular in their
1791 ;; argument evaluation behavior (e.g., `setq' evaluates the second but not
1792 ;; the first argument) they have to be advised into macros. A dangerous
1793 ;; consequence of this is that the byte-compiler will not recognize them
1794 ;; as special forms anymore (well, in most cases) and use their expansion
1795 ;; rather than the proper byte-code. Also, because the original definition
1796 ;; of a special form cannot be `funcall'ed, `eval' has to be used instead
1797 ;; which is less efficient.
1799 ;; MORAL: Do not advise special forms unless you are completely sure about
1800 ;; what you are doing (some of the forward advice behavior is
1801 ;; implemented via advice of the special forms `defun' and `defmacro').
1802 ;; As a safety measure one should always do `ad-deactivate-all' before
1803 ;; one byte-compiles a file to avoid any interference of advised
1804 ;; special forms.
1806 ;; Apart from the safety concerns advising special forms is not any different
1807 ;; from advising plain functions or subrs.
1810 ;;; Code:
1812 ;; @ Advice implementation:
1813 ;; ========================
1815 ;; @@ Compilation idiosyncrasies:
1816 ;; ==============================
1818 ;; `defadvice' expansion needs quite a few advice functions and variables,
1819 ;; hence, I need to preload the file before it can be compiled. To avoid
1820 ;; interference of bogus compiled files I always preload the source file:
1821 (provide 'advice-preload)
1822 ;; During a normal load this is a noop:
1823 (require 'advice-preload "advice.el")
1826 ;; @@ Variable definitions:
1827 ;; ========================
1829 (defgroup advice nil
1830 "An overloading mechanism for Emacs Lisp functions."
1831 :prefix "ad-"
1832 :link '(custom-manual "(elisp)Advising Functions")
1833 :group 'lisp)
1835 (defconst ad-version "2.14")
1837 ;;;###autoload
1838 (defcustom ad-redefinition-action 'warn
1839 "*Defines what to do with redefinitions during Advice de/activation.
1840 Redefinition occurs if a previously activated function that already has an
1841 original definition associated with it gets redefined and then de/activated.
1842 In such a case we can either accept the current definition as the new
1843 original definition, discard the current definition and replace it with the
1844 old original, or keep it and raise an error. The values `accept', `discard',
1845 `error' or `warn' govern what will be done. `warn' is just like `accept' but
1846 it additionally prints a warning message. All other values will be
1847 interpreted as `error'."
1848 :type '(choice (const accept) (const discard) (const warn)
1849 (other :tag "error" error))
1850 :group 'advice)
1852 ;;;###autoload
1853 (defcustom ad-default-compilation-action 'maybe
1854 "*Defines whether to compile advised definitions during activation.
1855 A value of `always' will result in unconditional compilation, `never' will
1856 always avoid compilation, `maybe' will compile if the byte-compiler is already
1857 loaded, and `like-original' will compile if the original definition of the
1858 advised function is compiled or a built-in function. Every other value will
1859 be interpreted as `maybe'. This variable will only be considered if the
1860 COMPILE argument of `ad-activate' was supplied as nil."
1861 :type '(choice (const always) (const never) (const like-original)
1862 (other :tag "maybe" maybe))
1863 :group 'advice)
1867 ;; @@ Some utilities:
1868 ;; ==================
1870 ;; We don't want the local arguments to interfere with anything
1871 ;; referenced in the supplied functions => the cryptic casing:
1872 (defun ad-substitute-tree (sUbTrEe-TeSt fUnCtIoN tReE)
1873 "Substitute qualifying subTREEs with result of FUNCTION(subTREE).
1874 Only proper subtrees are considered, for example, if TREE is (1 (2 (3)) 4)
1875 then the subtrees will be 1 (2 (3)) 2 (3) 3 4, dotted structures are
1876 allowed too. Once a qualifying subtree has been found its subtrees will
1877 not be considered anymore. (ad-substitute-tree 'atom 'identity tree)
1878 generates a copy of TREE."
1879 (cond ((consp tReE)
1880 (cons (if (funcall sUbTrEe-TeSt (car tReE))
1881 (funcall fUnCtIoN (car tReE))
1882 (if (consp (car tReE))
1883 (ad-substitute-tree sUbTrEe-TeSt fUnCtIoN (car tReE))
1884 (car tReE)))
1885 (ad-substitute-tree sUbTrEe-TeSt fUnCtIoN (cdr tReE))))
1886 ((funcall sUbTrEe-TeSt tReE)
1887 (funcall fUnCtIoN tReE))
1888 (t tReE)))
1890 ;; this is just faster than `ad-substitute-tree':
1891 (defun ad-copy-tree (tree)
1892 "Return a copy of the list structure of TREE."
1893 (cond ((consp tree)
1894 (cons (ad-copy-tree (car tree))
1895 (ad-copy-tree (cdr tree))))
1896 (t tree)))
1898 (defmacro ad-dolist (varform &rest body)
1899 "A Common-Lisp-style dolist iterator with the following syntax:
1901 (ad-dolist (VAR INIT-FORM [RESULT-FORM])
1902 BODY-FORM...)
1904 which will iterate over the list yielded by INIT-FORM binding VAR to the
1905 current head at every iteration. If RESULT-FORM is supplied its value will
1906 be returned at the end of the iteration, nil otherwise. The iteration can be
1907 exited prematurely with `(ad-do-return [VALUE])'."
1908 (let ((expansion
1909 `(let ((ad-dO-vAr ,(car (cdr varform)))
1910 ,(car varform))
1911 (while ad-dO-vAr
1912 (setq ,(car varform) (car ad-dO-vAr))
1913 ,@body
1914 ;;work around a backquote bug:
1915 ;;(` ((,@ '(foo)) (bar))) => (append '(foo) '(((bar)))) wrong
1916 ;;(` ((,@ '(foo)) (, '(bar)))) => (append '(foo) (list '(bar)))
1917 ,'(setq ad-dO-vAr (cdr ad-dO-vAr)))
1918 ,(car (cdr (cdr varform))))))
1919 ;;ok, this wastes some cons cells but only during compilation:
1920 (if (catch 'contains-return
1921 (ad-substitute-tree
1922 (function (lambda (subtree)
1923 (cond ((eq (car-safe subtree) 'ad-dolist))
1924 ((eq (car-safe subtree) 'ad-do-return)
1925 (throw 'contains-return t)))))
1926 'identity body)
1927 nil)
1928 `(catch 'ad-dO-eXiT ,expansion)
1929 expansion)))
1931 (defmacro ad-do-return (value)
1932 `(throw 'ad-dO-eXiT ,value))
1934 (if (not (get 'ad-dolist 'lisp-indent-hook))
1935 (put 'ad-dolist 'lisp-indent-hook 1))
1938 ;; @@ Save real definitions of subrs used by Advice:
1939 ;; =================================================
1940 ;; Advice depends on the real, unmodified functionality of various subrs,
1941 ;; we save them here so advised versions will not interfere (eventually,
1942 ;; we will save all subrs used in code generated by Advice):
1944 (defmacro ad-save-real-definition (function)
1945 (let ((saved-function (intern (format "ad-real-%s" function))))
1946 ;; Make sure the compiler is loaded during macro expansion:
1947 (require 'byte-compile "bytecomp")
1948 `(if (not (fboundp ',saved-function))
1949 (progn (fset ',saved-function (symbol-function ',function))
1950 ;; Copy byte-compiler properties:
1951 ,@(if (get function 'byte-compile)
1952 `((put ',saved-function 'byte-compile
1953 ',(get function 'byte-compile))))
1954 ,@(if (get function 'byte-opcode)
1955 `((put ',saved-function 'byte-opcode
1956 ',(get function 'byte-opcode))))))))
1958 (defun ad-save-real-definitions ()
1959 ;; Macro expansion will hardcode the values of the various byte-compiler
1960 ;; properties into the compiled version of this function such that the
1961 ;; proper values will be available at runtime without loading the compiler:
1962 (ad-save-real-definition fset)
1963 (ad-save-real-definition documentation))
1965 (ad-save-real-definitions)
1968 ;; @@ Advice info access fns:
1969 ;; ==========================
1971 ;; Advice information for a particular function is stored on the
1972 ;; advice-info property of the function symbol. It is stored as an
1973 ;; alist of the following format:
1975 ;; ((active . t/nil)
1976 ;; (before adv1 adv2 ...)
1977 ;; (around adv1 adv2 ...)
1978 ;; (after adv1 adv2 ...)
1979 ;; (activation adv1 adv2 ...)
1980 ;; (deactivation adv1 adv2 ...)
1981 ;; (origname . <symbol fbound to origdef>)
1982 ;; (cache . (<advised-definition> . <id>)))
1984 ;; List of currently advised though not necessarily activated functions
1985 ;; (this list is maintained as a completion table):
1986 (defvar ad-advised-functions nil)
1988 (defmacro ad-pushnew-advised-function (function)
1989 "Add FUNCTION to `ad-advised-functions' unless its already there."
1990 `(if (not (assoc (symbol-name ,function) ad-advised-functions))
1991 (setq ad-advised-functions
1992 (cons (list (symbol-name ,function))
1993 ad-advised-functions))))
1995 (defmacro ad-pop-advised-function (function)
1996 "Remove FUNCTION from `ad-advised-functions'."
1997 `(setq ad-advised-functions
1998 (delq (assoc (symbol-name ,function) ad-advised-functions)
1999 ad-advised-functions)))
2001 (defmacro ad-do-advised-functions (varform &rest body)
2002 "`ad-dolist'-style iterator that maps over `ad-advised-functions'.
2003 \(ad-do-advised-functions (VAR [RESULT-FORM])
2004 BODY-FORM...)
2005 On each iteration VAR will be bound to the name of an advised function
2006 \(a symbol)."
2007 `(ad-dolist (,(car varform)
2008 ad-advised-functions
2009 ,(car (cdr varform)))
2010 (setq ,(car varform) (intern (car ,(car varform))))
2011 ,@body))
2013 (if (not (get 'ad-do-advised-functions 'lisp-indent-hook))
2014 (put 'ad-do-advised-functions 'lisp-indent-hook 1))
2016 (defmacro ad-get-advice-info (function)
2017 `(get ,function 'ad-advice-info))
2019 (defmacro ad-set-advice-info (function advice-info)
2020 `(put ,function 'ad-advice-info ,advice-info))
2022 (defmacro ad-copy-advice-info (function)
2023 `(ad-copy-tree (get ,function 'ad-advice-info)))
2025 (defmacro ad-is-advised (function)
2026 "Return non-nil if FUNCTION has any advice info associated with it.
2027 This does not mean that the advice is also active."
2028 (list 'ad-get-advice-info function))
2030 (defun ad-initialize-advice-info (function)
2031 "Initialize the advice info for FUNCTION.
2032 Assumes that FUNCTION has not yet been advised."
2033 (ad-pushnew-advised-function function)
2034 (ad-set-advice-info function (list (cons 'active nil))))
2036 (defmacro ad-get-advice-info-field (function field)
2037 "Retrieve the value of the advice info FIELD of FUNCTION."
2038 `(cdr (assq ,field (ad-get-advice-info ,function))))
2040 (defun ad-set-advice-info-field (function field value)
2041 "Destructively modify VALUE of the advice info FIELD of FUNCTION."
2042 (and (ad-is-advised function)
2043 (cond ((assq field (ad-get-advice-info function))
2044 ;; A field with that name is already present:
2045 (rplacd (assq field (ad-get-advice-info function)) value))
2046 (t;; otherwise, create a new field with that name:
2047 (nconc (ad-get-advice-info function)
2048 (list (cons field value)))))))
2050 ;; Don't make this a macro so we can use it as a predicate:
2051 (defun ad-is-active (function)
2052 "Return non-nil if FUNCTION is advised and activated."
2053 (ad-get-advice-info-field function 'active))
2056 ;; @@ Access fns for single pieces of advice and related predicates:
2057 ;; =================================================================
2059 (defun ad-make-advice (name protect enable definition)
2060 "Constructs single piece of advice to be stored in some advice-info.
2061 NAME should be a non-nil symbol, PROTECT and ENABLE should each be
2062 either t or nil, and DEFINITION should be a list of the form
2063 `(advice lambda ARGLIST [DOCSTRING] [INTERACTIVE-FORM] BODY...)'."
2064 (list name protect enable definition))
2066 ;; ad-find-advice uses the alist structure directly ->
2067 ;; change if this data structure changes!!
2068 (defmacro ad-advice-name (advice)
2069 (list 'car advice))
2070 (defmacro ad-advice-protected (advice)
2071 (list 'nth 1 advice))
2072 (defmacro ad-advice-enabled (advice)
2073 (list 'nth 2 advice))
2074 (defmacro ad-advice-definition (advice)
2075 (list 'nth 3 advice))
2077 (defun ad-advice-set-enabled (advice flag)
2078 (rplaca (cdr (cdr advice)) flag))
2080 (defun ad-class-p (thing)
2081 (memq thing ad-advice-classes))
2082 (defun ad-name-p (thing)
2083 (and thing (symbolp thing)))
2084 (defun ad-position-p (thing)
2085 (or (natnump thing)
2086 (memq thing '(first last))))
2089 ;; @@ Advice access functions:
2090 ;; ===========================
2092 ;; List of defined advice classes:
2093 (defvar ad-advice-classes '(before around after activation deactivation))
2095 (defun ad-has-enabled-advice (function class)
2096 "True if at least one of FUNCTION's advices in CLASS is enabled."
2097 (ad-dolist (advice (ad-get-advice-info-field function class))
2098 (if (ad-advice-enabled advice) (ad-do-return t))))
2100 (defun ad-has-redefining-advice (function)
2101 "True if FUNCTION's advice info defines at least 1 redefining advice.
2102 Redefining advices affect the construction of an advised definition."
2103 (and (ad-is-advised function)
2104 (or (ad-has-enabled-advice function 'before)
2105 (ad-has-enabled-advice function 'around)
2106 (ad-has-enabled-advice function 'after))))
2108 (defun ad-has-any-advice (function)
2109 "True if the advice info of FUNCTION defines at least one advice."
2110 (and (ad-is-advised function)
2111 (ad-dolist (class ad-advice-classes nil)
2112 (if (ad-get-advice-info-field function class)
2113 (ad-do-return t)))))
2115 (defun ad-get-enabled-advices (function class)
2116 "Return the list of enabled advices of FUNCTION in CLASS."
2117 (let (enabled-advices)
2118 (ad-dolist (advice (ad-get-advice-info-field function class))
2119 (if (ad-advice-enabled advice)
2120 (push advice enabled-advices)))
2121 (reverse enabled-advices)))
2124 ;; @@ Dealing with automatic advice activation via `fset/defalias':
2125 ;; ================================================================
2127 ;; Since Emacs 19.26 the built-in versions of `fset' and `defalias'
2128 ;; take care of automatic advice activation, hence, we don't have to
2129 ;; hack it anymore by advising `fset/defun/defmacro/byte-code/etc'.
2131 ;; The functionality of the new `fset' is as follows:
2133 ;; fset(sym,newdef)
2134 ;; assign NEWDEF to SYM
2135 ;; if (get SYM 'ad-advice-info)
2136 ;; ad-activate-internal(SYM, nil)
2137 ;; return (symbol-function SYM)
2139 ;; Whether advised definitions created by automatic activations will be
2140 ;; compiled depends on the value of `ad-default-compilation-action'.
2142 ;; Since calling `ad-activate-internal' in the built-in definition of `fset' can
2143 ;; create major disasters we have to be a bit careful. One precaution is
2144 ;; to provide a dummy definition for `ad-activate-internal' which can be used to
2145 ;; turn off automatic advice activation (e.g., when `ad-stop-advice' or
2146 ;; `ad-recover-normality' are called). Another is to avoid recursive calls
2147 ;; to `ad-activate' by using `ad-with-auto-activation-disabled' where
2148 ;; appropriate, especially in a safe version of `fset'.
2150 ;; For now define `ad-activate-internal' to the dummy definition:
2151 (defun ad-activate-internal (function &optional compile)
2152 "Automatic advice activation is disabled. `ad-start-advice' enables it."
2153 nil)
2155 ;; This is just a copy of the above:
2156 (defun ad-activate-internal-off (function &optional compile)
2157 "Automatic advice activation is disabled. `ad-start-advice' enables it."
2158 nil)
2160 ;; This will be t for top-level calls to `ad-activate-internal-on':
2161 (defvar ad-activate-on-top-level t)
2163 (defmacro ad-with-auto-activation-disabled (&rest body)
2164 `(let ((ad-activate-on-top-level nil))
2165 ,@body))
2167 (defun ad-safe-fset (symbol definition)
2168 "A safe `fset' which will never call `ad-activate-internal' recursively."
2169 (ad-with-auto-activation-disabled
2170 (ad-real-fset symbol definition)))
2173 ;; @@ Access functions for original definitions:
2174 ;; ============================================
2175 ;; The advice-info of an advised function contains its `origname' which is
2176 ;; a symbol that is fbound to the original definition available at the first
2177 ;; proper activation of the function after a valid re/definition. If the
2178 ;; original was defined via fcell indirection then `origname' will be defined
2179 ;; just so. Hence, to get hold of the actual original definition of a function
2180 ;; we need to use `ad-real-orig-definition'.
2182 (defun ad-make-origname (function)
2183 "Make name to be used to call the original FUNCTION."
2184 (intern (format "ad-Orig-%s" function)))
2186 (defmacro ad-get-orig-definition (function)
2187 `(let ((origname (ad-get-advice-info-field ,function 'origname)))
2188 (if (fboundp origname)
2189 (symbol-function origname))))
2191 (defmacro ad-set-orig-definition (function definition)
2192 `(ad-safe-fset
2193 (ad-get-advice-info-field function 'origname) ,definition))
2195 (defmacro ad-clear-orig-definition (function)
2196 `(fmakunbound (ad-get-advice-info-field ,function 'origname)))
2199 ;; @@ Interactive input functions:
2200 ;; ===============================
2202 (defun ad-read-advised-function (&optional prompt predicate default)
2203 "Read name of advised function with completion from the minibuffer.
2204 An optional PROMPT will be used to prompt for the function. PREDICATE
2205 plays the same role as for `try-completion' (which see). DEFAULT will
2206 be returned on empty input (defaults to the first advised function for
2207 which PREDICATE returns non-nil)."
2208 (if (null ad-advised-functions)
2209 (error "ad-read-advised-function: There are no advised functions"))
2210 (setq default
2211 (or default
2212 (ad-do-advised-functions (function)
2213 (if (or (null predicate)
2214 (funcall predicate function))
2215 (ad-do-return function)))
2216 (error "ad-read-advised-function: %s"
2217 "There are no qualifying advised functions")))
2218 (let* ((ad-pReDiCaTe predicate)
2219 (function
2220 (completing-read
2221 (format "%s (default %s): " (or prompt "Function") default)
2222 ad-advised-functions
2223 (if predicate
2224 (function
2225 (lambda (function)
2226 ;; Oops, no closures - the joys of dynamic scoping:
2227 ;; `predicate' clashed with the `predicate' argument
2228 ;; of Lemacs' `completing-read'.....
2229 (funcall ad-pReDiCaTe (intern (car function))))))
2230 t)))
2231 (if (equal function "")
2232 (if (ad-is-advised default)
2233 default
2234 (error "ad-read-advised-function: `%s' is not advised" default))
2235 (intern function))))
2237 (defvar ad-advice-class-completion-table
2238 (mapcar (lambda (class) (list (symbol-name class)))
2239 ad-advice-classes))
2241 (defun ad-read-advice-class (function &optional prompt default)
2242 "Read a valid advice class with completion from the minibuffer.
2243 An optional PROMPT will be used to prompt for the class. DEFAULT will
2244 be returned on empty input (defaults to the first non-empty advice
2245 class of FUNCTION)."
2246 (setq default
2247 (or default
2248 (ad-dolist (class ad-advice-classes)
2249 (if (ad-get-advice-info-field function class)
2250 (ad-do-return class)))
2251 (error "ad-read-advice-class: `%s' has no advices" function)))
2252 (let ((class (completing-read
2253 (format "%s (default %s): " (or prompt "Class") default)
2254 ad-advice-class-completion-table nil t)))
2255 (if (equal class "")
2256 default
2257 (intern class))))
2259 (defun ad-read-advice-name (function class &optional prompt)
2260 "Read name of existing advice of CLASS for FUNCTION with completion.
2261 An optional PROMPT is used to prompt for the name."
2262 (let* ((name-completion-table
2263 (mapcar (function (lambda (advice)
2264 (list (symbol-name (ad-advice-name advice)))))
2265 (ad-get-advice-info-field function class)))
2266 (default
2267 (if (null name-completion-table)
2268 (error "ad-read-advice-name: `%s' has no %s advice"
2269 function class)
2270 (car (car name-completion-table))))
2271 (prompt (format "%s (default %s): " (or prompt "Name") default))
2272 (name (completing-read prompt name-completion-table nil t)))
2273 (if (equal name "")
2274 (intern default)
2275 (intern name))))
2277 (defun ad-read-advice-specification (&optional prompt)
2278 "Read a complete function/class/name specification from minibuffer.
2279 The list of read symbols will be returned. The optional PROMPT will
2280 be used to prompt for the function."
2281 (let* ((function (ad-read-advised-function prompt))
2282 (class (ad-read-advice-class function))
2283 (name (ad-read-advice-name function class)))
2284 (list function class name)))
2286 ;; Use previous regexp as a default:
2287 (defvar ad-last-regexp "")
2289 (defun ad-read-regexp (&optional prompt)
2290 "Read a regular expression from the minibuffer."
2291 (let ((regexp (read-from-minibuffer
2292 (concat (or prompt "Regular expression")
2293 (if (equal ad-last-regexp "") ": "
2294 (format " (default %s): " ad-last-regexp))))))
2295 (setq ad-last-regexp
2296 (if (equal regexp "") ad-last-regexp regexp))))
2299 ;; @@ Finding, enabling, adding and removing pieces of advice:
2300 ;; ===========================================================
2302 (defmacro ad-find-advice (function class name)
2303 "Find the first advice of FUNCTION in CLASS with NAME."
2304 `(assq ,name (ad-get-advice-info-field ,function ,class)))
2306 (defun ad-advice-position (function class name)
2307 "Return position of first advice of FUNCTION in CLASS with NAME."
2308 (let* ((found-advice (ad-find-advice function class name))
2309 (advices (ad-get-advice-info-field function class)))
2310 (if found-advice
2311 (- (length advices) (length (memq found-advice advices))))))
2313 (defun ad-find-some-advice (function class name)
2314 "Find the first of FUNCTION's advices in CLASS matching NAME.
2315 NAME can be a symbol or a regular expression matching part of an advice name.
2316 If CLASS is `any' all valid advice classes will be checked."
2317 (if (ad-is-advised function)
2318 (let (found-advice)
2319 (ad-dolist (advice-class ad-advice-classes)
2320 (if (or (eq class 'any) (eq advice-class class))
2321 (setq found-advice
2322 (ad-dolist (advice (ad-get-advice-info-field
2323 function advice-class))
2324 (if (or (and (stringp name)
2325 (string-match
2326 name (symbol-name
2327 (ad-advice-name advice))))
2328 (eq name (ad-advice-name advice)))
2329 (ad-do-return advice)))))
2330 (if found-advice (ad-do-return found-advice))))))
2332 (defun ad-enable-advice-internal (function class name flag)
2333 "Set enable FLAG of FUNCTION's advices in CLASS matching NAME.
2334 If NAME is a string rather than a symbol then it's interpreted as a regular
2335 expression and all advices whose name contain a match for it will be
2336 affected. If CLASS is `any' advices in all valid advice classes will be
2337 considered. The number of changed advices will be returned (or nil if
2338 FUNCTION was not advised)."
2339 (if (ad-is-advised function)
2340 (let ((matched-advices 0))
2341 (ad-dolist (advice-class ad-advice-classes)
2342 (if (or (eq class 'any) (eq advice-class class))
2343 (ad-dolist (advice (ad-get-advice-info-field
2344 function advice-class))
2345 (cond ((or (and (stringp name)
2346 (string-match
2347 name (symbol-name (ad-advice-name advice))))
2348 (eq name (ad-advice-name advice)))
2349 (setq matched-advices (1+ matched-advices))
2350 (ad-advice-set-enabled advice flag))))))
2351 matched-advices)))
2353 (defun ad-enable-advice (function class name)
2354 "Enables the advice of FUNCTION with CLASS and NAME."
2355 (interactive (ad-read-advice-specification "Enable advice of"))
2356 (if (ad-is-advised function)
2357 (if (eq (ad-enable-advice-internal function class name t) 0)
2358 (error "ad-enable-advice: `%s' has no %s advice matching `%s'"
2359 function class name))
2360 (error "ad-enable-advice: `%s' is not advised" function)))
2362 (defun ad-disable-advice (function class name)
2363 "Disable the advice of FUNCTION with CLASS and NAME."
2364 (interactive (ad-read-advice-specification "Disable advice of"))
2365 (if (ad-is-advised function)
2366 (if (eq (ad-enable-advice-internal function class name nil) 0)
2367 (error "ad-disable-advice: `%s' has no %s advice matching `%s'"
2368 function class name))
2369 (error "ad-disable-advice: `%s' is not advised" function)))
2371 (defun ad-enable-regexp-internal (regexp class flag)
2372 "Set enable FLAGs of all CLASS advices whose name contains a REGEXP match.
2373 If CLASS is `any' all valid advice classes are considered. The number of
2374 affected advices will be returned."
2375 (let ((matched-advices 0))
2376 (ad-do-advised-functions (advised-function)
2377 (setq matched-advices
2378 (+ matched-advices
2379 (or (ad-enable-advice-internal
2380 advised-function class regexp flag)
2381 0))))
2382 matched-advices))
2384 (defun ad-enable-regexp (regexp)
2385 "Enables all advices with names that contain a match for REGEXP.
2386 All currently advised functions will be considered."
2387 (interactive
2388 (list (ad-read-regexp "Enable advices via regexp")))
2389 (let ((matched-advices (ad-enable-regexp-internal regexp 'any t)))
2390 (if (interactive-p)
2391 (message "%d matching advices enabled" matched-advices))
2392 matched-advices))
2394 (defun ad-disable-regexp (regexp)
2395 "Disable all advices with names that contain a match for REGEXP.
2396 All currently advised functions will be considered."
2397 (interactive
2398 (list (ad-read-regexp "Disable advices via regexp")))
2399 (let ((matched-advices (ad-enable-regexp-internal regexp 'any nil)))
2400 (if (interactive-p)
2401 (message "%d matching advices disabled" matched-advices))
2402 matched-advices))
2404 (defun ad-remove-advice (function class name)
2405 "Remove FUNCTION's advice with NAME from its advices in CLASS.
2406 If such an advice was found it will be removed from the list of advices
2407 in that CLASS."
2408 (interactive (ad-read-advice-specification "Remove advice of"))
2409 (if (ad-is-advised function)
2410 (let* ((advice-to-remove (ad-find-advice function class name)))
2411 (if advice-to-remove
2412 (ad-set-advice-info-field
2413 function class
2414 (delq advice-to-remove (ad-get-advice-info-field function class)))
2415 (error "ad-remove-advice: `%s' has no %s advice `%s'"
2416 function class name)))
2417 (error "ad-remove-advice: `%s' is not advised" function)))
2419 ;;;###autoload
2420 (defun ad-add-advice (function advice class position)
2421 "Add a piece of ADVICE to FUNCTION's list of advices in CLASS.
2422 If FUNCTION already has one or more pieces of advice of the specified
2423 CLASS then POSITION determines where the new piece will go. The value
2424 of POSITION can either be `first', `last' or a number where 0 corresponds
2425 to `first'. Numbers outside the range will be mapped to the closest
2426 extreme position. If there was already a piece of ADVICE with the same
2427 name, then the position argument will be ignored and the old advice
2428 will be overwritten with the new one.
2429 If the FUNCTION was not advised already, then its advice info will be
2430 initialized. Redefining a piece of advice whose name is part of the cache-id
2431 will clear the cache."
2432 (cond ((not (ad-is-advised function))
2433 (ad-initialize-advice-info function)
2434 (ad-set-advice-info-field
2435 function 'origname (ad-make-origname function))))
2436 (let* ((previous-position
2437 (ad-advice-position function class (ad-advice-name advice)))
2438 (advices (ad-get-advice-info-field function class))
2439 ;; Determine a numerical position for the new advice:
2440 (position (cond (previous-position)
2441 ((eq position 'first) 0)
2442 ((eq position 'last) (length advices))
2443 ((numberp position)
2444 (max 0 (min position (length advices))))
2445 (t 0))))
2446 ;; Check whether we have to clear the cache:
2447 (if (memq (ad-advice-name advice) (ad-get-cache-class-id function class))
2448 (ad-clear-cache function))
2449 (if previous-position
2450 (setcar (nthcdr position advices) advice)
2451 (if (= position 0)
2452 (ad-set-advice-info-field function class (cons advice advices))
2453 (setcdr (nthcdr (1- position) advices)
2454 (cons advice (nthcdr position advices)))))))
2457 ;; @@ Accessing and manipulating function definitions:
2458 ;; ===================================================
2460 (defmacro ad-macrofy (definition)
2461 "Take a lambda function DEFINITION and make a macro out of it."
2462 `(cons 'macro ,definition))
2464 (defmacro ad-lambdafy (definition)
2465 "Take a macro function DEFINITION and make a lambda out of it."
2466 `(cdr ,definition))
2468 ;; There is no way to determine whether some subr is a special form or not,
2469 ;; hence we need this list (which is probably out of date):
2470 (defvar ad-special-forms
2471 (let ((tem '(and catch cond condition-case defconst defmacro
2472 defun defvar function if interactive let let*
2473 or prog1 prog2 progn quote save-current-buffer
2474 save-excursion save-restriction save-window-excursion
2475 setq setq-default unwind-protect while
2476 with-output-to-temp-buffer)))
2477 ;; track-mouse could be void in some configurations.
2478 (if (fboundp 'track-mouse)
2479 (push 'track-mouse tem))
2480 (mapcar 'symbol-function tem)))
2482 (defmacro ad-special-form-p (definition)
2483 ;;"non-nil if DEFINITION is a special form."
2484 (list 'memq definition 'ad-special-forms))
2486 (defmacro ad-interactive-p (definition)
2487 ;;"non-nil if DEFINITION can be called interactively."
2488 (list 'commandp definition))
2490 (defmacro ad-subr-p (definition)
2491 ;;"non-nil if DEFINITION is a subr."
2492 (list 'subrp definition))
2494 (defmacro ad-macro-p (definition)
2495 ;;"non-nil if DEFINITION is a macro."
2496 `(eq (car-safe ,definition) 'macro))
2498 (defmacro ad-lambda-p (definition)
2499 ;;"non-nil if DEFINITION is a lambda expression."
2500 `(eq (car-safe ,definition) 'lambda))
2502 ;; see ad-make-advice for the format of advice definitions:
2503 (defmacro ad-advice-p (definition)
2504 ;;"non-nil if DEFINITION is a piece of advice."
2505 `(eq (car-safe ,definition) 'advice))
2507 ;; Emacs/Lemacs cross-compatibility
2508 ;; (compiled-function-p is an obsolete function in Emacs):
2509 (if (and (not (fboundp 'byte-code-function-p))
2510 (fboundp 'compiled-function-p))
2511 (ad-safe-fset 'byte-code-function-p 'compiled-function-p))
2513 (defmacro ad-compiled-p (definition)
2514 "Return non-nil if DEFINITION is a compiled byte-code object."
2515 `(or (byte-code-function-p ,definition)
2516 (and (ad-macro-p ,definition)
2517 (byte-code-function-p (ad-lambdafy ,definition)))))
2519 (defmacro ad-compiled-code (compiled-definition)
2520 "Return the byte-code object of a COMPILED-DEFINITION."
2521 `(if (ad-macro-p ,compiled-definition)
2522 (ad-lambdafy ,compiled-definition)
2523 ,compiled-definition))
2525 (defun ad-lambda-expression (definition)
2526 "Return the lambda expression of a function/macro/advice DEFINITION."
2527 (cond ((ad-lambda-p definition)
2528 definition)
2529 ((ad-macro-p definition)
2530 (ad-lambdafy definition))
2531 ((ad-advice-p definition)
2532 (cdr definition))
2533 (t nil)))
2535 (defun ad-arglist (definition &optional name)
2536 "Return the argument list of DEFINITION.
2537 If DEFINITION could be from a subr then its NAME should be
2538 supplied to make subr arglist lookup more efficient."
2539 (cond ((ad-compiled-p definition)
2540 (aref (ad-compiled-code definition) 0))
2541 ((consp definition)
2542 (car (cdr (ad-lambda-expression definition))))
2543 ((ad-subr-p definition)
2544 (if name
2545 (ad-subr-arglist name)
2546 ;; otherwise get it from its printed representation:
2547 (setq name (format "%s" definition))
2548 (string-match "^#<subr \\([^>]+\\)>$" name)
2549 (ad-subr-arglist (intern (match-string 1 name)))))))
2551 ;; Store subr-args as `((arg1 arg2 ...))' so I can distinguish
2552 ;; a defined empty arglist `(nil)' from an undefined arglist:
2553 (defmacro ad-define-subr-args (subr arglist)
2554 `(put ,subr 'ad-subr-arglist (list ,arglist)))
2555 (defmacro ad-undefine-subr-args (subr)
2556 `(put ,subr 'ad-subr-arglist nil))
2557 (defmacro ad-subr-args-defined-p (subr)
2558 `(get ,subr 'ad-subr-arglist))
2559 (defmacro ad-get-subr-args (subr)
2560 `(car (get ,subr 'ad-subr-arglist)))
2562 (defun ad-subr-arglist (subr-name)
2563 "Retrieve arglist of the subr with SUBR-NAME.
2564 Either use the one stored under the `ad-subr-arglist' property,
2565 or try to retrieve it from the docstring and cache it under
2566 that property, or otherwise use `(&rest ad-subr-args)'."
2567 (if (ad-subr-args-defined-p subr-name)
2568 (ad-get-subr-args subr-name)
2569 ;; says jwz: Should use this for Lemacs 19.8 and above:
2570 ;;((fboundp 'subr-min-args)
2571 ;; ...)
2572 ;; says hans: I guess what Jamie means is that I should use the values
2573 ;; of `subr-min-args' and `subr-max-args' to construct the subr arglist
2574 ;; without having to look it up via parsing the docstring, e.g.,
2575 ;; values 1 and 2 would suggest `(arg1 &optional arg2)' as an
2576 ;; argument list. However, that won't work because there is no
2577 ;; way to distinguish a subr with args `(a &optional b &rest c)' from
2578 ;; one with args `(a &rest c)' using that mechanism. Also, the argument
2579 ;; names from the docstring are more meaningful. Hence, I'll stick with
2580 ;; the old way of doing things.
2581 (let ((doc (or (ad-real-documentation subr-name t) "")))
2582 (if (not (string-match "\n\n\\((.+)\\)\\'" doc))
2583 ;; Signalling an error leads to bugs during bootstrapping because
2584 ;; the DOC file is not yet built (which is an error, BTW).
2585 ;; (error "The usage info is missing from the subr %s" subr-name)
2586 '(&rest ad-subr-args)
2587 (ad-define-subr-args
2588 subr-name
2589 (cdr (car (read-from-string
2590 (downcase (match-string 1 doc))))))
2591 (ad-get-subr-args subr-name)))))
2593 (defun ad-docstring (definition)
2594 "Return the unexpanded docstring of DEFINITION."
2595 (let ((docstring
2596 (if (ad-compiled-p definition)
2597 (ad-real-documentation definition t)
2598 (car (cdr (cdr (ad-lambda-expression definition)))))))
2599 (if (or (stringp docstring)
2600 (natnump docstring))
2601 docstring)))
2603 (defun ad-interactive-form (definition)
2604 "Return the interactive form of DEFINITION."
2605 (cond ((ad-compiled-p definition)
2606 (and (commandp definition)
2607 (list 'interactive (aref (ad-compiled-code definition) 5))))
2608 ((or (ad-advice-p definition)
2609 (ad-lambda-p definition))
2610 (commandp (ad-lambda-expression definition)))))
2612 (defun ad-body-forms (definition)
2613 "Return the list of body forms of DEFINITION."
2614 (cond ((ad-compiled-p definition)
2615 nil)
2616 ((consp definition)
2617 (nthcdr (+ (if (ad-docstring definition) 1 0)
2618 (if (ad-interactive-form definition) 1 0))
2619 (cdr (cdr (ad-lambda-expression definition)))))))
2621 ;; Matches the docstring of an advised definition.
2622 ;; The first group of the regexp matches the function name:
2623 (defvar ad-advised-definition-docstring-regexp "^\\$ad-doc: \\(.+\\)\\$$")
2625 (defun ad-make-advised-definition-docstring (function)
2626 "Make an identifying docstring for the advised definition of FUNCTION.
2627 Put function name into the documentation string so we can infer
2628 the name of the advised function from the docstring. This is needed
2629 to generate a proper advised docstring even if we are just given a
2630 definition (also see the defadvice for `documentation')."
2631 (format "$ad-doc: %s$" (prin1-to-string function)))
2633 (defun ad-advised-definition-p (definition)
2634 "Return non-nil if DEFINITION was generated from advice information."
2635 (if (or (ad-lambda-p definition)
2636 (ad-macro-p definition)
2637 (ad-compiled-p definition))
2638 (let ((docstring (ad-docstring definition)))
2639 (and (stringp docstring)
2640 (string-match
2641 ad-advised-definition-docstring-regexp docstring)))))
2643 (defun ad-definition-type (definition)
2644 "Return symbol that describes the type of DEFINITION."
2645 (if (ad-macro-p definition)
2646 'macro
2647 (if (ad-subr-p definition)
2648 (if (ad-special-form-p definition)
2649 'special-form
2650 'subr)
2651 (if (or (ad-lambda-p definition)
2652 (ad-compiled-p definition))
2653 'function
2654 (if (ad-advice-p definition)
2655 'advice)))))
2657 (defun ad-has-proper-definition (function)
2658 "True if FUNCTION is a symbol with a proper definition.
2659 For that it has to be fbound with a non-autoload definition."
2660 (and (symbolp function)
2661 (fboundp function)
2662 (not (eq (car-safe (symbol-function function)) 'autoload))))
2664 ;; The following two are necessary for the sake of packages such as
2665 ;; ange-ftp which redefine functions via fcell indirection:
2666 (defun ad-real-definition (function)
2667 "Find FUNCTION's definition at the end of function cell indirection."
2668 (if (ad-has-proper-definition function)
2669 (let ((definition (symbol-function function)))
2670 (if (symbolp definition)
2671 (ad-real-definition definition)
2672 definition))))
2674 (defun ad-real-orig-definition (function)
2675 "Find FUNCTION's real original definition starting from its `origname'."
2676 (if (ad-is-advised function)
2677 (ad-real-definition (ad-get-advice-info-field function 'origname))))
2679 (defun ad-is-compilable (function)
2680 "True if FUNCTION has an interpreted definition that can be compiled."
2681 (and (ad-has-proper-definition function)
2682 (or (ad-lambda-p (symbol-function function))
2683 (ad-macro-p (symbol-function function)))
2684 (not (ad-compiled-p (symbol-function function)))))
2686 (defun ad-compile-function (function)
2687 "Byte-compiles FUNCTION (or macro) if it is not yet compiled."
2688 (interactive "aByte-compile function: ")
2689 (if (ad-is-compilable function)
2690 ;; Need to turn off auto-activation
2691 ;; because `byte-compile' uses `fset':
2692 (ad-with-auto-activation-disabled
2693 (require 'bytecomp)
2694 (let ((symbol (make-symbol "advice-compilation"))
2695 (byte-compile-warnings
2696 (if (listp byte-compile-warnings) byte-compile-warnings
2697 byte-compile-warning-types)))
2698 (if (featurep 'cl)
2699 (setq byte-compile-warnings
2700 (remq 'cl-functions byte-compile-warnings)))
2701 (fset symbol (symbol-function function))
2702 (byte-compile symbol)
2703 (fset function (symbol-function symbol))))))
2706 ;; @@ Constructing advised definitions:
2707 ;; ====================================
2709 ;; Main design decisions about the form of advised definitions:
2711 ;; A) How will original definitions be called?
2712 ;; B) What will argument lists of advised functions look like?
2714 ;; Ad A)
2715 ;; I chose to use function indirection for all four types of original
2716 ;; definitions (functions, macros, subrs and special forms), i.e., create
2717 ;; a unique symbol `ad-Orig-<name>' which is fbound to the original
2718 ;; definition and call it according to type and arguments. Functions and
2719 ;; subrs that don't have any &rest arguments can be called directly in a
2720 ;; `(ad-Orig-<name> ....)' form. If they have a &rest argument we have to
2721 ;; use `apply'. Macros will be called with
2722 ;; `(macroexpand '(ad-Orig-<name> ....))', and special forms also need a
2723 ;; form like that with `eval' instead of `macroexpand'.
2725 ;; Ad B)
2726 ;; Use original arguments where possible and `(&rest ad-subr-args)'
2727 ;; otherwise, even though this seems to be more complicated and less
2728 ;; uniform than a general `(&rest args)' approach. My reason to still
2729 ;; do it that way is that in most cases my approach leads to the more
2730 ;; efficient form for the advised function, and portability (e.g., to
2731 ;; make the same advice work regardless of whether something is a
2732 ;; function or a subr) can still be achieved with argument access macros.
2735 (defun ad-prognify (forms)
2736 (cond ((<= (length forms) 1)
2737 (car forms))
2738 (t (cons 'progn forms))))
2740 ;; @@@ Accessing argument lists:
2741 ;; =============================
2743 (defun ad-parse-arglist (arglist)
2744 "Parse ARGLIST into its required, optional and rest parameters.
2745 A three-element list is returned, where the 1st element is the list of
2746 required arguments, the 2nd is the list of optional arguments, and the 3rd
2747 is the name of an optional rest parameter (or nil)."
2748 (let* (required optional rest)
2749 (setq rest (car (cdr (memq '&rest arglist))))
2750 (if rest (setq arglist (reverse (cdr (memq '&rest (reverse arglist))))))
2751 (setq optional (cdr (memq '&optional arglist)))
2752 (if optional
2753 (setq required (reverse (cdr (memq '&optional (reverse arglist)))))
2754 (setq required arglist))
2755 (list required optional rest)))
2757 (defun ad-retrieve-args-form (arglist)
2758 "Generate a form which evaluates into names/values/types of ARGLIST.
2759 When the form gets evaluated within a function with that argument list
2760 it will result in a list with one entry for each argument, where the
2761 first element of each entry is the name of the argument, the second
2762 element is its actual current value, and the third element is either
2763 `required', `optional' or `rest' depending on the type of the argument."
2764 (let* ((parsed-arglist (ad-parse-arglist arglist))
2765 (rest (nth 2 parsed-arglist)))
2766 `(list
2767 ,@(mapcar (function
2768 (lambda (req)
2769 `(list ',req ,req 'required)))
2770 (nth 0 parsed-arglist))
2771 ,@(mapcar (function
2772 (lambda (opt)
2773 `(list ',opt ,opt 'optional)))
2774 (nth 1 parsed-arglist))
2775 ,@(if rest (list `(list ',rest ,rest 'rest))))))
2777 (defun ad-arg-binding-field (binding field)
2778 (cond ((eq field 'name) (car binding))
2779 ((eq field 'value) (car (cdr binding)))
2780 ((eq field 'type) (car (cdr (cdr binding))))))
2782 (defun ad-list-access (position list)
2783 (cond ((= position 0) list)
2784 ((= position 1) (list 'cdr list))
2785 (t (list 'nthcdr position list))))
2787 (defun ad-element-access (position list)
2788 (cond ((= position 0) (list 'car list))
2789 ((= position 1) `(car (cdr ,list)))
2790 (t (list 'nth position list))))
2792 (defun ad-access-argument (arglist index)
2793 "Tell how to access ARGLIST's actual argument at position INDEX.
2794 For a required/optional arg it simply returns it, if a rest argument has
2795 to be accessed, it returns a list with the index and name."
2796 (let* ((parsed-arglist (ad-parse-arglist arglist))
2797 (reqopt-args (append (nth 0 parsed-arglist)
2798 (nth 1 parsed-arglist)))
2799 (rest-arg (nth 2 parsed-arglist)))
2800 (cond ((< index (length reqopt-args))
2801 (nth index reqopt-args))
2802 (rest-arg
2803 (list (- index (length reqopt-args)) rest-arg)))))
2805 (defun ad-get-argument (arglist index)
2806 "Return form to access ARGLIST's actual argument at position INDEX."
2807 (let ((argument-access (ad-access-argument arglist index)))
2808 (cond ((consp argument-access)
2809 (ad-element-access
2810 (car argument-access) (car (cdr argument-access))))
2811 (argument-access))))
2813 (defun ad-set-argument (arglist index value-form)
2814 "Return form to set ARGLIST's actual arg at INDEX to VALUE-FORM."
2815 (let ((argument-access (ad-access-argument arglist index)))
2816 (cond ((consp argument-access)
2817 ;; should this check whether there actually is something to set?
2818 `(setcar ,(ad-list-access
2819 (car argument-access) (car (cdr argument-access)))
2820 ,value-form))
2821 (argument-access
2822 `(setq ,argument-access ,value-form))
2823 (t (error "ad-set-argument: No argument at position %d of `%s'"
2824 index arglist)))))
2826 (defun ad-get-arguments (arglist index)
2827 "Return form to access all actual arguments starting at position INDEX."
2828 (let* ((parsed-arglist (ad-parse-arglist arglist))
2829 (reqopt-args (append (nth 0 parsed-arglist)
2830 (nth 1 parsed-arglist)))
2831 (rest-arg (nth 2 parsed-arglist))
2832 args-form)
2833 (if (< index (length reqopt-args))
2834 (setq args-form `(list ,@(nthcdr index reqopt-args))))
2835 (if rest-arg
2836 (if args-form
2837 (setq args-form `(nconc ,args-form ,rest-arg))
2838 (setq args-form (ad-list-access (- index (length reqopt-args))
2839 rest-arg))))
2840 args-form))
2842 (defun ad-set-arguments (arglist index values-form)
2843 "Make form to assign elements of VALUES-FORM as actual ARGLIST args.
2844 The assignment starts at position INDEX."
2845 (let ((values-index 0)
2846 argument-access set-forms)
2847 (while (setq argument-access (ad-access-argument arglist index))
2848 (if (symbolp argument-access)
2849 (setq set-forms
2850 (cons (ad-set-argument
2851 arglist index
2852 (ad-element-access values-index 'ad-vAlUeS))
2853 set-forms))
2854 (setq set-forms
2855 (cons (if (= (car argument-access) 0)
2856 (list 'setq
2857 (car (cdr argument-access))
2858 (ad-list-access values-index 'ad-vAlUeS))
2859 (list 'setcdr
2860 (ad-list-access (1- (car argument-access))
2861 (car (cdr argument-access)))
2862 (ad-list-access values-index 'ad-vAlUeS)))
2863 set-forms))
2864 ;; terminate loop
2865 (setq arglist nil))
2866 (setq index (1+ index))
2867 (setq values-index (1+ values-index)))
2868 (if (null set-forms)
2869 (error "ad-set-arguments: No argument at position %d of `%s'"
2870 index arglist)
2871 (if (= (length set-forms) 1)
2872 ;; For exactly one set-form we can use values-form directly,...
2873 (ad-substitute-tree
2874 (function (lambda (form) (eq form 'ad-vAlUeS)))
2875 (function (lambda (form) values-form))
2876 (car set-forms))
2877 ;; ...if we have more we have to bind it to a variable:
2878 `(let ((ad-vAlUeS ,values-form))
2879 ,@(reverse set-forms)
2880 ;; work around the old backquote bug:
2881 ,'ad-vAlUeS)))))
2883 (defun ad-insert-argument-access-forms (definition arglist)
2884 "Expands arg-access text macros in DEFINITION according to ARGLIST."
2885 (ad-substitute-tree
2886 (function
2887 (lambda (form)
2888 (or (eq form 'ad-arg-bindings)
2889 (and (memq (car-safe form)
2890 '(ad-get-arg ad-get-args ad-set-arg ad-set-args))
2891 (integerp (car-safe (cdr form)))))))
2892 (function
2893 (lambda (form)
2894 (if (eq form 'ad-arg-bindings)
2895 (ad-retrieve-args-form arglist)
2896 (let ((accessor (car form))
2897 (index (car (cdr form)))
2898 (val (car (cdr (ad-insert-argument-access-forms
2899 (cdr form) arglist)))))
2900 (cond ((eq accessor 'ad-get-arg)
2901 (ad-get-argument arglist index))
2902 ((eq accessor 'ad-set-arg)
2903 (ad-set-argument arglist index val))
2904 ((eq accessor 'ad-get-args)
2905 (ad-get-arguments arglist index))
2906 ((eq accessor 'ad-set-args)
2907 (ad-set-arguments arglist index val)))))))
2908 definition))
2910 ;; @@@ Mapping argument lists:
2911 ;; ===========================
2912 ;; Here is the problem:
2913 ;; Suppose function foo was called with (foo 1 2 3 4 5), and foo has the
2914 ;; argument list (x y &rest z), and we want to call the function bar which
2915 ;; has argument list (a &rest b) with a combination of x, y and z so that
2916 ;; the effect is just as if we had called (bar 1 2 3 4 5) directly.
2917 ;; The mapping should work for any two argument lists.
2919 (defun ad-map-arglists (source-arglist target-arglist)
2920 "Make `funcall/apply' form to map SOURCE-ARGLIST to TARGET-ARGLIST.
2921 The arguments supplied to TARGET-ARGLIST will be taken from SOURCE-ARGLIST just
2922 as if they had been supplied to a function with TARGET-ARGLIST directly.
2923 Excess source arguments will be neglected, missing source arguments will be
2924 supplied as nil. Returns a `funcall' or `apply' form with the second element
2925 being `function' which has to be replaced by an actual function argument.
2926 Example: `(ad-map-arglists '(a &rest args) '(w x y z))' will return
2927 `(funcall function a (car args) (car (cdr args)) (nth 2 args))'."
2928 (let* ((parsed-source-arglist (ad-parse-arglist source-arglist))
2929 (source-reqopt-args (append (nth 0 parsed-source-arglist)
2930 (nth 1 parsed-source-arglist)))
2931 (source-rest-arg (nth 2 parsed-source-arglist))
2932 (parsed-target-arglist (ad-parse-arglist target-arglist))
2933 (target-reqopt-args (append (nth 0 parsed-target-arglist)
2934 (nth 1 parsed-target-arglist)))
2935 (target-rest-arg (nth 2 parsed-target-arglist))
2936 (need-apply (and source-rest-arg target-rest-arg))
2937 (target-arg-index -1))
2938 ;; This produces ``error-proof'' target function calls with the exception
2939 ;; of a case like (&rest a) mapped onto (x &rest y) where the actual args
2940 ;; supplied to A might not be enough to supply the required target arg X
2941 (append (list (if need-apply 'apply 'funcall) 'function)
2942 (cond (need-apply
2943 ;; `apply' can take care of that directly:
2944 (append source-reqopt-args (list source-rest-arg)))
2945 (t (mapcar (function
2946 (lambda (arg)
2947 (setq target-arg-index (1+ target-arg-index))
2948 (ad-get-argument
2949 source-arglist target-arg-index)))
2950 (append target-reqopt-args
2951 (and target-rest-arg
2952 ;; If we have a rest arg gobble up
2953 ;; remaining source args:
2954 (nthcdr (length target-reqopt-args)
2955 source-reqopt-args)))))))))
2957 (defun ad-make-mapped-call (source-arglist target-arglist target-function)
2958 "Make form to call TARGET-FUNCTION with args from SOURCE-ARGLIST."
2959 (let* ((mapped-form (ad-map-arglists source-arglist target-arglist)))
2960 (if (eq (car mapped-form) 'funcall)
2961 (cons target-function (cdr (cdr mapped-form)))
2962 (prog1 mapped-form
2963 (setcar (cdr mapped-form) (list 'quote target-function))))))
2965 ;; @@@ Making an advised documentation string:
2966 ;; ===========================================
2967 ;; New policy: The documentation string for an advised function will be built
2968 ;; at the time the advised `documentation' function is called. This has the
2969 ;; following advantages:
2970 ;; 1) command-key substitutions will automatically be correct
2971 ;; 2) No wasted string space due to big advised docstrings in caches or
2972 ;; compiled files that contain preactivations
2973 ;; The overall overhead for this should be negligible because people normally
2974 ;; don't lookup documentation for the same function over and over again.
2976 (defun ad-make-single-advice-docstring (advice class &optional style)
2977 (let ((advice-docstring (ad-docstring (ad-advice-definition advice))))
2978 (cond ((eq style 'plain)
2979 advice-docstring)
2980 ((eq style 'freeze)
2981 (format "Permanent %s-advice `%s':%s%s"
2982 class (ad-advice-name advice)
2983 (if advice-docstring "\n" "")
2984 (or advice-docstring "")))
2985 (t (if advice-docstring
2986 (format "%s-advice `%s':\n%s"
2987 (capitalize (symbol-name class))
2988 (ad-advice-name advice)
2989 advice-docstring)
2990 (format "%s-advice `%s'."
2991 (capitalize (symbol-name class))
2992 (ad-advice-name advice)))))))
2994 (require 'help-fns) ;For help-split-fundoc and help-add-fundoc-usage.
2996 (defun ad-make-advised-docstring (function &optional style)
2997 "Construct a documentation string for the advised FUNCTION.
2998 It concatenates the original documentation with the documentation
2999 strings of the individual pieces of advice which will be formatted
3000 according to STYLE. STYLE can be `plain' or `freeze', everything else
3001 will be interpreted as `default'. The order of the advice documentation
3002 strings corresponds to before/around/after and the individual ordering
3003 in any of these classes."
3004 (let* ((origdef (ad-real-orig-definition function))
3005 (origtype (symbol-name (ad-definition-type origdef)))
3006 (origdoc
3007 ;; Retrieve raw doc, key substitution will be taken care of later:
3008 (ad-real-documentation origdef t))
3009 (usage (help-split-fundoc origdoc function))
3010 paragraphs advice-docstring ad-usage)
3011 (setq usage (if (null usage) t (setq origdoc (cdr usage)) (car usage)))
3012 (if origdoc (setq paragraphs (list origdoc)))
3013 (unless (eq style 'plain)
3014 (push (concat "This " origtype " is advised.") paragraphs))
3015 (ad-dolist (class ad-advice-classes)
3016 (ad-dolist (advice (ad-get-enabled-advices function class))
3017 (setq advice-docstring
3018 (ad-make-single-advice-docstring advice class style))
3019 (if advice-docstring
3020 (push advice-docstring paragraphs))))
3021 (setq origdoc (if paragraphs
3022 ;; separate paragraphs with blank lines:
3023 (mapconcat 'identity (nreverse paragraphs) "\n\n")))
3024 (help-add-fundoc-usage origdoc usage)))
3026 (defun ad-make-plain-docstring (function)
3027 (ad-make-advised-docstring function 'plain))
3028 (defun ad-make-freeze-docstring (function)
3029 (ad-make-advised-docstring function 'freeze))
3031 ;; @@@ Accessing overriding arglists and interactive forms:
3032 ;; ========================================================
3034 (defun ad-advised-arglist (function)
3035 "Find first defined arglist in FUNCTION's redefining advices."
3036 (ad-dolist (advice (append (ad-get-enabled-advices function 'before)
3037 (ad-get-enabled-advices function 'around)
3038 (ad-get-enabled-advices function 'after)))
3039 (let ((arglist (ad-arglist (ad-advice-definition advice))))
3040 (if arglist
3041 ;; We found the first one, use it:
3042 (ad-do-return arglist)))))
3044 (defun ad-advised-interactive-form (function)
3045 "Find first interactive form in FUNCTION's redefining advices."
3046 (ad-dolist (advice (append (ad-get-enabled-advices function 'before)
3047 (ad-get-enabled-advices function 'around)
3048 (ad-get-enabled-advices function 'after)))
3049 (let ((interactive-form
3050 (ad-interactive-form (ad-advice-definition advice))))
3051 (if interactive-form
3052 ;; We found the first one, use it:
3053 (ad-do-return interactive-form)))))
3055 ;; @@@ Putting it all together:
3056 ;; ============================
3058 (defun ad-make-advised-definition (function)
3059 "Generate an advised definition of FUNCTION from its advice info."
3060 (if (and (ad-is-advised function)
3061 (ad-has-redefining-advice function))
3062 (let* ((origdef (ad-real-orig-definition function))
3063 (origname (ad-get-advice-info-field function 'origname))
3064 (orig-interactive-p (ad-interactive-p origdef))
3065 (orig-subr-p (ad-subr-p origdef))
3066 (orig-special-form-p (ad-special-form-p origdef))
3067 (orig-macro-p (ad-macro-p origdef))
3068 ;; Construct the individual pieces that we need for assembly:
3069 (orig-arglist (ad-arglist origdef function))
3070 (advised-arglist (or (ad-advised-arglist function)
3071 orig-arglist))
3072 (advised-interactive-form (ad-advised-interactive-form function))
3073 (interactive-form
3074 (cond (orig-macro-p nil)
3075 (advised-interactive-form)
3076 ((ad-interactive-form origdef)
3077 (if (and (symbolp function) (get function 'elp-info))
3078 (interactive-form (aref (get function 'elp-info) 2))
3079 (ad-interactive-form origdef)))
3080 ;; Otherwise we must have a subr: make it interactive if
3081 ;; we have to and initialize required arguments in case
3082 ;; it is called interactively:
3083 (orig-interactive-p
3084 (interactive-form origdef))))
3085 (orig-form
3086 (cond ((or orig-special-form-p orig-macro-p)
3087 ;; Special forms and macros will be advised into macros.
3088 ;; The trick is to construct an expansion for the advised
3089 ;; macro that does the correct thing when it gets eval'ed.
3090 ;; For macros we'll just use the expansion of the original
3091 ;; macro and return that. This way compiled advised macros
3092 ;; will be expanded into something useful. Note that after
3093 ;; advices have full control over whether they want to
3094 ;; evaluate the expansion (the value of `ad-return-value')
3095 ;; at macro expansion time or not. For special forms there
3096 ;; is no solution that interacts reasonably with the
3097 ;; compiler, hence we just evaluate the original at macro
3098 ;; expansion time and return the result. The moral of that
3099 ;; is that one should always deactivate advised special
3100 ;; forms before one byte-compiles a file.
3101 `(,(if orig-macro-p 'macroexpand 'eval)
3102 (cons ',origname
3103 ,(ad-get-arguments advised-arglist 0))))
3104 ((and orig-subr-p
3105 orig-interactive-p
3106 (not interactive-form)
3107 (not advised-interactive-form))
3108 ;; Check whether we were called interactively
3109 ;; in order to do proper prompting:
3110 `(if (called-interactively-p)
3111 (call-interactively ',origname)
3112 ,(ad-make-mapped-call orig-arglist
3113 advised-arglist
3114 origname)))
3115 ;; And now for normal functions and non-interactive subrs
3116 ;; (or subrs whose interactive behavior was advised):
3117 (t (ad-make-mapped-call
3118 advised-arglist orig-arglist origname)))))
3120 ;; Finally, build the sucker:
3121 (ad-assemble-advised-definition
3122 (cond (orig-macro-p 'macro)
3123 (orig-special-form-p 'special-form)
3124 (t 'function))
3125 advised-arglist
3126 (ad-make-advised-definition-docstring function)
3127 interactive-form
3128 orig-form
3129 (ad-get-enabled-advices function 'before)
3130 (ad-get-enabled-advices function 'around)
3131 (ad-get-enabled-advices function 'after)))))
3133 (defun ad-assemble-advised-definition
3134 (type args docstring interactive orig &optional befores arounds afters)
3136 "Assembles an original and its advices into an advised function.
3137 It constructs a function or macro definition according to TYPE which has to
3138 be either `macro', `function' or `special-form'. ARGS is the argument list
3139 that has to be used, DOCSTRING if non-nil defines the documentation of the
3140 definition, INTERACTIVE if non-nil is the interactive form to be used,
3141 ORIG is a form that calls the body of the original unadvised function,
3142 and BEFORES, AROUNDS and AFTERS are the lists of advices with which ORIG
3143 should be modified. The assembled function will be returned."
3145 (let (before-forms around-form around-form-protected after-forms definition)
3146 (ad-dolist (advice befores)
3147 (cond ((and (ad-advice-protected advice)
3148 before-forms)
3149 (setq before-forms
3150 `((unwind-protect
3151 ,(ad-prognify before-forms)
3152 ,@(ad-body-forms
3153 (ad-advice-definition advice))))))
3154 (t (setq before-forms
3155 (append before-forms
3156 (ad-body-forms (ad-advice-definition advice)))))))
3158 (setq around-form `(setq ad-return-value ,orig))
3159 (ad-dolist (advice (reverse arounds))
3160 ;; If any of the around advices is protected then we
3161 ;; protect the complete around advice onion:
3162 (if (ad-advice-protected advice)
3163 (setq around-form-protected t))
3164 (setq around-form
3165 (ad-substitute-tree
3166 (function (lambda (form) (eq form 'ad-do-it)))
3167 (function (lambda (form) around-form))
3168 (ad-prognify (ad-body-forms (ad-advice-definition advice))))))
3170 (setq after-forms
3171 (if (and around-form-protected before-forms)
3172 `((unwind-protect
3173 ,(ad-prognify before-forms)
3174 ,around-form))
3175 (append before-forms (list around-form))))
3176 (ad-dolist (advice afters)
3177 (cond ((and (ad-advice-protected advice)
3178 after-forms)
3179 (setq after-forms
3180 `((unwind-protect
3181 ,(ad-prognify after-forms)
3182 ,@(ad-body-forms
3183 (ad-advice-definition advice))))))
3184 (t (setq after-forms
3185 (append after-forms
3186 (ad-body-forms (ad-advice-definition advice)))))))
3188 (setq definition
3189 `(,@(if (memq type '(macro special-form)) '(macro))
3190 lambda
3191 ,args
3192 ,@(if docstring (list docstring))
3193 ,@(if interactive (list interactive))
3194 (let (ad-return-value)
3195 ,@after-forms
3196 ,(if (eq type 'special-form)
3197 '(list 'quote ad-return-value)
3198 'ad-return-value))))
3200 (ad-insert-argument-access-forms definition args)))
3202 ;; This is needed for activation/deactivation hooks:
3203 (defun ad-make-hook-form (function hook-name)
3204 "Make hook-form from FUNCTION's advice bodies in class HOOK-NAME."
3205 (let ((hook-forms
3206 (mapcar (function (lambda (advice)
3207 (ad-body-forms (ad-advice-definition advice))))
3208 (ad-get-enabled-advices function hook-name))))
3209 (if hook-forms
3210 (ad-prognify (apply 'append hook-forms)))))
3213 ;; @@ Caching:
3214 ;; ===========
3215 ;; Generating an advised definition of a function is moderately expensive,
3216 ;; hence, it makes sense to cache it so we can reuse it in appropriate
3217 ;; circumstances. Of course, it only makes sense to reuse a cached
3218 ;; definition if the current advice and function definition state is the
3219 ;; same as it was at the time when the cached definition was generated.
3220 ;; For that purpose we associate every cache with an id so we can verify
3221 ;; if it is still valid at a certain point in time. This id mechanism
3222 ;; makes it possible to preactivate advised functions, write the compiled
3223 ;; advised definitions to a file and reuse them during the actual
3224 ;; activation without having to risk that the resulting definition will be
3225 ;; incorrect, well, almost.
3227 ;; A cache id is a list with six elements:
3228 ;; 1) the list of names of enabled before advices
3229 ;; 2) the list of names of enabled around advices
3230 ;; 3) the list of names of enabled after advices
3231 ;; 4) the type of the original function (macro, subr, etc.)
3232 ;; 5) the arglist of the original definition (or t if it was equal to the
3233 ;; arglist of the cached definition)
3234 ;; 6) t if the interactive form of the original definition was equal to the
3235 ;; interactive form of the cached definition
3237 ;; Here's how a cache can get invalidated or be incorrect:
3238 ;; A) a piece of advice used in the cache gets redefined
3239 ;; B) the current list of enabled advices is different from the ones used
3240 ;; for the cache
3241 ;; C) the type of the original function changed, e.g., a function became a
3242 ;; macro, or a subr became a function
3243 ;; D) the arglist of the original function changed
3244 ;; E) the interactive form of the original function changed
3245 ;; F) a piece of advice used in the cache got redefined before the
3246 ;; defadvice with the cached definition got loaded: This is a PROBLEM!
3248 ;; Cases A and B are the normal ones. A is taken care of by `ad-add-advice'
3249 ;; which clears the cache in such a case, B is easily checked during
3250 ;; verification at activation time.
3252 ;; Cases C, D and E have to be considered if one is slightly paranoid, i.e.,
3253 ;; if one considers the case that the original function could be different
3254 ;; from the one available at caching time (e.g., for forward advice of
3255 ;; functions that get redefined by some packages - such as `eval-region' gets
3256 ;; redefined by edebug). All these cases can be easily checked during
3257 ;; verification. Element 4 of the id lets one check case C, element 5 takes
3258 ;; care of case D (using t in the equality case saves some space, because the
3259 ;; arglist can be recovered at validation time from the cached definition),
3260 ;; and element 6 takes care of case E which is only a problem if the original
3261 ;; was actually a function whose interactive form was not overridden by a
3262 ;; piece of advice.
3264 ;; Case F is the only one which will lead to an incorrect advised function.
3265 ;; There is no way to avoid this without storing the complete advice definition
3266 ;; in the cache-id which is not feasible.
3268 ;; The cache-id of a typical advised function with one piece of advice and
3269 ;; no arglist redefinition takes 7 conses which is a small price to pay for
3270 ;; the added efficiency. The validation itself is also pretty cheap, certainly
3271 ;; a lot cheaper than reconstructing an advised definition.
3273 (defmacro ad-get-cache-definition (function)
3274 `(car (ad-get-advice-info-field ,function 'cache)))
3276 (defmacro ad-get-cache-id (function)
3277 `(cdr (ad-get-advice-info-field ,function 'cache)))
3279 (defmacro ad-set-cache (function definition id)
3280 `(ad-set-advice-info-field
3281 ,function 'cache (cons ,definition ,id)))
3283 (defun ad-clear-cache (function)
3284 "Clears a previously cached advised definition of FUNCTION.
3285 Clear the cache if you want to force `ad-activate' to construct a new
3286 advised definition from scratch."
3287 (interactive
3288 (list (ad-read-advised-function "Clear cached definition of")))
3289 (ad-set-advice-info-field function 'cache nil))
3291 (defun ad-make-cache-id (function)
3292 "Generate an identifying image of the current advices of FUNCTION."
3293 (let ((original-definition (ad-real-orig-definition function))
3294 (cached-definition (ad-get-cache-definition function)))
3295 (list (mapcar (function (lambda (advice) (ad-advice-name advice)))
3296 (ad-get-enabled-advices function 'before))
3297 (mapcar (function (lambda (advice) (ad-advice-name advice)))
3298 (ad-get-enabled-advices function 'around))
3299 (mapcar (function (lambda (advice) (ad-advice-name advice)))
3300 (ad-get-enabled-advices function 'after))
3301 (ad-definition-type original-definition)
3302 (if (equal (ad-arglist original-definition function)
3303 (ad-arglist cached-definition))
3305 (ad-arglist original-definition function))
3306 (if (eq (ad-definition-type original-definition) 'function)
3307 (equal (ad-interactive-form original-definition)
3308 (ad-interactive-form cached-definition))))))
3310 (defun ad-get-cache-class-id (function class)
3311 "Return the part of FUNCTION's cache id that identifies CLASS."
3312 (let ((cache-id (ad-get-cache-id function)))
3313 (if (eq class 'before)
3314 (car cache-id)
3315 (if (eq class 'around)
3316 (nth 1 cache-id)
3317 (nth 2 cache-id)))))
3319 (defun ad-verify-cache-class-id (cache-class-id advices)
3320 (ad-dolist (advice advices (null cache-class-id))
3321 (if (ad-advice-enabled advice)
3322 (if (eq (car cache-class-id) (ad-advice-name advice))
3323 (setq cache-class-id (cdr cache-class-id))
3324 (ad-do-return nil)))))
3326 ;; There should be a way to monitor if and why a cache verification failed
3327 ;; in order to determine whether a certain preactivation could be used or
3328 ;; not. Right now the only way to find out is to trace
3329 ;; `ad-cache-id-verification-code'. The code it returns indicates where the
3330 ;; verification failed. Tracing `ad-verify-cache-class-id' might provide
3331 ;; some additional useful information.
3333 (defun ad-cache-id-verification-code (function)
3334 (let ((cache-id (ad-get-cache-id function))
3335 (code 'before-advice-mismatch))
3336 (and (ad-verify-cache-class-id
3337 (car cache-id) (ad-get-advice-info-field function 'before))
3338 (setq code 'around-advice-mismatch)
3339 (ad-verify-cache-class-id
3340 (nth 1 cache-id) (ad-get-advice-info-field function 'around))
3341 (setq code 'after-advice-mismatch)
3342 (ad-verify-cache-class-id
3343 (nth 2 cache-id) (ad-get-advice-info-field function 'after))
3344 (setq code 'definition-type-mismatch)
3345 (let ((original-definition (ad-real-orig-definition function))
3346 (cached-definition (ad-get-cache-definition function)))
3347 (and (eq (nth 3 cache-id) (ad-definition-type original-definition))
3348 (setq code 'arglist-mismatch)
3349 (equal (if (eq (nth 4 cache-id) t)
3350 (ad-arglist original-definition function)
3351 (nth 4 cache-id) )
3352 (ad-arglist cached-definition))
3353 (setq code 'interactive-form-mismatch)
3354 (or (null (nth 5 cache-id))
3355 (equal (ad-interactive-form original-definition)
3356 (ad-interactive-form cached-definition)))
3357 (setq code 'verified))))
3358 code))
3360 (defun ad-verify-cache-id (function)
3361 "True if FUNCTION's cache-id is compatible with its current advices."
3362 (eq (ad-cache-id-verification-code function) 'verified))
3365 ;; @@ Preactivation:
3366 ;; =================
3367 ;; Preactivation can be used to generate compiled advised definitions
3368 ;; at compile time without having to give up the dynamic runtime flexibility
3369 ;; of the advice mechanism. Preactivation is a special feature of `defadvice',
3370 ;; it involves the following steps:
3371 ;; - remembering the function's current state (definition and advice-info)
3372 ;; - advising it with the defined piece of advice
3373 ;; - clearing its cache
3374 ;; - generating an interpreted advised definition by activating it, this will
3375 ;; make use of all its current active advice and its current definition
3376 ;; - saving the so generated cached definition and id
3377 ;; - resetting the function's advice and definition state to what it was
3378 ;; before the preactivation
3379 ;; - Returning the saved definition and its id to be used in the expansion of
3380 ;; `defadvice' to assign it as an initial cache, hence it will be compiled
3381 ;; at time the `defadvice' gets compiled.
3382 ;; Naturally, for preactivation to be effective it has to be applied/compiled
3383 ;; at the right time, i.e., when the current state of advices and function
3384 ;; definition exactly reflects the state at activation time. Should that not
3385 ;; be the case, the precompiled definition will just be discarded and a new
3386 ;; advised definition will be generated.
3388 (defun ad-preactivate-advice (function advice class position)
3389 "Preactivate FUNCTION and returns the constructed cache."
3390 (let* ((function-defined-p (fboundp function))
3391 (old-definition
3392 (if function-defined-p
3393 (symbol-function function)))
3394 (old-advice-info (ad-copy-advice-info function))
3395 (ad-advised-functions ad-advised-functions))
3396 (unwind-protect
3397 (progn
3398 (ad-add-advice function advice class position)
3399 (ad-enable-advice function class (ad-advice-name advice))
3400 (ad-clear-cache function)
3401 (ad-activate function -1)
3402 (if (and (ad-is-active function)
3403 (ad-get-cache-definition function))
3404 (list (ad-get-cache-definition function)
3405 (ad-get-cache-id function))))
3406 (ad-set-advice-info function old-advice-info)
3407 ;; Don't `fset' function to nil if it was previously unbound:
3408 (if function-defined-p
3409 (ad-safe-fset function old-definition)
3410 (fmakunbound function)))))
3413 ;; @@ Freezing:
3414 ;; ============
3415 ;; Freezing transforms a `defadvice' into a redefining `defun/defmacro'
3416 ;; for the advised function without keeping any advice information. This
3417 ;; feature was jwz's idea: It generates a dumpable function definition
3418 ;; whose documentation can be written to the DOC file, and the generated
3419 ;; code does not need any Advice runtime support. Of course, frozen advices
3420 ;; cannot be undone.
3422 ;; Freezing only considers the advice of the particular `defadvice', other
3423 ;; already existing advices for the same function will be ignored. To ensure
3424 ;; proper interaction when an already advised function gets redefined with
3425 ;; a frozen advice, frozen advices always use the actual original definition
3426 ;; of the function, i.e., they are always at the core of the onion. E.g., if
3427 ;; an already advised function gets redefined with a frozen advice and then
3428 ;; unadvised, the frozen advice remains as the new definition of the function.
3430 ;; While multiple freeze advices for a single function or freeze-advising
3431 ;; of an already advised function are possible, they are better avoided,
3432 ;; because definition/compile/load ordering is relevant, and it becomes
3433 ;; incomprehensible pretty quickly.
3435 (defun ad-make-freeze-definition (function advice class position)
3436 (if (not (ad-has-proper-definition function))
3437 (error
3438 "ad-make-freeze-definition: `%s' is not yet defined"
3439 function))
3440 (let* ((name (ad-advice-name advice))
3441 ;; With a unique origname we can have multiple freeze advices
3442 ;; for the same function, each overloading the previous one:
3443 (unique-origname
3444 (intern (format "%s-%s-%s" (ad-make-origname function) class name)))
3445 (orig-definition
3446 ;; If FUNCTION is already advised, we'll use its current origdef
3447 ;; as the original definition of the frozen advice:
3448 (or (ad-get-orig-definition function)
3449 (symbol-function function)))
3450 (old-advice-info
3451 (if (ad-is-advised function)
3452 (ad-copy-advice-info function)))
3453 (real-docstring-fn
3454 (symbol-function 'ad-make-advised-definition-docstring))
3455 (real-origname-fn
3456 (symbol-function 'ad-make-origname))
3457 (frozen-definition
3458 (unwind-protect
3459 (progn
3460 ;; Make sure we construct a proper docstring:
3461 (ad-safe-fset 'ad-make-advised-definition-docstring
3462 'ad-make-freeze-docstring)
3463 ;; Make sure `unique-origname' is used as the origname:
3464 (ad-safe-fset 'ad-make-origname (lambda (x) unique-origname))
3465 ;; No we reset all current advice information to nil and
3466 ;; generate an advised definition that's solely determined
3467 ;; by ADVICE and the current origdef of FUNCTION:
3468 (ad-set-advice-info function nil)
3469 (ad-add-advice function advice class position)
3470 ;; The following will provide proper real docstrings as
3471 ;; well as a definition that will make the compiler happy:
3472 (ad-set-orig-definition function orig-definition)
3473 (ad-make-advised-definition function))
3474 ;; Restore the old advice state:
3475 (ad-set-advice-info function old-advice-info)
3476 ;; Restore functions:
3477 (ad-safe-fset
3478 'ad-make-advised-definition-docstring real-docstring-fn)
3479 (ad-safe-fset 'ad-make-origname real-origname-fn))))
3480 (if frozen-definition
3481 (let* ((macro-p (ad-macro-p frozen-definition))
3482 (body (cdr (if macro-p
3483 (ad-lambdafy frozen-definition)
3484 frozen-definition))))
3485 `(progn
3486 (if (not (fboundp ',unique-origname))
3487 (fset ',unique-origname
3488 ;; avoid infinite recursion in case the function
3489 ;; we want to freeze is already advised:
3490 (or (ad-get-orig-definition ',function)
3491 (symbol-function ',function))))
3492 (,(if macro-p 'defmacro 'defun)
3493 ,function
3494 ,@body))))))
3497 ;; @@ Activation and definition handling:
3498 ;; ======================================
3500 (defun ad-should-compile (function compile)
3501 "Return non-nil if the advised FUNCTION should be compiled.
3502 If COMPILE is non-nil and not a negative number then it returns t.
3503 If COMPILE is a negative number then it returns nil.
3504 If COMPILE is nil then the result depends on the value of
3505 `ad-default-compilation-action' (which see)."
3506 (if (integerp compile)
3507 (>= compile 0)
3508 (if compile
3509 compile
3510 (cond ((eq ad-default-compilation-action 'never)
3511 nil)
3512 ((eq ad-default-compilation-action 'always)
3514 ((eq ad-default-compilation-action 'like-original)
3515 (or (ad-subr-p (ad-get-orig-definition function))
3516 (ad-compiled-p (ad-get-orig-definition function))))
3517 ;; everything else means `maybe':
3518 (t (featurep 'byte-compile))))))
3520 (defun ad-activate-advised-definition (function compile)
3521 "Redefine FUNCTION with its advised definition from cache or scratch.
3522 The resulting FUNCTION will be compiled if `ad-should-compile' returns t.
3523 The current definition and its cache-id will be put into the cache."
3524 (let ((verified-cached-definition
3525 (if (ad-verify-cache-id function)
3526 (ad-get-cache-definition function))))
3527 (ad-safe-fset function
3528 (or verified-cached-definition
3529 (ad-make-advised-definition function)))
3530 (if (ad-should-compile function compile)
3531 (ad-compile-function function))
3532 (if verified-cached-definition
3533 (if (not (eq verified-cached-definition (symbol-function function)))
3534 ;; we must have compiled, cache the compiled definition:
3535 (ad-set-cache
3536 function (symbol-function function) (ad-get-cache-id function)))
3537 ;; We created a new advised definition, cache it with a proper id:
3538 (ad-clear-cache function)
3539 ;; ad-make-cache-id needs the new cached definition:
3540 (ad-set-cache function (symbol-function function) nil)
3541 (ad-set-cache
3542 function (symbol-function function) (ad-make-cache-id function)))))
3544 (defun ad-handle-definition (function)
3545 "Handle re/definition of an advised FUNCTION during de/activation.
3546 If FUNCTION does not have an original definition associated with it and
3547 the current definition is usable, then it will be stored as FUNCTION's
3548 original definition. If no current definition is available (even in the
3549 case of undefinition) nothing will be done. In the case of redefinition
3550 the action taken depends on the value of `ad-redefinition-action' (which
3551 see). Redefinition occurs when FUNCTION already has an original definition
3552 associated with it but got redefined with a new definition and then
3553 de/activated. If you do not like the current redefinition action change
3554 the value of `ad-redefinition-action' and de/activate again."
3555 (let ((original-definition (ad-get-orig-definition function))
3556 (current-definition (if (ad-real-definition function)
3557 (symbol-function function))))
3558 (if original-definition
3559 (if current-definition
3560 (if (and (not (eq current-definition original-definition))
3561 ;; Redefinition with an advised definition from a
3562 ;; different function won't count as such:
3563 (not (ad-advised-definition-p current-definition)))
3564 ;; we have a redefinition:
3565 (if (not (memq ad-redefinition-action '(accept discard warn)))
3566 (error "ad-handle-definition (see its doc): `%s' %s"
3567 function "invalidly redefined")
3568 (if (eq ad-redefinition-action 'discard)
3569 (ad-safe-fset function original-definition)
3570 (ad-set-orig-definition function current-definition)
3571 (if (eq ad-redefinition-action 'warn)
3572 (message "ad-handle-definition: `%s' got redefined"
3573 function))))
3574 ;; either advised def or correct original is in place:
3575 nil)
3576 ;; we have an undefinition, ignore it:
3577 nil)
3578 (if current-definition
3579 ;; we have a first definition, save it as original:
3580 (ad-set-orig-definition function current-definition)
3581 ;; we don't have anything noteworthy:
3582 nil))))
3585 ;; @@ The top-level advice interface:
3586 ;; ==================================
3588 (defun ad-activate (function &optional compile)
3589 "Activate all the advice information of an advised FUNCTION.
3590 If FUNCTION has a proper original definition then an advised
3591 definition will be generated from FUNCTION's advice info and the
3592 definition of FUNCTION will be replaced with it. If a previously
3593 cached advised definition was available, it will be used.
3594 The optional COMPILE argument determines whether the resulting function
3595 or a compilable cached definition will be compiled. If it is negative
3596 no compilation will be performed, if it is positive or otherwise non-nil
3597 the resulting function will be compiled, if it is nil the behavior depends
3598 on the value of `ad-default-compilation-action' (which see).
3599 Activation of an advised function that has an advice info but no actual
3600 pieces of advice is equivalent to a call to `ad-unadvise'. Activation of
3601 an advised function that has actual pieces of advice but none of them are
3602 enabled is equivalent to a call to `ad-deactivate'. The current advised
3603 definition will always be cached for later usage."
3604 (interactive
3605 (list (ad-read-advised-function "Activate advice of")
3606 current-prefix-arg))
3607 (if ad-activate-on-top-level
3608 ;; avoid recursive calls to `ad-activate':
3609 (ad-with-auto-activation-disabled
3610 (if (not (ad-is-advised function))
3611 (error "ad-activate: `%s' is not advised" function)
3612 (ad-handle-definition function)
3613 ;; Just return for forward advised and not yet defined functions:
3614 (if (ad-get-orig-definition function)
3615 (if (not (ad-has-any-advice function))
3616 (ad-unadvise function)
3617 ;; Otherwise activate the advice:
3618 (cond ((ad-has-redefining-advice function)
3619 (ad-activate-advised-definition function compile)
3620 (ad-set-advice-info-field function 'active t)
3621 (eval (ad-make-hook-form function 'activation))
3622 function)
3623 ;; Here we are if we have all disabled advices:
3624 (t (ad-deactivate function)))))))))
3626 (defalias 'ad-activate-on 'ad-activate)
3628 (defun ad-deactivate (function)
3629 "Deactivate the advice of an actively advised FUNCTION.
3630 If FUNCTION has a proper original definition, then the current
3631 definition of FUNCTION will be replaced with it. All the advice
3632 information will still be available so it can be activated again with
3633 a call to `ad-activate'."
3634 (interactive
3635 (list (ad-read-advised-function "Deactivate advice of" 'ad-is-active)))
3636 (if (not (ad-is-advised function))
3637 (error "ad-deactivate: `%s' is not advised" function)
3638 (cond ((ad-is-active function)
3639 (ad-handle-definition function)
3640 (if (not (ad-get-orig-definition function))
3641 (error "ad-deactivate: `%s' has no original definition"
3642 function)
3643 (ad-safe-fset function (ad-get-orig-definition function))
3644 (ad-set-advice-info-field function 'active nil)
3645 (eval (ad-make-hook-form function 'deactivation))
3646 function)))))
3648 (defun ad-update (function &optional compile)
3649 "Update the advised definition of FUNCTION if its advice is active.
3650 See `ad-activate' for documentation on the optional COMPILE argument."
3651 (interactive
3652 (list (ad-read-advised-function
3653 "Update advised definition of" 'ad-is-active)))
3654 (if (ad-is-active function)
3655 (ad-activate function compile)))
3657 (defun ad-unadvise (function)
3658 "Deactivate FUNCTION and then remove all its advice information.
3659 If FUNCTION was not advised this will be a noop."
3660 (interactive
3661 (list (ad-read-advised-function "Unadvise function")))
3662 (cond ((ad-is-advised function)
3663 (if (ad-is-active function)
3664 (ad-deactivate function))
3665 (ad-clear-orig-definition function)
3666 (ad-set-advice-info function nil)
3667 (ad-pop-advised-function function))))
3669 (defun ad-recover (function)
3670 "Try to recover FUNCTION's original definition, and unadvise it.
3671 This is more low-level than `ad-unadvise' in that it does not do
3672 deactivation, which might run hooks and get into other trouble.
3673 Use in emergencies."
3674 ;; Use more primitive interactive behavior here: Accept any symbol that's
3675 ;; currently defined in obarray, not necessarily with a function definition:
3676 (interactive
3677 (list (intern
3678 (completing-read "Recover advised function: " obarray nil t))))
3679 (cond ((ad-is-advised function)
3680 (cond ((ad-get-orig-definition function)
3681 (ad-safe-fset function (ad-get-orig-definition function))
3682 (ad-clear-orig-definition function)))
3683 (ad-set-advice-info function nil)
3684 (ad-pop-advised-function function))))
3686 (defun ad-activate-regexp (regexp &optional compile)
3687 "Activate functions with an advice name containing a REGEXP match.
3688 This activates the advice for each function
3689 that has at least one piece of advice whose name includes a match for REGEXP.
3690 See `ad-activate' for documentation on the optional COMPILE argument."
3691 (interactive
3692 (list (ad-read-regexp "Activate via advice regexp")
3693 current-prefix-arg))
3694 (ad-do-advised-functions (function)
3695 (if (ad-find-some-advice function 'any regexp)
3696 (ad-activate function compile))))
3698 (defun ad-deactivate-regexp (regexp)
3699 "Deactivate functions with an advice name containing REGEXP match.
3700 This deactivates the advice for each function
3701 that has at least one piece of advice whose name includes a match for REGEXP."
3702 (interactive
3703 (list (ad-read-regexp "Deactivate via advice regexp")))
3704 (ad-do-advised-functions (function)
3705 (if (ad-find-some-advice function 'any regexp)
3706 (ad-deactivate function))))
3708 (defun ad-update-regexp (regexp &optional compile)
3709 "Update functions with an advice name containing a REGEXP match.
3710 This reactivates the advice for each function
3711 that has at least one piece of advice whose name includes a match for REGEXP.
3712 See `ad-activate' for documentation on the optional COMPILE argument."
3713 (interactive
3714 (list (ad-read-regexp "Update via advice regexp")
3715 current-prefix-arg))
3716 (ad-do-advised-functions (function)
3717 (if (ad-find-some-advice function 'any regexp)
3718 (ad-update function compile))))
3720 (defun ad-activate-all (&optional compile)
3721 "Activate all currently advised functions.
3722 See `ad-activate' for documentation on the optional COMPILE argument."
3723 (interactive "P")
3724 (ad-do-advised-functions (function)
3725 (ad-activate function compile)))
3727 (defun ad-deactivate-all ()
3728 "Deactivate all currently advised functions."
3729 (interactive)
3730 (ad-do-advised-functions (function)
3731 (ad-deactivate function)))
3733 (defun ad-update-all (&optional compile)
3734 "Update all currently advised functions.
3735 With prefix argument, COMPILE resulting advised definitions."
3736 (interactive "P")
3737 (ad-do-advised-functions (function)
3738 (ad-update function compile)))
3740 (defun ad-unadvise-all ()
3741 "Unadvise all currently advised functions."
3742 (interactive)
3743 (ad-do-advised-functions (function)
3744 (ad-unadvise function)))
3746 (defun ad-recover-all ()
3747 "Recover all currently advised functions. Use in emergencies.
3748 To recover a function means to try to find its original (pre-advice)
3749 definition, and delete all advice.
3750 This is more low-level than `ad-unadvise' in that it does not do
3751 deactivation, which might run hooks and get into other trouble."
3752 (interactive)
3753 (ad-do-advised-functions (function)
3754 (condition-case nil
3755 (ad-recover function)
3756 (error nil))))
3759 ;; Completion alist of valid `defadvice' flags
3760 (defvar ad-defadvice-flags
3761 '(("protect") ("disable") ("activate")
3762 ("compile") ("preactivate") ("freeze")))
3764 ;;;###autoload
3765 (defmacro defadvice (function args &rest body)
3766 "Define a piece of advice for FUNCTION (a symbol).
3767 The syntax of `defadvice' is as follows:
3769 \(defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
3770 [DOCSTRING] [INTERACTIVE-FORM]
3771 BODY... )
3773 FUNCTION ::= Name of the function to be advised.
3774 CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
3775 NAME ::= Non-nil symbol that names this piece of advice.
3776 POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
3777 see also `ad-add-advice'.
3778 ARGLIST ::= An optional argument list to be used for the advised function
3779 instead of the argument list of the original. The first one found in
3780 before/around/after-advices will be used.
3781 FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
3782 All flags can be specified with unambiguous initial substrings.
3783 DOCSTRING ::= Optional documentation for this piece of advice.
3784 INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
3785 function. The first one found in before/around/after-advices will be used.
3786 BODY ::= Any s-expression.
3788 Semantics of the various flags:
3789 `protect': The piece of advice will be protected against non-local exits in
3790 any code that precedes it. If any around-advice of a function is protected
3791 then automatically all around-advices will be protected (the complete onion).
3793 `activate': All advice of FUNCTION will be activated immediately if
3794 FUNCTION has been properly defined prior to this application of `defadvice'.
3796 `compile': In conjunction with `activate' specifies that the resulting
3797 advised function should be compiled.
3799 `disable': The defined advice will be disabled, hence, it will not be used
3800 during activation until somebody enables it.
3802 `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
3803 time. This generates a compiled advised definition according to the current
3804 advice state that will be used during activation if appropriate. Only use
3805 this if the `defadvice' gets actually compiled.
3807 `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
3808 to this particular single advice. No other advice information will be saved.
3809 Frozen advices cannot be undone, they behave like a hard redefinition of
3810 the advised function. `freeze' implies `activate' and `preactivate'. The
3811 documentation of the advised function can be dumped onto the `DOC' file
3812 during preloading.
3814 See Info node `(elisp)Advising Functions' for comprehensive documentation."
3815 (if (not (ad-name-p function))
3816 (error "defadvice: Invalid function name: %s" function))
3817 (let* ((class (car args))
3818 (name (if (not (ad-class-p class))
3819 (error "defadvice: Invalid advice class: %s" class)
3820 (nth 1 args)))
3821 (position (if (not (ad-name-p name))
3822 (error "defadvice: Invalid advice name: %s" name)
3823 (setq args (nthcdr 2 args))
3824 (if (ad-position-p (car args))
3825 (prog1 (car args)
3826 (setq args (cdr args))))))
3827 (arglist (if (listp (car args))
3828 (prog1 (car args)
3829 (setq args (cdr args)))))
3830 (flags
3831 (mapcar
3832 (function
3833 (lambda (flag)
3834 (let ((completion
3835 (try-completion (symbol-name flag) ad-defadvice-flags)))
3836 (cond ((eq completion t) flag)
3837 ((assoc completion ad-defadvice-flags)
3838 (intern completion))
3839 (t (error "defadvice: Invalid or ambiguous flag: %s"
3840 flag))))))
3841 args))
3842 (advice (ad-make-advice
3843 name (memq 'protect flags)
3844 (not (memq 'disable flags))
3845 `(advice lambda ,arglist ,@body)))
3846 (preactivation (if (memq 'preactivate flags)
3847 (ad-preactivate-advice
3848 function advice class position))))
3849 ;; Now for the things to be done at evaluation time:
3850 (if (memq 'freeze flags)
3851 ;; jwz's idea: Freeze the advised definition into a dumpable
3852 ;; defun/defmacro whose docs can be written to the DOC file:
3853 (ad-make-freeze-definition function advice class position)
3854 ;; the normal case:
3855 `(progn
3856 (ad-add-advice ',function ',advice ',class ',position)
3857 ,@(if preactivation
3858 `((ad-set-cache
3859 ',function
3860 ;; the function will get compiled:
3861 ,(cond ((ad-macro-p (car preactivation))
3862 `(ad-macrofy
3863 (function
3864 ,(ad-lambdafy
3865 (car preactivation)))))
3866 (t `(function
3867 ,(car preactivation))))
3868 ',(car (cdr preactivation)))))
3869 ,@(if (memq 'activate flags)
3870 `((ad-activate ',function
3871 ,(if (memq 'compile flags) t))))
3872 ',function))))
3875 ;; @@ Tools:
3876 ;; =========
3878 (defmacro ad-with-originals (functions &rest body)
3879 "Binds FUNCTIONS to their original definitions and execute BODY.
3880 For any members of FUNCTIONS that are not currently advised the rebinding will
3881 be a noop. Any modifications done to the definitions of FUNCTIONS will be
3882 undone on exit of this macro."
3883 (let* ((index -1)
3884 ;; Make let-variables to store current definitions:
3885 (current-bindings
3886 (mapcar (function
3887 (lambda (function)
3888 (setq index (1+ index))
3889 (list (intern (format "ad-oRiGdEf-%d" index))
3890 `(symbol-function ',function))))
3891 functions)))
3892 `(let ,current-bindings
3893 (unwind-protect
3894 (progn
3895 ,@(progn
3896 ;; Make forms to redefine functions to their
3897 ;; original definitions if they are advised:
3898 (setq index -1)
3899 (mapcar
3900 (function
3901 (lambda (function)
3902 (setq index (1+ index))
3903 `(ad-safe-fset
3904 ',function
3905 (or (ad-get-orig-definition ',function)
3906 ,(car (nth index current-bindings))))))
3907 functions))
3908 ,@body)
3909 ,@(progn
3910 ;; Make forms to back-define functions to the definitions
3911 ;; they had outside this macro call:
3912 (setq index -1)
3913 (mapcar
3914 (function
3915 (lambda (function)
3916 (setq index (1+ index))
3917 `(ad-safe-fset
3918 ',function
3919 ,(car (nth index current-bindings)))))
3920 functions))))))
3922 (if (not (get 'ad-with-originals 'lisp-indent-hook))
3923 (put 'ad-with-originals 'lisp-indent-hook 1))
3926 ;; @@ Advising `documentation':
3927 ;; ============================
3928 ;; Use the advice mechanism to advise `documentation' to make it
3929 ;; generate proper documentation strings for advised definitions:
3931 ;; This makes sure we get the right arglist for `documentation'
3932 ;; during bootstrapping.
3933 (ad-define-subr-args 'documentation '(function &optional raw))
3935 (defadvice documentation (after ad-advised-docstring first disable preact)
3936 "Builds an advised docstring if FUNCTION is advised."
3937 ;; Because we get the function name from the advised docstring
3938 ;; this will work for function names as well as for definitions:
3939 (if (and (stringp ad-return-value)
3940 (string-match
3941 ad-advised-definition-docstring-regexp ad-return-value))
3942 (let ((function
3943 (car (read-from-string
3944 ad-return-value (match-beginning 1) (match-end 1)))))
3945 (cond ((ad-is-advised function)
3946 (setq ad-return-value (ad-make-advised-docstring function))
3947 ;; Handle optional `raw' argument:
3948 (if (not (ad-get-arg 1))
3949 (setq ad-return-value
3950 (substitute-command-keys ad-return-value))))))))
3953 ;; @@ Starting, stopping and recovering from the advice package magic:
3954 ;; ===================================================================
3956 (defun ad-start-advice ()
3957 "Start the automatic advice handling magic."
3958 (interactive)
3959 ;; Advising `ad-activate-internal' means death!!
3960 (ad-set-advice-info 'ad-activate-internal nil)
3961 (ad-safe-fset 'ad-activate-internal 'ad-activate)
3962 (ad-enable-advice 'documentation 'after 'ad-advised-docstring)
3963 (ad-activate 'documentation 'compile))
3965 (defun ad-stop-advice ()
3966 "Stop the automatic advice handling magic.
3967 You should only need this in case of Advice-related emergencies."
3968 (interactive)
3969 ;; Advising `ad-activate-internal' means death!!
3970 (ad-set-advice-info 'ad-activate-internal nil)
3971 (ad-disable-advice 'documentation 'after 'ad-advised-docstring)
3972 (ad-update 'documentation)
3973 (ad-safe-fset 'ad-activate-internal 'ad-activate-internal-off))
3975 (defun ad-recover-normality ()
3976 "Undo all advice related redefinitions and unadvises everything.
3977 Use only in REAL emergencies."
3978 (interactive)
3979 ;; Advising `ad-activate-internal' means death!!
3980 (ad-set-advice-info 'ad-activate-internal nil)
3981 (ad-safe-fset 'ad-activate-internal 'ad-activate-internal-off)
3982 (ad-recover-all)
3983 (setq ad-advised-functions nil))
3985 (ad-start-advice)
3987 (provide 'advice)
3989 ;;; arch-tag: 29f8c9a1-8c88-471f-95d7-e28541c6b7c0
3990 ;;; advice.el ends here