2009-07-21 04:56:54 +01:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
% SWI emulation.
|
|
|
|
% written in an on-demand basis.
|
|
|
|
|
|
|
|
|
|
|
|
:- module(system, [term_to_atom/2,
|
2010-04-22 16:27:32 +01:00
|
|
|
concat_atom/2,
|
|
|
|
concat_atom/3,
|
|
|
|
setenv/2,
|
|
|
|
prolog_to_os_filename/2,
|
|
|
|
is_absolute_file_name/1,
|
|
|
|
read_clause/1,
|
|
|
|
string/1,
|
|
|
|
working_directory/2,
|
|
|
|
chdir/1,
|
|
|
|
compile_aux_clauses/1,
|
|
|
|
convert_time/2,
|
|
|
|
'$set_source_module'/2,
|
|
|
|
'$declare_module'/5,
|
|
|
|
'$set_predicate_attribute'/3,
|
|
|
|
load_foreign_library/1,
|
|
|
|
load_foreign_library/2,
|
|
|
|
time_file/2,
|
|
|
|
flag/3,
|
|
|
|
current_flag/1
|
2010-04-22 12:16:37 +01:00
|
|
|
]).
|
|
|
|
|
|
|
|
:- reexport(library(charsio),[
|
|
|
|
write_to_chars/2,
|
|
|
|
read_from_chars/2
|
2009-12-03 16:33:10 +00:00
|
|
|
]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
:- reexport(library(lists),[append/2,
|
|
|
|
append/3,
|
|
|
|
delete/3,
|
|
|
|
member/2,
|
|
|
|
flatten/2,
|
|
|
|
intersection/3,
|
|
|
|
last/2,
|
|
|
|
memberchk/2,
|
|
|
|
max_list/2,
|
|
|
|
min_list/2,
|
|
|
|
nextto/3,
|
|
|
|
permutation/2,
|
|
|
|
reverse/2,
|
|
|
|
select/3,
|
|
|
|
selectchk/3,
|
|
|
|
sublist/2,
|
|
|
|
sumlist/2,
|
|
|
|
nth1/3,
|
|
|
|
nth0/3]).
|
|
|
|
|
|
|
|
:- reexport(library(apply),[maplist/2,
|
|
|
|
maplist/3,
|
|
|
|
maplist/4,
|
|
|
|
maplist/5,
|
|
|
|
include/3,
|
|
|
|
exclude/3,
|
|
|
|
partition/4,
|
|
|
|
partition/5
|
|
|
|
]).
|
|
|
|
|
|
|
|
:- reexport(library(system),
|
2009-03-06 10:59:02 +00:00
|
|
|
[datime/1,
|
|
|
|
mktime/2,
|
2010-02-28 22:19:52 +00:00
|
|
|
file_property/2,
|
2009-03-06 10:59:02 +00:00
|
|
|
sleep/1]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
:- reexport(library(arg),
|
2009-03-06 10:59:02 +00:00
|
|
|
[genarg/3]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
:- reexport(library(apply_macros),
|
2009-04-24 22:43:08 +01:00
|
|
|
[]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
:- reexport(library(terms),
|
2009-03-06 10:59:02 +00:00
|
|
|
[subsumes/2,
|
2010-02-28 10:07:36 +00:00
|
|
|
subsumes_chk/2,
|
2009-03-06 10:59:02 +00:00
|
|
|
term_hash/2,
|
|
|
|
unifiable/3,
|
2010-04-22 12:16:37 +01:00
|
|
|
cyclic_term/1,
|
2009-03-06 10:59:02 +00:00
|
|
|
variant/2]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
:- source.
|
|
|
|
|
|
|
|
:- style_check(all).
|
|
|
|
|
|
|
|
:- yap_flag(unknown,error).
|
|
|
|
|
|
|
|
:- yap_flag(open_expands_filename,false).
|
|
|
|
|
|
|
|
:- yap_flag(autoload,true).
|
|
|
|
|
|
|
|
|
|
|
|
:- set_prolog_flag(user_flags,silent).
|
|
|
|
|
|
|
|
goal_expansion(atom_concat(A,B),atomic_concat(A,B)).
|
|
|
|
goal_expansion(atom_concat(A,B,C),atomic_concat(A,B,C)).
|
|
|
|
goal_expansion(arg(A,B,C),genarg(A,B,C)).
|
|
|
|
goal_expansion(time_file(A,B),system:swi_time_file(A,B)).
|
|
|
|
goal_expansion(get_time(A),system:swi_get_time(A)).
|
|
|
|
|
|
|
|
:- load_foreign_files([plstream], [], initIO).
|
2009-03-06 10:59:02 +00:00
|
|
|
|
|
|
|
% make sure we also use
|
|
|
|
:- user:library_directory(X),
|
|
|
|
atom(X),
|
2010-04-22 12:16:37 +01:00
|
|
|
atom_concat([X,'/dialect/swi'],SwiDir),
|
2009-03-06 10:59:02 +00:00
|
|
|
\+ user:library_directory(SwiDir),
|
|
|
|
asserta(user:library_directory(SwiDir)),
|
|
|
|
fail
|
|
|
|
;
|
|
|
|
true.
|
|
|
|
|
|
|
|
:- multifile
|
|
|
|
user:file_search_path/2.
|
|
|
|
|
|
|
|
:- dynamic
|
|
|
|
user:file_search_path/2.
|
|
|
|
|
|
|
|
user:file_search_path(swi, Home) :-
|
|
|
|
current_prolog_flag(home, Home).
|
|
|
|
user:file_search_path(foreign, swi(ArchLib)) :-
|
|
|
|
current_prolog_flag(arch, Arch),
|
|
|
|
atom_concat('lib/', Arch, ArchLib).
|
|
|
|
user:file_search_path(foreign, swi(lib)).
|
|
|
|
|
|
|
|
|
|
|
|
%
|
|
|
|
% maybe a good idea to eventually support this in YAP.
|
|
|
|
% but for now just ignore it.
|
|
|
|
%
|
2010-04-22 12:16:37 +01:00
|
|
|
load_foreign_library(P,Command) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
absolute_file_name(P,[file_type(executable),solutions(first),file_errors(fail)],Lib),
|
|
|
|
load_foreign_files([Lib],[],Command).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
load_foreign_library(P) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
prolog:load_foreign_library(P,install).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
term_to_atom(Term,Atom) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
nonvar(Atom), !,
|
|
|
|
atom_codes(Atom,S),
|
|
|
|
read_from_chars(S,Term).
|
2010-04-22 12:16:37 +01:00
|
|
|
term_to_atom(Term,Atom) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
write_to_chars(Term,S),
|
|
|
|
atom_codes(Atom,S).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
concat_atom([A|List], Separator, New) :- var(List), !,
|
2009-03-06 10:59:02 +00:00
|
|
|
atom_codes(Separator,[C]),
|
|
|
|
atom_codes(New, NewChars),
|
|
|
|
split_atom_by_chars(NewChars,C,L,L,A,List).
|
2010-04-22 12:16:37 +01:00
|
|
|
concat_atom(List, Separator, New) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
add_separator_to_list(List, Separator, NewList),
|
|
|
|
atomic_concat(NewList, New).
|
|
|
|
|
|
|
|
|
|
|
|
split_atom_by_chars([],_,[],L,A,[]):-
|
|
|
|
atom_codes(A,L).
|
|
|
|
split_atom_by_chars([C|NewChars],C,[],L,A,[NA|Atoms]) :- !,
|
|
|
|
atom_codes(A,L),
|
|
|
|
split_atom_by_chars(NewChars,C,NL,NL,NA,Atoms).
|
|
|
|
split_atom_by_chars([C1|NewChars],C,[C1|LF],LAtom,Atom,Atoms) :-
|
|
|
|
split_atom_by_chars(NewChars,C,LF,LAtom,Atom,Atoms).
|
|
|
|
|
|
|
|
add_separator_to_list([], _, []).
|
|
|
|
add_separator_to_list([T], _, [T]) :- !.
|
|
|
|
add_separator_to_list([H|T], Separator, [H,Separator|NT]) :-
|
|
|
|
add_separator_to_list(T, Separator, NT).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
concat_atom(List, New) :-
|
|
|
|
atomic_concat(List, New).
|
|
|
|
|
2009-03-06 10:59:02 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
setenv(X,Y) :- unix(putenv(X,Y)).
|
2009-03-06 10:59:02 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
prolog_to_os_filename(X,X).
|
2009-03-06 10:59:02 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
is_absolute_file_name(X) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
absolute_file_name(X,X).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
read_clause(X,Y) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
read_term(X,Y,[singetons(warning)]).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
string(_) :- fail.
|
2009-03-06 10:59:02 +00:00
|
|
|
|
|
|
|
bindings_message(V) -->
|
|
|
|
{ cvt_bindings(V, Bindings) },
|
|
|
|
prolog:message(query(_YesNo,Bindings)), !.
|
|
|
|
|
|
|
|
cvt_bindings([],[]).
|
|
|
|
cvt_bindings([[Name|Value]|L],[AName=Value|Bindings]) :-
|
|
|
|
atom_codes(AName, Name),
|
|
|
|
cvt_bindings(L,Bindings).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
working_directory(OCWD,NCWD) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
getcwd(OCWD),
|
|
|
|
(var(NCWD) -> true ; cd(NCWD)).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
chdir(X) :- cd(X).
|
2009-03-06 10:59:02 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
% Time is given as a float in SWI-Prolog.
|
|
|
|
swi_get_time(FSecs) :- datime(Datime), mktime(Datime, Secs), FSecs is Secs*1.0.
|
2009-03-06 10:59:02 +00:00
|
|
|
|
|
|
|
% Time is received as int, and converted to "..."
|
2010-04-22 12:16:37 +01:00
|
|
|
% ctime is a built-in.
|
|
|
|
convert_time(X,Y) :- swi:ctime(X,Y).
|
2009-03-06 10:59:02 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
compile_aux_clauses([]).
|
|
|
|
compile_aux_clauses([(:- G)|Cls]) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
prolog_load_context(module, M),
|
|
|
|
once(M:G),
|
2010-04-22 12:16:37 +01:00
|
|
|
compile_aux_clauses(Cls).
|
|
|
|
compile_aux_clauses([Cl|Cls]) :-
|
2009-03-06 10:59:02 +00:00
|
|
|
prolog_load_context(module, M),
|
|
|
|
assert_static(M:Cl),
|
2010-04-22 12:16:37 +01:00
|
|
|
compile_aux_clauses(Cls).
|
2009-11-23 10:12:10 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
'$set_source_module'(Source0, SourceF) :-
|
|
|
|
prolog_load_context(module, Source0), !,
|
2009-11-23 10:12:10 +00:00
|
|
|
module(SourceF).
|
2010-04-22 12:16:37 +01:00
|
|
|
'$set_source_module'(Source0, SourceF) :-
|
2010-02-28 22:19:52 +00:00
|
|
|
current_module(Source0, SourceF).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
'$declare_module'(Name, Context, _, _, _) :-
|
2009-12-04 11:00:13 +00:00
|
|
|
add_import_module(Name, Context, start).
|
2009-11-23 10:12:10 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
'$set_predicate_attribute'(_, _, _).
|
2010-02-28 22:19:52 +00:00
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
swi_time_file(File, Time) :-
|
2010-02-28 22:19:52 +00:00
|
|
|
file_property(File, mod_time(Date)),
|
|
|
|
Time is Date*1.0.
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
flag(Key, Old, New) :-
|
2010-02-28 22:19:52 +00:00
|
|
|
recorded(Key, Old, R), !,
|
|
|
|
(
|
|
|
|
Old \== New
|
|
|
|
->
|
|
|
|
erase(R),
|
|
|
|
recorda(Key, New, _)
|
|
|
|
;
|
|
|
|
true
|
|
|
|
).
|
2010-04-22 12:16:37 +01:00
|
|
|
flag(Key, 0, New) :-
|
2010-02-28 22:19:52 +00:00
|
|
|
functor(Key, N, Ar),
|
|
|
|
functor(K, N, Ar),
|
2010-04-22 12:16:37 +01:00
|
|
|
assert(flag(K)),
|
2010-02-28 22:19:52 +00:00
|
|
|
recorda(K, New, _).
|
|
|
|
|
2010-04-22 12:16:37 +01:00
|
|
|
current_flag(Key) :-
|
2010-02-28 22:19:52 +00:00
|
|
|
swi:flag(Key).
|