/* Part of XPCE --- The SWI-Prolog GUI toolkit Author: Jan Wielemaker and Anjo Anjewierden E-mail: J.Wielemaker@cs.vu.nl WWW: http://www.swi-prolog.org/packages/xpce/ Copyright (c) 1985-2011, University of Amsterdam VU University Amsterdam All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ :- module(swi_prolog_emacs_binding, []). :- use_module(library(pce)). :- require([ start_emacs/0 ]). :- multifile user:message_hook/3. :- dynamic user:message_hook/3. /** Add messages related to a source-location to the GUI This module implements user:message_hook/3 to add messages printed using print_message/2 that can be related to a source-location to the window @prolog_warnings. This library is always loaded when XPCE is loaded. Its functionality is controlled by the Prolog flag =message_ide=. */ :- create_prolog_flag(message_ide, true, [keep(true)]). /******************************* * WARNINGS * *******************************/ :- pce_global(@prolog_warnings, make_prolog_warning_list). make_prolog_warning_list(L) :- new(L, emacs_hit_list('SWI-Prolog warnings')), send(L, clear_on_append, @on), send(L, expose_on_append, @on), send(L, message, error_at_location), send(L, open). clear_message_list :- ( object(@prolog_warnings) -> send(@prolog_warnings, clear) ; true ). %! ide_message(+Location, +String) % % Display system messages in a graphical window. Note that String % is locked to avoid XPCE's GC. ide_message(Path:Line, String) :- start_emacs, new(Buffer, emacs_buffer(Path)), get(Buffer, scan, 0, line, Line-1, start, SOL), send(@prolog_warnings, append_hit, Buffer, SOL, @default, String), send(String, lock_object, @off). message_to_pce(Term, Lines, Path:Line, String) :- ( Term = error(syntax_error(Error), file(Path, Line, _LinePos, _CharPos)) -> atom(Path), integer(Line), ( atom(Error) -> Msg = Error ; format(atom(Msg), '~p', [Error]) ), new(String, string('Syntax error: %s', Msg)) ; Term = error(_, Location), nonvar(Location), Location = file(Path, Line) -> make_message(Lines, String) ; source_location(Path, Line), make_message(Lines, String) ), atom(Path), send(String, lock_object, @on). %! make_message(+MessageLine, -String) is det. % % Translate a list of message lines into a PCE string. The string % is locked because it is send to the IDE thread using % in_pce_thread/1. make_message(Lines, String) :- phrase(make_message(Lines), Chars), !, new(String, string(Chars)). % TBD: Sync with elements_to_string/2 in prolog_mode.pl make_message([]) --> []. make_message([nl|T]) --> " ", make_message(T). make_message([Fmt-Args|T]) --> !, { format(codes(Codes, Tail), Fmt, Args) }, dlist(Codes, Tail), make_message(T). make_message([ansi(_Attrs, Fmt, Args)|T]) --> !, { format(codes(Codes, Tail), Fmt, Args) }, dlist(Codes, Tail), make_message(T). make_message([url(File:Line:Pos)|T]) --> !, { format(codes(Codes, Tail), '~w:~w:~w', [File, Line, Pos]) }, dlist(Codes, Tail), make_message(T). make_message([url(File:Line)|T]) --> !, { format(codes(Codes, Tail), '~w:~w', [File, Line]) }, dlist(Codes, Tail), make_message(T). make_message([url(File)|T]) --> !, { format(codes(Codes, Tail), '~w', [File]) }, dlist(Codes, Tail), make_message(T). make_message([Skip|T]) --> { action_skip(Skip) }, !, make_message(T). make_message([Fmt|T]) --> make_message([Fmt-[]|T]). action_skip(at_same_line). action_skip(flush). action_skip(begin(_Level, _Ctx)). action_skip(end(_Ctx)). dlist(Codes, Tail, Codes, Tail). %! user:message_hook(+Term, +Level, +Lines) % % Hook clauses that direct error messages to the (xpce) IDE. user:message_hook(Term, Level, Lines) :- current_prolog_flag(message_ide, true), ide_message(Term, Level, Lines), fail. :- meta_predicate pce(0). ide_message(Term, Level, Lines) :- accept_level(Level), Lines \== [], !, pce(pce_message(Term, Lines)). ide_message(make(reload(_Files)), _, _) :- pce(clear_message_list). ide_message(emacs(consult(_File)), _, _) :- pce(clear_message_list). pce_message(Term, Lines) :- \+ object(@loading_emacs), message_to_pce(Term, Lines, Location, String), ide_message(Location, String). accept_level(warning). accept_level(error). pce(Goal) :- pce_thread(PceThread), thread_self(PceThread), !, Goal. pce(Goal) :- in_pce_thread(Goal).