5884d33d7864391bcc58de109c46ca1b9a750983
[org-mode.git] / lisp / ob-eval.el
blob5884d33d7864391bcc58de109c46ca1b9a750983
1 ;;; ob-eval.el --- org-babel functions for external code evaluation
3 ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research, comint
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; These functions build existing Emacs support for executing external
27 ;; shell commands.
29 ;;; Code:
30 (eval-when-compile (require 'cl))
32 (defvar org-babel-error-buffer-name "*Org-Babel Error Output*")
33 (declare-function org-babel-temp-file "ob-core" (prefix &optional suffix))
35 (defun org-babel-eval-error-notify (exit-code stderr)
36 "Open a buffer to display STDERR and a message with the value of EXIT-CODE."
37 (let ((buf (get-buffer-create org-babel-error-buffer-name)))
38 (with-current-buffer buf
39 (goto-char (point-max))
40 (save-excursion (insert stderr)))
41 (display-buffer buf))
42 (message "Babel evaluation exited with code %S" exit-code))
44 (defun org-babel-eval (cmd body)
45 "Run CMD on BODY.
46 If CMD succeeds then return its results, otherwise display
47 STDERR with `org-babel-eval-error-notify'."
48 (let ((err-buff (get-buffer-create " *Org-Babel Error*")) exit-code)
49 (with-current-buffer err-buff (erase-buffer))
50 (with-temp-buffer
51 (insert body)
52 (setq exit-code
53 (org-babel-shell-command-on-region
54 (point-min) (point-max) cmd t 'replace err-buff))
55 (if (or (not (numberp exit-code)) (> exit-code 0))
56 (progn
57 (with-current-buffer err-buff
58 (org-babel-eval-error-notify exit-code (buffer-string)))
59 nil)
60 (buffer-string)))))
62 (defun org-babel-eval-read-file (file)
63 "Return the contents of FILE as a string."
64 (with-temp-buffer (insert-file-contents file)
65 (buffer-string)))
67 (defun org-babel-shell-command-on-region (start end command
68 &optional output-buffer replace
69 error-buffer display-error-buffer)
70 "Execute COMMAND in an inferior shell with region as input.
72 Fixes bugs in the emacs 23.1.1 version of `shell-command-on-region'
74 Normally display output (if any) in temp buffer `*Shell Command Output*';
75 Prefix arg means replace the region with it. Return the exit code of
76 COMMAND.
78 To specify a coding system for converting non-ASCII characters in
79 the input and output to the shell command, use
80 \\[universal-coding-system-argument] before this command. By
81 default, the input (from the current buffer) is encoded in the
82 same coding system that will be used to save the file,
83 `buffer-file-coding-system'. If the output is going to replace
84 the region, then it is decoded from that same coding system.
86 The noninteractive arguments are START, END, COMMAND,
87 OUTPUT-BUFFER, REPLACE, ERROR-BUFFER, and DISPLAY-ERROR-BUFFER.
88 Noninteractive callers can specify coding systems by binding
89 `coding-system-for-read' and `coding-system-for-write'.
91 If the command generates output, the output may be displayed
92 in the echo area or in a buffer.
93 If the output is short enough to display in the echo area
94 \(determined by the variable `max-mini-window-height' if
95 `resize-mini-windows' is non-nil), it is shown there. Otherwise
96 it is displayed in the buffer `*Shell Command Output*'. The output
97 is available in that buffer in both cases.
99 If there is output and an error, a message about the error
100 appears at the end of the output.
102 If there is no output, or if output is inserted in the current buffer,
103 then `*Shell Command Output*' is deleted.
105 If the optional fourth argument OUTPUT-BUFFER is non-nil,
106 that says to put the output in some other buffer.
107 If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
108 If OUTPUT-BUFFER is not a buffer and not nil,
109 insert output in the current buffer.
110 In either case, the output is inserted after point (leaving mark after it).
112 If REPLACE, the optional fifth argument, is non-nil, that means insert
113 the output in place of text from START to END, putting point and mark
114 around it.
116 If optional sixth argument ERROR-BUFFER is non-nil, it is a buffer
117 or buffer name to which to direct the command's standard error output.
118 If it is nil, error output is mingled with regular output.
119 If DISPLAY-ERROR-BUFFER is non-nil, display the error buffer if there
120 were any errors. (This is always t, interactively.)
121 In an interactive call, the variable `shell-command-default-error-buffer'
122 specifies the value of ERROR-BUFFER."
123 (interactive (let (string)
124 (unless (mark)
125 (error "The mark is not set now, so there is no region"))
126 ;; Do this before calling region-beginning
127 ;; and region-end, in case subprocess output
128 ;; relocates them while we are in the minibuffer.
129 (setq string (read-shell-command "Shell command on region: "))
130 ;; call-interactively recognizes region-beginning and
131 ;; region-end specially, leaving them in the history.
132 (list (region-beginning) (region-end)
133 string
134 current-prefix-arg
135 current-prefix-arg
136 shell-command-default-error-buffer
137 t)))
138 (let ((input-file (org-babel-temp-file "input-"))
139 (error-file (if error-buffer (org-babel-temp-file "scor-") nil))
140 (shell-file-name
141 (if (file-executable-p
142 (concat (file-remote-p default-directory) shell-file-name))
143 shell-file-name
144 "/bin/sh"))
145 exit-status)
146 ;; There is an error in `process-file' when `error-file' exists.
147 ;; This is fixed in Emacs trunk as of 2012-12-21; let's use this
148 ;; workaround for now.
149 (unless (file-remote-p default-directory)
150 (delete-file error-file))
151 (if (or replace
152 (and output-buffer
153 (not (or (bufferp output-buffer) (stringp output-buffer)))))
154 ;; Replace specified region with output from command.
155 (let ((swap (and replace (< start end))))
156 ;; Don't muck with mark unless REPLACE says we should.
157 (goto-char start)
158 (and replace (push-mark (point) 'nomsg))
159 (write-region start end input-file)
160 (delete-region start end)
161 (setq exit-status
162 (process-file shell-file-name input-file
163 (if error-file
164 (list output-buffer error-file)
166 nil shell-command-switch command))
167 ;; It is rude to delete a buffer which the command is not using.
168 ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
169 ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
170 ;; (kill-buffer shell-buffer)))
171 ;; Don't muck with mark unless REPLACE says we should.
172 (and replace swap (exchange-point-and-mark)))
173 ;; No prefix argument: put the output in a temp buffer,
174 ;; replacing its entire contents.
175 (let ((buffer (get-buffer-create
176 (or output-buffer "*Shell Command Output*"))))
177 (unwind-protect
178 (if (eq buffer (current-buffer))
179 ;; If the input is the same buffer as the output,
180 ;; delete everything but the specified region,
181 ;; then replace that region with the output.
182 (progn (setq buffer-read-only nil)
183 (delete-region (max start end) (point-max))
184 (delete-region (point-min) (min start end))
185 (write-region (point-min) (point-max) input-file)
186 (delete-region (point-min) (point-max))
187 (setq exit-status
188 (process-file shell-file-name input-file
189 (if error-file
190 (list t error-file)
192 nil shell-command-switch command)))
193 ;; Clear the output buffer, then run the command with
194 ;; output there.
195 (let ((directory default-directory))
196 (with-current-buffer buffer
197 (setq buffer-read-only nil)
198 (if (not output-buffer)
199 (setq default-directory directory))
200 (erase-buffer)))
201 (setq exit-status
202 (process-file shell-file-name nil
203 (if error-file
204 (list buffer error-file)
205 buffer)
206 nil shell-command-switch command)))
207 ;; Report the output.
208 (with-current-buffer buffer
209 (setq mode-line-process
210 (cond ((null exit-status)
211 " - Error")
212 ((stringp exit-status)
213 (format " - Signal [%s]" exit-status))
214 ((not (equal 0 exit-status))
215 (format " - Exit [%d]" exit-status)))))
216 (if (with-current-buffer buffer (> (point-max) (point-min)))
217 ;; There's some output, display it
218 (display-message-or-buffer buffer)
219 ;; No output; error?
220 (let ((output
221 (if (and error-file
222 (< 0 (nth 7 (file-attributes error-file))))
223 "some error output"
224 "no output")))
225 (cond ((null exit-status)
226 (message "(Shell command failed with error)"))
227 ((equal 0 exit-status)
228 (message "(Shell command succeeded with %s)"
229 output))
230 ((stringp exit-status)
231 (message "(Shell command killed by signal %s)"
232 exit-status))
234 (message "(Shell command failed with code %d and %s)"
235 exit-status output))))
236 ;; Don't kill: there might be useful info in the undo-log.
237 ;; (kill-buffer buffer)
238 ))))
240 (when (and input-file (file-exists-p input-file))
241 (delete-file input-file))
243 (when (and error-file (file-exists-p error-file))
244 (if (< 0 (nth 7 (file-attributes error-file)))
245 (with-current-buffer (get-buffer-create error-buffer)
246 (let ((pos-from-end (- (point-max) (point))))
247 (or (bobp)
248 (insert "\f\n"))
249 ;; Do no formatting while reading error file,
250 ;; because that can run a shell command, and we
251 ;; don't want that to cause an infinite recursion.
252 (format-insert-file error-file nil)
253 ;; Put point after the inserted errors.
254 (goto-char (- (point-max) pos-from-end)))
255 (and display-error-buffer
256 (display-buffer (current-buffer)))))
257 (delete-file error-file))
258 exit-status))
260 (defun org-babel-eval-wipe-error-buffer ()
261 "Delete the contents of the Org code block error buffer.
262 This buffer is named by `org-babel-error-buffer-name'."
263 (when (get-buffer org-babel-error-buffer-name)
264 (with-current-buffer org-babel-error-buffer-name
265 (delete-region (point-min) (point-max)))))
267 (provide 'ob-eval)
271 ;;; ob-eval.el ends here