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: error messages for YAP *
|
|
|
|
* *
|
|
|
|
*************************************************************************/
|
|
|
|
|
2002-09-09 18:40:12 +01:00
|
|
|
'$do_error'(Type,Message) :-
|
|
|
|
'$current_stack'(local_sp(_,Envs,CPs)),
|
|
|
|
throw(error(Type,[Message|local_sp(Message,Envs,CPs)])).
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
'$Error'(E) :-
|
|
|
|
'$LoopError'(E).
|
|
|
|
|
|
|
|
'$LoopError'(_) :-
|
|
|
|
flush_output(user_output),
|
|
|
|
flush_output(user_error),
|
|
|
|
fail.
|
|
|
|
'$LoopError'(Error) :- !,
|
|
|
|
'$process_error'(Error),
|
|
|
|
fail.
|
|
|
|
'$LoopError'(_) :-
|
2002-09-17 00:01:59 +01:00
|
|
|
current_stream(_, write, S),
|
|
|
|
flush_all_streams,
|
2001-04-09 20:54:03 +01:00
|
|
|
fail.
|
|
|
|
|
|
|
|
'$process_error'(abort) :- !,
|
2002-10-08 15:32:42 +01:00
|
|
|
'$format'(user_error,"[ Execution Aborted ]~n",[]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$process_error'(error(Msg, Where)) :- !,
|
2002-02-04 16:12:54 +00:00
|
|
|
'$set_fpu_exceptions',
|
|
|
|
'$print_message'(error,error(Msg, Where)).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$process_error'(Throw) :-
|
|
|
|
print_message(error,Throw).
|
|
|
|
|
2002-01-22 17:11:36 +00:00
|
|
|
print_message(Level, Mss) :-
|
|
|
|
'$print_message'(Level, Mss).
|
|
|
|
|
|
|
|
'$print_message'(force(_Severity), Msg) :- !,
|
2001-04-09 20:54:03 +01:00
|
|
|
print(user_error,Msg).
|
2002-01-22 17:11:36 +00:00
|
|
|
'$print_message'(Severity, Msg) :-
|
2003-01-10 11:52:33 +00:00
|
|
|
nonvar(Severity), nonvar(Msg),
|
2001-11-15 00:01:43 +00:00
|
|
|
\+ '$undefined'(portray_message(Severity, Msg), user),
|
|
|
|
user:portray_message(Severity, Msg), !.
|
2003-01-10 11:52:33 +00:00
|
|
|
'$print_message'(error,error(Msg,Info)) :-
|
|
|
|
( var(Msg) ; var(Info) ), !,
|
|
|
|
'$format'(user_error,"[ No handler for error ~w ]~n", [error(Msg,Info)]).
|
2002-09-09 18:40:12 +01:00
|
|
|
'$print_message'(error,error(syntax_error(A,B,C,D,E,F),_)) :- !,
|
|
|
|
'$output_error_message'(syntax_error(A,B,C,D,E,F), 'SYNTAX ERROR').
|
2002-10-10 06:58:49 +01:00
|
|
|
'$print_message'(error,error(Msg,[Info|local_sp(Where,Envs,CPs)])) :- !,
|
2002-09-09 18:40:12 +01:00
|
|
|
'$prepare_loc'(Info,Where,Location),
|
2002-10-01 21:29:58 +01:00
|
|
|
'$output_error_message'(Msg, Location), !,
|
|
|
|
'$do_stack_dump'(Envs, CPs).
|
2002-10-10 06:58:49 +01:00
|
|
|
% old format: don't want a stack dump.
|
2003-01-10 11:52:33 +00:00
|
|
|
'$print_message'(error,error(Type,Where)) :-
|
|
|
|
'$output_error_message'(Type, Where), !.
|
2002-01-22 17:11:36 +00:00
|
|
|
'$print_message'(error,Throw) :-
|
2002-02-12 18:24:21 +00:00
|
|
|
'$format'(user_error,"[ No handler for error ~w ]~n", [Throw]).
|
2002-01-22 17:11:36 +00:00
|
|
|
'$print_message'(informational,M) :-
|
|
|
|
( '$get_value'('$verbose',on) ->
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_informational_message'(M) ;
|
2002-01-22 17:11:36 +00:00
|
|
|
true
|
|
|
|
).
|
|
|
|
'$print_message'(warning,M) :-
|
2002-06-01 02:46:06 +01:00
|
|
|
'$format'(user_error, "[ ", []),
|
|
|
|
'$do_print_message'(M),
|
|
|
|
'$format'(user_error, " ]~n", []).
|
2002-01-22 17:11:36 +00:00
|
|
|
'$print_message'(help,M) :-
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_print_message'(M),
|
|
|
|
'$format'(user_error, "~n", []).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
|
|
|
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_informational_message'(loading(_,user)) :- !.
|
|
|
|
'$do_informational_message'(loading(What,AbsoluteFileName)) :- !,
|
2002-01-22 17:11:36 +00:00
|
|
|
'$show_consult_level'(LC),
|
|
|
|
'$format'(user_error, "~*|[ ~a ~a... ]~n", [LC, What, AbsoluteFileName]).
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_informational_message'(loaded(_,user,_,_,_)) :- !.
|
|
|
|
'$do_informational_message'(loaded(What,AbsoluteFileName,Mod,Time,Space)) :- !,
|
2002-01-22 17:11:36 +00:00
|
|
|
'$show_consult_level'(LC0),
|
|
|
|
LC is LC0+1,
|
|
|
|
'$format'(user_error, "~*|[ ~a ~a in module ~a, ~d msec ~d bytes ]~n", [LC, What, AbsoluteFileName,Mod,Time,Space]).
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_informational_message'(M) :-
|
2002-08-01 18:57:18 +01:00
|
|
|
'$format'(user_error,"[ ", []),
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_print_message'(M),
|
2002-08-01 18:57:18 +01:00
|
|
|
'$format'(user_error," ]~n", []).
|
2002-06-01 02:46:06 +01:00
|
|
|
|
|
|
|
|
2002-01-22 17:11:36 +00:00
|
|
|
%message(loaded(Past,AbsoluteFileName,user,Msec,Bytes), Prefix, Suffix) :- !,
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_print_message'(debug(debug)) :- !,
|
|
|
|
'$format'(user_error,"Debug mode on.",[]).
|
|
|
|
'$do_print_message'(debug(off)) :- !,
|
|
|
|
'$format'(user_error,"Debug mode off.",[]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$do_print_message'(debug(trace)) :- !,
|
2002-06-01 02:46:06 +01:00
|
|
|
'$format'(user_error,"Trace mode on.",[]).
|
2002-01-07 06:28:04 +00:00
|
|
|
'$do_print_message'('$format'(Msg, Args)) :- !,
|
|
|
|
'$format'(user_error,Msg,Args).
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_print_message'(import(Pred,To,From,private)) :- !,
|
|
|
|
'$format'(user_error,"Importing private predicate ~w:~w to ~w.",
|
2002-01-05 04:37:47 +00:00
|
|
|
[From,Pred,To]).
|
2002-06-01 02:46:06 +01:00
|
|
|
'$do_print_message'(no_match(P)) :- !,
|
|
|
|
'$format'(user_error,"No matching predicate for ~w.",
|
|
|
|
[P]).
|
|
|
|
'$do_print_message'(breakp(bp(debugger,_,_,M:F/N,_),add,already)) :- !,
|
|
|
|
'$format'(user_error,"There is already a spy point on ~w:~w/~w.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(breakp(bp(debugger,_,_,M:F/N,_),add,ok)) :- !,
|
|
|
|
'$format'(user_error,"Spy point set on ~w:~w/~w.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(breakp(bp(debugger,_,_,M:F/N,_),remove,last)) :- !,
|
|
|
|
'$format'(user_error,"Spy point on ~w:~w/~w removed.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(breakp(no,breakpoint_for,M:F/N)) :- !,
|
|
|
|
'$format'(user_error,"There is no spy point on ~w:~w/~w.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(leash([])) :- !,
|
|
|
|
'$format'(user_error,"No leashing.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(leash([A|B])) :- !,
|
|
|
|
'$format'(user_error,"Leashing set to ~w.",
|
|
|
|
[[A|B]]).
|
|
|
|
'$do_print_message'(breakpoints([])) :- !,
|
|
|
|
'$format'(user_error,"There are no spy-points set.",
|
|
|
|
[M,F,N]).
|
|
|
|
'$do_print_message'(breakpoints(L)) :- !,
|
|
|
|
'$format'(user_error,"Spy-points set on:", []),
|
|
|
|
'$print_list_of_preds'(L).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$do_print_message'(Messg) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"~q",Messg).
|
2001-04-09 20:54:03 +01:00
|
|
|
|
2002-06-01 02:46:06 +01:00
|
|
|
'$print_list_of_preds'([]).
|
|
|
|
'$print_list_of_preds'([P|L]) :-
|
|
|
|
'$format'(user_error,"~n ~w",[P]),
|
|
|
|
'$print_list_of_preds'(L).
|
|
|
|
|
2002-10-01 21:29:58 +01:00
|
|
|
'$do_stack_dump'(Envs, CPs) :-
|
2002-11-11 19:48:07 +00:00
|
|
|
'$preprocess_stack'(CPs,0, PCPs),
|
|
|
|
'$preprocess_stack'(Envs,0, PEnvs),
|
2002-10-01 21:29:58 +01:00
|
|
|
'$say_stack_dump'(PEnvs, PCPs),
|
|
|
|
'$show_cps'(PCPs),
|
|
|
|
'$show_envs'(PEnvs),
|
|
|
|
'$close_stack_dump'(PEnvs, PCPs).
|
|
|
|
|
2002-11-11 19:48:07 +00:00
|
|
|
'$preprocess_stack'([], _, []).
|
|
|
|
'$preprocess_stack'([G|Gs],40, [overflow]) :- !.
|
|
|
|
'$preprocess_stack'([G|Gs],I, NGs) :-
|
2002-10-01 21:29:58 +01:00
|
|
|
'$pred_for_code'(G,Name,Arity,Mod,Clause),
|
2002-11-11 19:48:07 +00:00
|
|
|
I1 is I+1,
|
|
|
|
'$beautify_stack_goal'(Name,Arity,Mod,Clause,Gs,I1,NGs).
|
2002-10-01 21:29:58 +01:00
|
|
|
|
2002-11-11 19:48:07 +00:00
|
|
|
'$beautify_stack_goal'(Name,Arity,Module,0,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs,I,NGs).
|
|
|
|
'$beautify_stack_goal'(Name,Arity,Module,Clause,Gs,I,NGs) :-
|
2002-10-01 21:29:58 +01:00
|
|
|
functor(G,Name,Arity),
|
|
|
|
'$hidden_predicate'(G,Module), !,
|
2002-11-11 19:48:07 +00:00
|
|
|
'$beautify_hidden_goal'(Name,Arity,Module,Clause,Gs,I,NGs).
|
|
|
|
'$beautify_stack_goal'(Name,Arity,Module,Clause,Gs,I,[cl(Name,Arity,Module,Clause)|NGs]) :-
|
|
|
|
'$preprocess_stack'(Gs,I,NGs).
|
2002-10-01 21:29:58 +01:00
|
|
|
|
|
|
|
|
2002-11-11 19:48:07 +00:00
|
|
|
'$beautify_hidden_goal'('$yes_no',_,_,_,_,_,[]) :- !.
|
|
|
|
'$beautify_hidden_goal'('$do_yes_no',_,_,_,_,_,[]) :- !.
|
|
|
|
'$beautify_hidden_goal'('$query',_,_,_,_,_,[]) :- !.
|
|
|
|
'$beautify_hidden_goal'('$enter_top_level',_,_,_,_,_,[]) :- !.
|
2002-10-01 21:29:58 +01:00
|
|
|
% The user should never know these exist.
|
|
|
|
'$beautify_hidden_goal'('$csult',_,prolog,ClNo,Gs,NGs) :- !,
|
2002-11-11 19:48:07 +00:00
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$use_module',2,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$ensure_loaded',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$recordedp',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$continue_with_command',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$spycall_stdpred',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$spycalls',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$spycall',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$do_spy',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$spy',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$do_creep_execute',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$creep_execute',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$direct_spy',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$system_catch',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$execute_command',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$process_directive',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$catch',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$loop',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$consult',1,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$reconsult',_,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$undefp',1,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$use_module',2,prolog,ClNo,Gs,I,NGs) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$repeat',0,prolog,ClNo,Gs,I,[cl(repeat,0,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$recorded_with_key',3,prolog,ClNo,Gs,I,[cl(recorded,3,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$consult',2,prolog,ClNo,Gs,I,[cl(consult,1,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$findall_with_common_vars',_,prolog,ClNo,Gs,I,[cl(findall,4,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$findall',_,prolog,ClNo,Gs,I,[cl(findall,4,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$bagof',_,prolog,ClNo,Gs,I,[cl(bagof,3,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$listing',_,prolog,ClNo,Gs,I,[cl(listing,1,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$call',Args,prolog,ClNo,Gs,I,[cl(call,Args,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$current_predicate',Args,prolog,ClNo,Gs,I,[cl(current_predicate,Args,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$list_clauses',_,prolog,ClNo,Gs,I,[cl(listing,1,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'('$use_module',1,prolog,ClNo,Gs,I,[cl(use_module,1,prolog,ClNo)|NGs]) :- !,
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
|
|
|
'$beautify_hidden_goal'(Name,Args,Mod,ClNo,Gs,I,[cl(Name,Args,Mod,ClNo)|NGs]) :-
|
|
|
|
'$preprocess_stack'(Gs, I, NGs).
|
2002-10-01 21:29:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
'$say_stack_dump'([], []) :- !.
|
|
|
|
'$say_stack_dump'(_, _) :-
|
|
|
|
'$format'(user_error,"[ Stack dump for error:", []).
|
|
|
|
|
|
|
|
'$close_stack_dump'([], []) :- !.
|
|
|
|
'$close_stack_dump'(_, _) :-
|
|
|
|
'$format'(user_error," ]~n", []).
|
|
|
|
|
|
|
|
'$show_cps'([]) :- !.
|
2002-09-09 18:40:12 +01:00
|
|
|
'$show_cps'(List) :-
|
2002-10-01 21:29:58 +01:00
|
|
|
'$format'(user_error,"~n choice-points (goals with alternatives left):",[]),
|
|
|
|
'$print_stack'(List).
|
2002-09-09 18:40:12 +01:00
|
|
|
|
2002-10-01 21:29:58 +01:00
|
|
|
'$show_envs'([]) :- !.
|
2002-09-09 18:40:12 +01:00
|
|
|
'$show_envs'(List) :-
|
2002-10-01 21:29:58 +01:00
|
|
|
'$format'(user_error,"~n environments (partially executed clauses):",[]),
|
|
|
|
'$print_stack'(List).
|
2002-09-09 18:40:12 +01:00
|
|
|
|
|
|
|
'$prepare_loc'(Info,Where,Location) :- integer(Where), !,
|
|
|
|
'$pred_for_code'(Where,Name,Arity,Mod,Clause),
|
|
|
|
'$construct_code'(Clause,Name,Arity,Mod,Info,Location).
|
|
|
|
'$prepare_loc'(Info,Where,Info).
|
|
|
|
|
|
|
|
'$print_stack'([]).
|
2002-11-11 19:48:07 +00:00
|
|
|
'$print_stack'([overflow]) :- !,
|
|
|
|
'$format'(user_error,"~n ...",[]).
|
2002-10-01 21:29:58 +01:00
|
|
|
'$print_stack'([cl(Name,Arity,Mod,Clause)|List]) :-
|
|
|
|
'$show_goal'(Clause,Name,Arity,Mod),
|
|
|
|
'$print_stack'(List).
|
2002-09-09 18:40:12 +01:00
|
|
|
|
|
|
|
'$show_goal'(-1,Name,Arity,Mod) :- !,
|
2002-10-01 21:29:58 +01:00
|
|
|
'$format'("~n ~a:~a/~d at indexing code",[Mod,Name,Arity]).
|
2002-09-09 18:40:12 +01:00
|
|
|
'$show_goal'(0,Name,Arity,Mod) :- !.
|
|
|
|
'$show_goal'(I,Name,Arity,Mod) :-
|
2002-11-11 19:48:07 +00:00
|
|
|
'$format'(user_error,"~n ~a:~a/~d at clause ~d",[Mod,Name,Arity,I]).
|
2002-09-09 18:40:12 +01:00
|
|
|
|
|
|
|
'$construct_code'(-1,Name,Arity,Mod,Where,Location) :- !,
|
|
|
|
number_codes(Arity,ArityCode),
|
|
|
|
atom_codes(ArityAtom,ArityCode),
|
|
|
|
atom_concat([Where,' at ',Mod,':',Name,'/',ArityAtom,' at indexing code'],Location).
|
|
|
|
'$construct_code'(0,_,_,_,Location,Location) :- !.
|
|
|
|
'$construct_code'(Cl,Name,Arity,Mod,Where,Location) :-
|
|
|
|
number_codes(Arity,ArityCode),
|
|
|
|
atom_codes(ArityAtom,ArityCode),
|
|
|
|
number_codes(Cl,ClCode),
|
|
|
|
atom_codes(ClAtom,ClCode),
|
|
|
|
atom_concat([Where,' at ',Mod,':',Name,'/',ArityAtom,' (clause ',ClAtom,')'],Location).
|
|
|
|
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(context_error(Goal,Who),Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ CONTEXT ERROR- ~w: ~w appeared in ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Goal,Who,Where]).
|
|
|
|
'$output_error_message'(domain_error(array_overflow,Opt), Where) :-
|
2002-03-27 20:53:58 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid index ~w for array ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
|
|
|
'$output_error_message'(domain_error(array_type,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid static array type ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
|
|
|
'$output_error_message'(domain_error(builtin_procedure,P), P) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- non-iso built-in procedure ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[P]).
|
|
|
|
'$output_error_message'(domain_error(character_code_list,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid list of codes ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
2001-05-21 21:00:05 +01:00
|
|
|
'$output_error_message'(domain_error(delete_file_option,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid list of options ~w ]~n",
|
2001-05-21 21:00:05 +01:00
|
|
|
[Where,Opt]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(domain_error(operator_specifier,Op), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid operator specifier ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Op]).
|
|
|
|
'$output_error_message'(domain_error(close_option,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid close option ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
|
|
|
'$output_error_message'(domain_error(radix,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid radix ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
|
|
|
'$output_error_message'(domain_error(shift_count_overflow,Opt), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: shift count overflow in ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Opt]).
|
|
|
|
'$output_error_message'(domain_error(flag_value,F+V), W) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid value ~w for flag ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[W,V,F]).
|
|
|
|
'$output_error_message'(domain_error(io_mode,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid io mode ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(mutable,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: invalid mutable ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
2001-04-19 18:12:18 +01:00
|
|
|
'$output_error_message'(domain_error(module_decl_options,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: expect module declaration options, found ~w ]~n",
|
2001-04-19 18:12:18 +01:00
|
|
|
[Where,N]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(domain_error(not_empty_list,_), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: found empty list ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(domain_error(not_less_than_zero,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: number ~w less than zero ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(not_newline,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: number ~w not newline ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(not_zero,N), Where) :-
|
2002-10-08 06:00:36 +01:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w is not allowed in the domain ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(operator_priority,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w invalid operator priority ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(operator_specifier,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w invalid operator specifier ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
2002-06-01 02:46:06 +01:00
|
|
|
'$output_error_message'(domain_error(predicate_spec,N), Where) :-
|
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w invalid predicate specifier ]~n",
|
|
|
|
[Where,N]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(domain_error(read_option,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w invalid option to read ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(semantics_indicator,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected predicate indicator, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(domain_error(source_sink,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w is not a source sink term ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(domain_error(stream,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(stream_or_alias,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(stream_option,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream option ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(stream_position,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream position ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(stream_property,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream property ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(syntax_error_handler,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a syntax error handler ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(time_out_spec,What), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w not a valid specification for a time out ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,What]).
|
|
|
|
'$output_error_message'(domain_error(write_option,N), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ DOMAIN ERROR- ~w: ~w invalid option to write ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,N]).
|
|
|
|
'$output_error_message'(existence_error(array,F), W) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ EXISTENCE ERROR- ~w could not open array ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[W,F]).
|
|
|
|
'$output_error_message'(existence_error(procedure,P), _) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ EXISTENCE ERROR- procedure ~w undefined ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[P]).
|
|
|
|
'$output_error_message'(existence_error(source_sink,F), W) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ EXISTENCE ERROR- ~w could not find file ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[W,F]).
|
2001-07-16 16:26:14 +01:00
|
|
|
'$output_error_message'(existence_error(stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ EXISTENCE ERROR- ~w: ~w not an open stream ]~n",
|
2001-07-16 16:26:14 +01:00
|
|
|
[Where,Stream]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(evaluation_error(int_overflow), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ INTEGER OVERFLOW ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(evaluation_error(float_overflow), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ FLOATING POINT OVERFLOW ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(evaluation_error(undefined), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ UNDEFINED ARITHMETIC RESULT ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(evaluation_error(underflow), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ UNDERFLOW ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(evaluation_error(float_underflow), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ FLOATING POINT UNDERFLOW ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(evaluation_error(zero_divisor), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ ZERO DIVISOR ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(instantiation_error, Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ INSTANTIATION ERROR- ~w: expected bound value ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
2002-10-10 06:58:49 +01:00
|
|
|
'$output_error_message'(out_of_heap_error, Where) :-
|
|
|
|
'$format'(user_error,"[ OUT OF HEAP SPACE ERROR- ~w ]~n",
|
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(out_of_stack_error, Where) :-
|
|
|
|
'$format'(user_error,"[ OUT OF STACK SPACE ERROR- ~w ]~n",
|
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(out_of_trail_error, Where) :-
|
|
|
|
'$format'(user_error,"[ OUT OF TRAIL SPACE ERROR- ~w ]~n",
|
|
|
|
[Where]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(permission_error(access,private_procedure,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot see clauses for ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,P]).
|
|
|
|
'$output_error_message'(permission_error(access,static_procedure,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot access static procedure ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,P]).
|
2001-04-16 17:41:04 +01:00
|
|
|
'$output_error_message'(permission_error(alias,new,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot create alias ~w ]~n",
|
2001-04-16 17:41:04 +01:00
|
|
|
[Where,P]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(permission_error(create,array,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot create array ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,P]).
|
|
|
|
'$output_error_message'(permission_error(create,operator,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot create operator ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,P]).
|
|
|
|
'$output_error_message'(permission_error(input,binary_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot read from binary stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(input,closed_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: trying to read from closed stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(input,past_end_of_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: past end of stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(input,stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot read from ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(input,text_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot read from text stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(modify,dynamic_procedure,_), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: modifying a dynamic procedure ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(permission_error(modify,flag,W), _) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- cannot modify flag ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[W]).
|
|
|
|
'$output_error_message'(permission_error(modify,operator,W), _) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- T cannot declare ~w an operator ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[W]).
|
|
|
|
'$output_error_message'(permission_error(modify,static_procedure,_), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: modifying a static procedure ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(permission_error(modify,static_procedure_in_use,_), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: modifying a static procedure in use ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(permission_error(open,source_sink,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot open file ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(output,binary_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot write to binary stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(output,stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot write to ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(output,text_stream,Stream), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot write to text stream ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,Stream]).
|
|
|
|
'$output_error_message'(permission_error(resize,array,P), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ PERMISSION ERROR- ~w: cannot resize array ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,P]).
|
|
|
|
'$output_error_message'(representation_error(character), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ REPRESENTATION ERROR- ~w: expected character ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(representation_error(character_code), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ REPRESENTATION ERROR- ~w: expected character code ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
'$output_error_message'(representation_error(max_arity), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ REPRESENTATION ERROR- ~w: number too big ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
2002-10-08 06:00:36 +01:00
|
|
|
'$output_error_message'(syntax_error(G,0,Msg,[],0,0), Where) :- !,
|
|
|
|
'$format'(user_error,"[ SYNTAX ERROR in ~w: ~a ]~n",[G,Msg]).
|
2002-04-11 16:31:58 +01:00
|
|
|
'$output_error_message'(syntax_error(_,Position,_,Term,Pos,Start), Where) :-
|
|
|
|
'$format'(user_error,"[ ~w ",[Where]),
|
|
|
|
'$dump_syntax_error_line'(Start,Position),
|
|
|
|
'$dump_syntax_error_term'(10,Pos, Term),
|
|
|
|
'$format'(user_error,".~n]~n",[]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(system_error, Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ SYSTEM ERROR- ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
2001-05-21 21:00:05 +01:00
|
|
|
'$output_error_message'(system_error(Message), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ SYSTEM ERROR- ~w at ~w]~n",
|
2001-05-21 21:00:05 +01:00
|
|
|
[Message,Where]).
|
2001-10-30 16:42:05 +00:00
|
|
|
'$output_error_message'(type_error(T,_,Err,M), _Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected ~w, got ~w ]~n",
|
2001-05-07 20:56:02 +01:00
|
|
|
[T,Err,M]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(type_error(array,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected array, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(atom,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected atom, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(atomic,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected atomic, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(byte,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected byte, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(callable,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected callable goal, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
2002-11-26 22:28:32 +00:00
|
|
|
'$output_error_message'(type_error(char,W), Where) :-
|
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected char, got ~w ]~n",
|
|
|
|
[Where,W]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(type_error(character,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected character, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(character_code,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected character code, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(compound,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected compound, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(db_reference,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected data base reference, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(db_term,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected data base term, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(evaluable,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected evaluable term, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(float,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected float, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(in_byte,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected byte, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(in_character,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected atom character, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(in_character_code,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected character code, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(integer,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected integer, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(key,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected database key, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(leash_mode,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected modes for leash, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(list,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected list, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(number,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected number, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(pointer,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected pointer, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(predicate_indicator,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected predicate indicator, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(type_error(unsigned_byte,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected unsigned byte, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
2002-11-26 22:28:32 +00:00
|
|
|
'$output_error_message'(type_error(unsigned_char,W), Where) :-
|
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected unsigned char, got ~w ]~n",
|
|
|
|
[Where,W]).
|
2001-04-09 20:54:03 +01:00
|
|
|
'$output_error_message'(type_error(variable,W), Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ TYPE ERROR- ~w: expected unbound variable, got ~w ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where,W]).
|
|
|
|
'$output_error_message'(unknown, Where) :-
|
2002-01-07 06:28:04 +00:00
|
|
|
'$format'(user_error,"[ EXISTENCE ERROR- procedure ~w undefined ]~n",
|
2001-04-09 20:54:03 +01:00
|
|
|
[Where]).
|
|
|
|
|
|
|
|
|
2002-04-11 16:31:58 +01:00
|
|
|
'$dump_syntax_error_line'(Pos,_) :-
|
|
|
|
'$format'(user_error,"at line ~d:~n",
|
|
|
|
[Pos]).
|
|
|
|
|
|
|
|
'$dump_syntax_error_term'(0,J,L) :- !,
|
|
|
|
'$format'(user_error,"~n", []),
|
|
|
|
'$dump_syntax_error_term'(10,J,L).
|
|
|
|
'$dump_syntax_error_term'(_,0,L) :- !,
|
|
|
|
'$format'(user_error,"~n<==== HERE ====>~n", []),
|
|
|
|
'$dump_syntax_error_term'(10,-1,L).
|
|
|
|
'$dump_syntax_error_term'(_,_,[]) :- !.
|
|
|
|
'$dump_syntax_error_term'(I,J,[T-P|R]) :-
|
|
|
|
'$dump_error_token'(T),
|
|
|
|
I1 is I-1,
|
|
|
|
J1 is J-1,
|
|
|
|
'$dump_syntax_error_term'(I1,J1,R).
|
|
|
|
|
|
|
|
'$dump_error_token'(atom(A)) :- !,
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ~a", [A]).
|
2002-04-11 16:31:58 +01:00
|
|
|
'$dump_error_token'(number(N)) :- !,
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ~w", [N]).
|
2002-04-11 16:31:58 +01:00
|
|
|
'$dump_error_token'(var(_,S,_)) :- !,
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ~s ", [S]).
|
2002-04-11 16:31:58 +01:00
|
|
|
'$dump_error_token'(string(S)) :- !,
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ""~s""", [S]).
|
2002-09-17 06:55:14 +01:00
|
|
|
'$dump_error_token'('(') :- !,
|
2002-04-11 16:31:58 +01:00
|
|
|
'$format'(user_error,"(", []).
|
2002-09-17 06:55:14 +01:00
|
|
|
'$dump_error_token'(')') :- !,
|
2002-04-11 16:31:58 +01:00
|
|
|
'$format'(user_error," )", []).
|
2002-09-17 06:55:14 +01:00
|
|
|
'$dump_error_token'(',') :- !,
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ,", []).
|
2002-04-11 16:31:58 +01:00
|
|
|
'$dump_error_token'(A) :-
|
2002-04-13 05:44:20 +01:00
|
|
|
'$format'(user_error," ~a", [A]).
|
2002-04-11 16:31:58 +01:00
|
|
|
|
|
|
|
|