2001-04-09 20:54:03 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* *
|
|
|
|
* YAP Prolog *
|
|
|
|
* *
|
|
|
|
* Yap Prolog was developed at NCCUP - Universidade do Porto *
|
|
|
|
* *
|
|
|
|
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
|
|
|
|
* *
|
|
|
|
**************************************************************************
|
|
|
|
* *
|
|
|
|
* File: boot.yap *
|
|
|
|
* Last rev: 8/2/88 *
|
|
|
|
* mods: *
|
|
|
|
* comments: boot file for Prolog *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
% This one should come first so that disjunctions and long distance
|
|
|
|
% cuts are compiled right with co-routining.
|
|
|
|
%
|
2002-03-08 06:33:16 +00:00
|
|
|
|
|
|
|
true :- true.
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$live' :-
|
|
|
|
'$init_system',
|
2002-01-16 22:11:55 +00:00
|
|
|
'$do_live'.
|
|
|
|
|
|
|
|
'$do_live' :-
|
2001-04-09 20:54:03 +01:00
|
|
|
repeat,
|
2001-09-21 18:08:36 +01:00
|
|
|
'$set_input'(user),'$set_output'(user),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$current_module'(Module),
|
|
|
|
( Module=user ->
|
|
|
|
'$compile_mode'(_,0)
|
|
|
|
;
|
|
|
|
'$format'(user_error,"[~w]~n", [Module])
|
|
|
|
),
|
2002-01-07 06:28:04 +00:00
|
|
|
'$system_catch'('$enter_top_level',Module,Error,user:'$Error'(Error)).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-01-11 15:54:17 +00:00
|
|
|
read_sig :-
|
|
|
|
recorded('$sig_handler',X,_),
|
|
|
|
writeq(X),nl,
|
|
|
|
fail.
|
|
|
|
read_sig.
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$init_system' :-
|
2002-01-17 16:20:36 +00:00
|
|
|
% do catch as early as possible
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
|
|
|
'$access_yap_flags'(15, 0) ->
|
|
|
|
'$version'
|
|
|
|
;
|
|
|
|
true
|
|
|
|
),
|
2002-01-11 15:54:17 +00:00
|
|
|
% If this is not here, the following get written twice in the idb. Why?
|
|
|
|
eraseall('$sig_handler'),
|
|
|
|
% The default interrupt handlers are kept, so that it's
|
|
|
|
% possible to revert to them with on_signal(S,_,default)
|
|
|
|
'$recordz'('$sig_handler',default(sig_hup,
|
|
|
|
(( exists('~/.yaprc') -> [-'~/.yaprc'] ; true ),
|
|
|
|
( exists('~/.prologrc') -> [-'~/.prologrc'] ; true ),
|
|
|
|
( exists('~/prolog.ini') -> [-'~/prolog.ini'] ; true ))), _),
|
|
|
|
'$recordz'('$sig_handler',default(sig_usr1,
|
|
|
|
(nl,writeq('[ Received user signal 1 ]'),nl,halt)), _),
|
|
|
|
'$recordz'('$sig_handler',default(sig_usr2,
|
|
|
|
(nl,writeq('[ Received user signal 2 ]'),nl,halt)), _),
|
|
|
|
% The current interrupt handlers are also set the default values
|
|
|
|
'$recordz'('$sig_handler',action(sig_hup,
|
|
|
|
(( exists('~/.yaprc') -> [-'~/.yaprc'] ; true ),
|
|
|
|
( exists('~/.prologrc') -> [-'~/.prologrc'] ; true ),
|
|
|
|
( exists('~/prolog.ini') -> [-'~/prolog.ini'] ; true ))), _),
|
|
|
|
'$recordz'('$sig_handler',action(sig_usr1,
|
|
|
|
(nl,writeq('[ Received user signal 1 ]'),nl,halt)), _),
|
|
|
|
'$recordz'('$sig_handler',action(sig_usr2,
|
|
|
|
(nl,writeq('[ Received user signal 2 ]'),nl,halt)), _),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$set_yap_flags'(10,0),
|
|
|
|
'$set_value'('$gc',on),
|
2002-01-22 17:11:36 +00:00
|
|
|
'$set_value'('$verbose',on),
|
2001-04-09 20:54:03 +01:00
|
|
|
prompt(' ?- '),
|
|
|
|
(
|
|
|
|
'$get_value'('$break',0)
|
|
|
|
->
|
2002-06-05 02:34:06 +01:00
|
|
|
% '$set_read_error_handler'(error), let the user do that
|
2001-04-09 20:54:03 +01:00
|
|
|
% after an abort, make sure all spy points are gone.
|
|
|
|
'$clean_debugging_info',
|
|
|
|
% simple trick to find out if this is we are booting from Prolog.
|
|
|
|
'$get_value'('$user_module',V),
|
|
|
|
( V = [] ->
|
|
|
|
'$current_module'(_,prolog)
|
|
|
|
;
|
|
|
|
'$current_module'(_,V), '$compile_mode'(_,0),
|
2002-01-27 20:40:10 +00:00
|
|
|
('$access_yap_flags'(16,0) ->
|
|
|
|
( exists('~/.yaprc') -> [-'~/.yaprc'] ; true ),
|
|
|
|
( exists('~/.prologrc') -> [-'~/.prologrc'] ; true ),
|
|
|
|
( exists('~/prolog.ini') -> [-'~/prolog.ini'] ; true )
|
|
|
|
;
|
|
|
|
true
|
|
|
|
)
|
2001-04-09 20:54:03 +01:00
|
|
|
),
|
2001-06-08 20:10:43 +01:00
|
|
|
'$db_clean_queues'(0),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$startup_reconsult',
|
|
|
|
'$startup_goals'
|
|
|
|
;
|
|
|
|
true
|
|
|
|
).
|
|
|
|
|
2002-01-11 15:54:17 +00:00
|
|
|
|
|
|
|
%
|
2001-04-09 20:54:03 +01:00
|
|
|
% encapsulate $cut_by because of co-routining.
|
|
|
|
%
|
|
|
|
'$cut_by'(X) :- '$$cut_by'(X).
|
|
|
|
|
|
|
|
% Start file for yap
|
|
|
|
|
|
|
|
/* I/O predicates */
|
|
|
|
|
|
|
|
/* meaning of flags for '$write' is
|
|
|
|
1 quote illegal atoms
|
|
|
|
2 ignore operator declarations
|
|
|
|
4 output '$VAR'(N) terms as A, B, C, ...
|
|
|
|
8 use portray(_)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* main execution loop */
|
2002-06-17 16:28:01 +01:00
|
|
|
'$read_vars'(Stream,T,Pos,V) :-
|
|
|
|
'$read'(true,T,V,Pos,Err,Stream),
|
2002-06-05 02:22:57 +01:00
|
|
|
(nonvar(Err) ->
|
|
|
|
'$print_message'(error,Err), fail
|
|
|
|
;
|
|
|
|
true
|
|
|
|
).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-08-13 10:19:00 +01:00
|
|
|
% reset alarms when entering top-level.
|
|
|
|
'$enter_top_level' :-
|
|
|
|
'$alarm'(0, _),
|
|
|
|
fail.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$enter_top_level' :-
|
|
|
|
'$clean_up_dead_clauses',
|
|
|
|
fail.
|
|
|
|
'$enter_top_level' :-
|
|
|
|
'$recorded'('$restore_goal',G,R),
|
|
|
|
erase(R),
|
|
|
|
prompt(_,' | '),
|
2002-01-07 06:28:04 +00:00
|
|
|
'$system_catch'('$do_yes_no'((G->true),user),user,Error,user:'$Error'(Error)),
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
2001-08-08 22:17:27 +01:00
|
|
|
'$enter_top_level' :-
|
|
|
|
( '$get_value'('$trace', 1) ->
|
|
|
|
'$set_value'(spy_sl,0),
|
|
|
|
'$format'(user_error, "[trace]~n", [])
|
|
|
|
;
|
|
|
|
'$get_value'(debug, 1) ->
|
|
|
|
'$format'(user_error, "[debug]~n", [])
|
|
|
|
),
|
|
|
|
fail.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$enter_top_level' :-
|
|
|
|
prompt(_,' ?- '),
|
|
|
|
prompt(' | '),
|
2002-06-17 16:28:01 +01:00
|
|
|
'$read_vars'(user_input,Command,_,Varnames),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$set_value'(spy_sl,0),
|
|
|
|
'$set_value'(spy_fs,0),
|
|
|
|
'$set_value'(spy_sp,0),
|
|
|
|
'$set_value'(spy_gn,1),
|
2001-08-08 22:17:27 +01:00
|
|
|
( '$get_value'('$trace', 1) ->
|
|
|
|
'$set_yap_flags'(10,1)
|
|
|
|
;
|
|
|
|
'$set_yap_flags'(10,0)
|
|
|
|
),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$set_value'(spy_cl,1),
|
|
|
|
'$set_value'(spy_leap,0),
|
|
|
|
'$setflop'(0),
|
|
|
|
prompt(_,' |: '),
|
|
|
|
'$run_toplevel_hooks',
|
|
|
|
'$command'((?-Command),Varnames,top),
|
|
|
|
'$sync_mmapped_arrays',
|
|
|
|
'$set_value'('$live',false).
|
|
|
|
|
|
|
|
'$startup_goals' :-
|
|
|
|
'$recorded'('$startup_goal',G,_),
|
2002-01-07 06:28:04 +00:00
|
|
|
'$current_module'(Module),
|
|
|
|
'$system_catch'('$query'((G->true), []),Module,Error,user:'$Error'(Error)),
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$startup_goals'.
|
|
|
|
|
|
|
|
'$startup_reconsult' :-
|
|
|
|
'$get_value'('$consult_on_boot',X), X \= [], !,
|
|
|
|
'$do_startup_reconsult'(X).
|
|
|
|
'$startup_reconsult'.
|
|
|
|
|
|
|
|
%
|
|
|
|
% remove any debugging info after an abort.
|
|
|
|
%
|
|
|
|
'$clean_debugging_info' :-
|
|
|
|
'$recorded'('$spy',_,R),
|
|
|
|
erase(R),
|
|
|
|
fail.
|
|
|
|
'$clean_debugging_info'.
|
|
|
|
|
|
|
|
'$erase_sets' :-
|
|
|
|
eraseall('$'),
|
|
|
|
eraseall('$$set'),
|
|
|
|
eraseall('$$one'),
|
|
|
|
eraseall('$reconsulted'), fail.
|
|
|
|
'$erase_sets' :- \+ '$recorded'('$path',_,_), '$recorda'('$path',"",_).
|
|
|
|
'$erase_sets'.
|
|
|
|
|
|
|
|
'$version' :-
|
|
|
|
'$get_value'('$version_name',VersionName),
|
|
|
|
'$format'(user_error, "[ YAP version ~w ]~n", [VersionName]),
|
|
|
|
fail.
|
|
|
|
'$version' :- '$recorded'('$version',VersionName,_),
|
|
|
|
'$format'(user_error, "~w~n", [VersionName]),
|
|
|
|
fail.
|
|
|
|
'$version'.
|
|
|
|
|
|
|
|
repeat :- '$repeat'.
|
|
|
|
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat'.
|
|
|
|
'$repeat' :- '$repeat'.
|
|
|
|
|
|
|
|
'$start_corouts' :- '$recorded'('$corout','$corout'(Name,_,_),R), Name \= main, finish_corout(R),
|
|
|
|
fail.
|
|
|
|
'$start_corouts' :-
|
|
|
|
eraseall('$corout'),
|
|
|
|
eraseall('$result'),
|
|
|
|
eraseall('$actual'),
|
|
|
|
fail.
|
|
|
|
'$start_corouts' :- '$recorda'('$actual',main,_),
|
|
|
|
'$recordz'('$corout','$corout'(main,main,'$corout'([],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[])),_Ref),
|
|
|
|
'$recorda'('$result',going,_).
|
|
|
|
|
|
|
|
'$command'(C,VL,Con) :-
|
|
|
|
'$access_yap_flags'(9,1), !,
|
|
|
|
'$execute_command'(C,VL,Con).
|
|
|
|
'$command'(C,VL,Con) :-
|
|
|
|
( (Con = top ; var(C) ; C = [_|_]) ->
|
|
|
|
'$execute_command'(C,VL,Con) ;
|
|
|
|
expand_term(C, EC),
|
|
|
|
'$execute_commands'(EC,VL,Con)
|
|
|
|
).
|
|
|
|
|
|
|
|
%
|
|
|
|
% Hack in case expand_term has created a list of commands.
|
|
|
|
%
|
2002-01-02 16:55:24 +00:00
|
|
|
'$execute_commands'(V,_,_) :- var(V), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,meta_call(V)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$execute_commands'([],_,_) :- !, fail.
|
|
|
|
'$execute_commands'([C|_],VL,Con) :-
|
|
|
|
'$execute_command'(C,VL,Con).
|
|
|
|
'$execute_commands'([_|Cs],VL,Con) :- !,
|
|
|
|
'$execute_commands'(Cs,VL,Con).
|
|
|
|
'$execute_commands'(C,VL,Con) :-
|
|
|
|
'$execute_command'(C,VL,Con).
|
|
|
|
|
|
|
|
%
|
|
|
|
%
|
|
|
|
%
|
|
|
|
|
|
|
|
'$execute_command'(C,_,top) :- var(C), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,meta_call(C)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$execute_command'(end_of_file,_,_).
|
|
|
|
'$execute_command'(C,_,top) :- number(C), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,C),meta_call(C)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$execute_command'(R,_,top) :- db_reference(R), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,R),meta_call(R)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$execute_command'((:-G),_,Option) :- !,
|
2001-11-15 00:01:43 +00:00
|
|
|
'$current_module'(M),
|
|
|
|
'$process_directive'(G, Option, M),
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$execute_command'((?-G),V,_) :- !,
|
|
|
|
'$execute_command'(G,V,top).
|
|
|
|
'$execute_command'(G,V,Option) :- '$continue_with_command'(Option,V,G).
|
|
|
|
|
|
|
|
%
|
|
|
|
% This command is very different depending on the language mode we are in.
|
|
|
|
%
|
|
|
|
% ISO only wants directives in files
|
|
|
|
% SICStus accepts everything in files
|
|
|
|
% YAP accepts everything everywhere
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'(G, top, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$access_yap_flags'(8, 0), !, % YAP mode, go in and do it,
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'(G, consult, M).
|
|
|
|
'$process_directive'(G, top, _) :- !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(context_error((:- G),clause),query).
|
2001-04-09 20:54:03 +01:00
|
|
|
%
|
|
|
|
% always allow directives.
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'(D, Mode, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$directive'(D), !,
|
2001-11-15 00:01:43 +00:00
|
|
|
( '$exec_directive'(D, Mode, M) -> true ; true ).
|
2001-04-09 20:54:03 +01:00
|
|
|
%
|
|
|
|
% allow multiple directives
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'((G1,G2), Mode, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$all_directives'(G1),
|
|
|
|
'$all_directives'(G2), !,
|
2001-11-15 00:01:43 +00:00
|
|
|
'$exec_directives'(G1, Mode, M),
|
|
|
|
'$exec_directives'(G2, Mode, M).
|
|
|
|
%
|
|
|
|
% allow modules
|
|
|
|
%
|
|
|
|
'$process_directive'(M:G, Mode, _) :- !,
|
|
|
|
'$process_directive'(G, Mode, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
%
|
|
|
|
% ISO does not allow goals (use initialization).
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'(D, _, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$access_yap_flags'(8, 1), !, % ISO Prolog mode, go in and do it,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(context_error((:- M:D),query),directive).
|
2001-04-09 20:54:03 +01:00
|
|
|
%
|
|
|
|
% but YAP and SICStus does.
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$process_directive'(G, _, M) :-
|
2001-12-11 04:35:31 +00:00
|
|
|
( '$do_yes_no'(G,M) -> true ; '$format'(user_error,":- ~w:~w failed.~n",[M,G]) ).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-01-02 16:55:24 +00:00
|
|
|
'$all_directives'(_:G1) :- !,
|
2001-11-15 00:01:43 +00:00
|
|
|
'$all_directives'(G1).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$all_directives'((G1,G2)) :- !,
|
|
|
|
'$all_directives'(G1),
|
|
|
|
'$all_directives'(G2).
|
|
|
|
'$all_directives'(G) :- !,
|
|
|
|
'$directive'(G).
|
|
|
|
|
|
|
|
'$continue_with_command'(reconsult,V,G) :-
|
|
|
|
'$go_compile_clause'(G,V,5),
|
|
|
|
fail.
|
|
|
|
'$continue_with_command'(consult,V,G) :-
|
2001-09-27 15:01:16 +01:00
|
|
|
'$go_compile_clause'(G,V,13),
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$continue_with_command'(top,V,G) :-
|
|
|
|
'$query'(G,V).
|
|
|
|
|
|
|
|
%
|
|
|
|
% not 100% compatible with SICStus Prolog, as SICStus Prolog would put
|
|
|
|
% module prefixes all over the place, although unnecessarily so.
|
|
|
|
%
|
2001-11-23 14:42:06 +00:00
|
|
|
'$go_compile_clause'(Mod:G,V,N) :- !,
|
2001-11-15 00:01:43 +00:00
|
|
|
'$go_compile_clause'(G,V,N,Mod).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$go_compile_clause'((M:G :- B),V,N) :- !,
|
|
|
|
'$current_module'(M1),
|
|
|
|
(M1 = M ->
|
|
|
|
NG = (G :- B)
|
|
|
|
;
|
|
|
|
'$preprocess_clause_before_mod_change'((G:-B),M1,M,NG)
|
|
|
|
),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$go_compile_clause'(NG,V,N,M).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$go_compile_clause'(G,V,N) :-
|
2001-11-15 00:01:43 +00:00
|
|
|
'$current_module'(Mod),
|
|
|
|
'$go_compile_clause'(G,V,N,Mod).
|
|
|
|
|
|
|
|
'$go_compile_clause'(G, V, N, Mod) :-
|
|
|
|
'$prepare_term'(G, V, G0, G1, Mod),
|
|
|
|
'$$compile'(G1, G0, N, Mod).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$prepare_term'(G,V,G0,G1, Mod) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
( '$get_value'('$syntaxcheckflag',on) ->
|
2002-04-13 05:52:38 +01:00
|
|
|
'$check_term'(G,V,Mod) ; true ),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$precompile_term'(G, G0, G1, Mod).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-09-27 15:01:16 +01:00
|
|
|
% process an input clause
|
2001-11-15 00:01:43 +00:00
|
|
|
'$$compile'(G, G0, L, Mod) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$head_and_body'(G,H,_),
|
|
|
|
'$inform_of_clause'(H,L),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$flags'(H, Mod, Fl, Fl),
|
|
|
|
( Fl /\ 16'002008 =\= 0 -> '$assertz_dynamic'(L,G,G0,Mod) ;
|
|
|
|
'$$compile_stat'(G,G0,L,H, Mod) ).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
% process a clause for a static predicate
|
2001-11-15 00:01:43 +00:00
|
|
|
'$$compile_stat'(G,G0,L,H, Mod) :-
|
|
|
|
'$compile'(G,L,Mod),
|
2001-04-09 20:54:03 +01:00
|
|
|
% first occurrence of this predicate in this file,
|
|
|
|
% check if we need to erase the source and if
|
|
|
|
% it is a multifile procedure.
|
2001-11-15 00:01:43 +00:00
|
|
|
'$flags'(H,Mod,Fl,Fl),
|
2001-04-09 20:54:03 +01:00
|
|
|
( '$get_value'('$abol',true)
|
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
( Fl /\ 16'400000 =\= 0 -> '$erase_source'(H, Mod) ; true ),
|
|
|
|
( Fl /\ 16'040000 =\= 0 -> '$check_multifile_pred'(H,Mod,Fl) ; true )
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
|
|
|
true
|
|
|
|
),
|
|
|
|
( Fl /\ 16'400000 =:= 0 -> % is this procedure in source mode?
|
|
|
|
% no, just ignore
|
|
|
|
true
|
|
|
|
;
|
|
|
|
% and store our clause
|
2001-11-15 00:01:43 +00:00
|
|
|
'$store_stat_clause'(G0, H, L, Mod)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$store_stat_clause'(G0, H, L, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$head_and_body'(G0,H0,B0),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$record_stat_source'(M:H,(H0:-B0),L,R),
|
|
|
|
( '$is_multifile'(H,M) ->
|
2001-04-09 20:54:03 +01:00
|
|
|
'$get_value'('$consulting_file',F),
|
2001-11-15 00:01:43 +00:00
|
|
|
functor(H, Na, Ar),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$recordz'('$multifile'(_,_,_), '$mf'(Na,Ar,M,F,R), _)
|
|
|
|
;
|
|
|
|
true
|
|
|
|
).
|
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$erase_source'(G, M) :-
|
|
|
|
'$is_multifile'(G, M), !,
|
|
|
|
functor(G, Na, Ar),
|
|
|
|
'$erase_mf_source'(Na, Ar, M).
|
|
|
|
'$erase_source'(G, M) :- '$recordedp'(M:G,_,R), erase(R), fail.
|
|
|
|
'$erase_source'(_, _).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$erase_mf_source'(Na, Ar, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$get_value'('$consulting_file',F),
|
2002-01-02 16:55:24 +00:00
|
|
|
'$recorded'('$multifile'(_,_,_), '$mf'(Na,Ar,M,F,R), R1),
|
2001-04-09 20:54:03 +01:00
|
|
|
erase(R1),
|
|
|
|
erase(R),
|
|
|
|
fail.
|
2002-01-02 16:55:24 +00:00
|
|
|
'$erase_mf_source'(Na, Ar, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$get_value'('$consulting_file',F),
|
2002-01-02 16:55:24 +00:00
|
|
|
'$recorded'('$multifile_dynamic'(_,_,_), '$mf'(Na,Ar,M,F,R), R1),
|
2001-04-09 20:54:03 +01:00
|
|
|
erase(R1),
|
|
|
|
erase(R),
|
|
|
|
fail.
|
2001-11-15 00:01:43 +00:00
|
|
|
'$erase_mf_source'(_,_,_).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$check_if_reconsulted'(N,A) :-
|
|
|
|
'$recorded'('$reconsulted',X,_),
|
|
|
|
( X = N/A , !;
|
|
|
|
X = '$', !, fail;
|
|
|
|
fail
|
|
|
|
).
|
|
|
|
|
|
|
|
'$inform_as_reconsulted'(N,A) :-
|
|
|
|
'$recorda'('$reconsulted',N/A,_).
|
|
|
|
|
|
|
|
'$clear_reconsulting' :-
|
|
|
|
'$recorded'('$reconsulted',X,Ref),
|
|
|
|
erase(Ref),
|
|
|
|
X == '$', !,
|
|
|
|
( '$recorded'('$reconsulting',_,R) -> erase(R) ).
|
|
|
|
|
|
|
|
/* Executing a query */
|
|
|
|
|
2002-01-02 16:55:24 +00:00
|
|
|
'$query'(end_of_file,_).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
% ***************************
|
|
|
|
% * -------- YAPOR -------- *
|
|
|
|
% ***************************
|
|
|
|
|
|
|
|
'$query'(G,V) :-
|
2001-11-15 00:01:43 +00:00
|
|
|
\+ '$undefined'('$yapor_on', prolog),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$yapor_on',
|
2001-11-15 00:01:43 +00:00
|
|
|
\+ '$undefined'('$start_yapor', prolog),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$parallelizable'(G), !,
|
|
|
|
'$parallel_query'(G,V),
|
|
|
|
fail.
|
|
|
|
|
|
|
|
% end of YAPOR
|
|
|
|
|
|
|
|
'$query'(G,[]) :- !,
|
|
|
|
'$yes_no'(G,(?-)).
|
|
|
|
'$query'(G,V) :-
|
|
|
|
( '$execute'(G),
|
|
|
|
'$extract_goal_vars_for_dump'(V,LIV),
|
|
|
|
'$show_frozen'(G,LIV,LGs),
|
|
|
|
'$write_answer'(V, LGs, Written),
|
|
|
|
'$write_query_answer_true'(Written),
|
|
|
|
'$another',
|
|
|
|
!, fail ;
|
|
|
|
'$present_answer'(_, no),
|
|
|
|
fail
|
|
|
|
).
|
|
|
|
|
|
|
|
'$yes_no'(G,C) :-
|
2001-12-11 04:35:31 +00:00
|
|
|
'$current_module'(M),
|
|
|
|
'$do_yes_no'(G,M),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$show_frozen'(G, [], LGs),
|
|
|
|
'$write_answer'([], LGs, Written),
|
|
|
|
( Written = [] ->
|
|
|
|
!,'$present_answer'(C, yes);
|
|
|
|
'$another', !
|
|
|
|
),
|
|
|
|
fail.
|
|
|
|
'$yes_no'(_,_) :-
|
|
|
|
'$present_answer'(_, no),
|
|
|
|
fail.
|
|
|
|
|
|
|
|
|
2001-12-11 04:35:31 +00:00
|
|
|
'$do_yes_no'([X|L], M) :- !, '$csult'([X|L], M).
|
|
|
|
'$do_yes_no'(G, M) :- '$execute'(M:G).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$extract_goal_vars_for_dump'([],[]).
|
|
|
|
'$extract_goal_vars_for_dump'([[_|V]|VL],[V|LIV]) :-
|
|
|
|
'$extract_goal_vars_for_dump'(VL,LIV).
|
|
|
|
|
|
|
|
'$write_query_answer_true'([]) :- !,
|
|
|
|
'$format'(user_error,"~ntrue",[]).
|
|
|
|
'$write_query_answer_true'(_).
|
|
|
|
|
|
|
|
'$show_frozen'(G,V,LGs) :-
|
|
|
|
'$all_frozen_goals'(LGs0), LGs0 = [_|_], !,
|
2002-05-17 02:01:07 +01:00
|
|
|
attributes:all_attvars(LAV),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$convert_to_list_of_frozen_goals'(LGs0,V,LAV,G,LGs).
|
|
|
|
'$show_frozen'(_,_,[]).
|
|
|
|
|
|
|
|
%
|
|
|
|
% present_answer has three components. First it flushes the streams,
|
|
|
|
% then it presents the goals, and last it shows any goals frozen on
|
|
|
|
% the arguments.
|
|
|
|
%
|
|
|
|
'$present_answer'(_,_):-
|
2001-04-27 17:02:43 +01:00
|
|
|
'$flush_all_streams',
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$present_answer'((?-), Answ) :-
|
2001-09-21 18:08:36 +01:00
|
|
|
'$format'(user_error,"~n", []),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$get_value'('$break',BL),
|
|
|
|
( BL \= 0 -> '$format'(user_error, "[~p] ",[BL]) ;
|
|
|
|
true ),
|
|
|
|
( '$recorded'('$print_options','$toplevel'(Opts),_) ->
|
|
|
|
write_term(user_error,Answ,Opts) ;
|
|
|
|
'$format'(user_error,"~w",[Answ])
|
|
|
|
),
|
2001-09-21 18:08:36 +01:00
|
|
|
'$format'(user_error,"~n", []).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$another' :-
|
2001-09-21 18:08:36 +01:00
|
|
|
'$format'(user_error," ? ",[]),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$get0'(user_input,C),
|
2002-05-24 06:14:46 +01:00
|
|
|
( C== 0'; -> '$skip'(user_input,10), fail
|
|
|
|
;
|
|
|
|
C== 10 -> '$format'(user_error,"~n", [])
|
|
|
|
;
|
|
|
|
C== -1 -> halt
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
|
|
|
'$skip'(user_input,10), '$ask_again_for_another'
|
|
|
|
).
|
|
|
|
|
|
|
|
'$ask_again_for_another' :-
|
2001-09-21 18:08:36 +01:00
|
|
|
'$format'(user_error,"Action (\";\" for more choices, <return> for exit)", []),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$another'.
|
|
|
|
|
|
|
|
'$write_answer'(_,_,_) :-
|
2001-04-27 17:02:43 +01:00
|
|
|
'$flush_all_streams',
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$write_answer'(Vs, LBlk, LAnsw) :-
|
|
|
|
'$purge_dontcares'(Vs,NVs),
|
|
|
|
'$prep_answer_var_by_var'(NVs, LAnsw, LBlk),
|
|
|
|
'$name_vars_in_goals'(LAnsw, Vs, NLAnsw),
|
|
|
|
'$write_vars_and_goals'(NLAnsw).
|
|
|
|
|
|
|
|
'$purge_dontcares'([],[]).
|
|
|
|
'$purge_dontcares'([[[95|_]|_]|Vs],NVs) :- !,
|
|
|
|
'$purge_dontcares'(Vs,NVs).
|
|
|
|
'$purge_dontcares'([V|Vs],[V|NVs]) :-
|
|
|
|
'$purge_dontcares'(Vs,NVs).
|
|
|
|
|
|
|
|
|
|
|
|
'$prep_answer_var_by_var'([], L, L).
|
|
|
|
'$prep_answer_var_by_var'([[Name|Value]|L], LF, L0) :-
|
|
|
|
'$delete_identical_answers'(L, Value, NL, Names),
|
|
|
|
'$prep_answer_var'([Name|Names], Value, LF, LI),
|
|
|
|
'$prep_answer_var_by_var'(NL, LI, L0).
|
|
|
|
|
|
|
|
% fetch all cases that have the same solution.
|
|
|
|
'$delete_identical_answers'([], _, [], []).
|
|
|
|
'$delete_identical_answers'([[Name|Value]|L], Value0, FL, [Name|Names]) :-
|
|
|
|
Value == Value0, !,
|
|
|
|
'$delete_identical_answers'(L, Value0, FL, Names).
|
|
|
|
'$delete_identical_answers'([VV|L], Value0, [VV|FL], Names) :-
|
|
|
|
'$delete_identical_answers'(L, Value0, FL, Names).
|
|
|
|
|
|
|
|
% now create a list of pairs that will look like goals.
|
|
|
|
'$prep_answer_var'(Names, Value, LF, L0) :- var(Value), !,
|
|
|
|
'$prep_answer_unbound_var'(Names, LF, L0).
|
|
|
|
'$prep_answer_var'(Names, Value, [nonvar(Names,Value)|L0], L0).
|
|
|
|
|
|
|
|
% ignore unbound variables
|
|
|
|
'$prep_answer_unbound_var'([_], L, L) :- !.
|
|
|
|
'$prep_answer_unbound_var'(Names, [var(Names)|L0], L0).
|
|
|
|
|
|
|
|
'$gen_name_string'(I,L,[C|L]) :- I < 26, !, C is I+65.
|
|
|
|
'$gen_name_string'(I,L0,LF) :-
|
|
|
|
I1 is I mod 26,
|
|
|
|
I2 is I // 26,
|
|
|
|
C is I1+65,
|
|
|
|
'$gen_name_string'(I2,[C|L0],LF).
|
|
|
|
|
|
|
|
'$write_vars_and_goals'([]).
|
|
|
|
'$write_vars_and_goals'([G1|LG]) :-
|
|
|
|
'$write_goal_output'(G1),
|
|
|
|
'$write_remaining_vars_and_goals'(LG).
|
|
|
|
|
|
|
|
'$write_remaining_vars_and_goals'([]).
|
|
|
|
'$write_remaining_vars_and_goals'([G1|LG]) :-
|
|
|
|
'$format'(user_error,",",[]),
|
|
|
|
'$write_goal_output'(G1),
|
|
|
|
'$write_remaining_vars_and_goals'(LG).
|
|
|
|
|
|
|
|
'$write_goal_output'(var([V|VL])) :-
|
|
|
|
'$format'(user_error,"~n~s",[V]),
|
|
|
|
'$write_output_vars'(VL).
|
|
|
|
'$write_goal_output'(nonvar([V|VL],B)) :-
|
|
|
|
'$format'(user_error,"~n~s",[V]),
|
|
|
|
'$write_output_vars'(VL),
|
|
|
|
'$format'(user_error," = ", []),
|
|
|
|
( '$recorded'('$print_options','$toplevel'(Opts),_) ->
|
|
|
|
write_term(user_error,B,Opts) ;
|
|
|
|
'$format'(user_error,"~w",[B])
|
|
|
|
).
|
|
|
|
|
|
|
|
'$write_goal_output'(_-G) :-
|
|
|
|
'$format'(user_error,"~n",[]),
|
|
|
|
( '$recorded'('$print_options','$toplevel'(Opts),_) ->
|
|
|
|
write_term(user_error,G,Opts) ;
|
|
|
|
'$format'(user_error,"~w",[G])
|
|
|
|
).
|
|
|
|
|
|
|
|
'$name_vars_in_goals'(G, VL0, NG) :-
|
|
|
|
'$copy_term_but_not_constraints'(G+VL0, NG+NVL0),
|
|
|
|
'$name_well_known_vars'(NVL0),
|
|
|
|
'$variables_in_term'(NG, [], NGVL),
|
|
|
|
'$name_vars_in_goals1'(NGVL, 0, _).
|
|
|
|
|
|
|
|
'$name_well_known_vars'([]).
|
|
|
|
'$name_well_known_vars'([[Name|V]|NVL0]) :-
|
|
|
|
var(V), !,
|
|
|
|
V = '$VAR'(Name),
|
|
|
|
'$name_well_known_vars'(NVL0).
|
|
|
|
'$name_well_known_vars'([_|NVL0]) :-
|
|
|
|
'$name_well_known_vars'(NVL0).
|
|
|
|
|
|
|
|
'$name_vars_in_goals1'([], I, I).
|
|
|
|
'$name_vars_in_goals1'(['$VAR'([95|Name])|NGVL], I0, IF) :-
|
|
|
|
I is I0+1,
|
|
|
|
'$gen_name_string'(I0,[],Name), !,
|
|
|
|
'$name_vars_in_goals1'(NGVL, I, IF).
|
|
|
|
'$name_vars_in_goals1'([NV|NGVL], I0, IF) :-
|
|
|
|
nonvar(NV),
|
2002-01-02 16:55:24 +00:00
|
|
|
'$name_vars_in_goals1'(NGVL, I0, IF).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$write_output_vars'([]).
|
|
|
|
'$write_output_vars'([V|VL]) :-
|
|
|
|
'$format'(user_error," = ~s",[V]),
|
|
|
|
'$write_output_vars'(VL).
|
|
|
|
|
|
|
|
call(G) :- '$execute'(G).
|
|
|
|
|
|
|
|
incore(G) :- '$execute'(G).
|
|
|
|
|
|
|
|
%
|
|
|
|
% standard meta-call, called if $execute could not do everything.
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$meta_call'(G, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$save_current_choice_point'(CP),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(G, CP, G, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
%
|
|
|
|
% do it in ISO mode.
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$meta_call'(G,_ISO,M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$iso_check_goal'(G,G),
|
|
|
|
'$save_current_choice_point'(CP),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(G, CP, G, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$meta_call'(G, CP, G0, M) :-
|
|
|
|
'$call'(G, CP, G0, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_meta_call'(G, M) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$save_current_choice_point'(CP),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(G, CP, G, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_meta_call'(G, CP, G0, M) :-
|
|
|
|
'$spied_call'(G, CP, G0, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(G, CP, G0, _, M) :- /* iso version */
|
2001-04-09 20:54:03 +01:00
|
|
|
'$iso_check_goal'(G,G0),
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(G, CP, G0, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-10-30 16:42:05 +00:00
|
|
|
|
|
|
|
','(A,B) :-
|
|
|
|
'$execute_within'(A),
|
2001-10-31 20:16:48 +00:00
|
|
|
'$last_execute_within'(B).
|
2001-10-30 16:42:05 +00:00
|
|
|
|
2001-11-29 20:29:52 +00:00
|
|
|
% Be careful with -> cutting through
|
2002-03-08 06:33:16 +00:00
|
|
|
(A;B) :- (A = ( T->G) ->
|
2001-11-29 20:29:52 +00:00
|
|
|
( '$execute_within'(T) -> '$execute_within'(G) ; '$execute_within'(A) ; '$execute_within'(B) )
|
|
|
|
;
|
|
|
|
( '$execute_within'(A) ; '$execute_within'(B) ) ).
|
2001-11-26 19:34:27 +00:00
|
|
|
|
2001-11-29 20:29:52 +00:00
|
|
|
'|'(A,B) :- (A = ( T->G) ->
|
|
|
|
( '$execute_within'(T) -> '$execute_within'(G) ; '$execute_within'(A) ; '$execute_within'(B) )
|
|
|
|
;
|
|
|
|
( '$execute_within'(A) ; '$execute_within'(B) ) ).
|
2001-11-26 19:34:27 +00:00
|
|
|
|
2001-10-30 16:42:05 +00:00
|
|
|
|
|
|
|
'->'(A,B) :-
|
|
|
|
( '$execute_within'(A) ->
|
2001-11-26 19:22:52 +00:00
|
|
|
'$last_execute_within'(B) ).
|
2001-10-30 16:42:05 +00:00
|
|
|
|
|
|
|
\+(A) :-
|
|
|
|
\+ '$execute_within'(A).
|
|
|
|
|
|
|
|
not(A) :-
|
|
|
|
\+ '$execute_within'(A).
|
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(M:_,_,G0,_) :- var(M), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,call(G0)).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(M:G,CP,G0,_) :- !,
|
|
|
|
'$call'(G,CP,G0,M).
|
|
|
|
'$call'((X,Y),CP,G0,M) :- !,
|
|
|
|
'$execute_within'(X,CP,G0,M),
|
|
|
|
'$execute_within'(Y,CP,G0,M).
|
|
|
|
'$call'((X->Y),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(X,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Y,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'((X->Y; Z),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(X,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Y,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Z,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'((A;B),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(A,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(B,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'((A|B),CP, G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(A,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(B,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(\+ X, _, _,_) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
\+ '$execute'(X).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(not(X), _, _,_) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
\+ '$execute'(X).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(!, CP, _,_) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
'$$cut_by'(CP).
|
2001-12-11 04:35:31 +00:00
|
|
|
'$call'([A|B], _, _, M) :- !,
|
|
|
|
'$csult'([A|B], M).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(A, _, _,CurMod) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
|
|
|
% goal_expansion is defined, or
|
|
|
|
'$pred_goal_expansion_on'
|
|
|
|
;
|
|
|
|
% this is a meta-predicate
|
2001-11-15 00:01:43 +00:00
|
|
|
'$flags'(A,CurMod,F,_), F /\ 0x200000 =:= 0x200000
|
2001-04-09 20:54:03 +01:00
|
|
|
), !,
|
2002-04-06 06:33:44 +01:00
|
|
|
'$expand_goal'(A, CurMod, CurMod, NG, NMod),
|
|
|
|
'$execute0'(NG, NMod).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$call'(A, _, _, M) :-
|
|
|
|
'$execute0'(A, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'((A,B),CP,G0,M) :- !,
|
|
|
|
'$execute_within'(A,CP,G0,M),
|
|
|
|
'$execute_within'(B,CP,G0,M).
|
|
|
|
'$spied_call'((X->Y),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(X,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Y,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'((X->Y; Z),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(X,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Y,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(Z,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'((A;B),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(A,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(B,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'((A|B),CP,G0,M) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(A,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$execute_within'(B,CP,G0,M)
|
2001-04-09 20:54:03 +01:00
|
|
|
).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(\+ X,_,_,M) :- !,
|
2002-01-02 16:55:24 +00:00
|
|
|
\+ '$execute'(M:X).
|
|
|
|
'$spied_call'(not X,_,_,M) :- !,
|
|
|
|
\+ '$execute'(M:X).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(!,CP,_,_) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
'$$cut_by'(CP).
|
2001-12-11 04:35:31 +00:00
|
|
|
'$spied_call'([A|B],_,_,M) :- !,
|
|
|
|
'$csult'([A|B], M).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(A, _CP, _G0, CurMod) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
|
|
|
% goal_expansion is defined, or
|
|
|
|
'$pred_goal_expansion_on'
|
|
|
|
;
|
|
|
|
% this is a meta-predicate
|
2001-11-15 00:01:43 +00:00
|
|
|
'$flags'(A,CurMod,F,_), F /\ 0x200000 =:= 0x200000
|
2001-04-09 20:54:03 +01:00
|
|
|
), !,
|
2002-04-06 06:33:44 +01:00
|
|
|
'$expand_goal'(A, CurMod, CurMod, NG, NMod),
|
|
|
|
'$execute0'(NG, NMod).
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(A, CP, G0, M) :-
|
|
|
|
( '$undefined'(A, M) ->
|
|
|
|
functor(A,F,N),
|
2001-04-09 20:54:03 +01:00
|
|
|
( '$recorded'('$import','$import'(S,M,F,N),_) ->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$spied_call'(S:A,CP,G0,M) ;
|
2001-04-09 20:54:03 +01:00
|
|
|
'$spy'(A)
|
|
|
|
)
|
|
|
|
;
|
|
|
|
'$spy'(A)
|
|
|
|
).
|
|
|
|
|
|
|
|
'$check_callable'(V,G) :- var(V), !,
|
|
|
|
'$current_module'(Mod),
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,Mod:G).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_callable'(A,G) :- number(A), !,
|
|
|
|
'$current_module'(Mod),
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,A),Mod:G).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_callable'(R,G) :- db_reference(R), !,
|
|
|
|
'$current_module'(Mod),
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,R),Mod:G).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_callable'(_,_).
|
|
|
|
|
|
|
|
% Called by the abstract machine, if no clauses exist for a predicate
|
|
|
|
'$undefp'([M|G]) :-
|
|
|
|
functor(G,F,N),
|
2001-04-27 17:02:43 +01:00
|
|
|
'$recorded'('$import','$import'(S,M,F,N),_),
|
2001-06-06 20:10:51 +01:00
|
|
|
S \= M, % can't try importing from the module itself.
|
2001-04-27 17:02:43 +01:00
|
|
|
!,
|
2002-04-06 06:33:44 +01:00
|
|
|
'$expand_goal'(G, S, M, NG, NMod),
|
|
|
|
'$execute0'(NG, NMod).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$undefp'([M|G]) :-
|
2001-11-15 00:01:43 +00:00
|
|
|
\+ '$undefined'(unknown_predicate_handler(_,_,_), user),
|
2001-04-09 20:54:03 +01:00
|
|
|
user:unknown_predicate_handler(G,M,NG), !,
|
|
|
|
'$execute'(M:NG).
|
|
|
|
'$undefp'([M|G]) :-
|
|
|
|
'$recorded'('$unknown','$unknown'(M:G,US),_), !,
|
|
|
|
'$execute'(user:US).
|
|
|
|
|
|
|
|
|
|
|
|
/* This is the break predicate,
|
|
|
|
it saves the importante data about current streams and
|
|
|
|
debugger state */
|
|
|
|
|
|
|
|
break :- '$get_value'('$break',BL), NBL is BL+1,
|
|
|
|
'$get_value'(spy_sl,SPY_SL),
|
|
|
|
'$get_value'(spy_fs,SPY_FS),
|
|
|
|
'$get_value'(spy_sp,SPY_SP),
|
|
|
|
'$get_value'(spy_gn,SPY_GN),
|
|
|
|
'$access_yap_flags'(10,SPY_CREEP),
|
|
|
|
'$get_value'(spy_cl,SPY_CL),
|
|
|
|
'$get_value'(spy_leap,_Leap),
|
|
|
|
'$set_value'('$break',NBL),
|
|
|
|
current_output(OutStream), current_input(InpStream),
|
|
|
|
'$format'(user_error, "[ Break (level ~w) ]~n", [NBL]),
|
2002-01-16 22:11:55 +00:00
|
|
|
'$do_live',
|
2001-04-09 20:54:03 +01:00
|
|
|
!,
|
|
|
|
'$set_value'('$live',true),
|
|
|
|
'$set_value'(spy_sl,SPY_SL),
|
|
|
|
'$get_value'(spy_fs,SPY_FS),
|
|
|
|
'$set_value'(spy_sp,SPY_SP),
|
|
|
|
'$set_value'(spy_gn,SPY_GN),
|
|
|
|
'$set_yap_flags'(10,SPY_CREEP),
|
|
|
|
'$set_value'(spy_cl,SPY_CL),
|
|
|
|
'$set_value'(spy_leap,_Leap),
|
2001-09-21 18:08:36 +01:00
|
|
|
'$set_input'(InpStream), '$set_output'(OutStream),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$set_value'('$break',BL).
|
|
|
|
|
|
|
|
|
2001-12-11 04:35:31 +00:00
|
|
|
'$csult'(V, _) :- var(V), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,consult(V)).
|
2001-12-11 04:35:31 +00:00
|
|
|
'$csult'([], _) :- !.
|
|
|
|
'$csult'([-F|L], M) :- !, '$reconsult'(M:F), '$csult'(L, M).
|
|
|
|
'$csult'([F|L], M) :- '$consult'(M:F), '$csult'(L, M).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$consult'(V) :- var(V), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,consult(V)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$consult'([]) :- !.
|
|
|
|
'$consult'([F|Fs]) :- !,
|
|
|
|
'$consult'(F),
|
|
|
|
'$consult'(Fs).
|
2001-11-23 13:04:17 +00:00
|
|
|
'$consult'(M:X) :- atom(M), !,
|
|
|
|
'$current_module'(M0),
|
|
|
|
'$change_module'(M),
|
|
|
|
'$consult'(X),
|
|
|
|
'$change_module'(M0).
|
2002-02-08 22:19:24 +00:00
|
|
|
'$consult'(X) :-
|
|
|
|
'$find_in_path'(X,Y,consult(X)),
|
2002-02-12 18:24:21 +00:00
|
|
|
'$open'(Y,'$csult',Stream,0), !,
|
2002-03-07 05:13:21 +00:00
|
|
|
'$consult'(X,Stream),
|
2002-02-12 18:24:21 +00:00
|
|
|
'$close'(Stream).
|
|
|
|
'$consult'(X) :-
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(permission_error(input,stream,X),consult(X)).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
|
2002-05-24 04:57:20 +01:00
|
|
|
'$consult'(_,Stream) :-
|
|
|
|
'$record_loaded'(Stream),
|
|
|
|
fail.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$consult'(F,Stream) :-
|
|
|
|
'$access_yap_flags'(8, 2), % SICStus Prolog compatibility
|
|
|
|
!,
|
|
|
|
'$reconsult'(F,Stream).
|
|
|
|
'$consult'(F,Stream) :-
|
|
|
|
'$getcwd'(OldD),
|
|
|
|
'$get_value'('$consulting_file',OldF),
|
|
|
|
'$set_consulting_file'(Stream),
|
2002-01-22 17:11:36 +00:00
|
|
|
H0 is heapused, '$cputime'(T0,_),
|
2002-01-07 06:28:04 +00:00
|
|
|
'$current_stream'(File,_,Stream),
|
2002-01-22 17:11:36 +00:00
|
|
|
'$current_module'(OldModule),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$start_consult'(consult,File,LC),
|
|
|
|
'$get_value'('$consulting',Old),
|
|
|
|
'$set_value'('$consulting',true),
|
|
|
|
'$recorda'('$initialisation','$',_),
|
2002-01-22 17:11:36 +00:00
|
|
|
( '$undefined'('$print_message'(_,_),prolog) ->
|
|
|
|
( '$get_value'('$verbose',on) ->
|
|
|
|
'$format'(user_error, "~*|[ consulting ~w... ]~n", [LC,F])
|
|
|
|
; true )
|
|
|
|
;
|
2002-01-22 19:29:28 +00:00
|
|
|
'$print_message'(informational, loading(consulting, File))
|
2002-01-22 17:11:36 +00:00
|
|
|
),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$loop'(Stream,consult),
|
2002-01-22 17:11:36 +00:00
|
|
|
'$exec_initialisation_goals',
|
|
|
|
'$current_module'(Mod,OldModule),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$end_consult',
|
|
|
|
( LC == 0 -> prompt(_,' |: ') ; true),
|
2002-01-22 17:11:36 +00:00
|
|
|
H is heapused-H0, '$cputime'(TF,_), T is TF-T0,
|
|
|
|
( '$undefined'('$print_message'(_,_),prolog) ->
|
|
|
|
( '$get_value'('$verbose',on) ->
|
|
|
|
'$format'(user_error, "~*|[ ~w consulted ~w bytes in ~d msecs ]~n", [LC,F,H,T])
|
|
|
|
;
|
|
|
|
true
|
|
|
|
)
|
2001-04-09 20:54:03 +01:00
|
|
|
;
|
2002-01-22 19:29:28 +00:00
|
|
|
'$print_message'(informational, loaded(consulted, File, Mod, T, H))
|
2001-04-09 20:54:03 +01:00
|
|
|
),
|
|
|
|
'$set_value'('$consulting',Old),
|
|
|
|
'$set_value'('$consulting_file',OldF),
|
|
|
|
'$cd'(OldD),
|
|
|
|
!.
|
|
|
|
|
|
|
|
|
|
|
|
'$record_loaded'(user).
|
|
|
|
'$record_loaded'(user_input).
|
|
|
|
'$record_loaded'(Stream) :-
|
2002-05-24 04:57:20 +01:00
|
|
|
'$loaded'(Stream,_), !.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$record_loaded'(Stream) :-
|
|
|
|
'$file_name'(Stream,F),
|
2001-07-05 21:23:21 +01:00
|
|
|
'$file_age'(F,Age),
|
|
|
|
'$recorda'('$loaded','$loaded'(F,Age),_).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$set_consulting_file'(user) :- !,
|
|
|
|
'$set_value'('$consulting_file',user_input).
|
|
|
|
'$set_consulting_file'(user_input) :- !,
|
|
|
|
'$set_value'('$consulting_file',user_input).
|
|
|
|
'$set_consulting_file'(Stream) :-
|
|
|
|
'$file_name'(Stream,F),
|
|
|
|
'$set_value'('$consulting_file',F),
|
|
|
|
'$set_consulting_dir'(F).
|
|
|
|
|
|
|
|
%
|
|
|
|
% Use directory where file exists
|
|
|
|
%
|
|
|
|
'$set_consulting_dir'(F) :-
|
|
|
|
atom_codes(F,S),
|
|
|
|
'$strip_file_for_scd'(S,Dir,Unsure,Unsure),
|
|
|
|
'$cd'(Dir).
|
|
|
|
|
|
|
|
%
|
|
|
|
% The algorithm: I have two states, one for what I am sure will be an answer,
|
|
|
|
% the other for what I have found so far.
|
|
|
|
%
|
|
|
|
'$strip_file_for_scd'([], [], _, _).
|
|
|
|
'$strip_file_for_scd'([D|L], Out, Out, Cont) :-
|
|
|
|
'$dir_separator'(D), !,
|
|
|
|
'$strip_file_for_scd'(L, Cont, [D|C2], C2).
|
|
|
|
'$strip_file_for_scd'([F|L], Out, Cont, [F|C2]) :-
|
|
|
|
'$strip_file_for_scd'(L, Out, Cont, C2).
|
|
|
|
|
|
|
|
|
|
|
|
'$loop'(Stream,Status) :-
|
2001-04-16 17:41:04 +01:00
|
|
|
'$change_alias_to_stream'('$loop_stream',Stream),
|
2001-04-09 20:54:03 +01:00
|
|
|
repeat,
|
2002-01-07 06:28:04 +00:00
|
|
|
( '$current_stream'(_,_,Stream) -> true
|
2002-04-09 16:12:14 +01:00
|
|
|
; '$abort_loop'(Stream)
|
2001-04-09 20:54:03 +01:00
|
|
|
),
|
|
|
|
prompt('| '), prompt(_,'| '),
|
2002-04-09 16:12:14 +01:00
|
|
|
'$current_module'(OldModule),
|
2002-01-07 06:28:04 +00:00
|
|
|
'$system_catch'('$enter_command'(Stream,Status), OldModule, Error,
|
2001-04-09 20:54:03 +01:00
|
|
|
user:'$LoopError'(Error)),
|
2002-01-22 17:11:36 +00:00
|
|
|
!.
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$enter_command'(Stream,Status) :-
|
2002-06-17 16:28:01 +01:00
|
|
|
'$read_vars'(Stream,Command,_,Vars),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$command'(Command,Vars,Status).
|
|
|
|
|
|
|
|
'$abort_loop'(Stream) :-
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(permission_error(input,closed_stream,Stream), loop).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
/* General purpose predicates */
|
|
|
|
|
|
|
|
'$head_and_body'((H:-B),H,B) :- !.
|
|
|
|
'$head_and_body'(H,H,true).
|
|
|
|
|
|
|
|
%
|
|
|
|
% split head and body, generate an error if body is unbound.
|
|
|
|
%
|
|
|
|
'$check_head_and_body'((H:-B),H,B,P) :- !,
|
|
|
|
'$check_head'(H,P).
|
|
|
|
'$check_head_and_body'(H,H,true,P) :-
|
|
|
|
'$check_head'(H,P).
|
|
|
|
|
|
|
|
'$check_head'(H,P) :- var(H), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(instantiation_error,P).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_head'(H,P) :- number(H), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,H),P).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_head'(H,P) :- db_reference(H), !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(type_error(callable,H),P).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_head'(_,_).
|
|
|
|
|
|
|
|
% Path predicates
|
|
|
|
|
|
|
|
'$exists'(F,Mode) :- '$get_value'(fileerrors,V), '$set_value'(fileerrors,0),
|
2001-09-21 18:08:36 +01:00
|
|
|
( '$open'(F,Mode,S,0), !, '$close'(S), '$set_value'(fileerrors,V);
|
2001-04-09 20:54:03 +01:00
|
|
|
'$set_value'(fileerrors,V), fail).
|
|
|
|
|
|
|
|
|
2002-02-08 22:19:24 +00:00
|
|
|
'$find_in_path'(user,user_input, _) :- !.
|
|
|
|
'$find_in_path'(user_input,user_input, _) :- !.
|
|
|
|
'$find_in_path'(S,NewFile, _) :-
|
|
|
|
S =.. [Name,File], !,
|
|
|
|
user:file_search_path(Name, Dir),
|
|
|
|
'$dir_separator'(D),
|
|
|
|
atom_codes(A,[D]),
|
|
|
|
atom_concat([Dir,A,File],NFile),
|
|
|
|
'$search_in_path'(NFile, NewFile).
|
|
|
|
'$find_in_path'(File,NewFile,_) :- atom(File), !,
|
|
|
|
'$search_in_path'(File,NewFile),!.
|
|
|
|
'$find_in_path'(File,_,Call) :-
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(domain_error(source_sink,File),Call).
|
2002-02-08 22:19:24 +00:00
|
|
|
|
|
|
|
'$search_in_path'(New,New) :-
|
|
|
|
'$exists'(New,'$csult'), !.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$search_in_path'(File,New) :-
|
2002-02-08 22:19:24 +00:00
|
|
|
'$recorded'('$path',Path,_),
|
|
|
|
atom_concat([Path,File],New),
|
|
|
|
'$exists'(New,'$csult').
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
path(Path) :- findall(X,'$in_path'(X),Path).
|
|
|
|
|
|
|
|
'$in_path'(X) :- '$recorded'('$path',S,_),
|
|
|
|
( S == "" -> X = '.' ;
|
|
|
|
name(X,S) ).
|
|
|
|
|
|
|
|
add_to_path(New) :- add_to_path(New,last).
|
|
|
|
|
2002-07-23 16:49:06 +01:00
|
|
|
add_to_path(New,Pos) :-
|
|
|
|
'$check_path'(New,Str),
|
|
|
|
atom_codes(Fixed,Str),
|
2002-07-23 17:54:29 +01:00
|
|
|
'$add_to_path'(Fixed,Pos).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$add_to_path'(New,_) :- '$recorded'('$path',New,R), erase(R), fail.
|
2001-05-21 21:00:05 +01:00
|
|
|
'$add_to_path'(New,last) :- !, '$recordz'('$path',New,_).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$add_to_path'(New,first) :- '$recorda'('$path',New,_).
|
|
|
|
|
|
|
|
remove_from_path(New) :- '$check_path'(New,Path),
|
|
|
|
'$recorded'('$path',Path,R), erase(R).
|
|
|
|
|
2002-07-23 16:49:06 +01:00
|
|
|
'$check_path'(At,SAt) :- atom(At), !, atom_codes(At,S), '$check_path'(S,SAt).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_path'([],[]).
|
|
|
|
'$check_path'([Ch],[Ch]) :- '$dir_separator'(Ch), !.
|
|
|
|
'$check_path'([Ch],[Ch,A]) :- !, integer(Ch), '$dir_separator'(A).
|
|
|
|
'$check_path'([N|S],[N|SN]) :- integer(N), '$check_path'(S,SN).
|
|
|
|
|
|
|
|
|
|
|
|
% term expansion
|
|
|
|
%
|
|
|
|
% return two arguments: Expanded0 is the term after "USER" expansion.
|
|
|
|
% Expanded is the final expanded term.
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$precompile_term'(Term, Expanded0, Expanded, Mod) :-
|
2001-04-09 20:54:03 +01:00
|
|
|
(
|
|
|
|
'$access_yap_flags'(9,1) /* strict_iso on */
|
|
|
|
->
|
2001-11-15 00:01:43 +00:00
|
|
|
'$expand_term_modules'(Term, Expanded0, Expanded, Mod),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$check_iso_strict_clause'(Expanded0)
|
|
|
|
;
|
2001-11-15 00:01:43 +00:00
|
|
|
'$expand_term_modules'(Term, Expanded0, ExpandedI, Mod),
|
2001-04-09 20:54:03 +01:00
|
|
|
'$expand_array_accesses_in_term'(ExpandedI,Expanded)
|
|
|
|
).
|
|
|
|
|
|
|
|
expand_term(Term,Expanded) :-
|
2001-11-15 00:01:43 +00:00
|
|
|
( \+ '$undefined'(term_expansion(_,_), user),
|
2001-04-09 20:54:03 +01:00
|
|
|
user:term_expansion(Term,Expanded)
|
|
|
|
;
|
|
|
|
'$expand_term_grammar'(Term,Expanded)
|
|
|
|
),
|
|
|
|
!.
|
|
|
|
|
|
|
|
|
|
|
|
%
|
|
|
|
% Grammar Rules expansion
|
|
|
|
%
|
|
|
|
'$expand_term_grammar'((A-->B), C) :-
|
|
|
|
'$translate_rule'((A-->B),C), !.
|
|
|
|
'$expand_term_grammar'(A, A).
|
|
|
|
|
|
|
|
%
|
|
|
|
% Arithmetic expansion
|
|
|
|
%
|
|
|
|
'$expand_term_arith'(G1, G2) :-
|
|
|
|
'$get_value'('$c_arith',true),
|
|
|
|
'$c_arith'(G1, G2), !.
|
|
|
|
'$expand_term_arith'(G,G).
|
|
|
|
|
|
|
|
|
|
|
|
%
|
|
|
|
% Arithmetic expansion
|
|
|
|
%
|
|
|
|
'$expand_array_accesses_in_term'(Expanded0,ExpandedF) :-
|
|
|
|
'$array_refs_compiled',
|
|
|
|
'$c_arrays'(Expanded0,ExpandedF), !.
|
|
|
|
'$expand_array_accesses_in_term'(Expanded,Expanded).
|
|
|
|
|
|
|
|
%
|
|
|
|
% Module system expansion
|
|
|
|
%
|
2001-11-15 00:01:43 +00:00
|
|
|
'$expand_term_modules'(A,B,C,M) :- '$module_expansion'(A,B,C,M), !.
|
|
|
|
'$expand_term_modules'(A,A,A,_).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
|
2001-12-17 18:31:11 +00:00
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% catch/throw implementation
|
|
|
|
|
2002-01-07 06:28:04 +00:00
|
|
|
/* new design, not working for now: */
|
2001-12-17 18:31:11 +00:00
|
|
|
|
|
|
|
% at each catch point I need to know:
|
|
|
|
% what is ball;
|
|
|
|
% where was the previous catch
|
2002-01-07 06:28:04 +00:00
|
|
|
catch(G, C, A) :-
|
2002-01-28 04:30:40 +00:00
|
|
|
'$catch'(C,A,_),
|
2002-01-24 23:55:34 +00:00
|
|
|
'$execute'(G).
|
2001-12-17 18:31:11 +00:00
|
|
|
|
2002-01-24 23:55:34 +00:00
|
|
|
%
|
2001-04-09 20:54:03 +01:00
|
|
|
% system_catch is like catch, but it avoids the overhead of a full
|
2001-11-15 00:01:43 +00:00
|
|
|
% meta-call by calling '$execute0' instead of $execute.
|
2001-04-09 20:54:03 +01:00
|
|
|
% This way it
|
|
|
|
% also avoids module preprocessing and goal_expansion
|
|
|
|
%
|
2002-01-07 06:28:04 +00:00
|
|
|
'$system_catch'(G, M, C, A) :-
|
|
|
|
% check current trail
|
2002-01-28 04:30:40 +00:00
|
|
|
'$catch'(C,A,_),
|
2002-01-24 23:55:34 +00:00
|
|
|
'$execute0'(G, M).
|
|
|
|
|
|
|
|
%
|
|
|
|
% throw has to be *exactly* after system catch!
|
|
|
|
%
|
|
|
|
throw(Ball) :-
|
|
|
|
% get this off the unwound computation.
|
|
|
|
copy_term(Ball,NewBall),
|
|
|
|
% get current jump point
|
|
|
|
'$jump_env_and_store_ball'(NewBall).
|
2001-06-11 16:12:07 +01:00
|
|
|
|
2002-01-14 22:26:53 +00:00
|
|
|
|
2002-01-24 23:55:34 +00:00
|
|
|
% just create a choice-point
|
2002-01-28 04:30:40 +00:00
|
|
|
'$catch'(_,_,_).
|
|
|
|
'$catch'(_,_,_) :- fail.
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-01-24 23:55:34 +00:00
|
|
|
'$handle_throw'(_, _, _).
|
|
|
|
'$handle_throw'(C, A, Ball) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
% reset info
|
|
|
|
(C = Ball ->
|
|
|
|
'$execute'(A)
|
|
|
|
;
|
|
|
|
throw(Ball)
|
|
|
|
).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
'$exec_initialisation_goals' :-
|
|
|
|
'$recorded'('$blocking_code',_,R),
|
|
|
|
erase(R),
|
|
|
|
fail.
|
2001-04-19 18:12:18 +01:00
|
|
|
% system goals must be performed first
|
|
|
|
'$exec_initialisation_goals' :-
|
|
|
|
'$recorded'('$system_initialisation',G,R),
|
|
|
|
erase(R),
|
|
|
|
G \= '$',
|
|
|
|
call(G),
|
|
|
|
fail.
|
2001-04-09 20:54:03 +01:00
|
|
|
'$exec_initialisation_goals' :-
|
|
|
|
'$recorded'('$initialisation',G,R),
|
|
|
|
erase(R),
|
|
|
|
G \= '$',
|
2002-01-07 06:28:04 +00:00
|
|
|
'$current_module'(M),
|
|
|
|
'$system_catch'(once(M:G), M, Error, user:'$LoopError'(Error)),
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
'$exec_initialisation_goals'.
|
|
|
|
|
|
|
|
|
|
|
|
'$run_toplevel_hooks' :-
|
|
|
|
'$get_value'('$break',0),
|
|
|
|
'$recorded'('$toplevel_hooks',H,_), !,
|
|
|
|
( '$execute'(H) -> true ; true).
|
|
|
|
'$run_toplevel_hooks'.
|
|
|
|
|
|
|
|
|