-
Notifications
You must be signed in to change notification settings - Fork 0
/
prolog_code.pl
235 lines (200 loc) · 7.3 KB
/
prolog_code.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2019, VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(prolog_code,
[ comma_list/2, % (A,B) <-> [A,B]
semicolon_list/2, % (A;B) <-> [A,B]
mkconj/3, % +A, +B, -Conjunction
mkdisj/3, % +A, +B, -Disjunction
pi_head/2, % :PI, :Head
head_name_arity/3, % ?Goal, ?Name, ?Arity
most_general_goal/2, % :Goal, -General
predicate_label/2, % +PI, -Label
predicate_sort_key/2 % +PI, -Key
]).
:- use_module(library(error)).
:- multifile
user:prolog_predicate_name/2.
/** <module> Utilities for reasoning about code
This library collects utilities to reason about terms commonly needed
for reasoning about Prolog code. Note that many related facilities can
be found in the core as well as other libraries:
- =@=/2, subsumes_term/2, etc.
- library(occurs)
- library(listing)
- library(prolog_source)
- library(prolog_xref)
- library(prolog_codewalk)
*/
%! comma_list(?CommaList, ?List).
%! semicolon_list(?SemicolonList, ?List).
%
% True if CommaList is a nested term over the ','/2 (';'/2) functor
% and List is a list expressing the elements of the conjunction. The
% predicate is deterministic if at least CommaList or List is
% sufficiently instantiated. If both are partial structures it
% enumerates ever growing conjunctions and lists. CommaList may be
% left or right associative on input. When generated, the CommaList is
% always right associative.
%
% This predicate is typically used to reason about Prolog conjunctions
% (disjunctions) as many operations are easier on lists than on binary
% trees over some operator.
comma_list(CommaList, List) :-
phrase(binlist(CommaList, ','), List).
semicolon_list(CommaList, List) :-
phrase(binlist(CommaList, ';'), List).
binlist(Term, Functor) -->
{ nonvar(Term) },
!,
( { Term =.. [Functor,A,B] }
-> binlist(A, Functor),
binlist(B, Functor)
; [Term]
).
binlist(Term, Functor) -->
[A],
( var_tail
-> ( { Term = A }
; { Term =.. [Functor,A,B] },
binlist(B,Functor)
)
; \+ [_]
-> {Term = A}
; binlist(B,Functor),
{Term =.. [Functor,A,B]}
).
var_tail(H, H) :-
var(H).
%! mkconj(A,B,Conj) is det.
%! mkdisj(A,B,Disj) is det.
%
% Create a conjunction or disjunction from two terms. Reduces on
% `true`.
mkconj(A,B,Conj) :-
( is_true(A)
-> Conj = B
; is_true(B)
-> Conj = A
; Conj = (A,B)
).
mkdisj(A,B,Conj) :-
( is_false(A)
-> Conj = B
; is_false(B)
-> Conj = A
; Conj = (A;B)
).
is_true(Goal) :- Goal == true.
is_false(Goal) :- (Goal == false -> true ; Goal == fail).
%! pi_head(?PredicateIndicator, ?Goal) is det.
%
% Translate between a PredicateIndicator and a Goal term. The terms
% may have a module qualification.
%
% @error type_error(predicate_indicator, PredicateIndicator)
pi_head(PI, Head) :-
'$pi_head'(PI, Head).
%! head_name_arity(?Goal, ?Name, ?Arity) is det.
%
% Similar to functor/3, but deals with SWI-Prolog's zero-argument
% callable terms and avoids creating a non-callable term if Name is
% not an atom and Arity is zero.
head_name_arity(Goal, Name, Arity) :-
'$head_name_arity'(Goal, Name, Arity).
%! most_general_goal(+Goal, -General) is det.
%
% General is the most general version of Goal. Goal can be qualified.
%
% @see is_most_general_term/1.
most_general_goal(Goal, General) :-
var(Goal),
!,
General = Goal.
most_general_goal(Goal, General) :-
atom(Goal),
!,
General = Goal.
most_general_goal(M:Goal, M:General) :-
!,
most_general_goal(Goal, General).
most_general_goal(Compound, General) :-
compound_name_arity(Compound, Name, Arity),
compound_name_arity(General, Name, Arity).
/*******************************
* LABELS *
*******************************/
%! predicate_label(++PI, -Label) is det.
%
% Create a human-readable label for the given predicate indicator.
% This notably hides the module qualification from `user` and built-in
% predicates. This predicate is intended for reporting predicate
% information to the user, for example in the profiler.
%
% First PI is converted to a _head_ and the hook
% user:prolog_predicate_name/2 is tried.
predicate_label(PI, Label) :-
must_be(ground, PI),
pi_head(PI, Head),
user:prolog_predicate_name(Head, Label),
!.
predicate_label(M:Name/Arity, Label) :-
!,
( hidden_module(M, Name/Arity)
-> atomic_list_concat([Name, /, Arity], Label)
; atomic_list_concat([M, :, Name, /, Arity], Label)
).
predicate_label(M:Name//Arity, Label) :-
!,
( hidden_module(M, Name//Arity)
-> atomic_list_concat([Name, //, Arity], Label)
; atomic_list_concat([M, :, Name, //, Arity], Label)
).
predicate_label(Name/Arity, Label) :-
!,
atomic_list_concat([Name, /, Arity], Label).
predicate_label(Name//Arity, Label) :-
!,
atomic_list_concat([Name, //, Arity], Label).
hidden_module(system, _).
hidden_module(user, _).
hidden_module(M, Name/Arity) :-
functor(H, Name, Arity),
predicate_property(system:H, imported_from(M)).
hidden_module(M, Name//DCGArity) :-
Arity is DCGArity+1,
functor(H, Name, Arity),
predicate_property(system:H, imported_from(M)).
%! predicate_sort_key(+PI, -Key) is det.
%
% Key is the (module-free) name of the predicate for sorting purposes.
predicate_sort_key(_:PI, Name) :-
!,
predicate_sort_key(PI, Name).
predicate_sort_key(Name/_Arity, Name).
predicate_sort_key(Name//_Arity, Name).