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
|
% -----------------------------------------------------------------------------
% (C) Altran Praxis Limited
% -----------------------------------------------------------------------------
%
% The SPARK toolset is free software; you can redistribute it and/or modify it
% under terms of the GNU General Public License as published by the Free
% Software Foundation; either version 3, or (at your option) any later
% version. The SPARK toolset 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 distributed with the SPARK toolset; see file
% COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy of
% the license.
%
% =============================================================================
read_initialisations :-
spade_checker_prefix(SPADE_CHECKER), /* CFR048 */
append(SPADE_CHECKER, "checker.ini", INILIST), /* CFR048 */
name(INIFILE, INILIST), /* CFR048 */
read_init_file(INIFILE). /* CFR048 */
read_initialisations :-
read_init_file('checker.ini'). /* CFR048 */
read_initialisations.
read_init_file(FILE) :-
file_exists_and_is_readable(FILE),
!,
repeat,
see(FILE),
read_term_and_layout(DECLARATION),
process_initialisation(DECLARATION),
/* UNTIL */ DECLARATION == end_of_file,
seen,
!,
fail.
/* Don't fail as it looks for two files - one in rules dir, one in current dir */
/* It will use both if it finds both */
read_init_file(FILE) :-
\+ file_exists_and_is_readable(FILE),
fail.
process_initialisation(DECLARATION) :-
var(DECLARATION),
!,
write('!!! PROLOG VAR IN INITIALISATION FILE'),
nl,
!.
process_initialisation(end_of_file) :- !.
process_initialisation(DECLARATION) :-
\+ novars(DECLARATION),
!,
write('!!! PROLOG VAR IN INITIALISATION FILE'),
nl,
!.
process_initialisation(set memory_limit to VALUE) :-
integer(VALUE),
!,
(
VALUE >= 250000,
set_memory_limit(VALUE)
;
write('WARNING: Memory limit value too small'),
!,
fail
), !.
process_initialisation(set FLAG to VALUE) :-
is_a_flag(FLAG, VALUETYPE),
ok_value(VALUE, VALUETYPE),
OLD =.. [FLAG, _],
NEW =.. [FLAG, VALUE],
!,
retractall(OLD),
asserta(NEW),
!.
process_initialisation(set FLAG to VALUE) :-
is_a_flag(FLAG, _VALUETYPE),
!,
write('!!! INITIALISATION: '),
print(VALUE),
write(' is not of appropriate type for '),
print(FLAG),
nl,
!.
process_initialisation(set FLAG to _VALUE) :-
!,
write('!!! INITIALISATION: '),
print(FLAG),
write(' is not a user-configurable flag.'),
nl,
!.
process_initialisation(consult FILE) :-
atom(FILE),
!,
maybe_add(ini_file_consult(FILE)), /* CFR021 */
!.
is_a_flag(display_subgoals_max, integer/0/99).
is_a_flag(display_var_free_only, boolean).
is_a_flag(echo, boolean).
is_a_flag(auto_done, boolean).
is_a_flag(simplify_in_infer, boolean).
is_a_flag(simplify_during_load, boolean).
is_a_flag(typechecking, boolean).
is_a_flag(typechecking_during_load, boolean).
is_a_flag(prooflog_width, integer/80/255).
is_a_flag(record_consults, boolean).
is_a_flag(inverse_video, int_list/integer).
is_a_flag(normal_video, int_list/integer).
is_a_flag(use_subst_rules_for_equality, boolean).
is_a_flag(command_logging, boolean). /* CFR032 */
is_a_flag(show_vc_changes, boolean). /* CFR032 */
is_a_flag(auto_newvc, boolean). /* CFR032 */
is_a_flag(newline_after_prompts, boolean). /* CFR1334 */
is_a_flag(indentation_increment, integer/0/EOL) :- eol_char(EOL).
is_a_flag(replace_more, boolean).
is_a_flag(auto_infer_from_false, boolean).
ok_value(on, boolean).
ok_value(off, boolean).
ok_value(0, integer/_A/_B).
ok_value(NUM, integer/A/B) :- integer(NUM), NUM>=A, NUM =< B.
ok_value([H|T], int_list/X) :-
integer(H), 0 < H, H < 128, !, ok_value(T, int_list/X).
ok_value([], int_list/_X).
%###############################################################################
%END-OF-FILE
|