Merge from emacs-24; up to 2013-01-02T16:37:04Z!eggert@cs.ucla.edu
[bpt/emacs.git] / lisp / emacs-lisp / advice.el
CommitLineData
6858633a 1;;; advice.el --- An overloading mechanism for Emacs Lisp functions -*- lexical-binding: t -*-
ee7bf2ad 2
ab422c4d 3;; Copyright (C) 1993-1994, 2000-2013 Free Software Foundation, Inc.
ee7bf2ad
RM
4
5;; Author: Hans Chalupsky <hans@cs.buffalo.edu>
850da9d0 6;; Maintainer: FSF
ee7bf2ad 7;; Created: 12 Dec 1992
b7f66977 8;; Keywords: extensions, lisp, tools
bd78fa1d 9;; Package: emacs
ee7bf2ad
RM
10
11;; This file is part of GNU Emacs.
12
d6cba7ae 13;; GNU Emacs is free software: you can redistribute it and/or modify
ee7bf2ad 14;; it under the terms of the GNU General Public License as published by
d6cba7ae
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
ee7bf2ad
RM
17
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.
22
23;; You should have received a copy of the GNU General Public License
d6cba7ae 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
ee7bf2ad
RM
25
26;; LCD Archive Entry:
27;; advice|Hans Chalupsky|hans@cs.buffalo.edu|
6e2f6f45 28;; Overloading mechanism for Emacs Lisp functions|
81eee8ab 29;; 1994/08/05 03:42:04|2.14|~/packages/advice.el.Z|
ee7bf2ad
RM
30
31
32;;; Commentary:
33
fce44373 34;; Advice is documented in the Emacs Lisp Manual.
6e2f6f45 35
ee7bf2ad
RM
36;; @ Introduction:
37;; ===============
38;; This package implements a full-fledged Lisp-style advice mechanism
fce44373 39;; for Emacs Lisp. Advice is a clean and efficient way to modify the
ee7bf2ad 40;; behavior of Emacs Lisp functions without having to keep personal
fce44373
DL
41;; modified copies of such functions around. A great number of such
42;; modifications can be achieved by treating the original function as a
43;; black box and specifying a different execution environment for it
ee7bf2ad
RM
44;; with a piece of advice. Think of a piece of advice as a kind of fancy
45;; hook that you can attach to any function/macro/subr.
46
47;; @ Highlights:
48;; =============
49;; - Clean definition of multiple, named before/around/after advices
3c442f8b 50;; for functions and macros.
ee7bf2ad
RM
51;; - Full control over the arguments an advised function will receive,
52;; the binding environment in which it will be executed, as well as the
53;; value it will return.
3c442f8b
SM
54;; - Allows re/definition of interactive behavior for commands.
55;; - Every piece of advice can have its documentation string.
ee7bf2ad
RM
56;; - The execution of every piece of advice can be protected against error
57;; and non-local exits in preceding code or advices.
58;; - Simple argument access either by name, or, more portable but as
59;; efficient, via access macros
60;; - Allows the specification of a different argument list for the advised
61;; version of a function.
62;; - Advised functions can be byte-compiled either at file-compile time
63;; (see preactivation) or activation time.
3c442f8b 64;; - Separation of advice definition and activation.
fabaa9b5 65;; - Forward advice is possible, that is
ee7bf2ad 66;; as yet undefined or autoload functions can be advised without having to
fce44373 67;; preload the file in which they are defined.
ee7bf2ad
RM
68;; - Forward redefinition is possible because around advice can be used to
69;; completely redefine a function.
70;; - A caching mechanism for advised definition provides for cheap deactivation
71;; and reactivation of advised functions.
72;; - Preactivation allows efficient construction and compilation of advised
73;; definitions at file compile time without giving up the flexibility of
74;; the advice mechanism.
75;; - En/disablement mechanism allows the use of different "views" of advised
76;; functions depending on what pieces of advice are currently en/disabled
fce44373 77;; - Provides manipulation mechanisms for sets of advised functions via
3c442f8b 78;; regular expressions that match advice names.
ee7bf2ad 79
ee7bf2ad
RM
80;; @ Overview, or how to read this file:
81;; =====================================
aaf0c300
SM
82;; You can use `outline-mode' to help you read this documentation (set
83;; `outline-regexp' to `";; @+"').
ee7bf2ad
RM
84;;
85;; The four major sections of this file are:
86;;
87;; @ This initial information ...installation, customization etc.
88;; @ Advice documentation: ...general documentation
6e2f6f45 89;; @ Foo games: An advice tutorial ...teaches about Advice by example
ee7bf2ad
RM
90;; @ Advice implementation: ...actual code, yeah!!
91;;
92;; The latter three are actual headings which you can search for
6e2f6f45 93;; directly in case `outline-mode' doesn't work for you.
ee7bf2ad
RM
94
95;; @ Restrictions:
96;; ===============
97;; - Advised functions/macros/subrs will only exhibit their advised behavior
98;; when they are invoked via their function cell. This means that advice will
99;; not work for the following:
fce44373
DL
100;; + advised subrs that are called directly from other subrs or C-code
101;; + advised subrs that got replaced with their byte-code during
ee7bf2ad
RM
102;; byte-compilation (e.g., car)
103;; + advised macros which were expanded during byte-compilation before
104;; their advice was activated.
6e2f6f45 105
ee7bf2ad
RM
106;; @ Credits:
107;; ==========
108;; This package is an extension and generalization of packages such as
109;; insert-hooks.el written by Noah S. Friedman, and advise.el written by
110;; Raul J. Acevedo. Some ideas used in here come from these packages,
111;; others come from the various Lisp advice mechanisms I've come across
112;; so far, and a few are simply mine.
113
ee7bf2ad
RM
114;; @ Safety Rules and Emergency Exits:
115;; ===================================
116;; Before we begin: CAUTION!!
6e2f6f45 117;; Advice provides you with a lot of rope to hang yourself on very
ee7bf2ad 118;; easily accessible trees, so, here are a few important things you
3c442f8b 119;; should know:
8a946354 120;;
ee7bf2ad 121;; If you experience any strange behavior/errors etc. that you attribute to
6e2f6f45 122;; Advice or to some ill-advised function do one of the following:
ee7bf2ad
RM
123
124;; - M-x ad-deactivate FUNCTION (if you have a definite suspicion what
125;; function gives you problems)
126;; - M-x ad-deactivate-all (if you don't have a clue what's going wrong)
ee7bf2ad 127;; - M-x ad-recover-normality (for real emergencies)
6e2f6f45 128;; - If none of the above solves your Advice-related problem go to another
ee7bf2ad
RM
129;; terminal, kill your Emacs process and send me some hate mail.
130
3c442f8b 131;; The first two measures have restarts, i.e., once you've figured out
ee7bf2ad 132;; the problem you can reactivate advised functions with either `ad-activate',
3c442f8b 133;; or `ad-activate-all'. `ad-recover-normality' unadvises
ee7bf2ad
RM
134;; everything so you won't be able to reactivate any advised functions, you'll
135;; have to stick with their standard incarnations for the rest of the session.
136
6e2f6f45 137;; RELAX: Advice is pretty safe even if you are oblivious to the above.
ee7bf2ad 138;; I use it extensively and haven't run into any serious trouble in a long
3c442f8b 139;; time. Just wanted you to be warned.
ee7bf2ad 140
ee7bf2ad
RM
141;; @ Customization:
142;; ================
ee7bf2ad 143
ee7bf2ad 144;; Look at the documentation of `ad-redefinition-action' for possible values
3c442f8b 145;; of this variable. Its default value is `warn' which will print a warning
ee7bf2ad
RM
146;; message when an already defined advised function gets redefined with a
147;; new original definition and de/activated.
148
fabaa9b5 149;; Look at the documentation of `ad-default-compilation-action' for possible
3c442f8b 150;; values of this variable. Its default value is `maybe' which will compile
fabaa9b5 151;; advised definitions during activation in case the byte-compiler is already
3c442f8b 152;; loaded. Otherwise, it will leave them uncompiled.
fabaa9b5 153
ee7bf2ad
RM
154;; @ Motivation:
155;; =============
156;; Before I go on explaining how advice works, here are four simple examples
3c442f8b 157;; how this package can be used. The first three are very useful, the last one
ee7bf2ad
RM
158;; is just a joke:
159
160;;(defadvice switch-to-buffer (before existing-buffers-only activate)
fce44373 161;; "When called interactively switch to existing buffers only, unless
ee7bf2ad 162;;when called with a prefix argument."
fce44373
DL
163;; (interactive
164;; (list (read-buffer "Switch to buffer: " (other-buffer)
ee7bf2ad
RM
165;; (null current-prefix-arg)))))
166;;
167;;(defadvice switch-to-buffer (around confirm-non-existing-buffers activate)
168;; "Switch to non-existing buffers only upon confirmation."
169;; (interactive "BSwitch to buffer: ")
170;; (if (or (get-buffer (ad-get-arg 0))
171;; (y-or-n-p (format "`%s' does not exist, create? " (ad-get-arg 0))))
172;; ad-do-it))
173;;
174;;(defadvice find-file (before existing-files-only activate)
175;; "Find existing files only"
176;; (interactive "fFind file: "))
177;;
178;;(defadvice car (around interactive activate)
179;; "Make `car' an interactive function."
180;; (interactive "xCar of list: ")
181;; ad-do-it
32226619 182;; (if (called-interactively-p 'interactive)
ee7bf2ad
RM
183;; (message "%s" ad-return-value)))
184
185
186;; @ Advice documentation:
187;; =======================
3c442f8b 188;; Below is general documentation of the various features of advice. For more
ee7bf2ad
RM
189;; concrete examples check the corresponding sections in the tutorial part.
190
191;; @@ Terminology:
192;; ===============
aaf0c300 193;; - Emacs: Emacs as released by the GNU Project
6e2f6f45 194;; - Advice: The name of this package.
ee7bf2ad
RM
195;; - advices: Short for "pieces of advice".
196
197;; @@ Defining a piece of advice with `defadvice':
198;; ===============================================
199;; The main means of defining a piece of advice is the macro `defadvice',
200;; there is no interactive way of specifying a piece of advice. A call to
201;; `defadvice' has the following syntax which is similar to the syntax of
202;; `defun/defmacro':
203;;
204;; (defadvice <function> (<class> <name> [<position>] [<arglist>] {<flags>}*)
205;; [ [<documentation-string>] [<interactive-form>] ]
206;; {<body-form>}* )
207
208;; <function> is the name of the function/macro/subr to be advised.
209
210;; <class> is the class of the advice which has to be one of `before',
211;; `around', `after', `activation' or `deactivation' (the last two allow
212;; definition of special act/deactivation hooks).
213
6e2f6f45 214;; <name> is the name of the advice which has to be a non-nil symbol.
ee7bf2ad
RM
215;; Names uniquely identify a piece of advice in a certain advice class,
216;; hence, advices can be redefined by defining an advice with the same class
3c442f8b 217;; and name. Advice names are global symbols, hence, the same name space
ee7bf2ad
RM
218;; conventions used for function names should be applied.
219
220;; An optional <position> specifies where in the current list of advices of
3c442f8b 221;; the specified <class> this new advice will be placed. <position> has to
ee7bf2ad 222;; be either `first', `last' or a number that specifies a zero-based
3c442f8b
SM
223;; position (`first' is equivalent to 0). If no position is specified
224;; `first' will be used as a default. If this call to `defadvice' redefines
ee7bf2ad
RM
225;; an already existing advice (see above) then the position argument will
226;; be ignored and the position of the already existing advice will be used.
227
228;; An optional <arglist> which has to be a list can be used to define the
3c442f8b 229;; argument list of the advised function. This argument list should of
ee7bf2ad
RM
230;; course be compatible with the argument list of the original function,
231;; otherwise functions that call the advised function with the original
3c442f8b 232;; argument list in mind will break. If more than one advice specify an
ee7bf2ad
RM
233;; argument list then the first one (the one with the smallest position)
234;; found in the list of before/around/after advices will be used.
235
236;; <flags> is a list of symbols that specify further information about the
237;; advice. All flags can be specified with unambiguous initial substrings.
238;; `activate': Specifies that the advice information of the advised
239;; function should be activated right after this advice has been
fce44373 240;; defined. In forward advices `activate' will be ignored.
ee7bf2ad
RM
241;; `protect': Specifies that this advice should be protected against
242;; non-local exits and errors in preceding code/advices.
243;; `compile': Specifies that the advised function should be byte-compiled.
244;; This flag will be ignored unless `activate' is also specified.
245;; `disable': Specifies that the defined advice should be disabled, hence,
246;; it will not be used in an activation until somebody enables it.
247;; `preactivate': Specifies that the advised function should get preactivated
3c442f8b 248;; at macro-expansion/compile time of this `defadvice'. This
ee7bf2ad
RM
249;; generates a compiled advised definition according to the
250;; current advice state which will be used during activation
3c442f8b 251;; if appropriate. Only use this if the `defadvice' gets
aaf0c300 252;; actually compiled.
ee7bf2ad
RM
253
254;; An optional <documentation-string> can be supplied to document the advice.
255;; On call of the `documentation' function it will be combined with the
256;; documentation strings of the original function and other advices.
257
258;; An optional <interactive-form> form can be supplied to change/add
3c442f8b 259;; interactive behavior of the original function. If more than one advice
ee7bf2ad
RM
260;; has an `(interactive ...)' specification then the first one (the one
261;; with the smallest position) found in the list of before/around/after
262;; advices will be used.
263
264;; A possibly empty list of <body-forms> specifies the body of the advice in
3c442f8b 265;; an implicit progn. The body of an advice can access/change arguments,
fce44373 266;; the return value, the binding environment, and can have all sorts of
ee7bf2ad
RM
267;; other side effects.
268
269;; @@ Assembling advised definitions:
270;; ==================================
271;; Suppose a function/macro/subr/special-form has N pieces of before advice,
3c442f8b 272;; M pieces of around advice and K pieces of after advice. Assuming none of
ee7bf2ad
RM
273;; the advices is protected, its advised definition will look like this
274;; (body-form indices correspond to the position of the respective advice in
275;; that advice class):
276
277;; ([macro] lambda <arglist>
278;; [ [<advised-docstring>] [(interactive ...)] ]
279;; (let (ad-return-value)
280;; {<before-0-body-form>}*
281;; ....
282;; {<before-N-1-body-form>}*
283;; {<around-0-body-form>}*
284;; {<around-1-body-form>}*
285;; ....
286;; {<around-M-1-body-form>}*
287;; (setq ad-return-value
288;; <apply original definition to <arglist>>)
289;; {<other-around-M-1-body-form>}*
290;; ....
291;; {<other-around-1-body-form>}*
292;; {<other-around-0-body-form>}*
293;; {<after-0-body-form>}*
294;; ....
295;; {<after-K-1-body-form>}*
296;; ad-return-value))
297
298;; Macros and special forms will be redefined as macros, hence the optional
299;; [macro] in the beginning of the definition.
300
301;; <arglist> is either the argument list of the original function or the
302;; first argument list defined in the list of before/around/after advices.
303;; The values of <arglist> variables can be accessed/changed in the body of
304;; an advice by simply referring to them by their original name, however,
25dec365 305;; more portable argument access macros are also provided (see below).
ee7bf2ad
RM
306
307;; <advised-docstring> is an optional, special documentation string which will
308;; be expanded into a proper documentation string upon call of `documentation'.
309
310;; (interactive ...) is an optional interactive form either taken from the
3c442f8b 311;; original function or from a before/around/after advice. For advised
ee7bf2ad
RM
312;; interactive subrs that do not have an interactive form specified in any
313;; advice we have to use (interactive) and then call the subr interactively
314;; if the advised function was called interactively, because the
3c442f8b 315;; interactive specification of subrs is not accessible. This is the only
ee7bf2ad
RM
316;; case where changing the values of arguments will not have an affect
317;; because they will be reset by the interactive specification of the subr.
318;; If this is a problem one can always specify an interactive form in a
319;; before/around/after advice to gain control over argument values that
320;; were supplied interactively.
8a946354 321;;
ee7bf2ad
RM
322;; Then the body forms of the various advices in the various classes of advice
323;; are assembled in order. The forms of around advice L are normally part of
3c442f8b 324;; one of the forms of around advice L-1. An around advice can specify where
ee7bf2ad 325;; the forms of the wrapped or surrounded forms should go with the special
3c442f8b 326;; keyword `ad-do-it', which will run the forms of the surrounded code.
ee7bf2ad 327
fce44373 328;; The innermost part of the around advice onion is
ee7bf2ad 329;; <apply original definition to <arglist>>
3c442f8b
SM
330;; whose form depends on the type of the original function. The variable
331;; `ad-return-value' will be set to its result. This variable is visible to
ee7bf2ad 332;; all pieces of advice which can access and modify it before it gets returned.
8a946354 333;;
ee7bf2ad 334;; The semantic structure of advised functions that contain protected pieces
3c442f8b 335;; of advice is the same. The only difference is that `unwind-protect' forms
ee7bf2ad 336;; make sure that the protected advice gets executed even if some previous
3c442f8b 337;; piece of advice had an error or a non-local exit. If any around advice is
ee7bf2ad
RM
338;; protected then the whole around advice onion will be protected.
339
340;; @@ Argument access in advised functions:
341;; ========================================
342;; As already mentioned, the simplest way to access the arguments of an
3c442f8b
SM
343;; advised function in the body of an advice is to refer to them by name.
344;; To do that, the advice programmer needs to know either the names of the
ee7bf2ad 345;; argument variables of the original function, or the names used in the
3c442f8b 346;; argument list redefinition given in a piece of advice. While this simple
ee7bf2ad
RM
347;; method might be sufficient in many cases, it has the disadvantage that it
348;; is not very portable because it hardcodes the argument names into the
349;; advice. If the definition of the original function changes the advice
3c442f8b 350;; might break even though the code might still be correct. Situations like
ee7bf2ad
RM
351;; that arise, for example, if one advises a subr like `eval-region' which
352;; gets redefined in a non-advice style into a function by the edebug
3c442f8b
SM
353;; package. If the advice assumes `eval-region' to be a subr it might break
354;; once edebug is loaded. Similar situations arise when one wants to use the
aaf0c300 355;; same piece of advice across different versions of Emacs.
ee7bf2ad
RM
356
357;; As a solution to that advice provides argument list access macros that get
358;; translated into the proper access forms at activation time, i.e., when the
3c442f8b 359;; advised definition gets constructed. Access macros access actual arguments
ee7bf2ad 360;; by position regardless of how these actual argument get distributed onto
3c442f8b 361;; the argument variables of a function. The rational behind this is that in
ee7bf2ad
RM
362;; Emacs Lisp the semantics of an argument is strictly determined by its
363;; position (there are no keyword arguments).
364
365;; Suppose the function `foo' is defined as
366;;
367;; (defun foo (x y &optional z &rest r) ....)
368;;
369;; and is then called with
370;;
371;; (foo 0 1 2 3 4 5 6)
372
3c442f8b
SM
373;; which means that X=0, Y=1, Z=2 and R=(3 4 5 6). The assumption is that
374;; the semantics of an actual argument is determined by its position. It is
375;; this semantics that has to be known by the advice programmer. Then s/he
ee7bf2ad
RM
376;; can access these arguments in a piece of advice with some of the
377;; following macros (the arrows indicate what value they will return):
378
379;; (ad-get-arg 0) -> 0
380;; (ad-get-arg 1) -> 1
381;; (ad-get-arg 2) -> 2
382;; (ad-get-arg 3) -> 3
383;; (ad-get-args 2) -> (2 3 4 5 6)
384;; (ad-get-args 4) -> (4 5 6)
385
386;; `(ad-get-arg <position>)' will return the actual argument that was supplied
387;; at <position>, `(ad-get-args <position>)' will return the list of actual
3c442f8b 388;; arguments supplied starting at <position>. Note that these macros can be
ee7bf2ad
RM
389;; used without any knowledge about the form of the actual argument list of
390;; the original function.
391
392;; Similarly, `(ad-set-arg <position> <value-form>)' can be used to set the
3c442f8b 393;; value of the actual argument at <position> to <value-form>. For example,
ee7bf2ad
RM
394;;
395;; (ad-set-arg 5 "five")
396;;
397;; will have the effect that R=(3 4 "five" 6) once the original function is
3c442f8b 398;; called. `(ad-set-args <position> <value-list-form>)' can be used to set
ee7bf2ad
RM
399;; the list of actual arguments starting at <position> to <value-list-form>.
400;; For example,
401;;
402;; (ad-set-args 0 '(5 4 3 2 1 0))
403;;
404;; will have the effect that X=5, Y=4, Z=3 and R=(2 1 0) once the original
405;; function is called.
406
3c442f8b 407;; All these access macros are text macros rather than real Lisp macros. When
ee7bf2ad
RM
408;; the advised definition gets constructed they get replaced with actual access
409;; forms depending on the argument list of the advised function, i.e., after
410;; that argument access is in most cases as efficient as using the argument
411;; variable names directly.
412
413;; @@@ Accessing argument bindings of arbitrary functions:
414;; =======================================================
415;; Some functions (such as `trace-function' defined in trace.el) need a
416;; method of accessing the names and bindings of the arguments of an
3c442f8b 417;; arbitrary advised function. To do that within an advice one can use the
ee7bf2ad
RM
418;; special keyword `ad-arg-bindings' which is a text macro that will be
419;; substituted with a form that will evaluate to a list of binding
420;; specifications, one for every argument variable. These binding
421;; specifications can then be examined in the body of the advice. For
422;; example, somewhere in an advice we could do this:
423;;
424;; (let* ((bindings ad-arg-bindings)
425;; (firstarg (car bindings))
426;; (secondarg (car (cdr bindings))))
427;; ;; Print info about first argument
428;; (print (format "%s=%s (%s)"
429;; (ad-arg-binding-field firstarg 'name)
430;; (ad-arg-binding-field firstarg 'value)
431;; (ad-arg-binding-field firstarg 'type)))
432;; ....)
433;;
434;; The `type' of an argument is either `required', `optional' or `rest'.
435;; Wherever `ad-arg-bindings' appears a form will be inserted that evaluates
436;; to the list of bindings, hence, in order to avoid multiple unnecessary
437;; evaluations one should always bind it to some variable.
438
439;; @@@ Argument list mapping:
440;; ==========================
25dec365
CY
441;; Because `defadvice' allows the specification of the argument list
442;; of the advised function we need a mapping mechanism that maps this
3c442f8b 443;; argument list onto that of the original function. Hence SYM and
25dec365
CY
444;; NEWDEF have to be properly mapped onto the &rest variable when the
445;; original definition is called. Advice automatically takes care of
446;; that mapping, hence, the advice programmer can specify an argument
447;; list without having to know about the exact structure of the
448;; original argument list as long as the new argument list takes a
449;; compatible number/magnitude of actual arguments.
ee7bf2ad 450
ee7bf2ad
RM
451;; @@ Activation and deactivation:
452;; ===============================
453;; The definition of an advised function does not change until all its advice
3c442f8b 454;; gets actually activated. Activation can either happen with the `activate'
ee7bf2ad 455;; flag specified in the `defadvice', with an explicit call or interactive
3c442f8b
SM
456;; invocation of `ad-activate', or at the time an already advised function
457;; gets defined.
ee7bf2ad
RM
458
459;; When a function gets first activated its original definition gets saved,
460;; all defined and enabled pieces of advice will get combined with the
461;; original definition, the resulting definition might get compiled depending
462;; on some conditions described below, and then the function will get
463;; redefined with the advised definition. This also means that undefined
464;; functions cannot get activated even though they might be already advised.
465
466;; The advised definition will get compiled either if `ad-activate' was called
467;; interactively with a prefix argument, or called explicitly with its second
fabaa9b5
RS
468;; argument as t, or, if `ad-default-compilation-action' justifies it according
469;; to the current system state. If the advised definition was
ee7bf2ad
RM
470;; constructed during "preactivation" (see below) then that definition will
471;; be already compiled because it was constructed during byte-compilation of
472;; the file that contained the `defadvice' with the `preactivate' flag.
473
474;; `ad-deactivate' can be used to back-define an advised function to its
3c442f8b 475;; original definition. It can be called interactively or directly. Because
ee7bf2ad
RM
476;; `ad-activate' caches the advised definition the function can be
477;; reactivated via `ad-activate' with only minor overhead (it is checked
478;; whether the current advice state is consistent with the cached
479;; definition, see the section on caching below).
480
481;; `ad-activate-regexp' and `ad-deactivate-regexp' can be used to de/activate
482;; all currently advised function that have a piece of advice with a name that
3c442f8b 483;; contains a match for a regular expression. These functions can be used to
ee7bf2ad
RM
484;; de/activate sets of functions depending on certain advice naming
485;; conventions.
486
487;; Finally, `ad-activate-all' and `ad-deactivate-all' can be used to
3c442f8b 488;; de/activate all currently advised functions. These are useful to
ee7bf2ad
RM
489;; (temporarily) return to an un/advised state.
490
491;; @@@ Reasons for the separation of advice definition and activation:
492;; ===================================================================
493;; As already mentioned, advising happens in two stages:
494
495;; 1) definition of various pieces of advice
496;; 2) activation of all advice currently defined and enabled
497
498;; The advantage of this is that various pieces of advice can be defined
499;; before they get combined into an advised definition which avoids
3c442f8b 500;; unnecessary constructions of intermediate advised definitions. The more
ee7bf2ad
RM
501;; important advantage is that it allows the implementation of forward advice.
502;; Advice information for a certain function accumulates as the value of the
3c442f8b 503;; `advice-info' property of the function symbol. This accumulation is
ee7bf2ad 504;; completely independent of the fact that that function might not yet be
3c442f8b
SM
505;; defined. The macros `defun' and `defmacro' check whether the
506;; function/macro they defined had advice information
507;; associated with it. If so and forward advice is enabled, the original
aaf0c300 508;; definition will be saved, and then the advice will be activated.
ee7bf2ad
RM
509
510;; @@ Enabling/disabling pieces or sets of advice:
511;; ===============================================
512;; A major motivation for the development of this advice package was to bring
513;; a little bit more structure into the function overloading chaos in Emacs
3c442f8b 514;; Lisp. Many packages achieve some of their functionality by adding a little
ee7bf2ad 515;; bit (or a lot) to the standard functionality of some Emacs Lisp function.
3c442f8b
SM
516;; ange-ftp is a very popular package that used to achieve its magic by
517;; overloading most Emacs Lisp functions that deal with files. A popular
518;; function that's overloaded by many packages is `expand-file-name'.
519;; The situation that one function is multiply overloaded can arise easily.
ee7bf2ad
RM
520
521;; Once in a while it would be desirable to be able to disable some/all
522;; overloads of a particular package while keeping all the rest. Ideally -
523;; at least in my opinion - these overloads would all be done with advice,
524;; I know I am dreaming right now... In that ideal case the enable/disable
525;; mechanism of advice could be used to achieve just that.
526
3c442f8b 527;; Every piece of advice is associated with an enablement flag. When the
ee7bf2ad
RM
528;; advised definition of a particular function gets constructed (e.g., during
529;; activation) only the currently enabled pieces of advice will be considered.
530;; This mechanism allows one to have different "views" of an advised function
531;; dependent on what pieces of advice are currently enabled.
532
533;; Another motivation for this mechanism is that it allows one to define a
534;; piece of advice for some function yet keep it dormant until a certain
3c442f8b
SM
535;; condition is met. Until then activation of the function will not make use
536;; of that piece of advice. Once the condition is met the advice can be
ee7bf2ad 537;; enabled and a reactivation of the function will add its functionality as
3c442f8b 538;; part of the new advised definition. Hence, if somebody
ee7bf2ad
RM
539;; else advised these functions too and activates them the advices defined
540;; by advice will get used only if they are intended to be used.
541
542;; The main interface to this mechanism are the interactive functions
3c442f8b 543;; `ad-enable-advice' and `ad-disable-advice'. For example, the following
ee7bf2ad
RM
544;; would disable a particular advice of the function `foo':
545;;
546;; (ad-disable-advice 'foo 'before 'my-advice)
547;;
548;; This call by itself only changes the flag, to get the proper effect in
549;; the advised definition too one has to activate `foo' with
550;;
551;; (ad-activate 'foo)
552;;
3c442f8b
SM
553;; or interactively. To disable whole sets of advices one can use a regular
554;; expression mechanism. For example, let us assume that ange-ftp actually
ee7bf2ad
RM
555;; used advice to overload all its functions, and that it used the
556;; "ange-ftp-" prefix for all its advice names, then we could temporarily
557;; disable all its advices with
558;;
3c442f8b 559;; (ad-disable-regexp "\\`ange-ftp-")
ee7bf2ad
RM
560;;
561;; and the following call would put that actually into effect:
562;;
3c442f8b 563;; (ad-activate-regexp "\\`ange-ftp-")
ee7bf2ad 564;;
e9a452d9 565;; A safer way would have been to use
ee7bf2ad 566;;
3c442f8b 567;; (ad-update-regexp "\\`ange-ftp-")
ee7bf2ad
RM
568;;
569;; instead which would have only reactivated currently actively advised
3c442f8b 570;; functions, but not functions that were currently inactive. All these
ee7bf2ad
RM
571;; functions can also be called interactively.
572
573;; A certain piece of advice is considered a match if its name contains a
3c442f8b 574;; match for the regular expression. To enable ange-ftp again we would use
ee7bf2ad
RM
575;; `ad-enable-regexp' and then activate or update again.
576
fabaa9b5
RS
577;; @@ Forward advice, automatic advice activation:
578;; ===============================================
ee7bf2ad
RM
579;; Because most Emacs Lisp packages are loaded on demand via an autoload
580;; mechanism it is essential to be able to "forward advise" functions.
581;; Otherwise, proper advice definition and activation would make it necessary
582;; to preload every file that defines a certain function before it can be
583;; advised, which would partly defeat the purpose of the advice mechanism.
584
585;; In the following, "forward advice" always implies its automatic activation
586;; once a function gets defined, and not just the accumulation of advice
587;; information for a possibly undefined function.
588
589;; Advice implements forward advice mainly via the following: 1) Separation
590;; of advice definition and activation that makes it possible to accumulate
591;; advice information without having the original function already defined,
a731fc1b
SM
592;; 2) Use of the `defalias-fset-function' symbol property which lets
593;; us advise the function when it gets defined.
ee7bf2ad 594
fabaa9b5 595;; Automatic advice activation means, that whenever a function gets defined
a731fc1b 596;; with either `defun', `defmacro', `defalias' or by loading a byte-compiled
ee7bf2ad
RM
597;; file, and the function has some advice-info stored with it then that
598;; advice will get activated right away.
599
ee7bf2ad
RM
600;; @@ Caching of advised definitions:
601;; ==================================
602;; After an advised definition got constructed it gets cached as part of the
603;; advised function's advice-info so it can be reused, for example, after an
3c442f8b 604;; intermediate deactivation. Because the advice-info of a function might
ee7bf2ad
RM
605;; change between the time of caching and reuse a cached definition gets
606;; a cache-id associated with it so it can be verified whether the cached
607;; definition is still valid (the main application of this is preactivation
608;; - see below).
609
610;; When an advised function gets activated and a verifiable cached definition
611;; is available, then that definition will be used instead of creating a new
3c442f8b 612;; advised definition from scratch. If you want to make sure that a new
ee7bf2ad
RM
613;; definition gets constructed then you should use `ad-clear-cache' before you
614;; activate the advised function.
615
616;; @@ Preactivation:
617;; =================
3c442f8b 618;; Constructing an advised definition is moderately expensive. In a situation
ee7bf2ad
RM
619;; where one package defines a lot of advised functions it might be
620;; prohibitively expensive to do all the advised definition construction at
3c442f8b 621;; runtime. Preactivation is a mechanism that allows compile-time construction
ee7bf2ad 622;; of compiled advised definitions that can be activated cheaply during
3c442f8b
SM
623;; runtime. Preactivation uses the caching mechanism to do that. Here's how
624;; it works:
ee7bf2ad
RM
625
626;; When the byte-compiler compiles a `defadvice' that has the `preactivate'
627;; flag specified, it uses the current original definition of the advised
628;; function plus the advice specified in this `defadvice' (even if it is
629;; specified as disabled) and all other currently enabled pieces of advice to
630;; construct an advised definition and an identifying cache-id and makes them
631;; part of the `defadvice' expansion which will then be compiled by the
aaf0c300
SM
632;; byte-compiler.
633;; When the file with the compiled, preactivating `defadvice' gets loaded the
ee7bf2ad 634;; precompiled advised definition will be cached on the advised function's
3c442f8b 635;; advice-info. When it gets activated (can be immediately on execution of the
ee7bf2ad
RM
636;; `defadvice' or any time later) the cache-id gets checked against the
637;; current state of advice and if it is verified the precompiled definition
3c442f8b
SM
638;; will be used directly (the verification is pretty cheap). If it couldn't
639;; get verified a new advised definition for that function will be built from
640;; scratch, hence, the efficiency added by the preactivation mechanism does not
641;; at all impair the flexibility of the advice mechanism.
ee7bf2ad
RM
642
643;; MORAL: In order get all the efficiency out of preactivation the advice
644;; state of an advised function at the time the file with the
645;; preactivating `defadvice' gets byte-compiled should be exactly
646;; the same as it will be when the advice of that function gets
3c442f8b 647;; actually activated. If it is not there is a high chance that the
ee7bf2ad
RM
648;; cache-id will not match and hence a new advised definition will
649;; have to be constructed at runtime.
650
3c442f8b 651;; Preactivation and forward advice do not contradict each other. It is
ee7bf2ad 652;; perfectly ok to load a file with a preactivating `defadvice' before the
3c442f8b 653;; original definition of the advised function is available. The constructed
ee7bf2ad 654;; advised definition will be used once the original function gets defined and
3c442f8b 655;; its advice gets activated. The only constraint is that at the time the
ee7bf2ad
RM
656;; file with the preactivating `defadvice' got compiled the original function
657;; definition was available.
658
659;; TIPS: Here are some indications that a preactivation did not work the way
660;; you intended it to work:
661;; - Activation of the advised function takes longer than usual/expected
662;; - The byte-compiler gets loaded while an advised function gets
663;; activated
664;; - `byte-compile' is part of the `features' variable even though you
665;; did not use the byte-compiler
666;; Right now advice does not provide an elegant way to find out whether
3c442f8b 667;; and why a preactivation failed. What you can do is to trace the
ee7bf2ad
RM
668;; function `ad-cache-id-verification-code' (with the function
669;; `trace-function-background' defined in my trace.el package) before
3c442f8b 670;; any of your advised functions get activated. After they got
ee7bf2ad 671;; activated check whether all calls to `ad-cache-id-verification-code'
3c442f8b 672;; returned `verified' as a result. Other values indicate why the
ee7bf2ad
RM
673;; verification failed which should give you enough information to
674;; fix your preactivation/compile/load/activation sequence.
675
fce44373 676;; IMPORTANT: There is one case (that I am aware of) that can make
ee7bf2ad 677;; preactivation fail, i.e., a preconstructed advised definition that does
3c442f8b 678;; NOT match the current state of advice gets used nevertheless. That case
ee7bf2ad 679;; arises if one package defines a certain piece of advice which gets used
fce44373 680;; during preactivation, and another package incompatibly redefines that
ee7bf2ad
RM
681;; very advice (i.e., same function/class/name), and it is the second advice
682;; that is available when the preconstructed definition gets activated, and
fce44373
DL
683;; that was the only definition of that advice so far (`ad-add-advice'
684;; catches advice redefinitions and clears the cache in such a case).
ee7bf2ad
RM
685;; Catching that would make the cache verification too expensive.
686
687;; MORAL-II: Redefining somebody else's advice is BAAAAD (to speak with
688;; George Walker Bush), and why would you redefine your own advice anyway?
689;; Advice is a mechanism to facilitate function redefinition, not advice
3c442f8b
SM
690;; redefinition (wait until I write Meta-Advice :-). If you really have
691;; to undo somebody else's advice, try to write a "neutralizing" advice.
ee7bf2ad 692
3c442f8b
SM
693;; @@ Advising macros and other dangerous things:
694;; ==============================================
ee7bf2ad 695;; Look at the corresponding tutorial sections for more information on
3c442f8b
SM
696;; these topics. Here it suffices to point out that the special treatment
697;; of macros can lead to problems when they get advised. Macros can create
698;; problems because they get expanded at compile or load time, hence, they
699;; might not have all the necessary runtime support and such advice cannot be
700;; de/activated or changed as it is possible for functions.
701;; Special forms cannot be advised.
702;;
703;; MORAL: - Only advise macros when you are absolutely sure what you are doing.
ee7bf2ad
RM
704
705;; @@ Adding a piece of advice with `ad-add-advice':
706;; =================================================
707;; The non-interactive function `ad-add-advice' can be used to add a piece of
708;; advice to some function without using `defadvice'. This is useful if advice
709;; has to be added somewhere by a function (also look at `ad-make-advice').
710
711;; @@ Activation/deactivation advices, file load hooks:
712;; ====================================================
713;; There are two special classes of advice called `activation' and
3c442f8b 714;; `deactivation'. The body forms of these advices are not included into the
ee7bf2ad
RM
715;; advised definition of a function, rather they are assembled into a hook
716;; form which will be evaluated whenever the advice-info of the advised
3c442f8b 717;; function gets activated or deactivated. One application of this mechanism
aaf0c300 718;; is to define file load hooks for files that do not provide such hooks.
ee7bf2ad
RM
719;; For example, suppose you want to print a message whenever `file-x' gets
720;; loaded, and suppose the last function defined in `file-x' is
721;; `file-x-last-fn'. Then we can define the following advice:
722;;
723;; (defadvice file-x-last-fn (activation file-x-load-hook)
724;; "Executed whenever file-x is loaded"
725;; (if load-in-progress (message "Loaded file-x")))
726;;
727;; This will constitute a forward advice for function `file-x-last-fn' which
728;; will get activated when `file-x' is loaded (only if forward advice is
3c442f8b 729;; enabled of course). Because there are no "real" pieces of advice
ee7bf2ad
RM
730;; available for it, its definition will not be changed, but the activation
731;; advice will be run during its activation which is equivalent to having a
732;; file load hook for `file-x'.
733
734;; @@ Summary of main advice concepts:
735;; ===================================
736;; - Definition:
737;; A piece of advice gets defined with `defadvice' and added to the
738;; `advice-info' property of a function.
739;; - Enablement:
740;; Every piece of advice has an enablement flag associated with it. Only
741;; enabled advices are considered during construction of an advised
742;; definition.
743;; - Activation:
3c442f8b 744;; Redefine an advised function with its advised definition. Constructs
ee7bf2ad
RM
745;; an advised definition from scratch if no verifiable cached advised
746;; definition is available and caches it.
747;; - Deactivation:
748;; Back-define an advised function to its original definition.
749;; - Update:
fce44373 750;; Reactivate an advised function but only if its advice is currently
3c442f8b 751;; active. This can be used to bring all currently advised function up
ee7bf2ad 752;; to date with the current state of advice without also activating
e9a452d9 753;; currently inactive functions.
ee7bf2ad
RM
754;; - Caching:
755;; Is the saving of an advised definition and an identifying cache-id so
756;; it can be reused, for example, for activation after deactivation.
757;; - Preactivation:
758;; Is the construction of an advised definition according to the current
759;; state of advice during byte-compilation of a file with a preactivating
3c442f8b 760;; `defadvice'. That advised definition can then rather cheaply be used
ee7bf2ad
RM
761;; during activation without having to construct an advised definition
762;; from scratch at runtime.
763
764;; @@ Summary of interactive advice manipulation functions:
765;; ========================================================
766;; The following interactive functions can be used to manipulate the state
767;; of advised functions (all of them support completion on function names,
768;; advice classes and advice names):
769
770;; - ad-activate to activate the advice of a FUNCTION
771;; - ad-deactivate to deactivate the advice of a FUNCTION
772;; - ad-update to activate the advice of a FUNCTION unless it was not
e9a452d9 773;; yet activated or is currently inactive.
fce44373 774;; - ad-unadvise deactivates a FUNCTION and removes all of its advice
ee7bf2ad
RM
775;; information, hence, it cannot be activated again
776;; - ad-recover tries to redefine a FUNCTION to its original definition and
777;; discards all advice information (a low-level `ad-unadvise').
778;; Use only in emergencies.
779
780;; - ad-remove-advice removes a particular piece of advice of a FUNCTION.
781;; You still have to do call `ad-activate' or `ad-update' to
782;; activate the new state of advice.
783;; - ad-enable-advice enables a particular piece of advice of a FUNCTION.
784;; - ad-disable-advice disables a particular piece of advice of a FUNCTION.
785;; - ad-enable-regexp maps over all currently advised functions and enables
786;; every advice whose name contains a match for a regular
787;; expression.
788;; - ad-disable-regexp disables matching advices.
789
790;; - ad-activate-regexp activates all advised function with a matching advice
791;; - ad-deactivate-regexp deactivates all advised function with matching advice
792;; - ad-update-regexp updates all advised function with a matching advice
793;; - ad-activate-all activates all advised functions
794;; - ad-deactivate-all deactivates all advised functions
795;; - ad-update-all updates all advised functions
796;; - ad-unadvise-all unadvises all advised functions
797;; - ad-recover-all recovers all advised functions
798
799;; - ad-compile byte-compiles a function/macro if it is compilable.
800
801;; @@ Summary of forms with special meanings when used within an advice:
802;; =====================================================================
803;; ad-return-value name of the return value variable (get/settable)
ee7bf2ad
RM
804;; (ad-get-arg <pos>), (ad-get-args <pos>),
805;; (ad-set-arg <pos> <value>), (ad-set-args <pos> <value-list>)
806;; argument access text macros to get/set the values of
807;; actual arguments at a certain position
808;; ad-arg-bindings text macro that returns the actual names, values
809;; and types of the arguments as a list of bindings. The
810;; order of the bindings corresponds to the order of the
811;; arguments. The individual fields of every binding (name,
812;; value and type) can be accessed with the function
813;; `ad-arg-binding-field' (see example above).
814;; ad-do-it text macro that identifies the place where the original
815;; or wrapped definition should go in an around advice
816
817
818;; @ Foo games: An advice tutorial
819;; ===============================
3c442f8b 820;; The following tutorial was created in Emacs 18.59. Left-justified
ee7bf2ad 821;; s-expressions are input forms followed by one or more result forms.
ee7bf2ad
RM
822;;
823;; We start by defining an innocent looking function `foo' that simply
824;; adds 1 to its argument X:
8a946354 825;;
ee7bf2ad
RM
826;; (defun foo (x)
827;; "Add 1 to X."
828;; (1+ x))
829;; foo
830;;
831;; (foo 3)
832;; 4
833;;
834;; @@ Defining a simple piece of advice:
835;; =====================================
836;; Now let's define the first piece of advice for `foo'. To do that we
837;; use the macro `defadvice' which takes a function name, a list of advice
838;; specifiers and a list of body forms as arguments. The first element of
839;; the advice specifiers is the class of the advice, the second is its name,
840;; the third its position and the rest are some flags. The class of our
841;; first advice is `before', its name is `fg-add2', its position among the
842;; currently defined before advices (none so far) is `first', and the advice
843;; will be `activate'ed immediately. Advice names are global symbols, hence,
844;; the name space conventions used for function names should be applied. All
845;; advice names in this tutorial will be prefixed with `fg' for `Foo Games'
846;; (because everybody has the right to be inconsistent all the function names
847;; used in this tutorial do NOT follow this convention).
848;;
849;; In the body of an advice we can refer to the argument variables of the
850;; original function by name. Here we add 1 to X so the effect of calling
851;; `foo' will be to actually add 2. All of the advice definitions below only
852;; have one body form for simplicity, but there is no restriction to that
853;; extent. Every piece of advice can have a documentation string which will
854;; be combined with the documentation of the original function.
855;;
856;; (defadvice foo (before fg-add2 first activate)
857;; "Add 2 to X."
858;; (setq x (1+ x)))
859;; foo
860;;
861;; (foo 3)
862;; 5
863;;
864;; @@ Specifying the position of an advice:
865;; ========================================
866;; Now we define the second before advice which will cancel the effect of
867;; the previous advice. This time we specify the position as 0 which is
868;; equivalent to `first'. A number can be used to specify the zero-based
869;; position of an advice among the list of advices in the same class. This
870;; time we already have one before advice hence the position specification
871;; actually has an effect. So, after the following definition the position
872;; of the previous advice will be 1 even though we specified it with `first'
873;; above, the reason for this is that the position argument is relative to
874;; the currently defined pieces of advice which by now has changed.
875;;
876;; (defadvice foo (before fg-cancel-add2 0 activate)
877;; "Again only add 1 to X."
878;; (setq x (1- x)))
879;; foo
880;;
881;; (foo 3)
882;; 4
883;;
884;; @@ Redefining a piece of advice:
885;; ================================
886;; Now we define an advice with the same class and same name but with a
887;; different position. Defining an advice in a class in which an advice with
888;; that name already exists is interpreted as a redefinition of that
889;; particular advice, in which case the position argument will be ignored
890;; and the previous position of the redefined piece of advice is used.
891;; Advice flags can be specified with non-ambiguous initial substrings, hence,
892;; from now on we'll use `act' instead of the verbose `activate'.
893;;
894;; (defadvice foo (before fg-cancel-add2 last act)
895;; "Again only add 1 to X."
896;; (setq x (1- x)))
897;; foo
898;;
899;; @@ Assembly of advised documentation:
900;; =====================================
901;; The documentation strings of the various pieces of advice are assembled
902;; in order which shows that advice `fg-cancel-add2' is still the first
903;; `before' advice even though we specified position `last' above:
904;;
905;; (documentation 'foo)
906;; "Add 1 to X.
907;;
908;; This function is advised with the following advice(s):
909;;
910;; fg-cancel-add2 (before):
911;; Again only add 1 to X.
912;;
913;; fg-add2 (before):
914;; Add 2 to X."
915;;
916;; @@ Advising interactive behavior:
917;; =================================
918;; We can make a function interactive (or change its interactive behavior)
919;; by specifying an interactive form in one of the before or around
920;; advices (there could also be body forms in this advice). The particular
921;; definition always assigns 5 as an argument to X which gives us 6 as a
922;; result when we call foo interactively:
923;;
924;; (defadvice foo (before fg-inter last act)
925;; "Use 5 as argument when called interactively."
926;; (interactive (list 5)))
927;; foo
928;;
929;; (call-interactively 'foo)
930;; 6
931;;
932;; If more than one advice have an interactive declaration, then the one of
933;; the advice with the smallest position will be used (before advices go
934;; before around and after advices), hence, the declaration below does
935;; not have any effect:
936;;
937;; (defadvice foo (before fg-inter2 last act)
938;; (interactive (list 6)))
939;; foo
940;;
941;; (call-interactively 'foo)
942;; 6
943;;
ee7bf2ad
RM
944;; @@ Around advices:
945;; ==================
946;; Now we'll try some `around' advices. An around advice is a wrapper around
947;; the original definition. It can shadow or establish bindings for the
948;; original definition, and it can look at and manipulate the value returned
949;; by the original function. The position of the special keyword `ad-do-it'
950;; specifies where the code of the original function will be executed. The
951;; keyword can appear multiple times which will result in multiple calls of
952;; the original function in the resulting advised code. Note, that if we don't
fce44373 953;; specify a position argument (i.e., `first', `last' or a number), then
ee7bf2ad
RM
954;; `first' (or 0) is the default):
955;;
956;; (defadvice foo (around fg-times-2 act)
957;; "First double X."
958;; (let ((x (* x 2)))
959;; ad-do-it))
960;; foo
961;;
962;; (foo 3)
963;; 7
964;;
965;; Around advices are assembled like onion skins where the around advice
966;; with position 0 is the outermost skin and the advice at the last position
967;; is the innermost skin which is directly wrapped around the call of the
968;; original definition of the function. Hence, after the next `defadvice' we
969;; will first multiply X by 2 then add 1 and then call the original
970;; definition (i.e., add 1 again):
971;;
972;; (defadvice foo (around fg-add-1 last act)
973;; "Add 1 to X."
974;; (let ((x (1+ x)))
975;; ad-do-it))
976;; foo
977;;
978;; (foo 3)
979;; 8
980;;
ee7bf2ad
RM
981;; @@ Controlling advice activation:
982;; =================================
983;; In every `defadvice' so far we have used the flag `activate' to activate
984;; the advice immediately after its definition, and that's what we want in
985;; most cases. However, if we define multiple pieces of advice for a single
986;; function then activating every advice immediately is inefficient. A
987;; better way to do this is to only activate the last defined advice.
988;; For example:
989;;
990;; (defadvice foo (after fg-times-x)
991;; "Multiply the result with X."
992;; (setq ad-return-value (* ad-return-value x)))
993;; foo
994;;
995;; This still yields the same result as before:
996;; (foo 3)
997;; 8
998;;
999;; Now we define another advice and activate which will also activate the
3c442f8b 1000;; previous advice `fg-times-x'. Note the use of the special variable
ee7bf2ad 1001;; `ad-return-value' in the body of the advice which is set to the result of
3c442f8b 1002;; the original function. If we change its value then the value returned by
ee7bf2ad
RM
1003;; the advised function will be changed accordingly:
1004;;
1005;; (defadvice foo (after fg-times-x-again act)
1006;; "Again multiply the result with X."
1007;; (setq ad-return-value (* ad-return-value x)))
1008;; foo
1009;;
1010;; Now the advices have an effect:
1011;;
1012;; (foo 3)
1013;; 72
1014;;
1015;; @@ Protecting advice execution:
1016;; ===============================
fce44373 1017;; Once in a while we define an advice to perform some cleanup action,
ee7bf2ad
RM
1018;; for example:
1019;;
1020;; (defadvice foo (after fg-cleanup last act)
1021;; "Do some cleanup."
1022;; (print "Let's clean up now!"))
1023;; foo
1024;;
1025;; However, in case of an error the cleanup won't be performed:
1026;;
1027;; (condition-case error
1028;; (foo t)
1029;; (error 'error-in-foo))
1030;; error-in-foo
1031;;
1032;; To make sure a certain piece of advice gets executed even if some error or
1033;; non-local exit occurred in any preceding code, we can protect it by using
1034;; the `protect' keyword. (if any of the around advices is protected then the
1035;; whole around advice onion will be protected):
1036;;
1037;; (defadvice foo (after fg-cleanup prot act)
1038;; "Do some protected cleanup."
1039;; (print "Let's clean up now!"))
1040;; foo
1041;;
1042;; Now the cleanup form will be executed even in case of an error:
1043;;
1044;; (condition-case error
1045;; (foo t)
1046;; (error 'error-in-foo))
1047;; "Let's clean up now!"
1048;; error-in-foo
1049;;
ee7bf2ad
RM
1050;; @@ Compilation of advised definitions:
1051;; ======================================
1052;; Finally, we can specify the `compile' keyword in a `defadvice' to say
1053;; that we want the resulting advised function to be byte-compiled
1054;; (`compile' will be ignored unless we also specified `activate'):
1055;;
1056;; (defadvice foo (after fg-cleanup prot act comp)
1057;; "Do some protected cleanup."
1058;; (print "Let's clean up now!"))
1059;; foo
1060;;
3c442f8b 1061;; Now `foo's advice is byte-compiled:
ee7bf2ad 1062;;
3c442f8b
SM
1063;; (byte-code-function-p 'ad-Advice-foo)
1064;; t
ee7bf2ad
RM
1065;;
1066;; (foo 3)
1067;; "Let's clean up now!"
1068;; 72
1069;;
1070;; @@ Enabling and disabling pieces of advice:
1071;; ===========================================
1072;; Once in a while it is desirable to temporarily disable a piece of advice
1073;; so that it won't be considered during activation, for example, if two
1074;; different packages advise the same function and one wants to temporarily
1075;; neutralize the effect of the advice of one of the packages.
1076;;
1077;; The following disables the after advice `fg-times-x' in the function `foo'.
1078;; All that does is to change a flag for this particular advice. All the
1079;; other information defining it will be left unchanged (e.g., its relative
1080;; position in this advice class, etc.).
1081;;
1082;; (ad-disable-advice 'foo 'after 'fg-times-x)
1083;; nil
1084;;
1085;; For this to have an effect we have to activate `foo':
1086;;
1087;; (ad-activate 'foo)
1088;; foo
1089;;
1090;; (foo 3)
1091;; "Let's clean up now!"
1092;; 24
1093;;
1094;; If we want to disable all multiplication advices in `foo' we can use a
1095;; regular expression that matches the names of such advices. Actually, any
1096;; advice name that contains a match for the regular expression will be
1097;; called a match. A special advice class `any' can be used to consider
1098;; all advice classes:
1099;;
1100;; (ad-disable-advice 'foo 'any "^fg-.*times")
1101;; nil
1102;;
1103;; (ad-activate 'foo)
1104;; foo
1105;;
1106;; (foo 3)
1107;; "Let's clean up now!"
1108;; 5
1109;;
1110;; To enable the disabled advice we could use either `ad-enable-advice'
1111;; similar to `ad-disable-advice', or as an alternative `ad-enable-regexp'
1112;; which will enable matching advices in ALL currently advised functions.
1113;; Hence, this can be used to dis/enable advices made by a particular
1114;; package to a set of functions as long as that package obeys standard
1115;; advice name conventions. We prefixed all advice names with `fg-', hence
1116;; the following will do the trick (`ad-enable-regexp' returns the number
1117;; of matched advices):
1118;;
1119;; (ad-enable-regexp "^fg-")
1120;; 9
1121;;
1122;; The following will activate all currently active advised functions that
1123;; contain some advice matched by the regular expression. This is a save
1124;; way to update the activation of advised functions whose advice changed
1125;; in some way or other without accidentally also activating currently
e9a452d9 1126;; inactive functions:
ee7bf2ad
RM
1127;;
1128;; (ad-update-regexp "^fg-")
1129;; nil
1130;;
1131;; (foo 3)
1132;; "Let's clean up now!"
1133;; 72
1134;;
1135;; Another use for the dis/enablement mechanism is to define a piece of advice
1136;; and keep it "dormant" until a particular condition is satisfied, i.e., until
1137;; then the advice will not be used during activation. The `disable' flag lets
1138;; one do that with `defadvice':
1139;;
1140;; (defadvice foo (before fg-1-more dis)
1141;; "Add yet 1 more."
1142;; (setq x (1+ x)))
1143;; foo
1144;;
1145;; (ad-activate 'foo)
1146;; foo
1147;;
1148;; (foo 3)
1149;; "Let's clean up now!"
1150;; 72
1151;;
1152;; (ad-enable-advice 'foo 'before 'fg-1-more)
1153;; nil
1154;;
1155;; (ad-activate 'foo)
1156;; foo
1157;;
1158;; (foo 3)
1159;; "Let's clean up now!"
1160;; 160
1161;;
1162;; @@ Caching:
1163;; ===========
1164;; Advised definitions get cached to allow efficient activation/deactivation
1165;; without having to reconstruct them if nothing in the advice-info of a
1166;; function has changed. The following idiom can be used to temporarily
1167;; deactivate functions that have a piece of advice defined by a certain
1168;; package (we save the old definition to check out caching):
1169;;
3c442f8b 1170;; (setq old-definition (symbol-function 'ad-Advice-foo))
ee7bf2ad
RM
1171;; (lambda (x) ....)
1172;;
1173;; (ad-deactivate-regexp "^fg-")
1174;; nil
1175;;
1176;; (foo 3)
1177;; 4
1178;;
1179;; (ad-activate-regexp "^fg-")
1180;; nil
1181;;
3c442f8b 1182;; (eq old-definition (symbol-function 'ad-Advice-foo))
ee7bf2ad
RM
1183;; t
1184;;
1185;; (foo 3)
1186;; "Let's clean up now!"
1187;; 160
1188;;
1189;; @@ Forward advice:
1190;; ==================
ee7bf2ad
RM
1191;;
1192;; Let's define a piece of advice for an undefined function:
1193;;
1194;; (defadvice bar (before fg-sub-1-more act)
1195;; "Subtract one more from X."
1196;; (setq x (1- x)))
1197;; bar
1198;;
1199;; `bar' is not yet defined:
1200;; (fboundp 'bar)
1201;; nil
1202;;
3c442f8b 1203;; Now we define it and the forward advice will get activated:
ee7bf2ad
RM
1204;;
1205;; (defun bar (x)
1206;; "Subtract 1 from X."
1207;; (1- x))
1208;; bar
1209;;
1210;; (bar 4)
1211;; 2
1212;;
1213;; Redefinition will activate any available advice if the value of
1214;; `ad-redefinition-action' is either `warn', `accept' or `discard':
1215;;
1216;; (defun bar (x)
1217;; "Subtract 2 from X."
1218;; (- x 2))
1219;; bar
1220;;
1221;; (bar 4)
1222;; 1
1223;;
1224;; @@ Preactivation:
1225;; =================
1226;; Constructing advised definitions is moderately expensive, hence, it is
1227;; desirable to have a way to construct them at byte-compile time.
1228;; Preactivation is a mechanism that allows one to do that.
1229;;
1230;; (defun fie (x)
1231;; "Multiply X by 2."
1232;; (* x 2))
1233;; fie
1234;;
1235;; (defadvice fie (before fg-times-4 preact)
1236;; "Multiply X by 4."
1237;; (setq x (* x 2)))
1238;; fie
1239;;
1240;; This advice did not affect `fie'...
1241;;
1242;; (fie 2)
1243;; 4
1244;;
1245;; ...but it constructed a cached definition that will be used once `fie' gets
1246;; activated as long as its current advice state is the same as it was during
1247;; preactivation:
1248;;
1249;; (setq cached-definition (ad-get-cache-definition 'fie))
1250;; (lambda (x) ....)
1251;;
1252;; (ad-activate 'fie)
1253;; fie
1254;;
3c442f8b 1255;; (eq cached-definition (symbol-function 'ad-Advice-fie))
ee7bf2ad
RM
1256;; t
1257;;
1258;; (fie 2)
1259;; 8
1260;;
c0d79871 1261;; If you put a preactivating `defadvice' into a Lisp file that gets byte-
ee7bf2ad 1262;; compiled then the constructed advised definition will get compiled by
3c442f8b 1263;; the byte-compiler. For that to occur in a v18 Emacs you had to put the
aaf0c300 1264;; `defadvice' inside a `defun' because the v18 compiler did not compile
ee7bf2ad
RM
1265;; top-level forms other than `defun' or `defmacro', for example,
1266;;
1267;; (defun fg-defadvice-fum ()
1268;; (defadvice fum (before fg-times-4 preact act)
1269;; "Multiply X by 4."
1270;; (setq x (* x 2))))
1271;; fg-defadvice-fum
1272;;
1273;; So far, no `defadvice' for `fum' got executed, but when we compile
1274;; `fg-defadvice-fum' the `defadvice' will be expanded by the byte compiler.
1275;; In order for preactivation to be effective we have to have a proper
1276;; definition of `fum' around at preactivation time, hence, we define it now:
1277;;
1278;; (defun fum (x)
1279;; "Multiply X by 2."
1280;; (* x 2))
1281;; fum
1282;;
1283;; Now we compile the defining function which will construct an advised
1284;; definition during expansion of the `defadvice', compile it and store it
1285;; as part of the compiled `fg-defadvice-fum':
1286;;
1287;; (ad-compile-function 'fg-defadvice-fum)
1288;; (lambda nil (byte-code ...))
1289;;
1290;; `fum' is still completely unaffected:
1291;;
1292;; (fum 2)
1293;; 4
1294;;
1295;; (ad-get-advice-info 'fum)
1296;; nil
1297;;
1298;; (fg-defadvice-fum)
1299;; fum
1300;;
1301;; Now the advised version of `fum' is compiled because the compiled definition
1302;; constructed during preactivation was used, even though we did not specify
1303;; the `compile' flag:
1304;;
3c442f8b
SM
1305;; (byte-code-function-p 'ad-Advice-fum)
1306;; t
ee7bf2ad
RM
1307;;
1308;; (fum 2)
1309;; 8
1310;;
1311;; A preactivated definition will only be used if it matches the current
3c442f8b 1312;; function definition and advice information. If it does not match it
ee7bf2ad 1313;; will simply be discarded and a new advised definition will be constructed
3c442f8b 1314;; from scratch. For example, let's first remove all advice-info for `fum':
ee7bf2ad
RM
1315;;
1316;; (ad-unadvise 'fum)
1317;; (("fie") ("bar") ("foo") ...)
1318;;
1319;; And now define a new piece of advice:
1320;;
1321;; (defadvice fum (before fg-interactive act)
1322;; "Make fum interactive."
1323;; (interactive "nEnter x: "))
1324;; fum
1325;;
1326;; When we now try to use a preactivation it will not be used because the
3c442f8b 1327;; current advice state is different from the one at preactivation time. This
ee7bf2ad
RM
1328;; is no tragedy, everything will work as expected just not as efficient,
1329;; because a new advised definition has to be constructed from scratch:
1330;;
1331;; (fg-defadvice-fum)
1332;; fum
1333;;
1334;; A new uncompiled advised definition got constructed:
1335;;
3c442f8b 1336;; (byte-code-function-p 'ad-Advice-fum)
ee7bf2ad
RM
1337;; nil
1338;;
1339;; (fum 2)
1340;; 8
1341;;
1342;; MORAL: To get all the efficiency out of preactivation the function
1343;; definition and advice state at preactivation time must be the same as the
3c442f8b 1344;; state at activation time. Preactivation does work with forward advice, all
ee7bf2ad
RM
1345;; that's necessary is that the definition of the forward advised function is
1346;; available when the `defadvice' with the preactivation gets compiled.
1347;;
1348;; @@ Portable argument access:
1349;; ============================
1350;; So far, we always used the actual argument variable names to access an
1351;; argument in a piece of advice. For many advice applications this is
1352;; perfectly ok and keeps advices simple. However, it decreases portability
1353;; of advices because it assumes specific argument variable names. For example,
1354;; if one advises a subr such as `eval-region' which then gets redefined by
1355;; some package (e.g., edebug) into a function with different argument names,
1356;; then a piece of advice written for `eval-region' that was written with
aaf0c300 1357;; the subr arguments in mind will break.
ee7bf2ad
RM
1358;;
1359;; Argument access text macros allow one to access arguments of an advised
1360;; function in a portable way without having to worry about all these
1361;; possibilities. These macros will be translated into the proper access forms
1362;; at activation time, hence, argument access will be as efficient as if
1363;; the arguments had been used directly in the definition of the advice.
1364;;
1365;; (defun fuu (x y z)
1366;; "Add 3 numbers."
1367;; (+ x y z))
1368;; fuu
1369;;
1370;; (fuu 1 1 1)
1371;; 3
1372;;
1373;; Argument access macros specify actual arguments at a certain position.
1374;; Position 0 access the first actual argument, position 1 the second etc.
1375;; For example, the following advice adds 1 to each of the 3 arguments:
1376;;
1377;; (defadvice fuu (before fg-add-1-to-all act)
1378;; "Adds 1 to all arguments."
1379;; (ad-set-arg 0 (1+ (ad-get-arg 0)))
1380;; (ad-set-arg 1 (1+ (ad-get-arg 1)))
1381;; (ad-set-arg 2 (1+ (ad-get-arg 2))))
1382;; fuu
1383;;
1384;; (fuu 1 1 1)
1385;; 6
1386;;
1387;; Now suppose somebody redefines `fuu' with a rest argument. Our advice
1388;; will still work because we used access macros (note, that automatic
1389;; advice activation is still in effect, hence, the redefinition of `fuu'
1390;; will automatically activate all its advice):
1391;;
1392;; (defun fuu (&rest numbers)
1393;; "Add NUMBERS."
1394;; (apply '+ numbers))
1395;; fuu
1396;;
1397;; (fuu 1 1 1)
1398;; 6
1399;;
1400;; (fuu 1 1 1 1 1 1)
1401;; 9
1402;;
1403;; What's important to notice is that argument access macros access actual
1404;; arguments regardless of how they got distributed onto argument variables.
1405;; In Emacs Lisp the semantics of an actual argument is determined purely
1406;; by position, hence, as long as nobody changes the semantics of what a
1407;; certain actual argument at a certain position means the access macros
1408;; will do the right thing.
1409;;
1410;; Because of &rest arguments we need a second kind of access macro that
1411;; can access all actual arguments starting from a certain position:
1412;;
1413;; (defadvice fuu (before fg-print-args act)
1414;; "Print all arguments."
1415;; (print (ad-get-args 0)))
1416;; fuu
1417;;
1418;; (fuu 1 2 3 4 5)
1419;; (1 2 3 4 5)
1420;; 18
1421;;
1422;; (defadvice fuu (before fg-set-args act)
1423;; "Swaps 2nd and 3rd arg and discards all the rest."
1424;; (ad-set-args 1 (list (ad-get-arg 2) (ad-get-arg 1))))
1425;; fuu
1426;;
1427;; (fuu 1 2 3 4 4 4 4 4 4)
1428;; (1 3 2)
1429;; 9
1430;;
1431;; (defun fuu (x y z)
1432;; "Add 3 numbers."
1433;; (+ x y z))
1434;;
1435;; (fuu 1 2 3)
1436;; (1 3 2)
1437;; 9
1438;;
1439;; @@ Defining the argument list of an advised function:
1440;; =====================================================
1441;; Once in a while it might be desirable to advise a function and additionally
1442;; give it an extra argument that controls the advised code, for example, one
1443;; might want to make an interactive function sensitive to a prefix argument.
1444;; For such cases `defadvice' allows the specification of an argument list
fce44373 1445;; for the advised function. Similar to the redefinition of interactive
ee7bf2ad
RM
1446;; behavior, the first argument list specification found in the list of before/
1447;; around/after advices will be used. Of course, the specified argument list
1448;; should be downward compatible with the original argument list, otherwise
1449;; functions that call the advised function with the original argument list
1450;; in mind will break.
1451;;
1452;; (defun fii (x)
1453;; "Add 1 to X."
1454;; (1+ x))
1455;; fii
1456;;
1457;; Now we advise `fii' to use an optional second argument that controls the
53964682 1458;; amount of incrementing. A list following the (optional) position
ee7bf2ad
RM
1459;; argument of the advice will be interpreted as an argument list
1460;; specification. This means you cannot specify an empty argument list, and
1461;; why would you want to anyway?
1462;;
1463;; (defadvice fii (before fg-inc-x (x &optional incr) act)
1464;; "Increment X by INCR (default is 1)."
1465;; (setq x (+ x (1- (or incr 1)))))
1466;; fii
1467;;
1468;; (fii 3)
1469;; 4
1470;;
1471;; (fii 3 2)
1472;; 5
1473;;
ee7bf2ad
RM
1474;; @@ Advising interactive subrs:
1475;; ==============================
1476;; For the most part there is no difference between advising functions and
1477;; advising subrs. There is one situation though where one might have to write
1478;; slightly different advice code for subrs than for functions. This case
1479;; arises when one wants to access subr arguments in a before/around advice
1480;; when the arguments were determined by an interactive call to the subr.
1481;; Advice cannot determine what `interactive' form determines the interactive
1482;; behavior of the subr, hence, when it calls the original definition in an
1483;; interactive subr invocation it has to use `call-interactively' to generate
1484;; the proper interactive behavior. Thus up to that call the arguments of the
1485;; interactive subr will be nil. For example, the following advice for
1486;; `kill-buffer' will not work in an interactive invocation...
1487;;
1488;; (defadvice kill-buffer (before fg-kill-buffer-hook first act preact comp)
1489;; (my-before-kill-buffer-hook (ad-get-arg 0)))
1490;; kill-buffer
1491;;
1492;; ...because the buffer argument will be nil in that case. The way out of
1493;; this dilemma is to provide an `interactive' specification that mirrors
1494;; the interactive behavior of the unadvised subr, for example, the following
1495;; will do the right thing even when `kill-buffer' is called interactively:
1496;;
1497;; (defadvice kill-buffer (before fg-kill-buffer-hook first act preact comp)
1498;; (interactive "bKill buffer: ")
1499;; (my-before-kill-buffer-hook (ad-get-arg 0)))
1500;; kill-buffer
1501;;
1502;; @@ Advising macros:
1503;; ===================
1504;; Advising macros is slightly different because there are two significant
1505;; time points in the invocation of a macro: Expansion and evaluation time.
1506;; For an advised macro instead of evaluating the original definition we
1507;; use `macroexpand', that is, changing argument values and binding
1508;; environments by pieces of advice has an affect during macro expansion
1509;; but not necessarily during evaluation. In particular, any side effects
1510;; of pieces of advice will occur during macro expansion. To also affect
1511;; the behavior during evaluation time one has to change the value of
1512;; `ad-return-value' in a piece of after advice. For example:
1513;;
1514;; (defmacro foom (x)
1515;; (` (list (, x))))
1516;; foom
1517;;
1518;; (foom '(a))
1519;; ((a))
1520;;
1521;; (defadvice foom (before fg-print-x act)
1522;; "Print the value of X."
1523;; (print x))
1524;; foom
1525;;
1526;; The following works as expected because evaluation immediately follows
1527;; macro expansion:
1528;;
1529;; (foom '(a))
1530;; (quote (a))
1531;; ((a))
1532;;
1533;; However, the printing happens during expansion (or byte-compile) time:
1534;;
1535;; (macroexpand '(foom '(a)))
1536;; (quote (a))
1537;; (list (quote (a)))
1538;;
fce44373 1539;; If we want it to happen during evaluation time we have to do the
ee7bf2ad
RM
1540;; following (first remove the old advice):
1541;;
1542;; (ad-remove-advice 'foom 'before 'fg-print-x)
1543;; nil
1544;;
1545;; (defadvice foom (after fg-print-x act)
1546;; "Print the value of X."
1547;; (setq ad-return-value
1548;; (` (progn (print (, x))
1549;; (, ad-return-value)))))
1550;; foom
1551;;
1552;; (macroexpand '(foom '(a)))
1553;; (progn (print (quote (a))) (list (quote (a))))
1554;;
1555;; (foom '(a))
1556;; (a)
1557;; ((a))
1558;;
1559;; While this method might seem somewhat cumbersome, it is very general
1560;; because it allows one to influence macro expansion as well as evaluation.
1561;; In general, advising macros should be a rather rare activity anyway, in
1562;; particular, because compile-time macro expansion takes away a lot of the
1563;; flexibility and effectiveness of the advice mechanism. Macros that were
1564;; compile-time expanded before the advice was activated will of course never
1565;; exhibit the advised behavior.
1566;;
1567;; @@ Advising special forms:
1568;; ==========================
1569;; Now for something that should be even more rare than advising macros:
1570;; Advising special forms. Because special forms are irregular in their
1571;; argument evaluation behavior (e.g., `setq' evaluates the second but not
1572;; the first argument) they have to be advised into macros. A dangerous
1573;; consequence of this is that the byte-compiler will not recognize them
1574;; as special forms anymore (well, in most cases) and use their expansion
1575;; rather than the proper byte-code. Also, because the original definition
1576;; of a special form cannot be `funcall'ed, `eval' has to be used instead
1577;; which is less efficient.
1578;;
1579;; MORAL: Do not advise special forms unless you are completely sure about
1580;; what you are doing (some of the forward advice behavior is
1581;; implemented via advice of the special forms `defun' and `defmacro').
1582;; As a safety measure one should always do `ad-deactivate-all' before
1583;; one byte-compiles a file to avoid any interference of advised
1584;; special forms.
1585;;
1586;; Apart from the safety concerns advising special forms is not any different
1587;; from advising plain functions or subrs.
1588
1589
ee7bf2ad
RM
1590;;; Code:
1591
1592;; @ Advice implementation:
1593;; ========================
1594
1595;; @@ Compilation idiosyncrasies:
1596;; ==============================
1597
0fb3cb7c 1598(require 'macroexp)
32170f7f 1599;; At run-time also, since ad-do-advised-functions returns code that uses it.
3c442f8b 1600(eval-when-compile (require 'cl-lib))
ee7bf2ad 1601
fabaa9b5
RS
1602;; @@ Variable definitions:
1603;; ========================
1604
666b9413
SE
1605(defgroup advice nil
1606 "An overloading mechanism for Emacs Lisp functions."
1607 :prefix "ad-"
fce44373 1608 :link '(custom-manual "(elisp)Advising Functions")
666b9413
SE
1609 :group 'lisp)
1610
81eee8ab 1611(defconst ad-version "2.14")
ee7bf2ad
RM
1612
1613;;;###autoload
666b9413 1614(defcustom ad-redefinition-action 'warn
cb711556 1615 "Defines what to do with redefinitions during Advice de/activation.
ee7bf2ad
RM
1616Redefinition occurs if a previously activated function that already has an
1617original definition associated with it gets redefined and then de/activated.
1618In such a case we can either accept the current definition as the new
1619original definition, discard the current definition and replace it with the
6e2f6f45
RS
1620old original, or keep it and raise an error. The values `accept', `discard',
1621`error' or `warn' govern what will be done. `warn' is just like `accept' but
1622it additionally prints a warning message. All other values will be
666b9413 1623interpreted as `error'."
db352ce6
AS
1624 :type '(choice (const accept) (const discard) (const warn)
1625 (other :tag "error" error))
666b9413 1626 :group 'advice)
ee7bf2ad
RM
1627
1628;;;###autoload
666b9413 1629(defcustom ad-default-compilation-action 'maybe
cb711556 1630 "Defines whether to compile advised definitions during activation.
fabaa9b5
RS
1631A value of `always' will result in unconditional compilation, `never' will
1632always avoid compilation, `maybe' will compile if the byte-compiler is already
1633loaded, and `like-original' will compile if the original definition of the
fce44373
DL
1634advised function is compiled or a built-in function. Every other value will
1635be interpreted as `maybe'. This variable will only be considered if the
666b9413 1636COMPILE argument of `ad-activate' was supplied as nil."
db352ce6
AS
1637 :type '(choice (const always) (const never) (const like-original)
1638 (other :tag "maybe" maybe))
666b9413
SE
1639 :group 'advice)
1640
ee7bf2ad
RM
1641
1642
1643;; @@ Some utilities:
1644;; ==================
1645
1646;; We don't want the local arguments to interfere with anything
1647;; referenced in the supplied functions => the cryptic casing:
1648(defun ad-substitute-tree (sUbTrEe-TeSt fUnCtIoN tReE)
fce44373
DL
1649 "Substitute qualifying subTREEs with result of FUNCTION(subTREE).
1650Only proper subtrees are considered, for example, if TREE is (1 (2 (3)) 4)
1651then the subtrees will be 1 (2 (3)) 2 (3) 3 4, dotted structures are
1652allowed too. Once a qualifying subtree has been found its subtrees will
1653not be considered anymore. (ad-substitute-tree 'atom 'identity tree)
1654generates a copy of TREE."
ee7bf2ad
RM
1655 (cond ((consp tReE)
1656 (cons (if (funcall sUbTrEe-TeSt (car tReE))
1657 (funcall fUnCtIoN (car tReE))
1658 (if (consp (car tReE))
1659 (ad-substitute-tree sUbTrEe-TeSt fUnCtIoN (car tReE))
1660 (car tReE)))
1661 (ad-substitute-tree sUbTrEe-TeSt fUnCtIoN (cdr tReE))))
1662 ((funcall sUbTrEe-TeSt tReE)
1663 (funcall fUnCtIoN tReE))
1664 (t tReE)))
1665
ee7bf2ad
RM
1666;; @@ Advice info access fns:
1667;; ==========================
1668
1669;; Advice information for a particular function is stored on the
6e2f6f45 1670;; advice-info property of the function symbol. It is stored as an
ee7bf2ad
RM
1671;; alist of the following format:
1672;;
1673;; ((active . t/nil)
1674;; (before adv1 adv2 ...)
1675;; (around adv1 adv2 ...)
1676;; (after adv1 adv2 ...)
1677;; (activation adv1 adv2 ...)
1678;; (deactivation adv1 adv2 ...)
3c442f8b 1679;; (advicefunname . <symbol fbound to assembled advice function>)
ee7bf2ad
RM
1680;; (cache . (<advised-definition> . <id>)))
1681
1682;; List of currently advised though not necessarily activated functions
1683;; (this list is maintained as a completion table):
1684(defvar ad-advised-functions nil)
1685
1686(defmacro ad-pushnew-advised-function (function)
fce44373 1687 "Add FUNCTION to `ad-advised-functions' unless its already there."
8a946354
SS
1688 `(if (not (assoc (symbol-name ,function) ad-advised-functions))
1689 (setq ad-advised-functions
1690 (cons (list (symbol-name ,function))
1691 ad-advised-functions))))
ee7bf2ad
RM
1692
1693(defmacro ad-pop-advised-function (function)
fce44373 1694 "Remove FUNCTION from `ad-advised-functions'."
8a946354
SS
1695 `(setq ad-advised-functions
1696 (delq (assoc (symbol-name ,function) ad-advised-functions)
1697 ad-advised-functions)))
ee7bf2ad
RM
1698
1699(defmacro ad-do-advised-functions (varform &rest body)
6858633a
SM
1700 "`dolist'-style iterator that maps over advised functions.
1701\(ad-do-advised-functions (VAR)
fce44373
DL
1702 BODY-FORM...)
1703On each iteration VAR will be bound to the name of an advised function
1704\(a symbol)."
aaf0c300 1705 (declare (indent 1))
3c442f8b 1706 `(dolist (,(car varform) ad-advised-functions)
2de39f08
SM
1707 (setq ,(car varform) (intern (car ,(car varform))))
1708 ,@body))
ee7bf2ad 1709
745dc723
RS
1710(defun ad-get-advice-info (function)
1711 (get function 'ad-advice-info))
1712
1713(defmacro ad-get-advice-info-macro (function)
8a946354 1714 `(get ,function 'ad-advice-info))
ee7bf2ad 1715
32e5c58c
SM
1716(defsubst ad-set-advice-info (function advice-info)
1717 (cond
231d8498
SM
1718 (advice-info
1719 (add-function :around (get function 'defalias-fset-function)
1720 #'ad--defalias-fset))
32e5c58c 1721 ((get function 'defalias-fset-function)
231d8498
SM
1722 (remove-function (get function 'defalias-fset-function)
1723 #'ad--defalias-fset)))
32e5c58c 1724 (put function 'ad-advice-info advice-info))
ee7bf2ad
RM
1725
1726(defmacro ad-copy-advice-info (function)
2de39f08 1727 `(copy-tree (get ,function 'ad-advice-info)))
ee7bf2ad
RM
1728
1729(defmacro ad-is-advised (function)
fce44373
DL
1730 "Return non-nil if FUNCTION has any advice info associated with it.
1731This does not mean that the advice is also active."
6858633a 1732 `(ad-get-advice-info-macro ,function))
ee7bf2ad
RM
1733
1734(defun ad-initialize-advice-info (function)
fce44373
DL
1735 "Initialize the advice info for FUNCTION.
1736Assumes that FUNCTION has not yet been advised."
ee7bf2ad
RM
1737 (ad-pushnew-advised-function function)
1738 (ad-set-advice-info function (list (cons 'active nil))))
1739
1740(defmacro ad-get-advice-info-field (function field)
fce44373 1741 "Retrieve the value of the advice info FIELD of FUNCTION."
745dc723 1742 `(cdr (assq ,field (ad-get-advice-info-macro ,function))))
ee7bf2ad
RM
1743
1744(defun ad-set-advice-info-field (function field value)
fce44373 1745 "Destructively modify VALUE of the advice info FIELD of FUNCTION."
ee7bf2ad 1746 (and (ad-is-advised function)
745dc723 1747 (cond ((assq field (ad-get-advice-info-macro function))
ee7bf2ad 1748 ;; A field with that name is already present:
745dc723 1749 (rplacd (assq field (ad-get-advice-info-macro function)) value))
ee7bf2ad 1750 (t;; otherwise, create a new field with that name:
745dc723 1751 (nconc (ad-get-advice-info-macro function)
ee7bf2ad
RM
1752 (list (cons field value)))))))
1753
1754;; Don't make this a macro so we can use it as a predicate:
1755(defun ad-is-active (function)
fce44373 1756 "Return non-nil if FUNCTION is advised and activated."
ee7bf2ad
RM
1757 (ad-get-advice-info-field function 'active))
1758
1759
1760;; @@ Access fns for single pieces of advice and related predicates:
1761;; =================================================================
1762
1763(defun ad-make-advice (name protect enable definition)
1764 "Constructs single piece of advice to be stored in some advice-info.
6e2f6f45 1765NAME should be a non-nil symbol, PROTECT and ENABLE should each be
ee7bf2ad 1766either t or nil, and DEFINITION should be a list of the form
6e2f6f45 1767`(advice lambda ARGLIST [DOCSTRING] [INTERACTIVE-FORM] BODY...)'."
ee7bf2ad
RM
1768 (list name protect enable definition))
1769
1770;; ad-find-advice uses the alist structure directly ->
1771;; change if this data structure changes!!
3c442f8b
SM
1772(defsubst ad-advice-name (advice) (car advice))
1773(defsubst ad-advice-protected (advice) (nth 1 advice))
1774(defsubst ad-advice-enabled (advice) (nth 2 advice))
1775(defsubst ad-advice-definition (advice) (nth 3 advice))
ee7bf2ad
RM
1776
1777(defun ad-advice-set-enabled (advice flag)
1778 (rplaca (cdr (cdr advice)) flag))
1779
3c442f8b
SM
1780(defvar ad-advice-classes '(before around after activation deactivation)
1781 "List of defined advice classes.")
1782
ee7bf2ad
RM
1783(defun ad-class-p (thing)
1784 (memq thing ad-advice-classes))
1785(defun ad-name-p (thing)
1786 (and thing (symbolp thing)))
1787(defun ad-position-p (thing)
1788 (or (natnump thing)
1789 (memq thing '(first last))))
1790
1791
1792;; @@ Advice access functions:
1793;; ===========================
1794
ee7bf2ad 1795(defun ad-has-enabled-advice (function class)
fce44373 1796 "True if at least one of FUNCTION's advices in CLASS is enabled."
2de39f08
SM
1797 (cl-dolist (advice (ad-get-advice-info-field function class))
1798 (if (ad-advice-enabled advice) (cl-return t))))
ee7bf2ad
RM
1799
1800(defun ad-has-redefining-advice (function)
fce44373
DL
1801 "True if FUNCTION's advice info defines at least 1 redefining advice.
1802Redefining advices affect the construction of an advised definition."
ee7bf2ad
RM
1803 (and (ad-is-advised function)
1804 (or (ad-has-enabled-advice function 'before)
1805 (ad-has-enabled-advice function 'around)
1806 (ad-has-enabled-advice function 'after))))
1807
1808(defun ad-has-any-advice (function)
fce44373 1809 "True if the advice info of FUNCTION defines at least one advice."
ee7bf2ad 1810 (and (ad-is-advised function)
6858633a 1811 (cl-dolist (class ad-advice-classes)
ee7bf2ad 1812 (if (ad-get-advice-info-field function class)
2de39f08 1813 (cl-return t)))))
ee7bf2ad
RM
1814
1815(defun ad-get-enabled-advices (function class)
fce44373 1816 "Return the list of enabled advices of FUNCTION in CLASS."
ee7bf2ad 1817 (let (enabled-advices)
2de39f08 1818 (dolist (advice (ad-get-advice-info-field function class))
ee7bf2ad 1819 (if (ad-advice-enabled advice)
24c22ecf 1820 (push advice enabled-advices)))
ee7bf2ad
RM
1821 (reverse enabled-advices)))
1822
1823
fabaa9b5
RS
1824;; @@ Dealing with automatic advice activation via `fset/defalias':
1825;; ================================================================
1826
32e5c58c
SM
1827;; Automatic activation happens when a function gets defined via `defalias',
1828;; which calls the `defalias-fset-function' (which we set to
1829;; `ad--defalias-fset') instead of `fset', if non-nil.
fabaa9b5 1830
fabaa9b5
RS
1831;; Whether advised definitions created by automatic activations will be
1832;; compiled depends on the value of `ad-default-compilation-action'.
1833
3c442f8b 1834(defalias 'ad-activate-internal 'ad-activate)
ee7bf2ad 1835
3c442f8b
SM
1836(defun ad-make-advicefunname (function)
1837 "Make name to be used to call the assembled advice function."
1838 (intern (format "ad-Advice-%s" function)))
ee7bf2ad 1839
3c442f8b
SM
1840(defun ad-get-orig-definition (function) ;FIXME: Rename to "-unadvised-".
1841 (if (symbolp function)
1842 (setq function (if (fboundp function)
1843 (advice--strip-macro (symbol-function function)))))
1844 (while (advice--p function) (setq function (advice--cdr function)))
1845 function)
ee7bf2ad 1846
3c442f8b
SM
1847(defun ad-clear-advicefunname-definition (function)
1848 (let ((advicefunname (ad-get-advice-info-field function 'advicefunname)))
1849 (advice-remove function advicefunname)
1850 (fmakunbound advicefunname)))
ee7bf2ad
RM
1851
1852
1853;; @@ Interactive input functions:
1854;; ===============================
1855
7de88b6e
KR
1856(declare-function 'function-called-at-point "help")
1857
ee7bf2ad 1858(defun ad-read-advised-function (&optional prompt predicate default)
fce44373
DL
1859 "Read name of advised function with completion from the minibuffer.
1860An optional PROMPT will be used to prompt for the function. PREDICATE
1861plays the same role as for `try-completion' (which see). DEFAULT will
7de88b6e
KR
1862be returned on empty input (defaults to the first advised function or
1863function at point for which PREDICATE returns non-nil)."
ee7bf2ad
RM
1864 (if (null ad-advised-functions)
1865 (error "ad-read-advised-function: There are no advised functions"))
1866 (setq default
1867 (or default
6858633a 1868 ;; Prefer func name at point, if it's an advised function etc.
7de88b6e
KR
1869 (let ((function (progn
1870 (require 'help)
1871 (function-called-at-point))))
1872 (and function
1873 (assoc (symbol-name function) ad-advised-functions)
1874 (or (null predicate)
1875 (funcall predicate function))
1876 function))
6858633a
SM
1877 (cl-block nil
1878 (ad-do-advised-functions (function)
1879 (if (or (null predicate)
1880 (funcall predicate function))
1881 (cl-return function))))
ee7bf2ad
RM
1882 (error "ad-read-advised-function: %s"
1883 "There are no qualifying advised functions")))
6858633a 1884 (let* ((function
ee7bf2ad 1885 (completing-read
5b76833f 1886 (format "%s (default %s): " (or prompt "Function") default)
ee7bf2ad
RM
1887 ad-advised-functions
1888 (if predicate
6858633a
SM
1889 (lambda (function)
1890 (funcall predicate (intern (car function)))))
ee7bf2ad
RM
1891 t)))
1892 (if (equal function "")
1893 (if (ad-is-advised default)
1894 default
1895 (error "ad-read-advised-function: `%s' is not advised" default))
1896 (intern function))))
1897
1898(defvar ad-advice-class-completion-table
571b4b93 1899 (mapcar (lambda (class) (list (symbol-name class)))
ee7bf2ad
RM
1900 ad-advice-classes))
1901
1902(defun ad-read-advice-class (function &optional prompt default)
bece3937 1903 "Read a valid advice class with completion from the minibuffer.
fce44373
DL
1904An optional PROMPT will be used to prompt for the class. DEFAULT will
1905be returned on empty input (defaults to the first non-empty advice
1906class of FUNCTION)."
ee7bf2ad
RM
1907 (setq default
1908 (or default
2de39f08 1909 (cl-dolist (class ad-advice-classes)
ee7bf2ad 1910 (if (ad-get-advice-info-field function class)
2de39f08 1911 (cl-return class)))
ee7bf2ad
RM
1912 (error "ad-read-advice-class: `%s' has no advices" function)))
1913 (let ((class (completing-read
5b76833f 1914 (format "%s (default %s): " (or prompt "Class") default)
ee7bf2ad
RM
1915 ad-advice-class-completion-table nil t)))
1916 (if (equal class "")
1917 default
1918 (intern class))))
1919
1920(defun ad-read-advice-name (function class &optional prompt)
fce44373
DL
1921 "Read name of existing advice of CLASS for FUNCTION with completion.
1922An optional PROMPT is used to prompt for the name."
ee7bf2ad
RM
1923 (let* ((name-completion-table
1924 (mapcar (function (lambda (advice)
1925 (list (symbol-name (ad-advice-name advice)))))
1926 (ad-get-advice-info-field function class)))
1927 (default
1928 (if (null name-completion-table)
1929 (error "ad-read-advice-name: `%s' has no %s advice"
1930 function class)
1931 (car (car name-completion-table))))
5b76833f 1932 (prompt (format "%s (default %s): " (or prompt "Name") default))
ee7bf2ad
RM
1933 (name (completing-read prompt name-completion-table nil t)))
1934 (if (equal name "")
1935 (intern default)
1936 (intern name))))
1937
1938(defun ad-read-advice-specification (&optional prompt)
fce44373
DL
1939 "Read a complete function/class/name specification from minibuffer.
1940The list of read symbols will be returned. The optional PROMPT will
1941be used to prompt for the function."
ee7bf2ad
RM
1942 (let* ((function (ad-read-advised-function prompt))
1943 (class (ad-read-advice-class function))
1944 (name (ad-read-advice-name function class)))
1945 (list function class name)))
1946
1947;; Use previous regexp as a default:
1948(defvar ad-last-regexp "")
1949
1950(defun ad-read-regexp (&optional prompt)
fce44373 1951 "Read a regular expression from the minibuffer."
ee7bf2ad 1952 (let ((regexp (read-from-minibuffer
5b76833f
RF
1953 (concat (or prompt "Regular expression")
1954 (if (equal ad-last-regexp "") ": "
1955 (format " (default %s): " ad-last-regexp))))))
ee7bf2ad
RM
1956 (setq ad-last-regexp
1957 (if (equal regexp "") ad-last-regexp regexp))))
1958
1959
1960;; @@ Finding, enabling, adding and removing pieces of advice:
1961;; ===========================================================
1962
1963(defmacro ad-find-advice (function class name)
fce44373 1964 "Find the first advice of FUNCTION in CLASS with NAME."
8a946354 1965 `(assq ,name (ad-get-advice-info-field ,function ,class)))
ee7bf2ad
RM
1966
1967(defun ad-advice-position (function class name)
fce44373 1968 "Return position of first advice of FUNCTION in CLASS with NAME."
ee7bf2ad
RM
1969 (let* ((found-advice (ad-find-advice function class name))
1970 (advices (ad-get-advice-info-field function class)))
1971 (if found-advice
1972 (- (length advices) (length (memq found-advice advices))))))
1973
1974(defun ad-find-some-advice (function class name)
fce44373 1975 "Find the first of FUNCTION's advices in CLASS matching NAME.
ee7bf2ad 1976NAME can be a symbol or a regular expression matching part of an advice name.
bece3937 1977If CLASS is `any' all valid advice classes will be checked."
ee7bf2ad
RM
1978 (if (ad-is-advised function)
1979 (let (found-advice)
2de39f08 1980 (cl-dolist (advice-class ad-advice-classes)
ee7bf2ad
RM
1981 (if (or (eq class 'any) (eq advice-class class))
1982 (setq found-advice
2de39f08 1983 (cl-dolist (advice (ad-get-advice-info-field
ee7bf2ad
RM
1984 function advice-class))
1985 (if (or (and (stringp name)
1986 (string-match
1987 name (symbol-name
1988 (ad-advice-name advice))))
1989 (eq name (ad-advice-name advice)))
2de39f08
SM
1990 (cl-return advice)))))
1991 (if found-advice (cl-return found-advice))))))
ee7bf2ad
RM
1992
1993(defun ad-enable-advice-internal (function class name flag)
fce44373
DL
1994 "Set enable FLAG of FUNCTION's advices in CLASS matching NAME.
1995If NAME is a string rather than a symbol then it's interpreted as a regular
1996expression and all advices whose name contain a match for it will be
bece3937 1997affected. If CLASS is `any' advices in all valid advice classes will be
fce44373
DL
1998considered. The number of changed advices will be returned (or nil if
1999FUNCTION was not advised)."
ee7bf2ad
RM
2000 (if (ad-is-advised function)
2001 (let ((matched-advices 0))
2de39f08 2002 (dolist (advice-class ad-advice-classes)
ee7bf2ad 2003 (if (or (eq class 'any) (eq advice-class class))
2de39f08
SM
2004 (dolist (advice (ad-get-advice-info-field
2005 function advice-class))
ee7bf2ad
RM
2006 (cond ((or (and (stringp name)
2007 (string-match
2008 name (symbol-name (ad-advice-name advice))))
2009 (eq name (ad-advice-name advice)))
2010 (setq matched-advices (1+ matched-advices))
2011 (ad-advice-set-enabled advice flag))))))
2012 matched-advices)))
2013
379ba58e 2014;;;###autoload
ee7bf2ad
RM
2015(defun ad-enable-advice (function class name)
2016 "Enables the advice of FUNCTION with CLASS and NAME."
5b76833f 2017 (interactive (ad-read-advice-specification "Enable advice of"))
ee7bf2ad
RM
2018 (if (ad-is-advised function)
2019 (if (eq (ad-enable-advice-internal function class name t) 0)
2020 (error "ad-enable-advice: `%s' has no %s advice matching `%s'"
2021 function class name))
2022 (error "ad-enable-advice: `%s' is not advised" function)))
2023
379ba58e 2024;;;###autoload
ee7bf2ad 2025(defun ad-disable-advice (function class name)
fce44373 2026 "Disable the advice of FUNCTION with CLASS and NAME."
5b76833f 2027 (interactive (ad-read-advice-specification "Disable advice of"))
ee7bf2ad
RM
2028 (if (ad-is-advised function)
2029 (if (eq (ad-enable-advice-internal function class name nil) 0)
2030 (error "ad-disable-advice: `%s' has no %s advice matching `%s'"
2031 function class name))
2032 (error "ad-disable-advice: `%s' is not advised" function)))
2033
2034(defun ad-enable-regexp-internal (regexp class flag)
fce44373 2035 "Set enable FLAGs of all CLASS advices whose name contains a REGEXP match.
bece3937 2036If CLASS is `any' all valid advice classes are considered. The number of
fce44373 2037affected advices will be returned."
ee7bf2ad
RM
2038 (let ((matched-advices 0))
2039 (ad-do-advised-functions (advised-function)
2040 (setq matched-advices
2041 (+ matched-advices
2042 (or (ad-enable-advice-internal
2043 advised-function class regexp flag)
2044 0))))
2045 matched-advices))
2046
2047(defun ad-enable-regexp (regexp)
2048 "Enables all advices with names that contain a match for REGEXP.
2049All currently advised functions will be considered."
2050 (interactive
5b76833f 2051 (list (ad-read-regexp "Enable advices via regexp")))
ee7bf2ad 2052 (let ((matched-advices (ad-enable-regexp-internal regexp 'any t)))
32226619 2053 (if (called-interactively-p 'interactive)
ee7bf2ad
RM
2054 (message "%d matching advices enabled" matched-advices))
2055 matched-advices))
2056
2057(defun ad-disable-regexp (regexp)
fce44373 2058 "Disable all advices with names that contain a match for REGEXP.
ee7bf2ad
RM
2059All currently advised functions will be considered."
2060 (interactive
5b76833f 2061 (list (ad-read-regexp "Disable advices via regexp")))
ee7bf2ad 2062 (let ((matched-advices (ad-enable-regexp-internal regexp 'any nil)))
32226619 2063 (if (called-interactively-p 'interactive)
ee7bf2ad
RM
2064 (message "%d matching advices disabled" matched-advices))
2065 matched-advices))
2066
2067(defun ad-remove-advice (function class name)
fce44373 2068 "Remove FUNCTION's advice with NAME from its advices in CLASS.
ee7bf2ad
RM
2069If such an advice was found it will be removed from the list of advices
2070in that CLASS."
5b76833f 2071 (interactive (ad-read-advice-specification "Remove advice of"))
ee7bf2ad 2072 (if (ad-is-advised function)
6b0a9634 2073 (let ((advice-to-remove (ad-find-advice function class name)))
ee7bf2ad
RM
2074 (if advice-to-remove
2075 (ad-set-advice-info-field
2076 function class
2077 (delq advice-to-remove (ad-get-advice-info-field function class)))
2078 (error "ad-remove-advice: `%s' has no %s advice `%s'"
2079 function class name)))
2080 (error "ad-remove-advice: `%s' is not advised" function)))
2081
2082;;;###autoload
2083(defun ad-add-advice (function advice class position)
fce44373 2084 "Add a piece of ADVICE to FUNCTION's list of advices in CLASS.
bbdc98ef
CY
2085
2086ADVICE has the form (NAME PROTECTED ENABLED DEFINITION), where
2087NAME is the advice name; PROTECTED is a flag specifying whether
2088to protect against non-local exits; ENABLED is a flag specifying
2089whether to initially enable the advice; and DEFINITION has the
2090form (advice . LAMBDA), where LAMBDA is a lambda expression.
2091
2092If FUNCTION already has a piece of advice with the same name,
2093then POSITION is ignored, and the old advice is overwritten with
2094the new one.
2095
2096If FUNCTION already has one or more pieces of advice of the
2097specified CLASS, then POSITION determines where the new piece
2098goes. POSITION can either be `first', `last' or a number (where
20990 corresponds to `first', and numbers outside the valid range are
2100mapped to the closest extremal position).
2101
2102If FUNCTION was not advised already, its advice info will be
2103initialized. Redefining a piece of advice whose name is part of
2104the cache-id will clear the cache.
2105
2106See Info node `(elisp)Computed Advice' for detailed documentation."
ee7bf2ad
RM
2107 (cond ((not (ad-is-advised function))
2108 (ad-initialize-advice-info function)
2109 (ad-set-advice-info-field
3c442f8b 2110 function 'advicefunname (ad-make-advicefunname function))))
ee7bf2ad
RM
2111 (let* ((previous-position
2112 (ad-advice-position function class (ad-advice-name advice)))
2113 (advices (ad-get-advice-info-field function class))
2114 ;; Determine a numerical position for the new advice:
2115 (position (cond (previous-position)
2116 ((eq position 'first) 0)
2117 ((eq position 'last) (length advices))
2118 ((numberp position)
2119 (max 0 (min position (length advices))))
2120 (t 0))))
2121 ;; Check whether we have to clear the cache:
2122 (if (memq (ad-advice-name advice) (ad-get-cache-class-id function class))
2123 (ad-clear-cache function))
2124 (if previous-position
2125 (setcar (nthcdr position advices) advice)
2126 (if (= position 0)
2127 (ad-set-advice-info-field function class (cons advice advices))
2128 (setcdr (nthcdr (1- position) advices)
2129 (cons advice (nthcdr position advices)))))))
2130
2131
2132;; @@ Accessing and manipulating function definitions:
2133;; ===================================================
2134
2135(defmacro ad-macrofy (definition)
fce44373 2136 "Take a lambda function DEFINITION and make a macro out of it."
8a946354 2137 `(cons 'macro ,definition))
ee7bf2ad
RM
2138
2139(defmacro ad-lambdafy (definition)
fce44373 2140 "Take a macro function DEFINITION and make a lambda out of it."
8a946354 2141 `(cdr ,definition))
ee7bf2ad 2142
ee7bf2ad 2143(defmacro ad-lambda-p (definition)
6e2f6f45 2144 ;;"non-nil if DEFINITION is a lambda expression."
8a946354 2145 `(eq (car-safe ,definition) 'lambda))
ee7bf2ad
RM
2146
2147;; see ad-make-advice for the format of advice definitions:
2148(defmacro ad-advice-p (definition)
6e2f6f45 2149 ;;"non-nil if DEFINITION is a piece of advice."
8a946354 2150 `(eq (car-safe ,definition) 'advice))
ee7bf2ad 2151
6e2f6f45 2152(defmacro ad-compiled-p (definition)
fce44373 2153 "Return non-nil if DEFINITION is a compiled byte-code object."
8a946354 2154 `(or (byte-code-function-p ,definition)
671d5c16
SM
2155 (and (macrop ,definition)
2156 (byte-code-function-p (ad-lambdafy ,definition)))))
ee7bf2ad 2157
6e2f6f45 2158(defmacro ad-compiled-code (compiled-definition)
fce44373 2159 "Return the byte-code object of a COMPILED-DEFINITION."
671d5c16 2160 `(if (macrop ,compiled-definition)
8a946354
SS
2161 (ad-lambdafy ,compiled-definition)
2162 ,compiled-definition))
ee7bf2ad
RM
2163
2164(defun ad-lambda-expression (definition)
fce44373 2165 "Return the lambda expression of a function/macro/advice DEFINITION."
ee7bf2ad
RM
2166 (cond ((ad-lambda-p definition)
2167 definition)
671d5c16 2168 ((macrop definition)
ee7bf2ad
RM
2169 (ad-lambdafy definition))
2170 ((ad-advice-p definition)
2171 (cdr definition))
2172 (t nil)))
2173
6858633a
SM
2174(defun ad-arglist (definition)
2175 "Return the argument list of DEFINITION."
ba83908c 2176 (require 'help-fns)
c2bd2ab0 2177 (help-function-arglist
671d5c16 2178 (if (or (macrop definition) (ad-advice-p definition))
c2bd2ab0
SM
2179 (cdr definition)
2180 definition)
2181 'preserve-names))
ee7bf2ad
RM
2182
2183(defun ad-docstring (definition)
fce44373 2184 "Return the unexpanded docstring of DEFINITION."
ee7bf2ad 2185 (let ((docstring
6e2f6f45 2186 (if (ad-compiled-p definition)
6858633a 2187 (documentation definition t)
ee7bf2ad
RM
2188 (car (cdr (cdr (ad-lambda-expression definition)))))))
2189 (if (or (stringp docstring)
2190 (natnump docstring))
2191 docstring)))
2192
806bc6df
SM
2193(defun ad-interactive-form (definition)
2194 "Return the interactive form of DEFINITION.
2195Like `interactive-form', but also works on pieces of advice."
2196 (interactive-form
2197 (if (ad-advice-p definition)
2198 (ad-lambda-expression definition)
2199 definition)))
2200
ee7bf2ad 2201(defun ad-body-forms (definition)
fce44373 2202 "Return the list of body forms of DEFINITION."
6e2f6f45
RS
2203 (cond ((ad-compiled-p definition)
2204 nil)
ee7bf2ad
RM
2205 ((consp definition)
2206 (nthcdr (+ (if (ad-docstring definition) 1 0)
806bc6df 2207 (if (ad-interactive-form definition) 1 0))
ee7bf2ad
RM
2208 (cdr (cdr (ad-lambda-expression definition)))))))
2209
57618ecf 2210(defun ad-make-advised-definition-docstring (_function)
fce44373
DL
2211 "Make an identifying docstring for the advised definition of FUNCTION.
2212Put function name into the documentation string so we can infer
2213the name of the advised function from the docstring. This is needed
2214to generate a proper advised docstring even if we are just given a
15975e35 2215definition (see the code for `documentation')."
57618ecf 2216 (eval-when-compile
3c442f8b
SM
2217 (propertize "Advice function assembled by advice.el."
2218 'dynamic-docstring-function
57618ecf 2219 #'ad--make-advised-docstring)))
ee7bf2ad
RM
2220
2221(defun ad-advised-definition-p (definition)
fce44373 2222 "Return non-nil if DEFINITION was generated from advice information."
ee7bf2ad 2223 (if (or (ad-lambda-p definition)
671d5c16 2224 (macrop definition)
ee7bf2ad
RM
2225 (ad-compiled-p definition))
2226 (let ((docstring (ad-docstring definition)))
2227 (and (stringp docstring)
57618ecf 2228 (get-text-property 0 'dynamic-docstring-function docstring)))))
ee7bf2ad
RM
2229
2230(defun ad-definition-type (definition)
fce44373 2231 "Return symbol that describes the type of DEFINITION."
1232d6c2
SM
2232 ;; These symbols are only ever used to check a cache entry's validity.
2233 ;; The suffix `2' reflects the fact that we're using version 2 of advice
2234 ;; representations, so cache entries preactivated with version
2235 ;; 1 can't be used.
c2bd2ab0 2236 (cond
671d5c16
SM
2237 ((macrop definition) 'macro2)
2238 ((subrp definition) 'subr2)
1232d6c2
SM
2239 ((or (ad-lambda-p definition) (ad-compiled-p definition)) 'fun2)
2240 ((ad-advice-p definition) 'advice2))) ;; FIXME: Can this ever happen?
ee7bf2ad
RM
2241
2242(defun ad-has-proper-definition (function)
fce44373
DL
2243 "True if FUNCTION is a symbol with a proper definition.
2244For that it has to be fbound with a non-autoload definition."
ee7bf2ad
RM
2245 (and (symbolp function)
2246 (fboundp function)
7abaf5cc 2247 (not (autoloadp (symbol-function function)))))
ee7bf2ad
RM
2248
2249;; The following two are necessary for the sake of packages such as
2250;; ange-ftp which redefine functions via fcell indirection:
2251(defun ad-real-definition (function)
fce44373 2252 "Find FUNCTION's definition at the end of function cell indirection."
ee7bf2ad
RM
2253 (if (ad-has-proper-definition function)
2254 (let ((definition (symbol-function function)))
2255 (if (symbolp definition)
2256 (ad-real-definition definition)
2257 definition))))
2258
2259(defun ad-real-orig-definition (function)
3c442f8b
SM
2260 (let* ((fun1 (ad-get-orig-definition function))
2261 (fun2 (indirect-function fun1)))
2262 (unless (autoloadp fun2) fun2)))
ee7bf2ad
RM
2263
2264(defun ad-is-compilable (function)
fce44373 2265 "True if FUNCTION has an interpreted definition that can be compiled."
ee7bf2ad
RM
2266 (and (ad-has-proper-definition function)
2267 (or (ad-lambda-p (symbol-function function))
671d5c16 2268 (macrop (symbol-function function)))
ee7bf2ad
RM
2269 (not (ad-compiled-p (symbol-function function)))))
2270
6858633a 2271(defvar warning-suppress-types) ;From warnings.el.
ee7bf2ad 2272(defun ad-compile-function (function)
3c442f8b
SM
2273 "Byte-compile the assembled advice function."
2274 (require 'bytecomp)
3c442f8b
SM
2275 (let ((byte-compile-warnings byte-compile-warnings)
2276 ;; Don't pop up windows showing byte-compiler warnings.
2277 (warning-suppress-types '((bytecomp))))
2278 (if (featurep 'cl)
2279 (byte-compile-disable-warning 'cl-functions))
2280 (byte-compile (ad-get-advice-info-field function 'advicefunname))))
ee7bf2ad 2281
ee7bf2ad
RM
2282;; @@@ Accessing argument lists:
2283;; =============================
2284
2285(defun ad-parse-arglist (arglist)
fce44373
DL
2286 "Parse ARGLIST into its required, optional and rest parameters.
2287A three-element list is returned, where the 1st element is the list of
2288required arguments, the 2nd is the list of optional arguments, and the 3rd
2289is the name of an optional rest parameter (or nil)."
6b0a9634 2290 (let (required optional rest)
ee7bf2ad
RM
2291 (setq rest (car (cdr (memq '&rest arglist))))
2292 (if rest (setq arglist (reverse (cdr (memq '&rest (reverse arglist))))))
2293 (setq optional (cdr (memq '&optional arglist)))
2294 (if optional
2295 (setq required (reverse (cdr (memq '&optional (reverse arglist)))))
2296 (setq required arglist))
2297 (list required optional rest)))
2298
2299(defun ad-retrieve-args-form (arglist)
fce44373
DL
2300 "Generate a form which evaluates into names/values/types of ARGLIST.
2301When the form gets evaluated within a function with that argument list
2302it will result in a list with one entry for each argument, where the
2303first element of each entry is the name of the argument, the second
2304element is its actual current value, and the third element is either
2305`required', `optional' or `rest' depending on the type of the argument."
ee7bf2ad
RM
2306 (let* ((parsed-arglist (ad-parse-arglist arglist))
2307 (rest (nth 2 parsed-arglist)))
8a946354
SS
2308 `(list
2309 ,@(mapcar (function
2310 (lambda (req)
2311 `(list ',req ,req 'required)))
2312 (nth 0 parsed-arglist))
2313 ,@(mapcar (function
2314 (lambda (opt)
2315 `(list ',opt ,opt 'optional)))
2316 (nth 1 parsed-arglist))
2317 ,@(if rest (list `(list ',rest ,rest 'rest))))))
ee7bf2ad
RM
2318
2319(defun ad-arg-binding-field (binding field)
2320 (cond ((eq field 'name) (car binding))
2321 ((eq field 'value) (car (cdr binding)))
2322 ((eq field 'type) (car (cdr (cdr binding))))))
2323
2324(defun ad-list-access (position list)
2325 (cond ((= position 0) list)
2326 ((= position 1) (list 'cdr list))
2327 (t (list 'nthcdr position list))))
2328
2329(defun ad-element-access (position list)
2330 (cond ((= position 0) (list 'car list))
8a946354 2331 ((= position 1) `(car (cdr ,list)))
ee7bf2ad
RM
2332 (t (list 'nth position list))))
2333
2334(defun ad-access-argument (arglist index)
fce44373
DL
2335 "Tell how to access ARGLIST's actual argument at position INDEX.
2336For a required/optional arg it simply returns it, if a rest argument has
2337to be accessed, it returns a list with the index and name."
ee7bf2ad
RM
2338 (let* ((parsed-arglist (ad-parse-arglist arglist))
2339 (reqopt-args (append (nth 0 parsed-arglist)
2340 (nth 1 parsed-arglist)))
2341 (rest-arg (nth 2 parsed-arglist)))
2342 (cond ((< index (length reqopt-args))
2343 (nth index reqopt-args))
2344 (rest-arg
2345 (list (- index (length reqopt-args)) rest-arg)))))
2346
2347(defun ad-get-argument (arglist index)
e2045997
CY
2348 "Return form to access ARGLIST's actual argument at position INDEX.
2349INDEX counts from zero."
ee7bf2ad
RM
2350 (let ((argument-access (ad-access-argument arglist index)))
2351 (cond ((consp argument-access)
2352 (ad-element-access
2353 (car argument-access) (car (cdr argument-access))))
2354 (argument-access))))
2355
2356(defun ad-set-argument (arglist index value-form)
e2045997
CY
2357 "Return form to set ARGLIST's actual arg at INDEX to VALUE-FORM.
2358INDEX counts from zero."
ee7bf2ad
RM
2359 (let ((argument-access (ad-access-argument arglist index)))
2360 (cond ((consp argument-access)
2361 ;; should this check whether there actually is something to set?
8a946354
SS
2362 `(setcar ,(ad-list-access
2363 (car argument-access) (car (cdr argument-access)))
2364 ,value-form))
ee7bf2ad 2365 (argument-access
8a946354 2366 `(setq ,argument-access ,value-form))
ee7bf2ad
RM
2367 (t (error "ad-set-argument: No argument at position %d of `%s'"
2368 index arglist)))))
2369
2370(defun ad-get-arguments (arglist index)
fce44373 2371 "Return form to access all actual arguments starting at position INDEX."
ee7bf2ad
RM
2372 (let* ((parsed-arglist (ad-parse-arglist arglist))
2373 (reqopt-args (append (nth 0 parsed-arglist)
2374 (nth 1 parsed-arglist)))
2375 (rest-arg (nth 2 parsed-arglist))
2376 args-form)
2377 (if (< index (length reqopt-args))
8a946354 2378 (setq args-form `(list ,@(nthcdr index reqopt-args))))
ee7bf2ad
RM
2379 (if rest-arg
2380 (if args-form
8a946354
SS
2381 (setq args-form `(nconc ,args-form ,rest-arg))
2382 (setq args-form (ad-list-access (- index (length reqopt-args))
2383 rest-arg))))
ee7bf2ad
RM
2384 args-form))
2385
2386(defun ad-set-arguments (arglist index values-form)
fce44373
DL
2387 "Make form to assign elements of VALUES-FORM as actual ARGLIST args.
2388The assignment starts at position INDEX."
ee7bf2ad
RM
2389 (let ((values-index 0)
2390 argument-access set-forms)
2391 (while (setq argument-access (ad-access-argument arglist index))
6858633a
SM
2392 (push (if (symbolp argument-access)
2393 (ad-set-argument
2394 arglist index
2395 (ad-element-access values-index 'ad-vAlUeS))
2396 (setq arglist nil) ;; Terminate loop.
2397 (if (= (car argument-access) 0)
2398 `(setq
2399 ,(car (cdr argument-access))
2400 ,(ad-list-access values-index 'ad-vAlUeS))
2401 `(setcdr
2402 ,(ad-list-access (1- (car argument-access))
2403 (car (cdr argument-access)))
2404 ,(ad-list-access values-index 'ad-vAlUeS))))
2405 set-forms)
ee7bf2ad
RM
2406 (setq index (1+ index))
2407 (setq values-index (1+ values-index)))
2408 (if (null set-forms)
2409 (error "ad-set-arguments: No argument at position %d of `%s'"
2410 index arglist)
8a946354
SS
2411 (if (= (length set-forms) 1)
2412 ;; For exactly one set-form we can use values-form directly,...
2413 (ad-substitute-tree
6858633a
SM
2414 (lambda (form) (eq form 'ad-vAlUeS))
2415 (lambda (_form) values-form)
8a946354
SS
2416 (car set-forms))
2417 ;; ...if we have more we have to bind it to a variable:
2418 `(let ((ad-vAlUeS ,values-form))
2419 ,@(reverse set-forms)
2420 ;; work around the old backquote bug:
2421 ,'ad-vAlUeS)))))
ee7bf2ad
RM
2422
2423(defun ad-insert-argument-access-forms (definition arglist)
fce44373 2424 "Expands arg-access text macros in DEFINITION according to ARGLIST."
ee7bf2ad
RM
2425 (ad-substitute-tree
2426 (function
2427 (lambda (form)
2428 (or (eq form 'ad-arg-bindings)
2429 (and (memq (car-safe form)
2430 '(ad-get-arg ad-get-args ad-set-arg ad-set-args))
2431 (integerp (car-safe (cdr form)))))))
2432 (function
2433 (lambda (form)
2434 (if (eq form 'ad-arg-bindings)
2435 (ad-retrieve-args-form arglist)
2436 (let ((accessor (car form))
2437 (index (car (cdr form)))
2438 (val (car (cdr (ad-insert-argument-access-forms
2439 (cdr form) arglist)))))
2440 (cond ((eq accessor 'ad-get-arg)
2441 (ad-get-argument arglist index))
2442 ((eq accessor 'ad-set-arg)
2443 (ad-set-argument arglist index val))
2444 ((eq accessor 'ad-get-args)
2445 (ad-get-arguments arglist index))
2446 ((eq accessor 'ad-set-args)
2447 (ad-set-arguments arglist index val)))))))
2448 definition))
2449
2450;; @@@ Mapping argument lists:
2451;; ===========================
2452;; Here is the problem:
2453;; Suppose function foo was called with (foo 1 2 3 4 5), and foo has the
2454;; argument list (x y &rest z), and we want to call the function bar which
2455;; has argument list (a &rest b) with a combination of x, y and z so that
fce44373 2456;; the effect is just as if we had called (bar 1 2 3 4 5) directly.
ee7bf2ad
RM
2457;; The mapping should work for any two argument lists.
2458
2459(defun ad-map-arglists (source-arglist target-arglist)
fce44373 2460 "Make `funcall/apply' form to map SOURCE-ARGLIST to TARGET-ARGLIST.
ee7bf2ad 2461The arguments supplied to TARGET-ARGLIST will be taken from SOURCE-ARGLIST just
fce44373
DL
2462as if they had been supplied to a function with TARGET-ARGLIST directly.
2463Excess source arguments will be neglected, missing source arguments will be
6e2f6f45
RS
2464supplied as nil. Returns a `funcall' or `apply' form with the second element
2465being `function' which has to be replaced by an actual function argument.
2466Example: `(ad-map-arglists '(a &rest args) '(w x y z))' will return
3c442f8b 2467 `(funcall ad--addoit-function a (car args) (car (cdr args)) (nth 2 args))'."
ee7bf2ad
RM
2468 (let* ((parsed-source-arglist (ad-parse-arglist source-arglist))
2469 (source-reqopt-args (append (nth 0 parsed-source-arglist)
2470 (nth 1 parsed-source-arglist)))
2471 (source-rest-arg (nth 2 parsed-source-arglist))
2472 (parsed-target-arglist (ad-parse-arglist target-arglist))
2473 (target-reqopt-args (append (nth 0 parsed-target-arglist)
2474 (nth 1 parsed-target-arglist)))
2475 (target-rest-arg (nth 2 parsed-target-arglist))
2476 (need-apply (and source-rest-arg target-rest-arg))
2477 (target-arg-index -1))
2478 ;; This produces ``error-proof'' target function calls with the exception
2479 ;; of a case like (&rest a) mapped onto (x &rest y) where the actual args
2480 ;; supplied to A might not be enough to supply the required target arg X
3c442f8b 2481 (append (list (if need-apply 'apply 'funcall) 'ad--addoit-function)
ee7bf2ad
RM
2482 (cond (need-apply
2483 ;; `apply' can take care of that directly:
2484 (append source-reqopt-args (list source-rest-arg)))
6858633a
SM
2485 (t (mapcar (lambda (_arg)
2486 (setq target-arg-index (1+ target-arg-index))
2487 (ad-get-argument
2488 source-arglist target-arg-index))
ee7bf2ad
RM
2489 (append target-reqopt-args
2490 (and target-rest-arg
2491 ;; If we have a rest arg gobble up
2492 ;; remaining source args:
2493 (nthcdr (length target-reqopt-args)
2494 source-reqopt-args)))))))))
2495
ee7bf2ad
RM
2496
2497;; @@@ Making an advised documentation string:
2498;; ===========================================
2499;; New policy: The documentation string for an advised function will be built
6e2f6f45 2500;; at the time the advised `documentation' function is called. This has the
ee7bf2ad
RM
2501;; following advantages:
2502;; 1) command-key substitutions will automatically be correct
2503;; 2) No wasted string space due to big advised docstrings in caches or
2504;; compiled files that contain preactivations
2505;; The overall overhead for this should be negligible because people normally
2506;; don't lookup documentation for the same function over and over again.
2507
6e2f6f45 2508(defun ad-make-single-advice-docstring (advice class &optional style)
ee7bf2ad 2509 (let ((advice-docstring (ad-docstring (ad-advice-definition advice))))
6e2f6f45
RS
2510 (cond ((eq style 'plain)
2511 advice-docstring)
8bae7480
DL
2512 (t (if advice-docstring
2513 (format "%s-advice `%s':\n%s"
2514 (capitalize (symbol-name class))
2515 (ad-advice-name advice)
2516 advice-docstring)
2517 (format "%s-advice `%s'."
2518 (capitalize (symbol-name class))
2519 (ad-advice-name advice)))))))
6e2f6f45 2520
24c22ecf
SM
2521(require 'help-fns) ;For help-split-fundoc and help-add-fundoc-usage.
2522
57618ecf 2523(defun ad--make-advised-docstring (origdoc function &optional style)
24c22ecf
SM
2524 "Construct a documentation string for the advised FUNCTION.
2525It concatenates the original documentation with the documentation
2526strings of the individual pieces of advice which will be formatted
7db1bda8 2527according to STYLE. STYLE can be `plain', everything else
24c22ecf
SM
2528will be interpreted as `default'. The order of the advice documentation
2529strings corresponds to before/around/after and the individual ordering
2530in any of these classes."
3c442f8b
SM
2531 (if (and (symbolp function)
2532 (string-match "\\`ad-+Advice-" (symbol-name function)))
2533 (setq function
2534 (intern (substring (symbol-name function) (match-end 0)))))
2535 (let* ((usage (help-split-fundoc origdoc function))
6858633a 2536 paragraphs advice-docstring)
824c61dd 2537 (setq usage (if (null usage) t (setq origdoc (cdr usage)) (car usage)))
6e2f6f45 2538 (if origdoc (setq paragraphs (list origdoc)))
2de39f08
SM
2539 (dolist (class ad-advice-classes)
2540 (dolist (advice (ad-get-enabled-advices function class))
6e2f6f45
RS
2541 (setq advice-docstring
2542 (ad-make-single-advice-docstring advice class style))
2543 (if advice-docstring
24c22ecf
SM
2544 (push advice-docstring paragraphs))))
2545 (setq origdoc (if paragraphs
5eceba81
JB
2546 (propertize
2547 ;; separate paragraphs with blank lines:
2548 (mapconcat 'identity (nreverse paragraphs) "\n\n")
57618ecf
SM
2549 ;; FIXME: what is this for?
2550 'dynamic-docstring-function
2551 #'ad--make-advised-docstring)))
24c22ecf 2552 (help-add-fundoc-usage origdoc usage)))
6e2f6f45 2553
ee7bf2ad
RM
2554
2555;; @@@ Accessing overriding arglists and interactive forms:
2556;; ========================================================
2557
2558(defun ad-advised-arglist (function)
fce44373 2559 "Find first defined arglist in FUNCTION's redefining advices."
2de39f08 2560 (cl-dolist (advice (append (ad-get-enabled-advices function 'before)
ee7bf2ad
RM
2561 (ad-get-enabled-advices function 'around)
2562 (ad-get-enabled-advices function 'after)))
2563 (let ((arglist (ad-arglist (ad-advice-definition advice))))
2564 (if arglist
2565 ;; We found the first one, use it:
2de39f08 2566 (cl-return arglist)))))
ee7bf2ad
RM
2567
2568(defun ad-advised-interactive-form (function)
fce44373 2569 "Find first interactive form in FUNCTION's redefining advices."
2de39f08 2570 (cl-dolist (advice (append (ad-get-enabled-advices function 'before)
ee7bf2ad
RM
2571 (ad-get-enabled-advices function 'around)
2572 (ad-get-enabled-advices function 'after)))
2573 (let ((interactive-form
806bc6df 2574 (ad-interactive-form (ad-advice-definition advice))))
ee7bf2ad
RM
2575 (if interactive-form
2576 ;; We found the first one, use it:
2de39f08 2577 (cl-return interactive-form)))))
ee7bf2ad
RM
2578
2579;; @@@ Putting it all together:
2580;; ============================
2581
2582(defun ad-make-advised-definition (function)
fce44373 2583 "Generate an advised definition of FUNCTION from its advice info."
ee7bf2ad
RM
2584 (if (and (ad-is-advised function)
2585 (ad-has-redefining-advice function))
2586 (let* ((origdef (ad-real-orig-definition function))
ee7bf2ad 2587 ;; Construct the individual pieces that we need for assembly:
dd0c5bbb
SM
2588 (orig-arglist (let ((args (ad-arglist origdef)))
2589 ;; The arglist may still be unknown.
2590 (if (listp args) args '(&rest args))))
ee7bf2ad
RM
2591 (advised-arglist (or (ad-advised-arglist function)
2592 orig-arglist))
3c442f8b 2593 (interactive-form (ad-advised-interactive-form function))
ee7bf2ad 2594 (orig-form
3c442f8b 2595 (ad-map-arglists advised-arglist orig-arglist)))
ee7bf2ad
RM
2596
2597 ;; Finally, build the sucker:
2598 (ad-assemble-advised-definition
ee7bf2ad
RM
2599 advised-arglist
2600 (ad-make-advised-definition-docstring function)
2601 interactive-form
2602 orig-form
2603 (ad-get-enabled-advices function 'before)
2604 (ad-get-enabled-advices function 'around)
2605 (ad-get-enabled-advices function 'after)))))
2606
2607(defun ad-assemble-advised-definition
3c442f8b
SM
2608 (args docstring interactive orig &optional befores arounds afters)
2609 "Assemble the advices into an overall advice function.
2610ARGS is the argument list that has to be used,
2611DOCSTRING if non-nil defines the documentation of the definition,
2612INTERACTIVE if non-nil is the interactive form to be used,
fce44373
DL
2613ORIG is a form that calls the body of the original unadvised function,
2614and BEFORES, AROUNDS and AFTERS are the lists of advices with which ORIG
2615should be modified. The assembled function will be returned."
150f809c
SM
2616 ;; The ad-do-it call should always have the right number of arguments,
2617 ;; but the compiler might signal a bogus warning because it checks the call
2618 ;; against the advertised calling convention.
2619 (let ((around-form `(setq ad-return-value (with-no-warnings ,orig)))
2620 before-forms around-form-protected after-forms definition)
2de39f08
SM
2621 (dolist (advice befores)
2622 (cond ((and (ad-advice-protected advice)
2623 before-forms)
2624 (setq before-forms
2625 `((unwind-protect
0fb3cb7c 2626 ,(macroexp-progn before-forms)
2de39f08
SM
2627 ,@(ad-body-forms
2628 (ad-advice-definition advice))))))
2629 (t (setq before-forms
2630 (append before-forms
2631 (ad-body-forms (ad-advice-definition advice)))))))
8a946354 2632
2de39f08
SM
2633 (dolist (advice (reverse arounds))
2634 ;; If any of the around advices is protected then we
2635 ;; protect the complete around advice onion:
2636 (if (ad-advice-protected advice)
2637 (setq around-form-protected t))
2638 (setq around-form
2639 (ad-substitute-tree
6858633a
SM
2640 (lambda (form) (eq form 'ad-do-it))
2641 (lambda (_form) around-form)
0fb3cb7c 2642 (macroexp-progn (ad-body-forms (ad-advice-definition advice))))))
ee7bf2ad
RM
2643
2644 (setq after-forms
2645 (if (and around-form-protected before-forms)
8a946354 2646 `((unwind-protect
0fb3cb7c 2647 ,(macroexp-progn before-forms)
8a946354
SS
2648 ,around-form))
2649 (append before-forms (list around-form))))
2de39f08
SM
2650 (dolist (advice afters)
2651 (cond ((and (ad-advice-protected advice)
2652 after-forms)
2653 (setq after-forms
2654 `((unwind-protect
0fb3cb7c 2655 ,(macroexp-progn after-forms)
2de39f08
SM
2656 ,@(ad-body-forms
2657 (ad-advice-definition advice))))))
2658 (t (setq after-forms
2659 (append after-forms
2660 (ad-body-forms (ad-advice-definition advice)))))))
ee7bf2ad
RM
2661
2662 (setq definition
3c442f8b 2663 `(lambda (ad--addoit-function ,@args)
8a946354
SS
2664 ,@(if docstring (list docstring))
2665 ,@(if interactive (list interactive))
2666 (let (ad-return-value)
2667 ,@after-forms
3c442f8b 2668 ad-return-value)))
ee7bf2ad
RM
2669
2670 (ad-insert-argument-access-forms definition args)))
2671
2672;; This is needed for activation/deactivation hooks:
2673(defun ad-make-hook-form (function hook-name)
fce44373 2674 "Make hook-form from FUNCTION's advice bodies in class HOOK-NAME."
ee7bf2ad
RM
2675 (let ((hook-forms
2676 (mapcar (function (lambda (advice)
2677 (ad-body-forms (ad-advice-definition advice))))
2678 (ad-get-enabled-advices function hook-name))))
2679 (if hook-forms
0fb3cb7c 2680 (macroexp-progn (apply 'append hook-forms)))))
ee7bf2ad
RM
2681
2682
2683;; @@ Caching:
2684;; ===========
2685;; Generating an advised definition of a function is moderately expensive,
2686;; hence, it makes sense to cache it so we can reuse it in appropriate
2687;; circumstances. Of course, it only makes sense to reuse a cached
2688;; definition if the current advice and function definition state is the
2689;; same as it was at the time when the cached definition was generated.
2690;; For that purpose we associate every cache with an id so we can verify
6e2f6f45 2691;; if it is still valid at a certain point in time. This id mechanism
ee7bf2ad
RM
2692;; makes it possible to preactivate advised functions, write the compiled
2693;; advised definitions to a file and reuse them during the actual
2694;; activation without having to risk that the resulting definition will be
2695;; incorrect, well, almost.
2696;;
2697;; A cache id is a list with six elements:
2698;; 1) the list of names of enabled before advices
2699;; 2) the list of names of enabled around advices
2700;; 3) the list of names of enabled after advices
2701;; 4) the type of the original function (macro, subr, etc.)
2702;; 5) the arglist of the original definition (or t if it was equal to the
2703;; arglist of the cached definition)
2704;; 6) t if the interactive form of the original definition was equal to the
2705;; interactive form of the cached definition
2706;;
2707;; Here's how a cache can get invalidated or be incorrect:
2708;; A) a piece of advice used in the cache gets redefined
2709;; B) the current list of enabled advices is different from the ones used
2710;; for the cache
2711;; C) the type of the original function changed, e.g., a function became a
2712;; macro, or a subr became a function
2713;; D) the arglist of the original function changed
2714;; E) the interactive form of the original function changed
2715;; F) a piece of advice used in the cache got redefined before the
2716;; defadvice with the cached definition got loaded: This is a PROBLEM!
2717;;
6e2f6f45 2718;; Cases A and B are the normal ones. A is taken care of by `ad-add-advice'
ee7bf2ad
RM
2719;; which clears the cache in such a case, B is easily checked during
2720;; verification at activation time.
2721;;
2722;; Cases C, D and E have to be considered if one is slightly paranoid, i.e.,
2723;; if one considers the case that the original function could be different
2724;; from the one available at caching time (e.g., for forward advice of
2725;; functions that get redefined by some packages - such as `eval-region' gets
6e2f6f45
RS
2726;; redefined by edebug). All these cases can be easily checked during
2727;; verification. Element 4 of the id lets one check case C, element 5 takes
ee7bf2ad
RM
2728;; care of case D (using t in the equality case saves some space, because the
2729;; arglist can be recovered at validation time from the cached definition),
2730;; and element 6 takes care of case E which is only a problem if the original
2731;; was actually a function whose interactive form was not overridden by a
2732;; piece of advice.
2733;;
2734;; Case F is the only one which will lead to an incorrect advised function.
2735;; There is no way to avoid this without storing the complete advice definition
2736;; in the cache-id which is not feasible.
2737;;
2738;; The cache-id of a typical advised function with one piece of advice and
2739;; no arglist redefinition takes 7 conses which is a small price to pay for
6e2f6f45 2740;; the added efficiency. The validation itself is also pretty cheap, certainly
ee7bf2ad
RM
2741;; a lot cheaper than reconstructing an advised definition.
2742
2743(defmacro ad-get-cache-definition (function)
8a946354 2744 `(car (ad-get-advice-info-field ,function 'cache)))
ee7bf2ad
RM
2745
2746(defmacro ad-get-cache-id (function)
8a946354 2747 `(cdr (ad-get-advice-info-field ,function 'cache)))
ee7bf2ad
RM
2748
2749(defmacro ad-set-cache (function definition id)
8a946354
SS
2750 `(ad-set-advice-info-field
2751 ,function 'cache (cons ,definition ,id)))
ee7bf2ad
RM
2752
2753(defun ad-clear-cache (function)
2754 "Clears a previously cached advised definition of FUNCTION.
2755Clear the cache if you want to force `ad-activate' to construct a new
2756advised definition from scratch."
2757 (interactive
5b76833f 2758 (list (ad-read-advised-function "Clear cached definition of")))
ee7bf2ad
RM
2759 (ad-set-advice-info-field function 'cache nil))
2760
2761(defun ad-make-cache-id (function)
fce44373 2762 "Generate an identifying image of the current advices of FUNCTION."
ee7bf2ad
RM
2763 (let ((original-definition (ad-real-orig-definition function))
2764 (cached-definition (ad-get-cache-definition function)))
3c442f8b 2765 (list (mapcar #'ad-advice-name
ee7bf2ad 2766 (ad-get-enabled-advices function 'before))
3c442f8b 2767 (mapcar #'ad-advice-name
ee7bf2ad 2768 (ad-get-enabled-advices function 'around))
3c442f8b 2769 (mapcar #'ad-advice-name
ee7bf2ad
RM
2770 (ad-get-enabled-advices function 'after))
2771 (ad-definition-type original-definition)
6858633a 2772 (if (equal (ad-arglist original-definition)
ee7bf2ad
RM
2773 (ad-arglist cached-definition))
2774 t
6858633a 2775 (ad-arglist original-definition))
ee7bf2ad 2776 (if (eq (ad-definition-type original-definition) 'function)
05bfa8f3
SM
2777 (equal (interactive-form original-definition)
2778 (interactive-form cached-definition))))))
ee7bf2ad
RM
2779
2780(defun ad-get-cache-class-id (function class)
fce44373 2781 "Return the part of FUNCTION's cache id that identifies CLASS."
ee7bf2ad
RM
2782 (let ((cache-id (ad-get-cache-id function)))
2783 (if (eq class 'before)
2784 (car cache-id)
2785 (if (eq class 'around)
2786 (nth 1 cache-id)
2787 (nth 2 cache-id)))))
2788
2789(defun ad-verify-cache-class-id (cache-class-id advices)
2de39f08 2790 (cl-dolist (advice advices (null cache-class-id))
ee7bf2ad
RM
2791 (if (ad-advice-enabled advice)
2792 (if (eq (car cache-class-id) (ad-advice-name advice))
2793 (setq cache-class-id (cdr cache-class-id))
2de39f08 2794 (cl-return nil)))))
ee7bf2ad
RM
2795
2796;; There should be a way to monitor if and why a cache verification failed
2797;; in order to determine whether a certain preactivation could be used or
fce44373 2798;; not. Right now the only way to find out is to trace
6e2f6f45
RS
2799;; `ad-cache-id-verification-code'. The code it returns indicates where the
2800;; verification failed. Tracing `ad-verify-cache-class-id' might provide
ee7bf2ad
RM
2801;; some additional useful information.
2802
2803(defun ad-cache-id-verification-code (function)
2804 (let ((cache-id (ad-get-cache-id function))
2805 (code 'before-advice-mismatch))
2806 (and (ad-verify-cache-class-id
2807 (car cache-id) (ad-get-advice-info-field function 'before))
2808 (setq code 'around-advice-mismatch)
2809 (ad-verify-cache-class-id
2810 (nth 1 cache-id) (ad-get-advice-info-field function 'around))
2811 (setq code 'after-advice-mismatch)
2812 (ad-verify-cache-class-id
2813 (nth 2 cache-id) (ad-get-advice-info-field function 'after))
2814 (setq code 'definition-type-mismatch)
2815 (let ((original-definition (ad-real-orig-definition function))
2816 (cached-definition (ad-get-cache-definition function)))
2817 (and (eq (nth 3 cache-id) (ad-definition-type original-definition))
2818 (setq code 'arglist-mismatch)
2819 (equal (if (eq (nth 4 cache-id) t)
6858633a 2820 (ad-arglist original-definition)
ee7bf2ad
RM
2821 (nth 4 cache-id) )
2822 (ad-arglist cached-definition))
2823 (setq code 'interactive-form-mismatch)
2824 (or (null (nth 5 cache-id))
05bfa8f3
SM
2825 (equal (interactive-form original-definition)
2826 (interactive-form cached-definition)))
ee7bf2ad
RM
2827 (setq code 'verified))))
2828 code))
2829
2830(defun ad-verify-cache-id (function)
fce44373 2831 "True if FUNCTION's cache-id is compatible with its current advices."
ee7bf2ad
RM
2832 (eq (ad-cache-id-verification-code function) 'verified))
2833
2834
2835;; @@ Preactivation:
2836;; =================
2837;; Preactivation can be used to generate compiled advised definitions
2838;; at compile time without having to give up the dynamic runtime flexibility
6e2f6f45 2839;; of the advice mechanism. Preactivation is a special feature of `defadvice',
ee7bf2ad
RM
2840;; it involves the following steps:
2841;; - remembering the function's current state (definition and advice-info)
2842;; - advising it with the defined piece of advice
2843;; - clearing its cache
2844;; - generating an interpreted advised definition by activating it, this will
2845;; make use of all its current active advice and its current definition
2846;; - saving the so generated cached definition and id
2847;; - resetting the function's advice and definition state to what it was
2848;; before the preactivation
2849;; - Returning the saved definition and its id to be used in the expansion of
2850;; `defadvice' to assign it as an initial cache, hence it will be compiled
6e2f6f45 2851;; at time the `defadvice' gets compiled.
ee7bf2ad
RM
2852;; Naturally, for preactivation to be effective it has to be applied/compiled
2853;; at the right time, i.e., when the current state of advices and function
6e2f6f45 2854;; definition exactly reflects the state at activation time. Should that not
ee7bf2ad
RM
2855;; be the case, the precompiled definition will just be discarded and a new
2856;; advised definition will be generated.
2857
2858(defun ad-preactivate-advice (function advice class position)
fce44373 2859 "Preactivate FUNCTION and returns the constructed cache."
cb9c0a53
SM
2860 (let* ((advicefunname (ad-get-advice-info-field function 'advicefunname))
2861 (old-advice (symbol-function advicefunname))
ee7bf2ad
RM
2862 (old-advice-info (ad-copy-advice-info function))
2863 (ad-advised-functions ad-advised-functions))
2864 (unwind-protect
2865 (progn
2866 (ad-add-advice function advice class position)
2867 (ad-enable-advice function class (ad-advice-name advice))
2868 (ad-clear-cache function)
5f6bb68a 2869 (ad-activate function -1)
ee7bf2ad
RM
2870 (if (and (ad-is-active function)
2871 (ad-get-cache-definition function))
2872 (list (ad-get-cache-definition function)
2873 (ad-get-cache-id function))))
2874 (ad-set-advice-info function old-advice-info)
cb9c0a53
SM
2875 (advice-remove function advicefunname)
2876 (fset advicefunname old-advice)
2877 (if old-advice (advice-add function :around advicefunname)))))
ee7bf2ad 2878
fabaa9b5 2879
fabaa9b5
RS
2880;; @@ Activation and definition handling:
2881;; ======================================
2882
2883(defun ad-should-compile (function compile)
fce44373
DL
2884 "Return non-nil if the advised FUNCTION should be compiled.
2885If COMPILE is non-nil and not a negative number then it returns t.
2886If COMPILE is a negative number then it returns nil.
2887If COMPILE is nil then the result depends on the value of
2888`ad-default-compilation-action' (which see)."
848a2dd1
SM
2889 (cond
2890 ;; Don't compile until the real function definition is known (bug#12965).
2891 ((not (ad-real-orig-definition function)) nil)
2892 ((integerp compile) (>= compile 0))
2893 (compile)
2894 ((eq ad-default-compilation-action 'never) nil)
2895 ((eq ad-default-compilation-action 'always) t)
2896 ((eq ad-default-compilation-action 'like-original)
671d5c16 2897 (or (subrp (ad-get-orig-definition function))
848a2dd1
SM
2898 (ad-compiled-p (ad-get-orig-definition function))))
2899 ;; everything else means `maybe':
2900 (t (featurep 'byte-compile))))
fabaa9b5 2901
ee7bf2ad 2902(defun ad-activate-advised-definition (function compile)
fce44373
DL
2903 "Redefine FUNCTION with its advised definition from cache or scratch.
2904The resulting FUNCTION will be compiled if `ad-should-compile' returns t.
2905The current definition and its cache-id will be put into the cache."
4986fa21
SM
2906 (let* ((verified-cached-definition
2907 (if (ad-verify-cache-id function)
2908 (ad-get-cache-definition function)))
2909 (advicefunname (ad-get-advice-info-field function 'advicefunname))
2910 (old-ispec (interactive-form advicefunname)))
3c442f8b
SM
2911 (fset advicefunname
2912 (or verified-cached-definition
2913 (ad-make-advised-definition function)))
4986fa21
SM
2914 (unless (equal (interactive-form advicefunname) old-ispec)
2915 ;; If the interactive-spec of advicefunname has changed, force nadvice to
2916 ;; refresh its copy.
2917 (advice-remove function advicefunname))
3c442f8b 2918 (advice-add function :around advicefunname)
fabaa9b5 2919 (if (ad-should-compile function compile)
848a2dd1 2920 (ad-compile-function function))
ee7bf2ad 2921 (if verified-cached-definition
3c442f8b
SM
2922 (if (not (eq verified-cached-definition
2923 (symbol-function advicefunname)))
ee7bf2ad 2924 ;; we must have compiled, cache the compiled definition:
3c442f8b
SM
2925 (ad-set-cache function (symbol-function advicefunname)
2926 (ad-get-cache-id function)))
ee7bf2ad
RM
2927 ;; We created a new advised definition, cache it with a proper id:
2928 (ad-clear-cache function)
2929 ;; ad-make-cache-id needs the new cached definition:
3c442f8b 2930 (ad-set-cache function (symbol-function advicefunname) nil)
ee7bf2ad 2931 (ad-set-cache
3c442f8b 2932 function (symbol-function advicefunname) (ad-make-cache-id function)))))
ee7bf2ad 2933
3c442f8b
SM
2934(defun ad--defalias-fset (fsetfun function newdef)
2935 ;; Besides ad-redefinition-action we use this defalias-fset-function hook
2936 ;; for two other reasons:
2937 ;; - for `activation/deactivation' advices.
2938 ;; - to rebuild the ad-Advice-* function with the right argument names.
850da9d0 2939 "Handle re/definition of an advised FUNCTION during de/activation.
ee7bf2ad
RM
2940If FUNCTION does not have an original definition associated with it and
2941the current definition is usable, then it will be stored as FUNCTION's
6e2f6f45
RS
2942original definition. If no current definition is available (even in the
2943case of undefinition) nothing will be done. In the case of redefinition
ee7bf2ad 2944the action taken depends on the value of `ad-redefinition-action' (which
6e2f6f45 2945see). Redefinition occurs when FUNCTION already has an original definition
ee7bf2ad 2946associated with it but got redefined with a new definition and then
6e2f6f45 2947de/activated. If you do not like the current redefinition action change
ee7bf2ad
RM
2948the value of `ad-redefinition-action' and de/activate again."
2949 (let ((original-definition (ad-get-orig-definition function))
3c442f8b 2950 (current-definition (ad-get-orig-definition newdef)))
ee7bf2ad
RM
2951 (if original-definition
2952 (if current-definition
3c442f8b
SM
2953 (if (not (eq current-definition original-definition))
2954 ;; We have a redefinition:
ee7bf2ad 2955 (if (not (memq ad-redefinition-action '(accept discard warn)))
3c442f8b 2956 (error "ad-redefinition-action: `%s' %s"
2036d16f 2957 function "invalidly redefined")
ee7bf2ad 2958 (if (eq ad-redefinition-action 'discard)
3c442f8b
SM
2959 nil ;; Just drop it!
2960 (funcall (or fsetfun #'fset) function newdef)
2961 (ad-activate-internal function)
ee7bf2ad
RM
2962 (if (eq ad-redefinition-action 'warn)
2963 (message "ad-handle-definition: `%s' got redefined"
2964 function))))
2965 ;; either advised def or correct original is in place:
2966 nil)
3c442f8b
SM
2967 ;; We have an undefinition, ignore it:
2968 (funcall (or fsetfun #'fset) function newdef))
2969 (funcall (or fsetfun #'fset) function newdef)
2970 (when current-definition (ad-activate-internal function)))))
ee7bf2ad
RM
2971
2972
2973;; @@ The top-level advice interface:
2974;; ==================================
2975
379ba58e 2976;;;###autoload
5f6bb68a 2977(defun ad-activate (function &optional compile)
850da9d0 2978 "Activate all the advice information of an advised FUNCTION.
ee7bf2ad
RM
2979If FUNCTION has a proper original definition then an advised
2980definition will be generated from FUNCTION's advice info and the
6e2f6f45 2981definition of FUNCTION will be replaced with it. If a previously
fabaa9b5
RS
2982cached advised definition was available, it will be used.
2983The optional COMPILE argument determines whether the resulting function
2984or a compilable cached definition will be compiled. If it is negative
2985no compilation will be performed, if it is positive or otherwise non-nil
2986the resulting function will be compiled, if it is nil the behavior depends
2987on the value of `ad-default-compilation-action' (which see).
2988Activation of an advised function that has an advice info but no actual
2989pieces of advice is equivalent to a call to `ad-unadvise'. Activation of
2990an advised function that has actual pieces of advice but none of them are
2991enabled is equivalent to a call to `ad-deactivate'. The current advised
ee7bf2ad
RM
2992definition will always be cached for later usage."
2993 (interactive
5b76833f 2994 (list (ad-read-advised-function "Activate advice of")
ee7bf2ad 2995 current-prefix-arg))
848a2dd1
SM
2996 (cond
2997 ((not (ad-is-advised function))
2998 (error "ad-activate: `%s' is not advised" function))
2999 ;; Just return for forward advised and not yet defined functions:
3000 ((not (ad-get-orig-definition function)) nil)
3001 ((not (ad-has-any-advice function)) (ad-unadvise function))
3002 ;; Otherwise activate the advice:
3003 ((ad-has-redefining-advice function)
3004 (ad-activate-advised-definition function compile)
3005 (ad-set-advice-info-field function 'active t)
3006 (eval (ad-make-hook-form function 'activation))
3007 function)
3008 ;; Here we are if we have all disabled advices:
3009 (t (ad-deactivate function))))
ee7bf2ad 3010
17d28a2a
GM
3011(defalias 'ad-activate-on 'ad-activate)
3012
ee7bf2ad 3013(defun ad-deactivate (function)
850da9d0 3014 "Deactivate the advice of an actively advised FUNCTION.
ee7bf2ad 3015If FUNCTION has a proper original definition, then the current
6e2f6f45 3016definition of FUNCTION will be replaced with it. All the advice
ee7bf2ad
RM
3017information will still be available so it can be activated again with
3018a call to `ad-activate'."
3019 (interactive
5b76833f 3020 (list (ad-read-advised-function "Deactivate advice of" 'ad-is-active)))
ee7bf2ad
RM
3021 (if (not (ad-is-advised function))
3022 (error "ad-deactivate: `%s' is not advised" function)
3023 (cond ((ad-is-active function)
ee7bf2ad
RM
3024 (if (not (ad-get-orig-definition function))
3025 (error "ad-deactivate: `%s' has no original definition"
3026 function)
3c442f8b 3027 (ad-clear-advicefunname-definition function)
ee7bf2ad
RM
3028 (ad-set-advice-info-field function 'active nil)
3029 (eval (ad-make-hook-form function 'deactivation))
3030 function)))))
3031
3032(defun ad-update (function &optional compile)
3033 "Update the advised definition of FUNCTION if its advice is active.
5f6bb68a 3034See `ad-activate' for documentation on the optional COMPILE argument."
ee7bf2ad
RM
3035 (interactive
3036 (list (ad-read-advised-function
5b76833f 3037 "Update advised definition of" 'ad-is-active)))
ee7bf2ad 3038 (if (ad-is-active function)
5f6bb68a 3039 (ad-activate function compile)))
ee7bf2ad
RM
3040
3041(defun ad-unadvise (function)
850da9d0 3042 "Deactivate FUNCTION and then remove all its advice information.
ee7bf2ad
RM
3043If FUNCTION was not advised this will be a noop."
3044 (interactive
5b76833f 3045 (list (ad-read-advised-function "Unadvise function")))
ee7bf2ad
RM
3046 (cond ((ad-is-advised function)
3047 (if (ad-is-active function)
3048 (ad-deactivate function))
3c442f8b 3049 (ad-clear-advicefunname-definition function)
ee7bf2ad
RM
3050 (ad-set-advice-info function nil)
3051 (ad-pop-advised-function function))))
3052
3053(defun ad-recover (function)
850da9d0
RS
3054 "Try to recover FUNCTION's original definition, and unadvise it.
3055This is more low-level than `ad-unadvise' in that it does not do
07c8b450 3056deactivation, which might run hooks and get into other trouble.
ee7bf2ad
RM
3057Use in emergencies."
3058 ;; Use more primitive interactive behavior here: Accept any symbol that's
3059 ;; currently defined in obarray, not necessarily with a function definition:
3060 (interactive
3061 (list (intern
3062 (completing-read "Recover advised function: " obarray nil t))))
3063 (cond ((ad-is-advised function)
3c442f8b 3064 (ad-clear-advicefunname-definition function)
ee7bf2ad
RM
3065 (ad-set-advice-info function nil)
3066 (ad-pop-advised-function function))))
3067
3068(defun ad-activate-regexp (regexp &optional compile)
850da9d0
RS
3069 "Activate functions with an advice name containing a REGEXP match.
3070This activates the advice for each function
3071that has at least one piece of advice whose name includes a match for REGEXP.
5f6bb68a 3072See `ad-activate' for documentation on the optional COMPILE argument."
ee7bf2ad 3073 (interactive
5b76833f 3074 (list (ad-read-regexp "Activate via advice regexp")
ee7bf2ad
RM
3075 current-prefix-arg))
3076 (ad-do-advised-functions (function)
3077 (if (ad-find-some-advice function 'any regexp)
5f6bb68a 3078 (ad-activate function compile))))
ee7bf2ad
RM
3079
3080(defun ad-deactivate-regexp (regexp)
850da9d0
RS
3081 "Deactivate functions with an advice name containing REGEXP match.
3082This deactivates the advice for each function
3083that has at least one piece of advice whose name includes a match for REGEXP."
ee7bf2ad 3084 (interactive
5b76833f 3085 (list (ad-read-regexp "Deactivate via advice regexp")))
ee7bf2ad
RM
3086 (ad-do-advised-functions (function)
3087 (if (ad-find-some-advice function 'any regexp)
3088 (ad-deactivate function))))
3089
3090(defun ad-update-regexp (regexp &optional compile)
fce44373 3091 "Update functions with an advice name containing a REGEXP match.
850da9d0
RS
3092This reactivates the advice for each function
3093that has at least one piece of advice whose name includes a match for REGEXP.
5f6bb68a 3094See `ad-activate' for documentation on the optional COMPILE argument."
ee7bf2ad 3095 (interactive
5b76833f 3096 (list (ad-read-regexp "Update via advice regexp")
ee7bf2ad
RM
3097 current-prefix-arg))
3098 (ad-do-advised-functions (function)
3099 (if (ad-find-some-advice function 'any regexp)
3100 (ad-update function compile))))
3101
3102(defun ad-activate-all (&optional compile)
850da9d0 3103 "Activate all currently advised functions.
5f6bb68a 3104See `ad-activate' for documentation on the optional COMPILE argument."
ee7bf2ad
RM
3105 (interactive "P")
3106 (ad-do-advised-functions (function)
5f6bb68a 3107 (ad-activate function compile)))
ee7bf2ad
RM
3108
3109(defun ad-deactivate-all ()
850da9d0 3110 "Deactivate all currently advised functions."
ee7bf2ad
RM
3111 (interactive)
3112 (ad-do-advised-functions (function)
3113 (ad-deactivate function)))
3114
3115(defun ad-update-all (&optional compile)
fce44373
DL
3116 "Update all currently advised functions.
3117With prefix argument, COMPILE resulting advised definitions."
ee7bf2ad
RM
3118 (interactive "P")
3119 (ad-do-advised-functions (function)
3120 (ad-update function compile)))
3121
3122(defun ad-unadvise-all ()
850da9d0 3123 "Unadvise all currently advised functions."
ee7bf2ad
RM
3124 (interactive)
3125 (ad-do-advised-functions (function)
3126 (ad-unadvise function)))
3127
3128(defun ad-recover-all ()
850da9d0
RS
3129 "Recover all currently advised functions. Use in emergencies.
3130To recover a function means to try to find its original (pre-advice)
3131definition, and delete all advice.
3132This is more low-level than `ad-unadvise' in that it does not do
3133deactivation, which might run hooks and get into other trouble."
ee7bf2ad
RM
3134 (interactive)
3135 (ad-do-advised-functions (function)
6e2f6f45 3136 (condition-case nil
ee7bf2ad
RM
3137 (ad-recover function)
3138 (error nil))))
3139
3140
bece3937 3141;; Completion alist of valid `defadvice' flags
ee7bf2ad 3142(defvar ad-defadvice-flags
6e2f6f45 3143 '(("protect") ("disable") ("activate")
7db1bda8 3144 ("compile") ("preactivate")))
ee7bf2ad
RM
3145
3146;;;###autoload
3147(defmacro defadvice (function args &rest body)
fce44373 3148 "Define a piece of advice for FUNCTION (a symbol).
6e2f6f45
RS
3149The syntax of `defadvice' is as follows:
3150
fce44373 3151 \(defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
6e2f6f45 3152 [DOCSTRING] [INTERACTIVE-FORM]
287a387c 3153 BODY...)
6e2f6f45
RS
3154
3155FUNCTION ::= Name of the function to be advised.
3156CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
3157NAME ::= Non-nil symbol that names this piece of advice.
3158POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
3159 see also `ad-add-advice'.
3160ARGLIST ::= An optional argument list to be used for the advised function
3161 instead of the argument list of the original. The first one found in
3162 before/around/after-advices will be used.
7db1bda8 3163FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'.
ee7bf2ad 3164 All flags can be specified with unambiguous initial substrings.
6e2f6f45
RS
3165DOCSTRING ::= Optional documentation for this piece of advice.
3166INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
3167 function. The first one found in before/around/after-advices will be used.
3168BODY ::= Any s-expression.
ee7bf2ad
RM
3169
3170Semantics of the various flags:
3171`protect': The piece of advice will be protected against non-local exits in
6e2f6f45
RS
3172any code that precedes it. If any around-advice of a function is protected
3173then automatically all around-advices will be protected (the complete onion).
ee7bf2ad
RM
3174
3175`activate': All advice of FUNCTION will be activated immediately if
6e2f6f45 3176FUNCTION has been properly defined prior to this application of `defadvice'.
ee7bf2ad
RM
3177
3178`compile': In conjunction with `activate' specifies that the resulting
3179advised function should be compiled.
3180
fce44373 3181`disable': The defined advice will be disabled, hence, it will not be used
ee7bf2ad
RM
3182during activation until somebody enables it.
3183
6e2f6f45
RS
3184`preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
3185time. This generates a compiled advised definition according to the current
3186advice state that will be used during activation if appropriate. Only use
3187this if the `defadvice' gets actually compiled.
ee7bf2ad 3188
7aefbb06
RS
3189See Info node `(elisp)Advising Functions' for comprehensive documentation.
3190usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
3191 [DOCSTRING] [INTERACTIVE-FORM]
3192 BODY...)"
2de39f08
SM
3193 (declare (doc-string 3)
3194 (debug (&define name ;; thing being advised.
3195 (name ;; class is [&or "before" "around" "after"
3196 ;; "activation" "deactivation"]
3197 name ;; name of advice
3198 &rest sexp ;; optional position and flags
3199 )
3200 [&optional stringp]
3201 [&optional ("interactive" interactive)]
3202 def-body)))
ee7bf2ad 3203 (if (not (ad-name-p function))
2036d16f 3204 (error "defadvice: Invalid function name: %s" function))
ee7bf2ad
RM
3205 (let* ((class (car args))
3206 (name (if (not (ad-class-p class))
2036d16f 3207 (error "defadvice: Invalid advice class: %s" class)
8a946354 3208 (nth 1 args)))
ee7bf2ad 3209 (position (if (not (ad-name-p name))
2036d16f 3210 (error "defadvice: Invalid advice name: %s" name)
8a946354
SS
3211 (setq args (nthcdr 2 args))
3212 (if (ad-position-p (car args))
3213 (prog1 (car args)
3214 (setq args (cdr args))))))
ee7bf2ad
RM
3215 (arglist (if (listp (car args))
3216 (prog1 (car args)
3217 (setq args (cdr args)))))
3218 (flags
3219 (mapcar
3220 (function
3221 (lambda (flag)
8a946354
SS
3222 (let ((completion
3223 (try-completion (symbol-name flag) ad-defadvice-flags)))
3224 (cond ((eq completion t) flag)
3225 ((assoc completion ad-defadvice-flags)
3226 (intern completion))
3227 (t (error "defadvice: Invalid or ambiguous flag: %s"
3228 flag))))))
ee7bf2ad
RM
3229 args))
3230 (advice (ad-make-advice
3231 name (memq 'protect flags)
3232 (not (memq 'disable flags))
8a946354 3233 `(advice lambda ,arglist ,@body)))
ee7bf2ad
RM
3234 (preactivation (if (memq 'preactivate flags)
3235 (ad-preactivate-advice
fabaa9b5 3236 function advice class position))))
ee7bf2ad 3237 ;; Now for the things to be done at evaluation time:
7db1bda8
SM
3238 `(progn
3239 (ad-add-advice ',function ',advice ',class ',position)
3240 ,@(if preactivation
3241 `((ad-set-cache
3242 ',function
3243 ;; the function will get compiled:
671d5c16 3244 ,(cond ((macrop (car preactivation))
7db1bda8
SM
3245 `(ad-macrofy
3246 (function
3247 ,(ad-lambdafy
3248 (car preactivation)))))
3249 (t `(function
3250 ,(car preactivation))))
3251 ',(car (cdr preactivation)))))
3252 ,@(if (memq 'activate flags)
3253 `((ad-activate ',function
3254 ,(if (memq 'compile flags) t))))
3255 ',function)))
ee7bf2ad
RM
3256
3257
3258;; @@ Tools:
3259;; =========
3260
3261(defmacro ad-with-originals (functions &rest body)
fce44373 3262 "Binds FUNCTIONS to their original definitions and execute BODY.
ee7bf2ad 3263For any members of FUNCTIONS that are not currently advised the rebinding will
6e2f6f45 3264be a noop. Any modifications done to the definitions of FUNCTIONS will be
ee7bf2ad 3265undone on exit of this macro."
aaf0c300 3266 (declare (indent 1))
ee7bf2ad
RM
3267 (let* ((index -1)
3268 ;; Make let-variables to store current definitions:
3269 (current-bindings
3270 (mapcar (function
3271 (lambda (function)
8a946354
SS
3272 (setq index (1+ index))
3273 (list (intern (format "ad-oRiGdEf-%d" index))
3274 `(symbol-function ',function))))
ee7bf2ad 3275 functions)))
8a946354
SS
3276 `(let ,current-bindings
3277 (unwind-protect
3278 (progn
3279 ,@(progn
3280 ;; Make forms to redefine functions to their
3281 ;; original definitions if they are advised:
3282 (setq index -1)
6858633a
SM
3283 (mapcar (lambda (function)
3284 (setq index (1+ index))
32e5c58c 3285 `(fset ',function
6858633a
SM
3286 (or (ad-get-orig-definition ',function)
3287 ,(car (nth index current-bindings)))))
3288 functions))
8a946354
SS
3289 ,@body)
3290 ,@(progn
3291 ;; Make forms to back-define functions to the definitions
3292 ;; they had outside this macro call:
3293 (setq index -1)
6858633a
SM
3294 (mapcar (lambda (function)
3295 (setq index (1+ index))
32e5c58c 3296 `(fset ',function
6858633a
SM
3297 ,(car (nth index current-bindings))))
3298 functions))))))
ee7bf2ad 3299
ee7bf2ad 3300
ee7bf2ad
RM
3301;; @@ Starting, stopping and recovering from the advice package magic:
3302;; ===================================================================
3303
ee7bf2ad 3304(defun ad-recover-normality ()
fce44373 3305 "Undo all advice related redefinitions and unadvises everything.
ee7bf2ad
RM
3306Use only in REAL emergencies."
3307 (interactive)
ee7bf2ad 3308 (ad-recover-all)
6858633a
SM
3309 (ad-do-advised-functions (function)
3310 (message "Oops! Left over advised function %S" function)
3311 (ad-pop-advised-function function)))
ee7bf2ad 3312
ee7bf2ad
RM
3313(provide 'advice)
3314
3315;;; advice.el ends here