|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (ice-9 popen) |
|
#:use-module (ice-9 binary-ports) |
|
#:use-module (ice-9 threads) |
|
#:use-module (srfi srfi-1) |
|
#:use-module (srfi srfi-9) |
|
#:export (port/pid-table open-pipe* open-pipe close-pipe open-input-pipe |
|
open-output-pipe open-input-output-pipe pipeline)) |
|
|
|
(eval-when (expand load eval) |
|
(load-extension (string-append "libguile-" (effective-version)) |
|
"scm_init_popen")) |
|
|
|
(define-record-type <pipe-info> |
|
(make-pipe-info pid) |
|
pipe-info? |
|
(pid pipe-info-pid set-pipe-info-pid!)) |
|
|
|
(define (make-rw-port read-port write-port) |
|
(define (read! bv start count) |
|
(let ((result (get-bytevector-some! read-port bv start count))) |
|
(if (eof-object? result) |
|
0 |
|
result))) |
|
|
|
(define (write! bv start count) |
|
(put-bytevector write-port bv start count) |
|
count) |
|
|
|
(define (close) |
|
(close-port read-port) |
|
(close-port write-port)) |
|
|
|
(define rw-port |
|
(make-custom-binary-input/output-port "ice-9-popen-rw-port" |
|
read! |
|
write! |
|
#f |
|
#f |
|
close)) |
|
|
|
|
|
(setvbuf read-port 'block 16384) |
|
|
|
|
|
(set-port-encoding! rw-port (port-encoding read-port)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(set-port-encoding! read-port "ISO-8859-1") |
|
(set-port-encoding! write-port "ISO-8859-1") |
|
|
|
rw-port) |
|
|
|
|
|
|
|
(define pipe-guardian (make-guardian)) |
|
|
|
|
|
|
|
|
|
(define port/pid-table (make-weak-key-hash-table)) |
|
(define port/pid-table-mutex (make-mutex)) |
|
|
|
(define (pipe->fdes) |
|
(let ((p (pipe))) |
|
(cons (port->fdes (car p)) |
|
(port->fdes (cdr p))))) |
|
|
|
(define (open-process mode command . args) |
|
"Backwards compatible implementation of the former procedure in |
|
libguile/posix.c (scm_open_process) replaced by |
|
scm_piped_process. 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{mode} 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}." |
|
(define (unbuffered port) |
|
(setvbuf port 'none) |
|
port) |
|
|
|
(define (fdes-pair ports) |
|
(and ports |
|
(cons (port->fdes (car ports)) (port->fdes (cdr ports))))) |
|
|
|
(let* ((from (and (or (string=? mode OPEN_READ) |
|
(string=? mode OPEN_BOTH)) |
|
(pipe))) |
|
(to (and (or (string=? mode OPEN_WRITE) |
|
(string=? mode OPEN_BOTH)) |
|
(pipe))) |
|
(pid (piped-process command args |
|
(fdes-pair from) |
|
(fdes-pair to)))) |
|
|
|
|
|
(values (and from (unbuffered (car from))) |
|
(and to (unbuffered (cdr to))) |
|
pid))) |
|
|
|
(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{mode} 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}." |
|
(call-with-values (lambda () |
|
(apply open-process mode command args)) |
|
(lambda (read-port write-port pid) |
|
(let ((port (or (and read-port write-port |
|
(make-rw-port read-port write-port)) |
|
read-port |
|
write-port |
|
(%make-void-port mode))) |
|
(pipe-info (make-pipe-info pid))) |
|
|
|
|
|
|
|
|
|
(pipe-guardian pipe-info) |
|
(%set-port-property! port 'popen-pipe-info pipe-info) |
|
|
|
|
|
(with-mutex port/pid-table-mutex |
|
(hashq-set! port/pid-table port pid)) |
|
|
|
port)))) |
|
|
|
(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{mode} 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)) |
|
|
|
(define (fetch-pipe-info port) |
|
(%port-property port 'popen-pipe-info)) |
|
|
|
(define (close-process port pid) |
|
(close-port port) |
|
(cdr (waitpid pid))) |
|
|
|
(define (close-pipe p) |
|
"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." |
|
(let ((pipe-info (fetch-pipe-info p))) |
|
(unless pipe-info |
|
(error "close-pipe: port not created by (ice-9 popen)")) |
|
(let ((pid (pipe-info-pid pipe-info))) |
|
(unless pid |
|
(error "close-pipe: pid has already been cleared")) |
|
|
|
(set-pipe-info-pid! pipe-info #f) |
|
(close-process p pid)))) |
|
|
|
(define (reap-pipes) |
|
(let loop () |
|
(let ((pipe-info (pipe-guardian))) |
|
(when pipe-info |
|
(let ((pid (pipe-info-pid pipe-info))) |
|
|
|
(when pid |
|
|
|
|
|
|
|
|
|
(catch 'system-error |
|
(lambda () |
|
(let ((pid/status (waitpid pid WNOHANG))) |
|
(if (zero? (car pid/status)) |
|
(pipe-guardian pipe-info) |
|
(set-pipe-info-pid! pipe-info #f)))) |
|
(lambda args #f)))) |
|
(loop))))) |
|
|
|
(add-hook! after-gc-hook reap-pipes) |
|
|
|
(define (open-input-pipe command) |
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_READ}" |
|
(open-pipe command OPEN_READ)) |
|
|
|
(define (open-output-pipe command) |
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}" |
|
(open-pipe command OPEN_WRITE)) |
|
|
|
(define (open-input-output-pipe command) |
|
"Equivalent to @code{open-pipe} with mode @code{OPEN_BOTH}" |
|
(open-pipe command OPEN_BOTH)) |
|
|
|
(define (pipeline commands) |
|
"Execute a pipeline of @var{commands}, where each command is a list of a |
|
program and its arguments as strings, returning an input port to the |
|
end of the pipeline, an output port to the beginning of the pipeline and |
|
a list of PIDs of the processes executing the @var{commands}." |
|
(let* ((to (pipe->fdes)) |
|
(pipes (map (lambda _ (pipe->fdes)) commands)) |
|
(pipeline (fold (lambda (from proc prev) |
|
(let* ((to (car prev)) |
|
(pids (cdr prev)) |
|
(pid (piped-process (car proc) |
|
(cdr proc) |
|
from |
|
to))) |
|
(cons from (cons pid pids)))) |
|
`(,to) |
|
pipes |
|
commands)) |
|
(from (car pipeline)) |
|
(pids (cdr pipeline))) |
|
(values (fdes->inport (car from)) (fdes->outport (cdr to)) pids))) |
|
|