Skip to content
Snippets Groups Projects
Commit 0a9111e5 authored by rtoy's avatar rtoy
Browse files

Add support for external formats for RUN-PROGRAM, which now takes an

:EXTERNAL-FORMAT keyword argument to specify the format to use for any
streams that RUN-PROGRAM needs to create.

Patch from Paul Foley.
parent 74a64db3
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/run-program.lisp,v 1.31 2010/04/20 17:57:45 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/run-program.lisp,v 1.32 2010/09/20 13:50:52 rtoy Rel $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -325,7 +325,7 @@ ...@@ -325,7 +325,7 @@
;;; OPEN-PTY -- internal ;;; OPEN-PTY -- internal
;;; ;;;
(defun open-pty (pty cookie) (defun open-pty (pty cookie &optional (external-format :default))
(when pty (when pty
(multiple-value-bind (multiple-value-bind
(master slave name) (master slave name)
...@@ -340,7 +340,8 @@ ...@@ -340,7 +340,8 @@
(push new-fd *close-on-error*) (push new-fd *close-on-error*)
(copy-descriptor-to-stream new-fd pty cookie))) (copy-descriptor-to-stream new-fd pty cookie)))
(values name (values name
(system:make-fd-stream master :input t :output t))))) (system:make-fd-stream master :input t :output t
:external-format external-format)))))
(defmacro round-bytes-to-words (n) (defmacro round-bytes-to-words (n)
...@@ -454,7 +455,8 @@ ...@@ -454,7 +455,8 @@
(defun run-program (program args (defun run-program (program args
&key (env *environment-list*) (wait t) pty input &key (env *environment-list*) (wait t) pty input
if-input-does-not-exist output (if-output-exists :error) if-input-does-not-exist output (if-output-exists :error)
(error :output) (if-error-exists :error) status-hook) (error :output) (if-error-exists :error) status-hook
(external-format :default))
"RUN-PROGRAM creates a new process and runs the unix program in the "RUN-PROGRAM creates a new process and runs the unix program in the
file specified by the simple-string PROGRAM. ARGS are the standard file specified by the simple-string PROGRAM. ARGS are the standard
arguments that can be passed to a Unix program, for no arguments arguments that can be passed to a Unix program, for no arguments
...@@ -506,14 +508,16 @@ ...@@ -506,14 +508,16 @@
same place as normal output. same place as normal output.
:status-hook - :status-hook -
This is a function the system calls whenever the status of the This is a function the system calls whenever the status of the
process changes. The function takes the process as an argument." process changes. The function takes the process as an argument.
:external-format -
This is the external-format used for communication with the subprocess."
;; Make sure the interrupt handler is installed. ;; Make sure the interrupt handler is installed.
(system:enable-interrupt unix:sigchld #'sigchld-handler) (system:enable-interrupt unix:sigchld #'sigchld-handler)
;; Make sure all the args are okay. ;; Make sure all the args are okay.
(unless (every #'simple-string-p args) (unless (every #'simple-string-p args)
(error (intl:gettext "All args to program must be simple strings -- ~S.") args)) (error (intl:gettext "All args to program must be simple strings -- ~S.") args))
;; Pre-pend the program to the argument list. ;; Prepend the program to the argument list.
(push (namestring program) args) (push (namestring program) args)
;; Clear random specials used by GET-DESCRIPTOR-FOR to communicate cleanup ;; Clear random specials used by GET-DESCRIPTOR-FOR to communicate cleanup
;; info. Also, establish proc at this level so we can return it. ;; info. Also, establish proc at this level so we can return it.
...@@ -526,21 +530,24 @@ ...@@ -526,21 +530,24 @@
(multiple-value-bind (multiple-value-bind
(stdin input-stream) (stdin input-stream)
(get-descriptor-for input cookie :direction :input (get-descriptor-for input cookie :direction :input
:if-does-not-exist if-input-does-not-exist) :if-does-not-exist if-input-does-not-exist
:external-format external-format)
(multiple-value-bind (multiple-value-bind
(stdout output-stream) (stdout output-stream)
(get-descriptor-for output cookie :direction :output (get-descriptor-for output cookie :direction :output
:if-does-not-exist :create :if-does-not-exist :create
:if-exists if-output-exists) :if-exists if-output-exists
:external-format external-format)
(multiple-value-bind (multiple-value-bind
(stderr error-stream) (stderr error-stream)
(if (eq error :output) (if (eq error :output)
(values stdout output-stream) (values stdout output-stream)
(get-descriptor-for error cookie :direction :output (get-descriptor-for error cookie :direction :output
:if-does-not-exist :create :if-does-not-exist :create
:if-exists if-error-exists)) :if-exists if-error-exists
:external-format external-format))
(multiple-value-bind (pty-name pty-stream) (multiple-value-bind (pty-name pty-stream)
(open-pty pty cookie) (open-pty pty cookie external-format)
;; Make sure we are not notified about the child death before ;; Make sure we are not notified about the child death before
;; we have installed the process struct in *active-processes* ;; we have installed the process struct in *active-processes*
(system:without-interrupts (system:without-interrupts
...@@ -644,6 +651,7 @@ ...@@ -644,6 +651,7 @@
;;; second value. ;;; second value.
;;; ;;;
(defun get-descriptor-for (object cookie &rest keys &key direction (defun get-descriptor-for (object cookie &rest keys &key direction
external-format
&allow-other-keys) &allow-other-keys)
(cond ((eq object t) (cond ((eq object t)
;; No new descriptor is needed. ;; No new descriptor is needed.
...@@ -674,12 +682,16 @@ ...@@ -674,12 +682,16 @@
(:input (:input
(push read-fd *close-in-parent*) (push read-fd *close-in-parent*)
(push write-fd *close-on-error*) (push write-fd *close-on-error*)
(let ((stream (system:make-fd-stream write-fd :output t))) (let ((stream (system:make-fd-stream write-fd :output t
:external-format
external-format)))
(values read-fd stream))) (values read-fd stream)))
(:output (:output
(push read-fd *close-on-error*) (push read-fd *close-on-error*)
(push write-fd *close-in-parent*) (push write-fd *close-in-parent*)
(let ((stream (system:make-fd-stream read-fd :input t))) (let ((stream (system:make-fd-stream read-fd :input t
:external-format
external-format)))
(values write-fd stream))) (values write-fd stream)))
(t (t
(unix:unix-close read-fd) (unix:unix-close read-fd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment