1999-06-09 12:30:45 +00:00
|
|
|
;; popen emulation, for non-stdio based ports.
|
|
|
|
|
|
2006-04-16 23:43:48 +00:00
|
|
|
;;;; Copyright (C) 1998, 1999, 2000, 2001, 2003, 2006 Free Software Foundation, Inc.
|
2001-02-21 20:11:18 +00:00
|
|
|
;;;;
|
2003-04-05 19:15:35 +00:00
|
|
|
;;;; This library is free software; you can redistribute it and/or
|
|
|
|
|
;;;; modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
;;;; License as published by the Free Software Foundation; either
|
|
|
|
|
;;;; version 2.1 of the License, or (at your option) any later version.
|
2001-02-21 20:11:18 +00:00
|
|
|
;;;;
|
2003-04-05 19:15:35 +00:00
|
|
|
;;;; This library is distributed in the hope that it will be useful,
|
2001-02-21 20:11:18 +00:00
|
|
|
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2003-04-05 19:15:35 +00:00
|
|
|
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
;;;; Lesser General Public License for more details.
|
2001-02-21 20:11:18 +00:00
|
|
|
;;;;
|
2003-04-05 19:15:35 +00:00
|
|
|
;;;; You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
;;;; License along with this library; if not, write to the Free Software
|
2005-05-23 19:57:22 +00:00
|
|
|
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-02-21 20:11:18 +00:00
|
|
|
;;;;
|
|
|
|
|
|
* lib.scm: Move module the system directives `export',
`export-syntax', `re-export' and `re-export-syntax' into the
`define-module' form. This is the recommended way of exporting
bindings.
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
directives `export', `export-syntax', `re-export' and
`re-export-syntax' into the `define-module' form. This is the
recommended way of exporting bindings.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.scm: Move module the system directives
`export', `export-syntax', `re-export' and `re-export-syntax'
into the `define-module' form. This is the recommended way of
exporting bindings.
2001-10-21 09:49:19 +00:00
|
|
|
(define-module (ice-9 popen)
|
2004-12-22 15:01:24 +00:00
|
|
|
:export (port/pid-table open-pipe* open-pipe close-pipe open-input-pipe
|
|
|
|
|
open-output-pipe open-input-output-pipe))
|
|
|
|
|
|
|
|
|
|
(define (make-rw-port read-port write-port)
|
|
|
|
|
(make-soft-port
|
|
|
|
|
(vector
|
|
|
|
|
(lambda (c) (write-char c write-port))
|
|
|
|
|
(lambda (s) (display s write-port))
|
|
|
|
|
(lambda () (force-output write-port))
|
|
|
|
|
(lambda () (read-char read-port))
|
|
|
|
|
(lambda () (close-port read-port) (close-port write-port)))
|
|
|
|
|
"r+"))
|
1999-06-09 12:30:45 +00:00
|
|
|
|
|
|
|
|
;; a guardian to ensure the cleanup is done correctly when
|
|
|
|
|
;; an open pipe is gc'd or a close-port is used.
|
|
|
|
|
(define pipe-guardian (make-guardian))
|
|
|
|
|
|
|
|
|
|
;; a weak hash-table to store the process ids.
|
* lib.scm: Move module the system directives `export',
`export-syntax', `re-export' and `re-export-syntax' into the
`define-module' form. This is the recommended way of exporting
bindings.
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
directives `export', `export-syntax', `re-export' and
`re-export-syntax' into the `define-module' form. This is the
recommended way of exporting bindings.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.scm: Move module the system directives
`export', `export-syntax', `re-export' and `re-export-syntax'
into the `define-module' form. This is the recommended way of
exporting bindings.
2001-10-21 09:49:19 +00:00
|
|
|
(define port/pid-table (make-weak-key-hash-table 31))
|
1999-06-09 12:30:45 +00:00
|
|
|
|
2000-11-07 21:36:42 +00:00
|
|
|
(define (ensure-fdes port mode)
|
|
|
|
|
(or (false-if-exception (fileno port))
|
|
|
|
|
(open-fdes *null-device* mode)))
|
|
|
|
|
|
2004-12-22 15:01:24 +00:00
|
|
|
;; run a process connected to an input, an output or an
|
|
|
|
|
;; input/output port
|
|
|
|
|
;; mode: OPEN_READ, OPEN_WRITE or OPEN_BOTH
|
1999-06-09 12:30:45 +00:00
|
|
|
;; returns port/pid pair.
|
|
|
|
|
(define (open-process mode prog . args)
|
2004-12-22 15:01:24 +00:00
|
|
|
(let* ((reading (or (equal? mode OPEN_READ)
|
|
|
|
|
(equal? mode OPEN_BOTH)))
|
|
|
|
|
(writing (or (equal? mode OPEN_WRITE)
|
|
|
|
|
(equal? mode OPEN_BOTH)))
|
|
|
|
|
(c2p (if reading (pipe) #f)) ; child to parent
|
|
|
|
|
(p2c (if writing (pipe) #f))) ; parent to child
|
|
|
|
|
|
|
|
|
|
(if c2p (setvbuf (cdr c2p) _IONBF))
|
|
|
|
|
(if p2c (setvbuf (cdr p2c) _IONBF))
|
1999-06-09 12:30:45 +00:00
|
|
|
(let ((pid (primitive-fork)))
|
|
|
|
|
(cond ((= pid 0)
|
|
|
|
|
;; child
|
|
|
|
|
(set-batch-mode?! #t)
|
2000-11-07 21:36:42 +00:00
|
|
|
|
|
|
|
|
;; select the three file descriptors to be used as
|
2004-12-22 15:01:24 +00:00
|
|
|
;; standard descriptors 0, 1, 2 for the new
|
|
|
|
|
;; process. They are pipes to/from the parent or taken
|
2000-11-07 21:36:42 +00:00
|
|
|
;; from the current Scheme input/output/error ports if
|
|
|
|
|
;; possible.
|
|
|
|
|
|
2004-12-22 15:01:24 +00:00
|
|
|
(let ((input-fdes (if writing
|
|
|
|
|
(fileno (car p2c))
|
2000-11-07 21:36:42 +00:00
|
|
|
(ensure-fdes (current-input-port)
|
2004-12-22 15:01:24 +00:00
|
|
|
O_RDONLY)))
|
2000-11-07 21:36:42 +00:00
|
|
|
(output-fdes (if reading
|
2004-12-22 15:01:24 +00:00
|
|
|
(fileno (cdr c2p))
|
2000-11-07 21:36:42 +00:00
|
|
|
(ensure-fdes (current-output-port)
|
|
|
|
|
O_WRONLY)))
|
|
|
|
|
(error-fdes (ensure-fdes (current-error-port)
|
|
|
|
|
O_WRONLY)))
|
|
|
|
|
|
|
|
|
|
;; close all file descriptors in ports inherited from
|
|
|
|
|
;; the parent except for the three selected above.
|
|
|
|
|
;; this is to avoid causing problems for other pipes in
|
|
|
|
|
;; the parent.
|
|
|
|
|
|
|
|
|
|
;; use low-level system calls, not close-port or the
|
|
|
|
|
;; scsh routines, to avoid side-effects such as
|
|
|
|
|
;; flushing port buffers or evicting ports.
|
|
|
|
|
|
|
|
|
|
(port-for-each (lambda (pt-entry)
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(let ((pt-fileno (fileno pt-entry)))
|
|
|
|
|
(if (not (or (= pt-fileno input-fdes)
|
|
|
|
|
(= pt-fileno output-fdes)
|
|
|
|
|
(= pt-fileno error-fdes)))
|
|
|
|
|
(close-fdes pt-fileno))))))
|
|
|
|
|
|
2003-09-19 01:01:10 +00:00
|
|
|
;; Copy the three selected descriptors to the standard
|
|
|
|
|
;; descriptors 0, 1, 2, if not already there
|
2000-11-07 21:36:42 +00:00
|
|
|
|
|
|
|
|
(cond ((not (= input-fdes 0))
|
|
|
|
|
(if (= output-fdes 0)
|
|
|
|
|
(set! output-fdes (dup->fdes 0)))
|
|
|
|
|
(if (= error-fdes 0)
|
|
|
|
|
(set! error-fdes (dup->fdes 0)))
|
2003-08-12 21:18:23 +00:00
|
|
|
(dup2 input-fdes 0)
|
2003-09-19 01:01:10 +00:00
|
|
|
;; it's possible input-fdes is error-fdes
|
|
|
|
|
(if (not (= input-fdes error-fdes))
|
|
|
|
|
(close-fdes input-fdes))))
|
|
|
|
|
|
2000-11-07 21:36:42 +00:00
|
|
|
(cond ((not (= output-fdes 1))
|
|
|
|
|
(if (= error-fdes 1)
|
|
|
|
|
(set! error-fdes (dup->fdes 1)))
|
2003-08-12 21:18:23 +00:00
|
|
|
(dup2 output-fdes 1)
|
2003-09-19 01:01:10 +00:00
|
|
|
;; it's possible output-fdes is error-fdes
|
|
|
|
|
(if (not (= output-fdes error-fdes))
|
|
|
|
|
(close-fdes output-fdes))))
|
2000-11-07 21:36:42 +00:00
|
|
|
|
2003-08-12 21:18:23 +00:00
|
|
|
(cond ((not (= error-fdes 2))
|
|
|
|
|
(dup2 error-fdes 2)
|
|
|
|
|
(close-fdes error-fdes)))
|
2000-11-07 21:36:42 +00:00
|
|
|
|
|
|
|
|
(apply execlp prog prog args)))
|
|
|
|
|
|
1999-06-09 12:30:45 +00:00
|
|
|
(else
|
|
|
|
|
;; parent
|
2004-12-22 15:01:24 +00:00
|
|
|
(if c2p (close-port (cdr c2p)))
|
|
|
|
|
(if p2c (close-port (car p2c)))
|
|
|
|
|
(cons (cond ((not writing) (car c2p))
|
|
|
|
|
((not reading) (cdr p2c))
|
|
|
|
|
(else (make-rw-port (car c2p)
|
|
|
|
|
(cdr p2c))))
|
1999-06-09 12:30:45 +00:00
|
|
|
pid))))))
|
|
|
|
|
|
2004-12-22 15:01:24 +00:00
|
|
|
(define (open-pipe* mode command . args)
|
|
|
|
|
"Executes the program @var{command} with optional arguments
|
|
|
|
|
@var{args} (all strings) in a subprocess.
|
|
|
|
|
A port to the process (based on pipes) is created and returned.
|
|
|
|
|
@var{modes} specifies whether an input, an output or an input-output
|
|
|
|
|
port to the process is created: it should be the value of
|
|
|
|
|
@code{OPEN_READ}, @code{OPEN_WRITE} or @code{OPEN_BOTH}."
|
|
|
|
|
(let* ((port/pid (apply open-process mode command args))
|
1999-06-09 12:30:45 +00:00
|
|
|
(port (car port/pid)))
|
|
|
|
|
(pipe-guardian port)
|
|
|
|
|
(hashq-set! port/pid-table port (cdr port/pid))
|
|
|
|
|
port))
|
|
|
|
|
|
2004-12-22 15:01:24 +00:00
|
|
|
(define (open-pipe command mode)
|
|
|
|
|
"Executes the shell command @var{command} (a string) in a subprocess.
|
|
|
|
|
A port to the process (based on pipes) is created and returned.
|
|
|
|
|
@var{modes} specifies whether an input, an output or an input-output
|
|
|
|
|
port to the process is created: it should be the value of
|
|
|
|
|
@code{OPEN_READ}, @code{OPEN_WRITE} or @code{OPEN_BOTH}."
|
|
|
|
|
(open-pipe* mode "/bin/sh" "-c" command))
|
|
|
|
|
|
1999-06-09 12:30:45 +00:00
|
|
|
(define (fetch-pid port)
|
|
|
|
|
(let ((pid (hashq-ref port/pid-table port)))
|
|
|
|
|
(hashq-remove! port/pid-table port)
|
|
|
|
|
pid))
|
|
|
|
|
|
|
|
|
|
(define (close-process port/pid)
|
|
|
|
|
(close-port (car port/pid))
|
|
|
|
|
(cdr (waitpid (cdr port/pid))))
|
|
|
|
|
|
2000-04-09 21:10:06 +00:00
|
|
|
;; for the background cleanup handler: just clean up without reporting
|
|
|
|
|
;; errors. also avoids blocking the process: if the child isn't ready
|
|
|
|
|
;; to be collected, puts it back into the guardian's live list so it
|
|
|
|
|
;; can be tried again the next time the cleanup runs.
|
|
|
|
|
(define (close-process-quietly port/pid)
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(close-port (car port/pid)))
|
|
|
|
|
(lambda args #f))
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let ((pid/status (waitpid (cdr port/pid) WNOHANG)))
|
|
|
|
|
(cond ((= (car pid/status) 0)
|
|
|
|
|
;; not ready for collection
|
|
|
|
|
(pipe-guardian (car port/pid))
|
|
|
|
|
(hashq-set! port/pid-table
|
|
|
|
|
(car port/pid) (cdr port/pid))))))
|
|
|
|
|
(lambda args #f)))
|
|
|
|
|
|
* lib.scm: Move module the system directives `export',
`export-syntax', `re-export' and `re-export-syntax' into the
`define-module' form. This is the recommended way of exporting
bindings.
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
directives `export', `export-syntax', `re-export' and
`re-export-syntax' into the `define-module' form. This is the
recommended way of exporting bindings.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.scm: Move module the system directives
`export', `export-syntax', `re-export' and `re-export-syntax'
into the `define-module' form. This is the recommended way of
exporting bindings.
2001-10-21 09:49:19 +00:00
|
|
|
(define (close-pipe p)
|
1999-12-13 02:54:56 +00:00
|
|
|
"Closes the pipe created by @code{open-pipe}, then waits for the process
|
|
|
|
|
to terminate and returns its status value, @xref{Processes, waitpid}, for
|
|
|
|
|
information on how to interpret this value."
|
1999-06-09 12:30:45 +00:00
|
|
|
(let ((pid (fetch-pid p)))
|
|
|
|
|
(if (not pid)
|
|
|
|
|
(error "close-pipe: pipe not in table"))
|
|
|
|
|
(close-process (cons p pid))))
|
|
|
|
|
|
|
|
|
|
(define reap-pipes
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let loop ((p (pipe-guardian)))
|
|
|
|
|
(cond (p
|
|
|
|
|
;; maybe removed already by close-pipe.
|
|
|
|
|
(let ((pid (fetch-pid p)))
|
|
|
|
|
(if pid
|
2000-04-09 21:10:06 +00:00
|
|
|
(close-process-quietly (cons p pid))))
|
1999-06-09 12:30:45 +00:00
|
|
|
(loop (pipe-guardian)))))))
|
|
|
|
|
|
2000-06-27 13:52:49 +00:00
|
|
|
(add-hook! after-gc-hook reap-pipes)
|
1999-06-09 12:30:45 +00:00
|
|
|
|
* lib.scm: Move module the system directives `export',
`export-syntax', `re-export' and `re-export-syntax' into the
`define-module' form. This is the recommended way of exporting
bindings.
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
directives `export', `export-syntax', `re-export' and
`re-export-syntax' into the `define-module' form. This is the
recommended way of exporting bindings.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.scm: Move module the system directives
`export', `export-syntax', `re-export' and `re-export-syntax'
into the `define-module' form. This is the recommended way of
exporting bindings.
2001-10-21 09:49:19 +00:00
|
|
|
(define (open-input-pipe command)
|
2000-11-09 22:46:07 +00:00
|
|
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_READ}"
|
|
|
|
|
(open-pipe command OPEN_READ))
|
|
|
|
|
|
* lib.scm: Move module the system directives `export',
`export-syntax', `re-export' and `re-export-syntax' into the
`define-module' form. This is the recommended way of exporting
bindings.
* srfi-2.scm, srfi-4.scm, srfi-8.scm, srfi-9.scm, srfi-10.scm,
srfi-11.scm, srfi-14.scm, srfi-16.scm: Move module the system
directives `export', `export-syntax', `re-export' and
`re-export-syntax' into the `define-module' form. This is the
recommended way of exporting bindings.
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
* slib.scm (array-indexes): New procedure.
(*features*): Extend. (Probably some of these options should be
set elsewhere.) (Thanks to Aubrey Jaffer.)
* and-let-star-compat.scm, and-let-star.scm, calling.scm,
channel.scm, common-list.scm, debug.scm, debugger.scm,
expect.scm, hcons.scm, lineio.scm, ls.scm, mapping.scm,
null.scm, optargs.scm, poe.scm, popen.scm, pretty-print.scm,
q.scm, r5rs.scm, rdelim.scm, regex.scm, runq.scm, safe-r5rs.scm,
safe.scm, session.scm, slib.scm, streams.scm, string-fun.scm,
syncase.scm, threads.scm: Move module the system directives
`export', `export-syntax', `re-export' and `re-export-syntax'
into the `define-module' form. This is the recommended way of
exporting bindings.
2001-10-21 09:49:19 +00:00
|
|
|
(define (open-output-pipe command)
|
2000-11-09 22:46:07 +00:00
|
|
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}"
|
|
|
|
|
(open-pipe command OPEN_WRITE))
|
2004-12-22 15:01:24 +00:00
|
|
|
|
|
|
|
|
(define (open-input-output-pipe command)
|
|
|
|
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_BOTH}"
|
|
|
|
|
(open-pipe command OPEN_BOTH))
|