1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/* 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) 2006-2020, 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(emacs_dde_server,
[ start_emacs_dde_server/1, % +Force
win_register_emacs/0 % +Externsion
]).
:- use_module(library(pce)).
:- require([debug/3]).
/** <module> Register PceEmacs with the Windows DDE services
This module registers the DDE service =PceEmacs= that allows accessing
PceEmacs from the Windows shell. The access points are dummy calls if
DDE is nor provided.
*/
%! start_emacs_dde_server(+Force) is det.
%
% If there is no DDE server, register it as =PceEmacs= using the
% topic =control=.
:- if(current_predicate(open_dde_conversation/3)).
:- use_module(library(dde)).
start_emacs_dde_server(_) :-
dde_current_service('PceEmacs', control),
debug(emacs(server), 'PceEmacs DDE server is already running', []),
!.
start_emacs_dde_server(true) :-
catch(close_other_dde_server, _, fail),
fail.
start_emacs_dde_server(false) :-
get_time(T0),
( catch(ping_other_dde_server, _, fail)
-> Alive = alive
; Alive = dead
),
!,
get_time(T1),
_0T is T1-T0,
debug(emacs(server), 'Remote DDE server is ~w (~3f sec)', [Alive, _0T]),
Alive == alive,
ignore(send(@emacs, report, status, 'Server on other PceEmacs')).
start_emacs_dde_server(_) :-
dde_register_service('PceEmacs'(control, Item),
handle_request(Item)).
close_other_dde_server :-
setup_call_cleanup(open_dde_conversation('PceEmacs', control, Handle),
dde_execute(Handle, 'close-server'),
close_dde_conversation(Handle)),
send(@emacs, report, status, 'Closed server on other PceEmacs').
ping_other_dde_server :-
open_dde_conversation('PceEmacs', control, Handle),
!,
close_dde_conversation(Handle).
handle_request(Item) :-
atom_concat('edit ', WinFile, Item),
!,
prolog_to_os_filename(File, WinFile),
new(B, emacs_buffer(File)),
send(B, open, tab),
send(B, check_modified_file).
handle_request('close-server') :-
dde_unregister_service('PceEmacs'),
send(@emacs, report, status, 'Closed DDE server').
handle_request(Item) :-
format(user_error, 'PceEmacs DDE server: unknown request: ~q', [Item]),
fail.
:- else.
start_emacs_dde_server(_).
:- endif.
:- if(current_predicate(shell_register_dde/6)).
win_register_emacs :-
current_prolog_flag(executable, Me),
shell_register_dde('prolog.type', edit,
'PceEmacs', control, 'edit %1', Me).
:- else.
win_register_emacs.
:- endif.
|