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/errors.yap

373 lines
16 KiB
Prolog

/*************************************************************************
* *
* 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 *
* *
*************************************************************************/
'$Error'(_) :-
current_stream(_,_,Stream),
'$close'(Stream),
fail.
'$Error'(_) :-
set_input(user_input),
set_output(user_output),
fail.
'$Error'(_) :-
'$set_read_error_handler'(fail),
fail.
'$Error'(_) :-
'$clean_debugging_info',
'$get_value'('$user_module',V),
( V=[] -> '$current_module'(_,prolog);
'$current_module'(_,V), '$compile_mode'(_,0)
),
fail.
'$Error'(E) :-
'$LoopError'(E).
'$LoopError'(_) :-
flush_output(user_output),
flush_output(user_error),
fail.
'$LoopError'(Error) :- !,
'$process_error'(Error),
fail.
'$LoopError'(_) :-
flush_output(user_output),
flush_output(user_error),
fail.
'$process_error'(abort) :- !,
write(user_error,'[ Execution Aborted ]'),
nl(user_error).
'$process_error'(error(Msg, Where)) :- !,
print_message(error,error(Msg, Where)).
'$process_error'(Throw) :-
print_message(error,Throw).
print_message(force(Severity), Msg) :- !,
print(user_error,Msg).
print_message(Severity, Msg) :-
\+ '$undefined'(user: portray_message(Severity, Msg)),
user: portray_message(Severity, Msg), !.
print_message(error,error(Msg,Where)) :-
'$output_error_message'(Msg, Where), !.
print_message(error,Throw) :-
format(user_error,"[ No handler for ball ~w ]~n", [Throw]).
print_message(informational,debug(trace)) :-
format(user_error,"[ The debugger will first creep -- showing everything (trace) ]~n",[]).
print_message(informational,M) :-
format(user_error,"[ ", []),
'$do_print_message'(M),
format(user_error," ]", []).
print_message(warning,M) :-
format(user_error,"[ Warning: ", []),
'$do_print_message'(M),
format(user_error," ]", []).
print_message(help,M) :-
format(user_error,"help on ~p",[M]).
'$do_print_message'(debug(trace)) :- !,
format(user_error,"[ The debugger will first creep -- showing everything (trace) ]~n",[]).
'$do_print_message'(format(Msg, Args)) :- !,
format(user_error,Msg,Args).
'$do_print_message'(Messg) :-
format(user_error,"~q",Messg).
'$output_error_message'(context_error(Goal,Who),Where) :-
format(user_error,"[ CONTEXT ERROR- ~w: ~w appeared in ~w ]~n",
[Goal,Who,Where]).
'$output_error_message'(domain_error(array_overflow,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid index for array ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(array_type,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid static array type ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(builtin_procedure,P), P) :-
format(user_error,"[ DOMAIN ERROR- non-iso built-in procedure ~w ]~n",
[P]).
'$output_error_message'(domain_error(character_code_list,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid list of codes ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(delete_file_option,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid list of options ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(operator_specifier,Op), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid operator specifier ~w ]~n",
[Where,Op]).
'$output_error_message'(domain_error(close_option,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid close option ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(radix,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid radix ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(shift_count_overflow,Opt), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: shift count overflow in ~w ]~n",
[Where,Opt]).
'$output_error_message'(domain_error(flag_value,F+V), W) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid value ~w for flag ~w ]~n",
[W,V,F]).
'$output_error_message'(domain_error(io_mode,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid io mode ~w ]~n",
[Where,N]).
'$output_error_message'(domain_error(mutable,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: invalid mutable ~w ]~n",
[Where,N]).
'$output_error_message'(domain_error(module_decl_options,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: expect module declaration options, found ~w ]~n",
[Where,N]).
'$output_error_message'(domain_error(not_empty_list,_), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: found empty list ]~n",
[Where]).
'$output_error_message'(domain_error(not_less_than_zero,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: number ~w less than zero ]~n",
[Where,N]).
'$output_error_message'(domain_error(not_newline,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: number ~w not newline ]~n",
[Where,N]).
'$output_error_message'(domain_error(not_zero,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: number ~w not zero ]~n",
[Where,N]).
'$output_error_message'(domain_error(operator_priority,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w invalid operator priority ]~n",
[Where,N]).
'$output_error_message'(domain_error(operator_specifier,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w invalid operator specifier ]~n",
[Where,N]).
'$output_error_message'(domain_error(read_option,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w invalid option to read ]~n",
[Where,N]).
'$output_error_message'(domain_error(semantics_indicator,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected predicate indicator, got ~w ]~n",
[Where,W]).
'$output_error_message'(domain_error(source_sink,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w is not a source sink term ]~n",
[Where,N]).
'$output_error_message'(domain_error(stream,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream ]~n",
[Where,What]).
'$output_error_message'(domain_error(stream_or_alias,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream ]~n",
[Where,What]).
'$output_error_message'(domain_error(stream_option,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream option ]~n",
[Where,What]).
'$output_error_message'(domain_error(stream_position,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream position ]~n",
[Where,What]).
'$output_error_message'(domain_error(stream_property,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a stream property ]~n",
[Where,What]).
'$output_error_message'(domain_error(syntax_error_handler,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a syntax error handler ]~n",
[Where,What]).
'$output_error_message'(domain_error(time_out_spec,What), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w not a valid specification for a time out ]~n",
[Where,What]).
'$output_error_message'(domain_error(write_option,N), Where) :-
format(user_error,"[ DOMAIN ERROR- ~w: ~w invalid option to write ]~n",
[Where,N]).
'$output_error_message'(existence_error(array,F), W) :-
format(user_error,"[ EXISTENCE ERROR- ~w could not open array ~w ]~n",
[W,F]).
'$output_error_message'(existence_error(procedure,P), _) :-
format(user_error,"[ EXISTENCE ERROR- procedure ~w undefined ]~n",
[P]).
'$output_error_message'(existence_error(source_sink,F), W) :-
format(user_error,"[ EXISTENCE ERROR- ~w could not find file ~w ]~n",
[W,F]).
'$output_error_message'(existence_error(stream,_), Where) :-
format(user_error,"[ EXISTENCE ERROR- ~w: not an open stream ]~n",
[Where]).
'$output_error_message'(evaluation_error(int_overflow), Where) :-
format(user_error,"[ INTEGER OVERFLOW ERROR- ~w ]~n",
[Where]).
'$output_error_message'(evaluation_error(float_overflow), Where) :-
format(user_error,"[ FLOATING POINT OVERFLOW ERROR- ~w ]~n",
[Where]).
'$output_error_message'(evaluation_error(undefined), Where) :-
format(user_error,"[ UNDEFINED ARITHMETIC RESULT ERROR- ~w ]~n",
[Where]).
'$output_error_message'(evaluation_error(underflow), Where) :-
format(user_error,"[ UNDERFLOW ERROR- ~w ]~n",
[Where]).
'$output_error_message'(evaluation_error(float_underflow), Where) :-
format(user_error,"[ FLOATING POINT UNDERFLOW ERROR- ~w ]~n",
[Where]).
'$output_error_message'(evaluation_error(zero_divisor), Where) :-
format(user_error,"[ ZERO DIVISOR ERROR- ~w ]~n",
[Where]).
'$output_error_message'(instantiation_error, Where) :-
format(user_error,"[ INSTANTIATION ERROR- ~w: expected bound value ]~n",
[Where]).
'$output_error_message'(permission_error(access,private_procedure,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot see clauses for ~w ]~n",
[Where,P]).
'$output_error_message'(permission_error(access,static_procedure,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot access static procedure ~w ]~n",
[Where,P]).
'$output_error_message'(permission_error(alias,new,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot create alias ~w ]~n",
[Where,P]).
'$output_error_message'(permission_error(create,array,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot create array ~w ]~n",
[Where,P]).
'$output_error_message'(permission_error(create,operator,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot create operator ~w ]~n",
[Where,P]).
'$output_error_message'(permission_error(input,binary_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot read from binary stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(input,closed_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: trying to read from closed stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(input,past_end_of_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: past end of stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(input,stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot read from ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(input,text_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot read from text stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(modify,dynamic_procedure,_), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: modifying a dynamic procedure ]~n",
[Where]).
'$output_error_message'(permission_error(modify,flag,W), _) :-
format(user_error,"[ PERMISSION ERROR- cannot modify flag ~w ]~n",
[W]).
'$output_error_message'(permission_error(modify,operator,W), _) :-
format(user_error,"[ PERMISSION ERROR- T cannot declare ~w an operator ]~n",
[W]).
'$output_error_message'(permission_error(modify,static_procedure,_), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: modifying a static procedure ]~n",
[Where]).
'$output_error_message'(permission_error(modify,static_procedure_in_use,_), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: modifying a static procedure in use ]~n",
[Where]).
'$output_error_message'(permission_error(open,source_sink,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot open file ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(output,binary_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot write to binary stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(output,stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot write to ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(output,text_stream,Stream), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot write to text stream ~w ]~n",
[Where,Stream]).
'$output_error_message'(permission_error(resize,array,P), Where) :-
format(user_error,"[ PERMISSION ERROR- ~w: cannot resize array ~w ]~n",
[Where,P]).
'$output_error_message'(representation_error(character), Where) :-
format(user_error,"[ REPRESENTATION ERROR- ~w: expected character ]~n",
[Where]).
'$output_error_message'(representation_error(character_code), Where) :-
format(user_error,"[ REPRESENTATION ERROR- ~w: expected character code ]~n",
[Where]).
'$output_error_message'(representation_error(max_arity), Where) :-
format(user_error,"[ REPRESENTATION ERROR- ~w: number too big ]~n",
[Where]).
'$output_error_message'(syntax_error(Error), Where) :-
format(user_error,"[ SYNTAX ERROR- ~w: ~w ]~n",
[Where, Error]).
'$output_error_message'(system_error, Where) :-
format(user_error,"[ SYSTEM ERROR- ~w ]~n",
[Where]).
'$output_error_message'(system_error(Message), Where) :-
format(user_error,"[ SYSTEM ERROR- ~w at ~w]~n",
[Message,Where]).
'$output_error_message'(type_error(T,_,Err,M), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected ~w, got ~w ]~n",
[T,Err,M]).
'$output_error_message'(type_error(array,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected array, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(atom,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected atom, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(atomic,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected atomic, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(byte,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected byte, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(callable,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected callable goal, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(character,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected character, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(character_code,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected character code, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(compound,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected compound, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(db_reference,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected data base reference, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(db_term,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected data base term, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(evaluable,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected evaluable term, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(float,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected float, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(in_byte,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected byte, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(in_character,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected atom character, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(in_character_code,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected character code, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(integer,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected integer, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(key,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected database key, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(leash_mode,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected modes for leash, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(list,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected list, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(number,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected number, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(pointer,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected pointer, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(predicate_indicator,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected predicate indicator, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(unsigned_byte,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected unsigned byte, got ~w ]~n",
[Where,W]).
'$output_error_message'(type_error(variable,W), Where) :-
format(user_error,"[ TYPE ERROR- ~w: expected unbound variable, got ~w ]~n",
[Where,W]).
'$output_error_message'(unknown, Where) :-
format(user_error,"[ EXISTENCE ERROR- procedure ~w undefined ]~n",
[Where]).