/
usr
/
share
/
guile
/
2.0
/
ice-9
/
/usr/share/guile/2.0/ice-9
mkdir
upload
Name
Size
Mode
Actions
and-let-star.scm
2593
0644
edit
dl
rm
binary-ports.scm
1921
0644
edit
dl
rm
boot-9.scm
154720
0644
edit
dl
rm
buffered-input.scm
4935
0644
edit
dl
rm
calling.scm
10790
0644
edit
dl
rm
channel.scm
5312
0644
edit
dl
rm
command-line.scm
18655
0644
edit
dl
rm
common-list.scm
9160
0644
edit
dl
rm
control.scm
4036
0644
edit
dl
rm
curried-definitions.scm
1829
0644
edit
dl
rm
debug.scm
1114
0644
edit
dl
rm
deprecated.scm
31993
0644
edit
dl
rm
documentation.scm
7432
0644
edit
dl
rm
eval-string.scm
2997
0644
edit
dl
rm
eval.scm
21354
0644
edit
dl
rm
expect.scm
5628
0644
edit
dl
rm
format.scm
76284
0644
edit
dl
rm
ftw.scm
24753
0644
edit
dl
rm
futures.scm
11186
0644
edit
dl
rm
gap-buffer.scm
10384
0644
edit
dl
rm
getopt-long.scm
16888
0644
edit
dl
rm
hash-table.scm
1813
0644
edit
dl
rm
hcons.scm
2614
0644
edit
dl
rm
history.scm
2343
0644
edit
dl
rm
i18n.scm
17778
0644
edit
dl
rm
iconv.scm
3735
0644
edit
dl
rm
lineio.scm
3941
0644
edit
dl
rm
list.scm
1319
0644
edit
dl
rm
local-eval.scm
9946
0644
edit
dl
rm
ls.scm
3275
0644
edit
dl
rm
mapping.scm
4955
0644
edit
dl
rm
match.scm
2045
0644
edit
dl
rm
match.upstream.scm
36459
0644
edit
dl
rm
networking.scm
3407
0644
edit
dl
rm
null.scm
1157
0644
edit
dl
rm
occam-channel.scm
7436
0644
edit
dl
rm
optargs.scm
16123
0644
edit
dl
rm
poe.scm
3382
0644
edit
dl
rm
poll.scm
6166
0644
edit
dl
rm
popen.scm
5806
0644
edit
dl
rm
posix.scm
2793
0644
edit
dl
rm
pretty-print.scm
16211
0644
edit
dl
rm
psyntax-pp.scm
166774
0644
edit
dl
rm
psyntax.scm
147118
0644
edit
dl
rm
q.scm
4297
0644
edit
dl
rm
quasisyntax.scm
5348
0644
edit
dl
rm
r4rs.scm
9645
0644
edit
dl
rm
r5rs.scm
1602
0644
edit
dl
rm
r6rs-libraries.scm
9164
0644
edit
dl
rm
rdelim.scm
7648
0644
edit
dl
rm
readline.scm
9786
0644
edit
dl
rm
receive.scm
1082
0644
edit
dl
rm
regex.scm
9084
0644
edit
dl
rm
runq.scm
8379
0644
edit
dl
rm
rw.scm
1047
0644
edit
dl
rm
safe-r5rs.scm
3814
0644
edit
dl
rm
safe.scm
1275
0644
edit
dl
rm
save-stack.scm
2197
0644
edit
dl
rm
scm-style-repl.scm
11986
0644
edit
dl
rm
serialize.scm
3859
0644
edit
dl
rm
session.scm
18143
0644
edit
dl
rm
slib.scm
1583
0644
edit
dl
rm
stack-catch.scm
1983
0644
edit
dl
rm
streams.scm
7488
0644
edit
dl
rm
string-fun.scm
8798
0644
edit
dl
rm
syncase.scm
1556
0644
edit
dl
rm
threads.scm
6388
0644
edit
dl
rm
time.scm
2088
0644
edit
dl
rm
top-repl.scm
2812
0644
edit
dl
rm
unicode.scm
1005
0644
edit
dl
rm
vlist.scm
22081
0644
edit
dl
rm
weak-vector.scm
1288
0644
edit
dl
rm
Edit:
/usr/share/guile/2.0/ice-9/popen.scm
(5806B)
;; popen emulation, for non-stdio based ports. ;;;; Copyright (C) 1998, 1999, 2000, 2001, 2003, 2006, 2010, 2011, 2012, ;;;; 2013 Free Software Foundation, Inc. ;;;; ;;;; 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 3 of the License, or (at your option) any later version. ;;;; ;;;; This library is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;;; Lesser General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU Lesser General Public ;;;; License along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;;;; (define-module (ice-9 popen) :use-module (ice-9 threads) :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)) (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) (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+")) ;; 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. ;; XXX use of this table is deprecated. It is no longer used here, and ;; is populated for backward compatibility only (since it is exported). (define port/pid-table (make-weak-key-hash-table 31)) (define port/pid-table-mutex (make-mutex)) (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))) ;; Guard the pipe-info instead of the port, so that we can still ;; call 'waitpid' even if 'close-port' is called (which clears ;; the port entry). (pipe-guardian pipe-info) (%set-port-property! port 'popen-pipe-info pipe-info) ;; XXX populate port/pid-table for backward compatibility. (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")) ;; clear the pid to avoid repeated calls to 'waitpid'. (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))) ;; maybe 'close-pipe' was already called. (when pid ;; 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. (catch 'system-error (lambda () (let ((pid/status (waitpid pid WNOHANG))) (if (zero? (car pid/status)) (pipe-guardian pipe-info) ; not ready for collection (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))
Save
cmd:
run