1/* Part of SWI-Prolog 2 3 Author: Jan Wielemaker 4 E-mail: J.Wielemaker@vu.nl 5 WWW: http://www.swi-prolog.org 6 Copyright (c) 2019-2020, VU University Amsterdam 7 All rights reserved. 8 9 Redistribution and use in source and binary forms, with or without 10 modification, are permitted provided that the following conditions 11 are met: 12 13 1. Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 16 2. Redistributions in binary form must reproduce the above copyright 17 notice, this list of conditions and the following disclaimer in 18 the documentation and/or other materials provided with the 19 distribution. 20 21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 29 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 31 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 POSSIBILITY OF SUCH DAMAGE. 33*/ 34 35:- module(prolog_wrap, 36 [ wrap_predicate/4, % :Head, +Name, -Wrapped, +Body 37 unwrap_predicate/2, % :PI, ?Name 38 current_predicate_wrapper/4 % :Head, -Name, -Wrapped, -Body 39 ]). 40:- autoload(library(lists),[member/2]). 41:- autoload(library(pairs),[pairs_keys/2]). 42 43 44:- meta_predicate 45 wrap_predicate( , , , ), 46% unwrap_predicate(:, ?), 47 current_predicate_wrapper( , , , ).
call(Closure(A1, ...))
Name names the wrapper for inspection using predicate_property/2 or deletion using unwrap_predicate/2. If Head has a wrapper with Name the Body of the existing wrapper is updated without changing the order of the registered wrappers. The same predicate may be wrapped multiple times. Multiple wrappers are executed starting with the last registered (outermost).
The predicate referenced by Head does not need to be defined at the moment the wrapper is installed. If Head is undefined, the predicate is created instead of searched for using e.g., the auto loader.
Registered wrappers are not part of saved states (see qsave_program/2) and thus need to be re-registered, for example using initialization/1.
An example of using wrap_predicate/4 for computing GCD:
:- wrap_predicate(gcd(A,B,Gcd), gcd_wrap, W, gcd_wrap(W, A, B, Gcd)). gcd(X, Y, Gcd), X < Y => gcd(X, Y-X, Gcd). gcd(X, Y, Gcd), X > Y => gcd(Y, X-Y, Gcd). gcd(X, _, Gcd) => Gcd = X. gcd_wrap(call(Closure), X, Y, Gcd) :- functor(Closure, ClosureBlob, 3), X_eval is X, Y_eval is Y, call(ClosureBlob, X_eval, Y_eval, Gcd).
or (less efficient):
gcd_wrap(call(Closure), X, Y, Gcd) :- functor(Closure, ClosureBlob, 3), call(ClosureBlob, X_eval, Y_eval, G), Gcd is G.
104wrap_predicate(M:Head, WName, Wrapped, Body) :-
105 '$wrap_predicate'(M:Head, WName, _Closure, Wrapped, Body).
Wrappers are enumerated starting with the first registered (innermost) wrapper.
121current_predicate_wrapper(M:Head, Name, Wrapped, Body) :- 122 '$wrapped_predicate'(M:Head, Pairs), 123 Head =.. [_|Args], 124 member(Name-CRef, Pairs), 125 clause(M:, Body0, CRef), 126 WHead =.. [_|Args], 127 body_closure(Body0, Wrapped, Body). 128 129body_closure(call(ClosureTerm), Wrapped, Wrapped) :- 130 callable(ClosureTerm), 131 functor(ClosureTerm, Closure, _Arity), 132 blob(Closure, closure), 133 !. 134body_closure(Body0, Wrapped, Body) :- 135 compound(Body0), 136 !, 137 compound_name_arity(Body0, Name, Arity), 138 compound_name_arity(Body, Name, Arity), 139 body_closure_args(0, Arity, Body0, Wrapped, Body). 140body_closure(Body, _, Body). 141 142body_closure_args(I, Arity, Body0, Closure, Body) :- 143 I < Arity, 144 !, 145 I2 is I+1, 146 arg(I2, Body0, Arg0), 147 arg(I2, Body, Arg), 148 body_closure(Arg0, Closure, Arg), 149 body_closure_args(I2, Arity, Body0, Closure, Body). 150body_closure_args(_, _, _, _, _). 151 152 153% Not for public docs! 154% '$syspreds':'$predicate_property'(?Property, +Value) is nondet. 155% 156% Extend predicate_property/2 to provide the `wrapped` property 157 158:- multifile 159 '$syspreds':'$predicate_property'/2. 160 161'$syspreds''$predicate_property'(wrapped(List), Pred) :- 162 '$wrapped_predicate'(Pred, Pairs), 163 pairs_keys(Pairs, List)
Wrapping predicates
This library allows adding wrappers to predicates. The notion of wrappers is known in various languages under several names. For example Logtalk knows these as before methods or after methods and Python has decorators. A SWI-Prolog wrapper is a body term that normally calls the original wrapped definition somewhere. */