This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/pl/directives.yap

288 lines
8.6 KiB
Plaintext
Raw Normal View History

/*************************************************************************
* *
* YAP Prolog *
* *
* Yap Prolog was developed at NCCUP - Universidade do Porto *
* *
* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
* *
**************************************************************************
* *
* File: directives.yap *
* Last rev: *
* mods: *
* comments: directing system execution *
* *
*************************************************************************/
2017-10-27 13:50:40 +01:00
/**
* @file directives.yap
* @author VITOR SANTOS COSTA <vsc@VITORs-MBP-2.lan>
* @date Thu Oct 19 11:47:38 2017
2018-02-14 10:37:07 +00:00
*
2017-10-27 13:50:40 +01:00
* @brief Control File Loading
2018-06-05 20:51:49 +01:00
%/
/**
* @defgroup Directives Prolog Directives
2018-05-10 13:11:56 +01:00
* @ingroup YAPConsulting
* @{
2018-02-14 10:37:07 +00:00
*
*
2017-10-27 13:50:40 +01:00
*/
2014-12-24 15:32:29 +00:00
2014-04-09 12:39:29 +01:00
:- system_module( '$_directives', [user_defined_directive/2], ['$all_directives'/1,
'$exec_directives'/5]).
:- use_system_module( '$_boot', ['$command'/4,
'$system_catch'/4]).
:- use_system_module( '$_consult', ['$elif'/2,
'$else'/1,
'$endif'/1,
'$if'/2,
'$include'/2,
'$initialization'/1,
'$initialization'/2,
'$require'/2,
'$set_encoding'/1,
'$use_module'/3]).
:- use_system_module( '$_modules', ['$meta_predicate'/2,
'$module'/3,
'$module'/4,
'$module_transparent'/2]).
:- use_system_module( '$_preddecls', ['$discontiguous'/2,
'$dynamic'/2]).
:- use_system_module( '$_preds', ['$noprofile'/2,
'$public'/2]).
:- use_system_module( '$_threads', ['$thread_local'/2]).
'$all_directives'(_:G1) :- !,
'$all_directives'(G1).
'$all_directives'((G1,G2)) :- !,
'$all_directives'(G1),
'$all_directives'(G2).
'$all_directives'(G) :- !,
'$directive'(G).
%:- '$multifile'( '$directive'/1, prolog ).
2018-01-22 13:53:17 +00:00
%:- multifile prolog:'$exec_directive'/5, prolog:'$directive'/1.
:- '$new_multifile'('$exec_directive'(_,_,_,_,_), prolog).
:- '$new_multifile'('$directive'(_), prolog).
2015-11-09 11:29:09 +00:00
'$directive'(block(_)).
'$directive'(char_conversion(_,_)).
'$directive'(compile(_)).
'$directive'(consult(_)).
'$directive'(discontiguous(_)).
'$directive'(dynamic(_)).
'$directive'(elif(_)).
'$directive'(else).
'$directive'(encoding(_)).
'$directive'(endif).
'$directive'(ensure_loaded(_)).
'$directive'(expects_dialect(_)).
'$directive'(if(_)).
'$directive'(include(_)).
'$directive'(initialization(_)).
2010-01-15 16:21:29 +00:00
'$directive'(initialization(_,_)).
'$directive'(license(_)).
'$directive'(meta_predicate(_)).
'$directive'(module(_,_)).
'$directive'(module(_,_,_)).
'$directive'(module_transparent(_)).
'$directive'(multifile(_)).
'$directive'(noprofile(_)).
'$directive'(public(_)).
'$directive'(op(_,_,_)).
2011-03-15 23:49:28 +00:00
'$directive'(require(_)).
'$directive'(set_prolog_flag(_,_)).
'$directive'(reconsult(_)).
'$directive'(reexport(_)).
'$directive'(reexport(_,_)).
'$directive'(predicate_options(_,_,_)).
2009-04-25 18:54:21 +01:00
'$directive'(thread_initialization(_)).
'$directive'(thread_local(_)).
'$directive'(uncutable(_)).
'$directive'(use_module(_)).
'$directive'(use_module(_,_)).
'$directive'(use_module(_,_,_)).
'$directive'(wait(_)).
2015-07-06 12:04:42 +01:00
'$exec_directives'((G1,G2), Mode, M, VL, Pos) :-
2014-10-02 14:57:50 +01:00
!,
'$exec_directives'(G1, Mode, M, VL, Pos),
'$exec_directives'(G2, Mode, M, VL, Pos).
'$exec_directives'(G, Mode, M, VL, Pos) :-
2014-09-22 18:13:35 +01:00
'$exec_directive'(G, Mode, M, VL, Pos).
'$exec_directive'(multifile(D), _, M, _, _) :-
2018-11-03 10:49:35 +00:00
'$system_catch'('$multifile'(D, M), M,
Error,
2018-11-03 10:49:35 +00:00
user:'$LoopError'(Error, top)).
'$exec_directive'(discontiguous(D), _, M, _, _) :-
2018-11-03 10:49:35 +00:00
'$discontiguous'(D,M).
2014-09-11 20:06:57 +01:00
/** @pred initialization
2018-02-14 10:37:07 +00:00
2014-09-11 20:06:57 +01:00
Execute the goals defined by initialization/1. Only the first answer is
considered.
2015-07-06 12:04:42 +01:00
2014-09-11 20:06:57 +01:00
*/
2018-01-27 10:17:27 +00:00
'$exec_directive'(M:A, Status, _M, VL, Pos) :-
2018-02-14 10:37:07 +00:00
'$exec_directives'(A, Status, M, VL, Pos).
'$exec_directive'(initialization(D), _, M, _, _) :-
'$initialization'(M:D).
'$exec_directive'(initialization(D,OPT), _, M, _, _) :-
2010-01-15 16:21:29 +00:00
'$initialization'(M:D, OPT).
'$exec_directive'(thread_initialization(D), _, M, _, _) :-
2009-04-25 18:54:21 +01:00
'$thread_initialization'(M:D).
'$exec_directive'(expects_dialect(D), _, _, _, _) :-
2015-07-06 12:04:42 +01:00
expects_dialect(D).
'$exec_directive'(encoding(Enc), _, _, _, _) :-
'$set_encoding'(Enc).
'$exec_directive'(include(F), Status, _, _, _) :-
'$include'(F, Status).
2014-04-06 17:05:17 +01:00
% don't declare modules into Prolog Module
'$exec_directive'(module(N,P), Status, _, _, _) :-
'$module'(Status,N,P).
'$exec_directive'(module(N,P,Op), Status, _, _, _) :-
'$module'(Status,N,P,Op).
'$exec_directive'(meta_predicate(P), _, M, _, _) :-
2018-01-29 15:24:32 +00:00
'$meta_predicate'(P,M).
'$exec_directive'(module_transparent(P), _, M, _, _) :-
'$module_transparent'(P, M).
'$exec_directive'(noprofile(P), _, M, _, _) :-
'$noprofile'(P, M).
'$exec_directive'(require(Ps), _, M, _, _) :-
2011-03-15 23:49:28 +00:00
'$require'(Ps, M).
'$exec_directive'(dynamic(P), _, M, _, _) :-
'$dynamic'(P, M).
'$exec_directive'(thread_local(P), _, M, _, _) :-
'$thread_local'(P, M).
'$exec_directive'(op(P,OPSEC,OP), _, _, _, _) :-
2009-11-20 00:33:14 +00:00
'$current_module'(M),
op(P,OPSEC,M:OP).
'$exec_directive'(set_prolog_flag(F,V), _, _, _, _) :-
set_prolog_flag(F,V).
'$exec_directive'(ensure_loaded(Fs), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:Fs, [if(changed)]).
'$exec_directive'(char_conversion(IN,OUT), _, _, _, _) :-
char_conversion(IN,OUT).
'$exec_directive'(public(P), _, M, _, _) :-
'$public'(P, M).
'$exec_directive'(compile(Fs), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:Fs, []).
'$exec_directive'(reconsult(Fs), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:Fs, []).
'$exec_directive'(consult(Fs), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:Fs, [consult(consult)]).
'$exec_directive'(use_module(F), _, M, _, _) :-
2014-04-06 17:05:17 +01:00
use_module(M:F).
'$exec_directive'(reexport(F), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:F, [if(not_loaded), silent(true), reexport(true),must_be_module(true)]).
'$exec_directive'(reexport(F,Spec), _, M, _, _) :-
2018-07-10 23:21:19 +01:00
load_files(M:F, [if(changed), silent(true), imports(Spec), reexport(true),must_be_module(true)]).
2014-04-06 17:05:17 +01:00
'$exec_directive'(use_module(F, Is), _, M, _, _) :-
use_module(M:F, Is).
'$exec_directive'(use_module(Mod,F,Is), _, _, _, _) :-
2018-02-14 10:37:07 +00:00
use_module(Mod,F,Is).
'$exec_directive'(block(BlockSpec), _, _, _, _) :-
'$block'(BlockSpec).
'$exec_directive'(wait(BlockSpec), _, _, _, _) :-
'$wait'(BlockSpec).
'$exec_directive'(table(PredSpec), _, M, _, _) :-
'$table'(PredSpec, M).
'$exec_directive'(uncutable(PredSpec), _, M, _, _) :-
'$uncutable'(PredSpec, M).
'$exec_directive'(if(Goal), Context, M, _, _) :-
'$if'(M:Goal, Context).
'$exec_directive'(else, Context, _, _, _) :-
'$else'(Context).
'$exec_directive'(elif(Goal), Context, M, _, _) :-
'$elif'(M:Goal, Context).
'$exec_directive'(endif, Context, _, _, _) :-
'$endif'(Context).
'$exec_directive'(license(_), Context, _, _, _) :-
Context \= top.
'$exec_directive'(predicate_options(PI, Arg, Options), Context, Module, VL, Pos) :-
Context \= top,
predopts:expand_predicate_options(PI, Arg, Options, Clauses),
'$assert_list'(Clauses, Context, Module, VL, Pos).
'$assert_list'([], _Context, _Module, _VL, _Pos).
2016-04-14 12:00:09 +01:00
'$assert_list'([Clause|Clauses], Context, Module, VL, Pos) :-
'$command'(Clause, VL, Pos, Context),
'$assert_list'(Clauses, Context, Module, VL, Pos).
2015-07-06 12:04:42 +01:00
%
% allow users to define their own directives.
%
2009-12-04 00:29:50 +00:00
user_defined_directive(Dir,_) :-
'$directive'(Dir), !.
user_defined_directive(Dir,Action) :-
functor(Dir,Na,Ar),
functor(NDir,Na,Ar),
'$current_module'(M, prolog),
2015-07-06 12:04:42 +01:00
assert_static(prolog:'$directive'(NDir)),
assert_static(prolog:('$exec_directive'(Dir, _, _, _, _) :- Action)),
2009-12-04 00:29:50 +00:00
'$current_module'(_, M).
2010-02-28 01:11:05 +00:00
'$thread_initialization'(M:D) :-
eraseall('$thread_initialization'),
2018-03-02 21:18:24 +00:00
%writeln(M:D),
2010-02-28 01:11:05 +00:00
recorda('$thread_initialization',M:D,_),
fail.
2010-02-28 01:11:05 +00:00
'$thread_initialization'(M:D) :-
'$initialization'(M:D).
2016-07-31 16:39:55 +01:00
%
% 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
%
'$process_directive'(G, top, M, VL, Pos) :-
current_prolog_flag(language_mode, yap), !, /* strict_iso on */
'$process_directive'(G, consult, M, VL, Pos).
2016-08-20 03:34:24 +01:00
'$process_directive'(G, top, M, _, _) :-
2016-07-31 16:39:55 +01:00
!,
2016-08-20 03:34:24 +01:00
'$do_error'(context_error((:-M:G),clause),query).
%
2016-07-31 16:39:55 +01:00
% default case
%
'$process_directive'(Gs, Mode, M, VL, Pos) :-
'$all_directives'(Gs), !,
'$exec_directives'(Gs, Mode, M, VL, Pos).
%
% ISO does not allow goals (use initialization).
%
'$process_directive'(D, _, M, _VL, _Pos) :-
current_prolog_flag(language_mode, iso),
!, % ISO Prolog mode, go in and do it,
2019-02-21 21:03:44 +00:00
'$do_error'(context_error((:- M:D),query),directive).
2016-07-31 16:39:55 +01:00
%
2016-08-20 03:34:24 +01:00
% but YAP and SICStus do.
2016-07-31 16:39:55 +01:00
%
2018-01-27 10:17:27 +00:00
'$process_directive'(G, _Mode, M, _VL, _Pos) :-
2019-02-21 21:03:44 +00:00
'$yap_strip_module'(M:G,M1,G1),
'$execute'(M1:G1),
2016-08-20 03:34:24 +01:00
!.
'$process_directive'(G, _Mode, M, _VL, _Pos) :-
format(user_error,':- ~w:~w failed.~n',[M,G]).
2018-05-10 13:11:56 +01:00
%% @}