1/* Part of XPCE --- The SWI-Prolog GUI toolkit 2 3 Author: Jan Wielemaker and Anjo Anjewierden 4 E-mail: jan@swi.psy.uva.nl 5 WWW: http://www.swi.psy.uva.nl/projects/xpce/ 6 Copyright (c) 1996-2011, University of Amsterdam 7 All rights reserved. 8 9 Redistribution and use in source and binary forms, with or without 10 modification, are permitted provided that the following conditions 11 are met: 12 13 1. Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 16 2. Redistributions in binary form must reproduce the above copyright 17 notice, this list of conditions and the following disclaimer in 18 the documentation and/or other materials provided with the 19 distribution. 20 21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 29 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 31 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 POSSIBILITY OF SUCH DAMAGE. 33*/ 34 35:- module(pce_shell, 36 [ pce_shell_command/1 37 ]). 38:- use_module(library(pce)). 39:- require([ atomic_list_concat/3 40 ]). 41 42/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 43pce_shell_command(+Command(..+Arg..) 44 Run an external command that is no supposed to produce output and 45 wait for it to terminate. The output of the command is captured 46 in a text_buffer. If the command fails, a view is created to show 47 the output and this predicate will fail. 48 49 This predicate is generally better then using Prolog's system/1, 50 shell/1 or unix/1 as it ensures event-handling during the execution 51 of the external command and presentation of possible output in a 52 window rather then to the Prolog window. 53 54 Example: 55 56 ... 57 pce_shell_command(lpr('-PPostscript', File)), 58 ... 59 60- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 61 62pce_shell_command(Cmd) :- 63 Cmd =.. List, 64 ProcTerm =.. [process | List], 65 new(P, ProcTerm), 66 new(TB, text_buffer), 67 send(P, input_message, 68 and(message(@arg1, translate, 13, @nil), 69 message(TB, append, @arg1))), 70 send(P, record_separator, @nil), 71 atomic_list_concat(List, ' ', CmdAtom), 72 send(P, report, progress, 'running %s ...', CmdAtom), 73 send(P, open), 74 send(P, wait), 75 ( get(P, code, 0) 76 -> send(P, report, done), 77 free(TB) 78 ; get(P, code, Code), 79 ( atom(Code) 80 -> send(P, report, error, 'Caught signal %s', Code) 81 ; send(P, report, error, 'Exit status %s', Code) 82 ), 83 new(V, view(string('Output of %s', CmdAtom))), 84 send(V, text_buffer, TB), 85 send(new(D, dialog), below, V), 86 send(D, append, button(quit, message(V, destroy))), 87 send(V?frame, confirm_done, @off), 88 send(V, open), 89 fail 90 )