forked from SWI-Prolog/packages-pldoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc_library.pl
104 lines (90 loc) · 3.08 KB
/
doc_library.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
/* $Id$
Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (C): 1985-2010, University of Amsterdam,
VU University Amsterdam
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module(pldoc_library,
[ doc_load_library/0
]).
%% doc_load_library
%
% Load the SWI-Prolog library, so we can access all comments from
% the library.
doc_load_library :-
set_prolog_flag(verbose_load, false),
absolute_file_name(swi(library), Dir, [file_type(directory)]),
load_all(Dir).
load_all([]) :- !.
load_all([H|T]) :-
load_all(H), !,
load_all(T).
load_all(Dir0) :-
atom(Dir0),
expand_file_name(Dir0, [Dir1]),
downcase_atom(Dir1, Dir), % Deal with Windows
\+ ( blocked(Blocked),
sub_atom(Dir, _, _, 0, Blocked)
),
exists_directory(Dir), !,
atom_concat(Dir, '/*', Pattern),
expand_file_name(Pattern, Contents),
load_all(Contents).
load_all(File) :-
atom(File),
file_name_extension(_, pl, File),
downcase_atom(File, LwrCase),
\+ ( blocked(Blocked),
sub_atom(LwrCase, _, _, 0, Blocked)
), !,
use_module(File, []).
load_all(Spec) :-
compound(Spec), !,
forall(absolute_file_name(Spec, Path,
[ access(read),
file_errors(fail)
]),
load_all(Path)).
load_all(_).
%% blocked(+Path) is semidet.
%
% True if file or directory should not be loaded. Note that file
% from the directory chr are already loaded by chr.pl. Similar
% arguments apply for a few others.
%
% @bug We force lowercase to make it also work on Windows
blocked('/chr').
blocked('/clpq').
blocked('/clpr').
blocked('/pldoc').
blocked('/ciao').
blocked('/checkselect.pl').
blocked('/checklast.pl').
blocked('/clp/clp_distinct.pl'). % deprecated file
%blocked('/jpl.pl'). % should be added
blocked('/pldoc.pl').
blocked('/index.pl').
blocked('/ciao.pl'). % is an include-file. We must
% find a more general solution here
blocked('/commons.pl').
blocked('/swipl-lfr.pl').
blocked('/dcg_basics.pl'). % deprecated file