f4a8345b54662ba203598d102df5a0eb521ba479
[org-mode.git] / lisp / ob-core.el
blobf4a8345b54662ba203598d102df5a0eb521ba479
1 ;;; ob-core.el --- working with code blocks in org-mode
3 ;; Copyright (C) 2009-2015 Free Software Foundation, Inc.
5 ;; Authors: Eric Schulte
6 ;; Dan Davison
7 ;; Keywords: literate programming, reproducible research
8 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Code:
26 (eval-when-compile
27 (require 'cl))
28 (require 'ob-eval)
29 (require 'org-macs)
30 (require 'org-compat)
32 (defconst org-babel-exeext
33 (if (memq system-type '(windows-nt cygwin))
34 ".exe"
35 nil))
36 ;; dynamically scoped for tramp
37 (defvar org-babel-call-process-region-original nil)
38 (defvar org-src-lang-modes)
39 (defvar org-babel-library-of-babel)
40 (declare-function show-all "outline" ())
41 (declare-function org-every "org" (pred seq))
42 (declare-function org-remove-indentation "org" (code &optional n))
43 (declare-function org-reduce "org" (CL-FUNC CL-SEQ &rest CL-KEYS))
44 (declare-function org-mark-ring-push "org" (&optional pos buffer))
45 (declare-function tramp-compat-make-temp-file "tramp-compat"
46 (filename &optional dir-flag))
47 (declare-function tramp-dissect-file-name "tramp" (name &optional nodefault))
48 (declare-function tramp-file-name-user "tramp" (vec))
49 (declare-function tramp-file-name-host "tramp" (vec))
50 (declare-function with-parsed-tramp-file-name "tramp" (filename var &rest body))
51 (declare-function org-icompleting-read "org" (&rest args))
52 (declare-function org-edit-src-code "org-src" (&optional code edit-buffer-name))
53 (declare-function org-edit-src-exit "org-src" ())
54 (declare-function org-open-at-point "org" (&optional in-emacs reference-buffer))
55 (declare-function org-save-outline-visibility "org-macs" (use-markers &rest body))
56 (declare-function org-outline-overlay-data "org" (&optional use-markers))
57 (declare-function org-set-outline-overlay-data "org" (data))
58 (declare-function org-narrow-to-subtree "org" ())
59 (declare-function org-split-string "org" (string &optional separators))
60 (declare-function org-entry-get "org"
61 (pom property &optional inherit literal-nil))
62 (declare-function org-make-options-regexp "org" (kwds &optional extra))
63 (declare-function org-do-remove-indentation "org" (&optional n))
64 (declare-function org-next-block "org" (arg &optional backward block-regexp))
65 (declare-function org-previous-block "org" (arg &optional block-regexp))
66 (declare-function org-show-context "org" (&optional key))
67 (declare-function org-at-table-p "org" (&optional table-type))
68 (declare-function org-cycle "org" (&optional arg))
69 (declare-function org-uniquify "org" (list))
70 (declare-function org-current-level "org" ())
71 (declare-function org-table-import "org-table" (file arg))
72 (declare-function org-add-hook "org-compat"
73 (hook function &optional append local))
74 (declare-function org-table-align "org-table" ())
75 (declare-function org-table-end "org-table" (&optional table-type))
76 (declare-function orgtbl-to-generic "org-table" (table params))
77 (declare-function orgtbl-to-orgtbl "org-table" (table params))
78 (declare-function org-babel-tangle-comment-links "ob-tangle" (&optional info))
79 (declare-function org-babel-lob-get-info "ob-lob" nil)
80 (declare-function org-babel-ref-split-args "ob-ref" (arg-string))
81 (declare-function org-babel-ref-parse "ob-ref" (assignment))
82 (declare-function org-babel-ref-resolve "ob-ref" (ref))
83 (declare-function org-babel-ref-goto-headline-id "ob-ref" (id))
84 (declare-function org-babel-ref-headline-body "ob-ref" ())
85 (declare-function org-babel-lob-execute-maybe "ob-lob" ())
86 (declare-function org-number-sequence "org-compat" (from &optional to inc))
87 (declare-function org-at-item-p "org-list" ())
88 (declare-function org-list-parse-list "org-list" (&optional delete))
89 (declare-function org-list-to-generic "org-list" (LIST PARAMS))
90 (declare-function org-list-struct "org-list" ())
91 (declare-function org-list-prevs-alist "org-list" (struct))
92 (declare-function org-list-get-list-end "org-list" (item struct prevs))
93 (declare-function org-remove-if "org" (predicate seq))
94 (declare-function org-completing-read "org" (&rest args))
95 (declare-function org-escape-code-in-region "org-src" (beg end))
96 (declare-function org-unescape-code-in-string "org-src" (s))
97 (declare-function org-table-to-lisp "org-table" (&optional txt))
98 (declare-function org-reverse-string "org" (string))
99 (declare-function org-element-context "org-element" (&optional element))
100 (declare-function org-element-type "org-element" (element))
101 (declare-function org-element-at-point "org-element" ())
102 (declare-function org-element-property "org-element" (property element))
103 (declare-function org-every "org" (pred seq))
104 (declare-function org-macro-escape-arguments "org-macro" (&rest args))
106 (defgroup org-babel nil
107 "Code block evaluation and management in `org-mode' documents."
108 :tag "Babel"
109 :group 'org)
111 (defcustom org-confirm-babel-evaluate t
112 "Confirm before evaluation.
113 Require confirmation before interactively evaluating code
114 blocks in Org-mode buffers. The default value of this variable
115 is t, meaning confirmation is required for any code block
116 evaluation. This variable can be set to nil to inhibit any
117 future confirmation requests. This variable can also be set to a
118 function which takes two arguments the language of the code block
119 and the body of the code block. Such a function should then
120 return a non-nil value if the user should be prompted for
121 execution or nil if no prompt is required.
123 Warning: Disabling confirmation may result in accidental
124 evaluation of potentially harmful code. It may be advisable
125 remove code block execution from C-c C-c as further protection
126 against accidental code block evaluation. The
127 `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
128 remove code block execution from the C-c C-c keybinding."
129 :group 'org-babel
130 :version "24.1"
131 :type '(choice boolean function))
132 ;; don't allow this variable to be changed through file settings
133 (put 'org-confirm-babel-evaluate 'safe-local-variable (lambda (x) (eq x t)))
135 (defcustom org-babel-no-eval-on-ctrl-c-ctrl-c nil
136 "Remove code block evaluation from the C-c C-c key binding."
137 :group 'org-babel
138 :version "24.1"
139 :type 'boolean)
141 (defcustom org-babel-results-keyword "RESULTS"
142 "Keyword used to name results generated by code blocks.
143 It should be \"RESULTS\". However any capitalization may be
144 used."
145 :group 'org-babel
146 :version "24.4"
147 :package-version '(Org . "8.0")
148 :type 'string
149 :safe (lambda (v)
150 (and (stringp v)
151 (eq (compare-strings "RESULTS" nil nil v nil nil t)
152 t))))
154 (defcustom org-babel-noweb-wrap-start "<<"
155 "String used to begin a noweb reference in a code block.
156 See also `org-babel-noweb-wrap-end'."
157 :group 'org-babel
158 :type 'string)
160 (defcustom org-babel-noweb-wrap-end ">>"
161 "String used to end a noweb reference in a code block.
162 See also `org-babel-noweb-wrap-start'."
163 :group 'org-babel
164 :type 'string)
166 (defcustom org-babel-inline-result-wrap "=%s="
167 "Format string used to wrap inline results.
168 This string must include a \"%s\" which will be replaced by the results."
169 :group 'org-babel
170 :type 'string)
171 (put 'org-babel-inline-result-wrap
172 'safe-local-variable
173 (lambda (value)
174 (and (stringp value)
175 (string-match-p "%s" value))))
177 (defun org-babel-noweb-wrap (&optional regexp)
178 (concat org-babel-noweb-wrap-start
179 (or regexp "\\([^ \t\n].+?[^ \t]\\|[^ \t\n]\\)")
180 org-babel-noweb-wrap-end))
182 (defvar org-babel-src-name-regexp
183 "^[ \t]*#\\+name:[ \t]*"
184 "Regular expression used to match a source name line.")
186 (defvar org-babel-multi-line-header-regexp
187 "^[ \t]*#\\+headers?:[ \t]*\\([^\n]*\\)$"
188 "Regular expression used to match multi-line header arguments.")
190 (defvar org-babel-src-block-regexp
191 (concat
192 ;; (1) indentation (2) lang
193 "^\\([ \t]*\\)#\\+begin_src[ \t]+\\([^ \f\t\n\r\v]+\\)[ \t]*"
194 ;; (3) switches
195 "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)"
196 ;; (4) header arguments
197 "\\([^\n]*\\)\n"
198 ;; (5) body
199 "\\([^\000]*?\n\\)??[ \t]*#\\+end_src")
200 "Regexp used to identify code blocks.")
202 (defvar org-babel-inline-src-block-regexp
203 (concat
204 ;; (1) replacement target (2) lang
205 "\\(?:^\\|[^-[:alnum:]]?\\)\\(src_\\([^ \f\t\n\r\v[]+\\)"
206 ;; (3,4) (unused, headers)
207 "\\(\\|\\[[ \t]*\\(.*?\\)\\]\\)"
208 ;; (5) body
209 "{\\([^\f\n\r\v]+?\\)}\\)")
210 "Regexp used to identify inline src-blocks.")
212 (defun org-babel-get-header (params key &optional others)
213 "Select only header argument of type KEY from a list.
214 Optional argument OTHERS indicates that only the header that do
215 not match KEY should be returned."
216 (delq nil
217 (mapcar
218 (lambda (p) (when (funcall (if others #'not #'identity) (eq (car p) key)) p))
219 params)))
221 (defun org-babel-get-inline-src-block-matches ()
222 "Set match data if within body of an inline source block.
223 Returns non-nil if match-data set"
224 (save-excursion
225 (let ((datum (org-element-context)))
226 (when (eq (org-element-type datum) 'inline-src-block)
227 (goto-char (org-element-property :begin datum))
228 (when (looking-at org-babel-inline-src-block-regexp)
229 t )))))
231 (defvar org-babel-inline-lob-one-liner-regexp)
232 (defun org-babel-get-lob-one-liner-matches ()
233 "Set match data if on line of an lob one liner.
234 Returns non-nil if match-data set"
235 (save-excursion
236 (let ((datum (org-element-context)))
237 (when (eq (org-element-type datum) 'inline-babel-call)
238 (goto-char (org-element-property :begin datum))))
239 (if (looking-at org-babel-inline-lob-one-liner-regexp)
241 nil)))
243 (defun org-babel-get-src-block-info (&optional light)
244 "Get information on the current source block.
246 Optional argument LIGHT does not resolve remote variable
247 references; a process which could likely result in the execution
248 of other code blocks.
250 Returns a list
251 (language body header-arguments-alist switches name indent block-head)."
252 (let ((case-fold-search t) head info name indent)
253 ;; full code block
254 (if (setq head (org-babel-where-is-src-block-head))
255 (save-excursion
256 (goto-char head)
257 (setq info (org-babel-parse-src-block-match))
258 (setq indent (car (last info)))
259 (setq info (butlast info))
260 (while (and (forward-line -1)
261 (looking-at org-babel-multi-line-header-regexp))
262 (setf (nth 2 info)
263 (org-babel-merge-params
264 (nth 2 info)
265 (org-babel-parse-header-arguments (match-string 1)))))
266 (when (looking-at (org-babel-named-src-block-regexp-for-name))
267 (setq name (org-match-string-no-properties 9))))
268 ;; inline source block
269 (when (org-babel-get-inline-src-block-matches)
270 (setq head (match-beginning 0))
271 (setq info (org-babel-parse-inline-src-block-match))))
272 ;; resolve variable references and add summary parameters
273 (when (and info (not light))
274 (setf (nth 2 info) (org-babel-process-params (nth 2 info))))
275 (when info
276 (setf (nth 2 info) (org-babel-generate-file-param name (nth 2 info))))
277 (when info (append info (list name indent head)))))
279 (defvar org-babel-exp-reference-buffer nil
280 "Buffer containing original contents of the exported buffer.
281 This is used by Babel to resolve references in source blocks.
282 Its value is dynamically bound during export.")
284 (defmacro org-babel-check-confirm-evaluate (info &rest body)
285 "Evaluate BODY with special execution confirmation variables set.
287 Specifically; NOEVAL will indicate if evaluation is allowed,
288 QUERY will indicate if a user query is required, CODE-BLOCK will
289 hold the language of the code block, and BLOCK-NAME will hold the
290 name of the code block."
291 (declare (indent defun))
292 (org-with-gensyms
293 (lang block-body headers name head eval eval-no export eval-no-export)
294 `(let* ((,lang (nth 0 ,info))
295 (,block-body (nth 1 ,info))
296 (,headers (nth 2 ,info))
297 (,name (nth 4 ,info))
298 (,head (nth 6 ,info))
299 (,eval (or (cdr (assoc :eval ,headers))
300 (when (assoc :noeval ,headers) "no")))
301 (,eval-no (or (equal ,eval "no")
302 (equal ,eval "never")))
303 (,export org-babel-exp-reference-buffer)
304 (,eval-no-export (and ,export (or (equal ,eval "no-export")
305 (equal ,eval "never-export"))))
306 (noeval (or ,eval-no ,eval-no-export))
307 (query (or (equal ,eval "query")
308 (and ,export (equal ,eval "query-export"))
309 (if (functionp org-confirm-babel-evaluate)
310 (save-excursion
311 (goto-char ,head)
312 (funcall org-confirm-babel-evaluate
313 ,lang ,block-body))
314 org-confirm-babel-evaluate)))
315 (code-block (if ,info (format " %s " ,lang) " "))
316 (block-name (if ,name (format " (%s) " ,name) " ")))
317 ,@body)))
319 (defsubst org-babel-check-evaluate (info)
320 "Check if code block INFO should be evaluated.
321 Do not query the user."
322 (org-babel-check-confirm-evaluate info
323 (not (when noeval
324 (message (format "Evaluation of this%scode-block%sis disabled."
325 code-block block-name))))))
327 ;; dynamically scoped for asynchronous export
328 (defvar org-babel-confirm-evaluate-answer-no)
330 (defsubst org-babel-confirm-evaluate (info)
331 "Confirm evaluation of the code block INFO.
333 If the variable `org-babel-confirm-evaluate-answer-no' is bound
334 to a non-nil value, auto-answer with \"no\".
336 This query can also be suppressed by setting the value of
337 `org-confirm-babel-evaluate' to nil, in which case all future
338 interactive code block evaluations will proceed without any
339 confirmation from the user.
341 Note disabling confirmation may result in accidental evaluation
342 of potentially harmful code."
343 (org-babel-check-confirm-evaluate info
344 (not (when query
345 (unless
346 (and (not (org-bound-and-true-p
347 org-babel-confirm-evaluate-answer-no))
348 (yes-or-no-p
349 (format "Evaluate this%scode block%son your system? "
350 code-block block-name)))
351 (message (format "Evaluation of this%scode-block%sis aborted."
352 code-block block-name)))))))
354 ;;;###autoload
355 (defun org-babel-execute-safely-maybe ()
356 (unless org-babel-no-eval-on-ctrl-c-ctrl-c
357 (org-babel-execute-maybe)))
359 (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-execute-safely-maybe)
361 ;;;###autoload
362 (defun org-babel-execute-maybe ()
363 (interactive)
364 (or (org-babel-execute-src-block-maybe)
365 (org-babel-lob-execute-maybe)))
367 (defmacro org-babel-when-in-src-block (&rest body)
368 "Execute BODY if point is in a source block and return t.
370 Otherwise do nothing and return nil."
371 `(if (or (org-babel-where-is-src-block-head)
372 (org-babel-get-inline-src-block-matches))
373 (progn
374 ,@body
376 nil))
378 (defun org-babel-execute-src-block-maybe ()
379 "Conditionally execute a source block.
380 Detect if this is context for a Babel src-block and if so
381 then run `org-babel-execute-src-block'."
382 (interactive)
383 (org-babel-when-in-src-block
384 (org-babel-eval-wipe-error-buffer)
385 (org-babel-execute-src-block current-prefix-arg)))
387 ;;;###autoload
388 (defun org-babel-view-src-block-info ()
389 "Display information on the current source block.
390 This includes header arguments, language and name, and is largely
391 a window into the `org-babel-get-src-block-info' function."
392 (interactive)
393 (let ((info (org-babel-get-src-block-info 'light))
394 (full (lambda (it) (> (length it) 0)))
395 (printf (lambda (fmt &rest args) (princ (apply #'format fmt args)))))
396 (when info
397 (with-help-window (help-buffer)
398 (let ((name (nth 4 info))
399 (lang (nth 0 info))
400 (switches (nth 3 info))
401 (header-args (nth 2 info)))
402 (when name (funcall printf "Name: %s\n" name))
403 (when lang (funcall printf "Lang: %s\n" lang))
404 (funcall printf "Properties:\n")
405 (funcall printf "\t:header-args \t%s\n" (org-entry-get (point) "header-args" t))
406 (funcall printf "\t:header-args:%s \t%s\n" lang (org-entry-get (point) (concat "header-args:" lang) t))
408 (when (funcall full switches) (funcall printf "Switches: %s\n" switches))
409 (funcall printf "Header Arguments:\n")
410 (dolist (pair (sort header-args
411 (lambda (a b) (string< (symbol-name (car a))
412 (symbol-name (car b))))))
413 (when (funcall full (format "%s" (cdr pair)))
414 (funcall printf "\t%S%s\t%s\n"
415 (car pair)
416 (if (> (length (format "%S" (car pair))) 7) "" "\t")
417 (cdr pair)))))))))
419 ;;;###autoload
420 (defun org-babel-expand-src-block-maybe ()
421 "Conditionally expand a source block.
422 Detect if this is context for a org-babel src-block and if so
423 then run `org-babel-expand-src-block'."
424 (interactive)
425 (org-babel-when-in-src-block
426 (org-babel-expand-src-block current-prefix-arg)))
428 ;;;###autoload
429 (defun org-babel-load-in-session-maybe ()
430 "Conditionally load a source block in a session.
431 Detect if this is context for a org-babel src-block and if so
432 then run `org-babel-load-in-session'."
433 (interactive)
434 (org-babel-when-in-src-block
435 (org-babel-load-in-session current-prefix-arg)))
437 (add-hook 'org-metaup-hook 'org-babel-load-in-session-maybe)
439 ;;;###autoload
440 (defun org-babel-pop-to-session-maybe ()
441 "Conditionally pop to a session.
442 Detect if this is context for a org-babel src-block and if so
443 then run `org-babel-switch-to-session'."
444 (interactive)
445 (org-babel-when-in-src-block
446 (org-babel-switch-to-session current-prefix-arg)))
448 (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
450 (defconst org-babel-common-header-args-w-values
451 '((cache . ((no yes)))
452 (cmdline . :any)
453 (colnames . ((nil no yes)))
454 (comments . ((no link yes org both noweb)))
455 (dir . :any)
456 (eval . ((yes no no-export strip-export never-export eval never
457 query)))
458 (exports . ((code results both none)))
459 (epilogue . :any)
460 (file . :any)
461 (file-desc . :any)
462 (file-ext . :any)
463 (hlines . ((no yes)))
464 (mkdirp . ((yes no)))
465 (no-expand)
466 (noeval)
467 (noweb . ((yes no tangle no-export strip-export)))
468 (noweb-ref . :any)
469 (noweb-sep . :any)
470 (output-dir . :any)
471 (padline . ((yes no)))
472 (post . :any)
473 (prologue . :any)
474 (results . ((file list vector table scalar verbatim)
475 (raw html latex org code pp drawer)
476 (replace silent none append prepend)
477 (output value)))
478 (rownames . ((no yes)))
479 (sep . :any)
480 (session . :any)
481 (shebang . :any)
482 (tangle . ((tangle yes no :any)))
483 (tangle-mode . ((#o755 #o555 #o444 :any)))
484 (var . :any)
485 (wrap . :any)))
487 (defconst org-babel-header-arg-names
488 (mapcar #'car org-babel-common-header-args-w-values)
489 "Common header arguments used by org-babel.
490 Note that individual languages may define their own language
491 specific header arguments as well.")
493 (defconst org-babel-safe-header-args
494 '(:cache :colnames :comments :exports :epilogue :hlines :noeval
495 :noweb :noweb-ref :noweb-sep :padline :prologue :rownames
496 :sep :session :tangle :wrap
497 (:eval . ("never" "query"))
498 (:results . (lambda (str) (not (string-match "file" str)))))
499 "A list of safe header arguments for babel source blocks.
501 The list can have entries of the following forms:
502 - :ARG -> :ARG is always a safe header arg
503 - (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
504 `equal' to one of the VALs.
505 - (:ARG . FN) -> :ARG is safe as a header arg if the function FN
506 returns non-nil. FN is passed one
507 argument, the value of the header arg
508 (as a string).")
510 (defmacro org-babel-header-args-safe-fn (safe-list)
511 "Return a function that determines whether a list of header args are safe.
513 Intended usage is:
514 \(put 'org-babel-default-header-args 'safe-local-variable
515 (org-babel-header-args-safe-p org-babel-safe-header-args)
517 This allows org-babel languages to extend the list of safe values for
518 their `org-babel-default-header-args:foo' variable.
520 For the format of SAFE-LIST, see `org-babel-safe-header-args'."
521 `(lambda (value)
522 (and (listp value)
523 (org-every
524 (lambda (pair)
525 (and (consp pair)
526 (org-babel-one-header-arg-safe-p pair ,safe-list)))
527 value))))
529 (defvar org-babel-default-header-args
530 '((:session . "none") (:results . "replace") (:exports . "code")
531 (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no"))
532 "Default arguments to use when evaluating a source block.")
533 (put 'org-babel-default-header-args 'safe-local-variable
534 (org-babel-header-args-safe-fn org-babel-safe-header-args))
536 (defvar org-babel-default-inline-header-args
537 '((:session . "none") (:results . "replace")
538 (:exports . "results") (:hlines . "yes"))
539 "Default arguments to use when evaluating an inline source block.")
540 (put 'org-babel-default-inline-header-args 'safe-local-variable
541 (org-babel-header-args-safe-fn org-babel-safe-header-args))
543 (defvar org-babel-data-names '("tblname" "results" "name"))
545 (defvar org-babel-result-regexp
546 (concat "^[ \t]*#\\+"
547 (regexp-opt org-babel-data-names t)
548 "\\(\\[\\("
549 ;; FIXME The string below is `org-ts-regexp'
550 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
551 " \\)?\\([[:alnum:]]+\\)\\]\\)?\\:[ \t]*")
552 "Regular expression used to match result lines.
553 If the results are associated with a hash key then the hash will
554 be saved in the second match data.")
556 (defvar org-babel-result-w-name-regexp
557 (concat org-babel-result-regexp
558 "\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)"))
560 (defvar org-babel-min-lines-for-block-output 10
561 "The minimum number of lines for block output.
562 If number of lines of output is equal to or exceeds this
563 value, the output is placed in a #+begin_example...#+end_example
564 block. Otherwise the output is marked as literal by inserting
565 colons at the starts of the lines. This variable only takes
566 effect if the :results output option is in effect.")
568 (defvar org-babel-noweb-error-all-langs nil
569 "Raise errors when noweb references don't resolve.
570 Also see `org-babel-noweb-error-langs' to control noweb errors on
571 a language by language bases.")
573 (defvar org-babel-noweb-error-langs nil
574 "Languages for which Babel will raise literate programming errors.
575 List of languages for which errors should be raised when the
576 source code block satisfying a noweb reference in this language
577 can not be resolved. Also see `org-babel-noweb-error-all-langs'
578 to raise errors for all languages.")
580 (defvar org-babel-hash-show 4
581 "Number of initial characters to show of a hidden results hash.")
583 (defvar org-babel-hash-show-time nil
584 "Non-nil means show the time the code block was evaluated in the result hash.")
586 (defvar org-babel-after-execute-hook nil
587 "Hook for functions to be called after `org-babel-execute-src-block'")
589 (defun org-babel-named-src-block-regexp-for-name (&optional name)
590 "This generates a regexp used to match a src block named NAME.
591 If NAME is nil, match any name. Matched name is then put in
592 match group 9. Other match groups are defined in
593 `org-babel-src-block-regexp'."
594 (concat org-babel-src-name-regexp
595 (concat (if name (regexp-quote name) "\\(?9:.*?\\)") "[ \t]*" )
596 "\\(?:\n[ \t]*#\\+\\S-+:.*\\)*?"
597 "\n"
598 (substring org-babel-src-block-regexp 1)))
600 (defun org-babel-named-data-regexp-for-name (name)
601 "This generates a regexp used to match data named NAME."
602 (concat org-babel-result-regexp (regexp-quote name) "\\([ \t]\\|$\\)"))
604 ;;; functions
605 (defvar call-process-region)
606 (defvar org-babel-current-src-block-location nil
607 "Marker pointing to the src block currently being executed.
608 This may also point to a call line or an inline code block. If
609 multiple blocks are being executed (e.g., in chained execution
610 through use of the :var header argument) this marker points to
611 the outer-most code block.")
613 ;;;###autoload
614 (defun org-babel-execute-src-block (&optional arg info params)
615 "Execute the current source code block.
616 Insert the results of execution into the buffer. Source code
617 execution and the collection and formatting of results can be
618 controlled through a variety of header arguments.
620 With prefix argument ARG, force re-execution even if an existing
621 result cached in the buffer would otherwise have been returned.
623 Optionally supply a value for INFO in the form returned by
624 `org-babel-get-src-block-info'.
626 Optionally supply a value for PARAMS which will be merged with
627 the header arguments specified at the front of the source code
628 block."
629 (interactive)
630 (let* ((org-babel-current-src-block-location
631 (or org-babel-current-src-block-location
632 (nth 6 info)
633 (org-babel-where-is-src-block-head)
634 ;; inline src block
635 (and (org-babel-get-inline-src-block-matches)
636 (match-beginning 0))))
637 (info (if info
638 (copy-tree info)
639 (org-babel-get-src-block-info)))
640 (merged-params (org-babel-merge-params (nth 2 info) params)))
641 (when (org-babel-check-evaluate
642 (let ((i info)) (setf (nth 2 i) merged-params) i))
643 (let* ((params (if params
644 (org-babel-process-params merged-params)
645 (nth 2 info)))
646 (cachep (and (not arg) (cdr (assoc :cache params))
647 (string= "yes" (cdr (assoc :cache params)))))
648 (new-hash (when cachep (org-babel-sha1-hash info)))
649 (old-hash (when cachep (org-babel-current-result-hash)))
650 (cache-current-p (and (not arg) new-hash
651 (equal new-hash old-hash))))
652 (cond
653 (cache-current-p
654 (save-excursion ;; return cached result
655 (goto-char (org-babel-where-is-src-block-result nil info))
656 (forward-line)
657 (skip-chars-forward " \t")
658 (let ((result (org-babel-read-result)))
659 (message (replace-regexp-in-string
660 "%" "%%" (format "%S" result))) result)))
661 ((org-babel-confirm-evaluate
662 (let ((i info)) (setf (nth 2 i) merged-params) i))
663 (let* ((lang (nth 0 info))
664 (result-params (cdr (assoc :result-params params)))
665 (body (setf (nth 1 info)
666 (if (org-babel-noweb-p params :eval)
667 (org-babel-expand-noweb-references info)
668 (nth 1 info))))
669 (dir (cdr (assoc :dir params)))
670 (default-directory
671 (or (and dir (file-name-as-directory (expand-file-name dir)))
672 default-directory))
673 (org-babel-call-process-region-original ;; for tramp handler
674 (or (org-bound-and-true-p
675 org-babel-call-process-region-original)
676 (symbol-function 'call-process-region)))
677 (indent (nth 5 info))
678 result cmd)
679 (unwind-protect
680 (let ((call-process-region
681 (lambda (&rest args)
682 (apply 'org-babel-tramp-handle-call-process-region
683 args))))
684 (let ((lang-check
685 (lambda (f)
686 (let ((f (intern (concat "org-babel-execute:" f))))
687 (when (fboundp f) f)))))
688 (setq cmd
689 (or (funcall lang-check lang)
690 (funcall lang-check
691 (symbol-name
692 (cdr (assoc lang org-src-lang-modes))))
693 (error "No org-babel-execute function for %s!"
694 lang))))
695 (message "executing %s code block%s..."
696 (capitalize lang)
697 (if (nth 4 info) (format " (%s)" (nth 4 info)) ""))
698 (if (member "none" result-params)
699 (progn
700 (funcall cmd body params)
701 (message "result silenced")
702 (setq result nil))
703 (setq result
704 (let ((result (funcall cmd body params)))
705 (if (and (eq (cdr (assoc :result-type params))
706 'value)
707 (or (member "vector" result-params)
708 (member "table" result-params))
709 (not (listp result)))
710 (list (list result)) result)))
711 ;; If non-empty result and :file then write to :file.
712 (when (cdr (assoc :file params))
713 (when result
714 (with-temp-file (cdr (assoc :file params))
715 (insert
716 (org-babel-format-result
717 result (cdr (assoc :sep (nth 2 info)))))))
718 (setq result (cdr (assoc :file params))))
719 ;; Possibly perform post process provided its appropriate.
720 (when (cdr (assoc :post params))
721 (let ((*this* (if (cdr (assoc :file params))
722 (org-babel-result-to-file
723 (cdr (assoc :file params))
724 (when (assoc :file-desc params)
725 (or (cdr (assoc :file-desc params))
726 result)))
727 result)))
728 (setq result (org-babel-ref-resolve
729 (cdr (assoc :post params))))
730 (when (cdr (assoc :file params))
731 (setq result-params
732 (remove "file" result-params)))))
733 (org-babel-insert-result
734 result result-params info new-hash indent lang))
735 (run-hooks 'org-babel-after-execute-hook)
736 result)
737 (setq call-process-region
738 'org-babel-call-process-region-original)))))))))
740 (defun org-babel-expand-body:generic (body params &optional var-lines)
741 "Expand BODY with PARAMS.
742 Expand a block of code with org-babel according to its header
743 arguments. This generic implementation of body expansion is
744 called for languages which have not defined their own specific
745 org-babel-expand-body:lang function."
746 (let ((pro (cdr (assoc :prologue params)))
747 (epi (cdr (assoc :epilogue params))))
748 (mapconcat #'identity
749 (append (when pro (list pro))
750 var-lines
751 (list body)
752 (when epi (list epi)))
753 "\n")))
755 ;;;###autoload
756 (defun org-babel-expand-src-block (&optional arg info params)
757 "Expand the current source code block.
758 Expand according to the source code block's header
759 arguments and pop open the results in a preview buffer."
760 (interactive)
761 (let* ((info (or info (org-babel-get-src-block-info)))
762 (lang (nth 0 info))
763 (params (setf (nth 2 info)
764 (sort (org-babel-merge-params (nth 2 info) params)
765 (lambda (el1 el2) (string< (symbol-name (car el1))
766 (symbol-name (car el2)))))))
767 (body (setf (nth 1 info)
768 (if (org-babel-noweb-p params :eval)
769 (org-babel-expand-noweb-references info) (nth 1 info))))
770 (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
771 (assignments-cmd (intern (concat "org-babel-variable-assignments:"
772 lang)))
773 (expanded
774 (if (fboundp expand-cmd) (funcall expand-cmd body params)
775 (org-babel-expand-body:generic
776 body params (and (fboundp assignments-cmd)
777 (funcall assignments-cmd params))))))
778 (if (org-called-interactively-p 'any)
779 (org-edit-src-code
780 expanded (concat "*Org-Babel Preview " (buffer-name) "[ " lang " ]*"))
781 expanded)))
783 (defun org-babel-edit-distance (s1 s2)
784 "Return the edit (levenshtein) distance between strings S1 S2."
785 (let* ((l1 (length s1))
786 (l2 (length s2))
787 (dist (vconcat (mapcar (lambda (_) (make-vector (1+ l2) nil))
788 (number-sequence 1 (1+ l1)))))
789 (in (lambda (i j) (aref (aref dist i) j))))
790 (setf (aref (aref dist 0) 0) 0)
791 (dolist (j (number-sequence 1 l2))
792 (setf (aref (aref dist 0) j) j))
793 (dolist (i (number-sequence 1 l1))
794 (setf (aref (aref dist i) 0) i)
795 (dolist (j (number-sequence 1 l2))
796 (setf (aref (aref dist i) j)
797 (min
798 (1+ (funcall in (1- i) j))
799 (1+ (funcall in i (1- j)))
800 (+ (if (equal (aref s1 (1- i)) (aref s2 (1- j))) 0 1)
801 (funcall in (1- i) (1- j)))))))
802 (funcall in l1 l2)))
804 (defun org-babel-combine-header-arg-lists (original &rest others)
805 "Combine a number of lists of header argument names and arguments."
806 (let ((results (copy-sequence original)))
807 (dolist (new-list others)
808 (dolist (arg-pair new-list)
809 (let ((header (car arg-pair))
810 (args (cdr arg-pair)))
811 (setq results
812 (cons arg-pair (org-remove-if
813 (lambda (pair) (equal header (car pair)))
814 results))))))
815 results))
817 ;;;###autoload
818 (defun org-babel-check-src-block ()
819 "Check for misspelled header arguments in the current code block."
820 (interactive)
821 ;; TODO: report malformed code block
822 ;; TODO: report incompatible combinations of header arguments
823 ;; TODO: report uninitialized variables
824 (let ((too-close 2) ;; <- control closeness to report potential match
825 (names (mapcar #'symbol-name org-babel-header-arg-names)))
826 (dolist (header (mapcar (lambda (arg) (substring (symbol-name (car arg)) 1))
827 (and (org-babel-where-is-src-block-head)
828 (org-babel-parse-header-arguments
829 (org-no-properties
830 (match-string 4))))))
831 (dolist (name names)
832 (when (and (not (string= header name))
833 (<= (org-babel-edit-distance header name) too-close)
834 (not (member header names)))
835 (error "Supplied header \"%S\" is suspiciously close to \"%S\""
836 header name))))
837 (message "No suspicious header arguments found.")))
839 ;;;###autoload
840 (defun org-babel-insert-header-arg (&optional header-arg value)
841 "Insert a header argument selecting from lists of common args and values."
842 (interactive)
843 (let* ((info (org-babel-get-src-block-info 'light))
844 (lang (car info))
845 (begin (nth 6 info))
846 (lang-headers (intern (concat "org-babel-header-args:" lang)))
847 (headers (org-babel-combine-header-arg-lists
848 org-babel-common-header-args-w-values
849 (when (boundp lang-headers) (eval lang-headers))))
850 (header-arg (or header-arg
851 (org-icompleting-read
852 "Header Arg: "
853 (mapcar
854 (lambda (header-spec) (symbol-name (car header-spec)))
855 headers))))
856 (vals (cdr (assoc (intern header-arg) headers)))
857 (value (or value
858 (cond
859 ((eq vals :any)
860 (read-from-minibuffer "value: "))
861 ((listp vals)
862 (mapconcat
863 (lambda (group)
864 (let ((arg (org-icompleting-read
865 "Value: "
866 (cons "default"
867 (mapcar #'symbol-name group)))))
868 (if (and arg (not (string= "default" arg)))
869 (concat arg " ")
870 "")))
871 vals ""))))))
872 (save-excursion
873 (goto-char begin)
874 (goto-char (point-at-eol))
875 (unless (= (char-before (point)) ?\ ) (insert " "))
876 (insert ":" header-arg) (when value (insert " " value)))))
878 ;; Add support for completing-read insertion of header arguments after ":"
879 (defun org-babel-header-arg-expand ()
880 "Call `org-babel-enter-header-arg-w-completion' in appropriate contexts."
881 (when (and (equal (char-before) ?\:) (org-babel-where-is-src-block-head))
882 (org-babel-enter-header-arg-w-completion (match-string 2))))
884 (defun org-babel-enter-header-arg-w-completion (&optional lang)
885 "Insert header argument appropriate for LANG with completion."
886 (let* ((lang-headers-var (intern (concat "org-babel-header-args:" lang)))
887 (lang-headers (when (boundp lang-headers-var) (eval lang-headers-var)))
888 (headers-w-values (org-babel-combine-header-arg-lists
889 org-babel-common-header-args-w-values lang-headers))
890 (headers (mapcar #'symbol-name (mapcar #'car headers-w-values)))
891 (header (org-completing-read "Header Arg: " headers))
892 (args (cdr (assoc (intern header) headers-w-values)))
893 (arg (when (and args (listp args))
894 (org-completing-read
895 (format "%s: " header)
896 (mapcar #'symbol-name (apply #'append args))))))
897 (insert (concat header " " (or arg "")))
898 (cons header arg)))
900 (add-hook 'org-tab-first-hook 'org-babel-header-arg-expand)
902 ;;;###autoload
903 (defun org-babel-load-in-session (&optional arg info)
904 "Load the body of the current source-code block.
905 Evaluate the header arguments for the source block before
906 entering the session. After loading the body this pops open the
907 session."
908 (interactive)
909 (let* ((info (or info (org-babel-get-src-block-info)))
910 (lang (nth 0 info))
911 (params (nth 2 info))
912 (body (if (not info)
913 (user-error "No src code block at point")
914 (setf (nth 1 info)
915 (if (org-babel-noweb-p params :eval)
916 (org-babel-expand-noweb-references info)
917 (nth 1 info)))))
918 (session (cdr (assoc :session params)))
919 (dir (cdr (assoc :dir params)))
920 (default-directory
921 (or (and dir (file-name-as-directory dir)) default-directory))
922 (cmd (intern (concat "org-babel-load-session:" lang))))
923 (unless (fboundp cmd)
924 (error "No org-babel-load-session function for %s!" lang))
925 (pop-to-buffer (funcall cmd session body params))
926 (end-of-line 1)))
928 ;;;###autoload
929 (defun org-babel-initiate-session (&optional arg info)
930 "Initiate session for current code block.
931 If called with a prefix argument then resolve any variable
932 references in the header arguments and assign these variables in
933 the session. Copy the body of the code block to the kill ring."
934 (interactive "P")
935 (let* ((info (or info (org-babel-get-src-block-info (not arg))))
936 (lang (nth 0 info))
937 (body (nth 1 info))
938 (params (nth 2 info))
939 (session (cdr (assoc :session params)))
940 (dir (cdr (assoc :dir params)))
941 (default-directory
942 (or (and dir (file-name-as-directory dir)) default-directory))
943 (init-cmd (intern (format "org-babel-%s-initiate-session" lang)))
944 (prep-cmd (intern (concat "org-babel-prep-session:" lang))))
945 (if (and (stringp session) (string= session "none"))
946 (error "This block is not using a session!"))
947 (unless (fboundp init-cmd)
948 (error "No org-babel-initiate-session function for %s!" lang))
949 (with-temp-buffer (insert (org-babel-trim body))
950 (copy-region-as-kill (point-min) (point-max)))
951 (when arg
952 (unless (fboundp prep-cmd)
953 (error "No org-babel-prep-session function for %s!" lang))
954 (funcall prep-cmd session params))
955 (funcall init-cmd session params)))
957 ;;;###autoload
958 (defun org-babel-switch-to-session (&optional arg info)
959 "Switch to the session of the current code block.
960 Uses `org-babel-initiate-session' to start the session. If called
961 with a prefix argument then this is passed on to
962 `org-babel-initiate-session'."
963 (interactive "P")
964 (pop-to-buffer (org-babel-initiate-session arg info))
965 (end-of-line 1))
967 (defalias 'org-babel-pop-to-session 'org-babel-switch-to-session)
969 (defvar org-src-window-setup)
971 ;;;###autoload
972 (defun org-babel-switch-to-session-with-code (&optional arg info)
973 "Switch to code buffer and display session."
974 (interactive "P")
975 (let ((swap-windows
976 (lambda ()
977 (let ((other-window-buffer (window-buffer (next-window))))
978 (set-window-buffer (next-window) (current-buffer))
979 (set-window-buffer (selected-window) other-window-buffer))
980 (other-window 1)))
981 (info (org-babel-get-src-block-info))
982 (org-src-window-setup 'reorganize-frame))
983 (save-excursion
984 (org-babel-switch-to-session arg info))
985 (org-edit-src-code)
986 (funcall swap-windows)))
988 ;;;###autoload
989 (defmacro org-babel-do-in-edit-buffer (&rest body)
990 "Evaluate BODY in edit buffer if there is a code block at point.
991 Return t if a code block was found at point, nil otherwise."
992 `(let ((org-src-window-setup 'switch-invisibly))
993 (when (and (org-babel-where-is-src-block-head)
994 (org-edit-src-code))
995 (unwind-protect (progn ,@body)
996 (org-edit-src-exit))
997 t)))
998 (def-edebug-spec org-babel-do-in-edit-buffer (body))
1000 (defun org-babel-do-key-sequence-in-edit-buffer (key)
1001 "Read key sequence and execute the command in edit buffer.
1002 Enter a key sequence to be executed in the language major-mode
1003 edit buffer. For example, TAB will alter the contents of the
1004 Org-mode code block according to the effect of TAB in the
1005 language major-mode buffer. For languages that support
1006 interactive sessions, this can be used to send code from the Org
1007 buffer to the session for evaluation using the native major-mode
1008 evaluation mechanisms."
1009 (interactive "kEnter key-sequence to execute in edit buffer: ")
1010 (org-babel-do-in-edit-buffer
1011 (call-interactively
1012 (key-binding (or key (read-key-sequence nil))))))
1014 (defvar org-bracket-link-regexp)
1016 (defun org-babel-active-location-p ()
1017 (memq (org-element-type (save-match-data (org-element-context)))
1018 '(babel-call inline-babel-call inline-src-block src-block)))
1020 ;;;###autoload
1021 (defun org-babel-open-src-block-result (&optional re-run)
1022 "If `point' is on a src block then open the results of the
1023 source code block, otherwise return nil. With optional prefix
1024 argument RE-RUN the source-code block is evaluated even if
1025 results already exist."
1026 (interactive "P")
1027 (let ((info (org-babel-get-src-block-info 'light)))
1028 (when info
1029 (save-excursion
1030 ;; go to the results, if there aren't any then run the block
1031 (goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
1032 (progn (org-babel-execute-src-block)
1033 (org-babel-where-is-src-block-result))))
1034 (end-of-line 1)
1035 (while (looking-at "[\n\r\t\f ]") (forward-char 1))
1036 ;; open the results
1037 (if (looking-at org-bracket-link-regexp)
1038 ;; file results
1039 (org-open-at-point)
1040 (let ((r (org-babel-format-result
1041 (org-babel-read-result) (cdr (assoc :sep (nth 2 info))))))
1042 (pop-to-buffer (get-buffer-create "*Org-Babel Results*"))
1043 (delete-region (point-min) (point-max))
1044 (insert r)))
1045 t))))
1047 ;;;###autoload
1048 (defmacro org-babel-map-src-blocks (file &rest body)
1049 "Evaluate BODY forms on each source-block in FILE.
1050 If FILE is nil evaluate BODY forms on source blocks in current
1051 buffer. During evaluation of BODY the following local variables
1052 are set relative to the currently matched code block.
1054 full-block ------- string holding the entirety of the code block
1055 beg-block -------- point at the beginning of the code block
1056 end-block -------- point at the end of the matched code block
1057 lang ------------- string holding the language of the code block
1058 beg-lang --------- point at the beginning of the lang
1059 end-lang --------- point at the end of the lang
1060 switches --------- string holding the switches
1061 beg-switches ----- point at the beginning of the switches
1062 end-switches ----- point at the end of the switches
1063 header-args ------ string holding the header-args
1064 beg-header-args -- point at the beginning of the header-args
1065 end-header-args -- point at the end of the header-args
1066 body ------------- string holding the body of the code block
1067 beg-body --------- point at the beginning of the body
1068 end-body --------- point at the end of the body"
1069 (declare (indent 1))
1070 (let ((tempvar (make-symbol "file")))
1071 `(let* ((case-fold-search t)
1072 (,tempvar ,file)
1073 (visited-p (or (null ,tempvar)
1074 (get-file-buffer (expand-file-name ,tempvar))))
1075 (point (point)) to-be-removed)
1076 (save-window-excursion
1077 (when ,tempvar (find-file ,tempvar))
1078 (setq to-be-removed (current-buffer))
1079 (goto-char (point-min))
1080 (while (re-search-forward org-babel-src-block-regexp nil t)
1081 (when (org-babel-active-location-p)
1082 (goto-char (match-beginning 0))
1083 (let ((full-block (match-string 0))
1084 (beg-block (match-beginning 0))
1085 (end-block (match-end 0))
1086 (lang (match-string 2))
1087 (beg-lang (match-beginning 2))
1088 (end-lang (match-end 2))
1089 (switches (match-string 3))
1090 (beg-switches (match-beginning 3))
1091 (end-switches (match-end 3))
1092 (header-args (match-string 4))
1093 (beg-header-args (match-beginning 4))
1094 (end-header-args (match-end 4))
1095 (body (match-string 5))
1096 (beg-body (match-beginning 5))
1097 (end-body (match-end 5)))
1098 ,@body
1099 (goto-char end-block)))))
1100 (unless visited-p (kill-buffer to-be-removed))
1101 (goto-char point))))
1102 (def-edebug-spec org-babel-map-src-blocks (form body))
1104 ;;;###autoload
1105 (defmacro org-babel-map-inline-src-blocks (file &rest body)
1106 "Evaluate BODY forms on each inline source-block in FILE.
1107 If FILE is nil evaluate BODY forms on source blocks in current
1108 buffer."
1109 (declare (indent 1))
1110 (let ((tempvar (make-symbol "file")))
1111 `(let* ((case-fold-search t)
1112 (,tempvar ,file)
1113 (visited-p (or (null ,tempvar)
1114 (get-file-buffer (expand-file-name ,tempvar))))
1115 (point (point)) to-be-removed)
1116 (save-window-excursion
1117 (when ,tempvar (find-file ,tempvar))
1118 (setq to-be-removed (current-buffer))
1119 (goto-char (point-min))
1120 (while (re-search-forward org-babel-inline-src-block-regexp nil t)
1121 (when (org-babel-active-location-p)
1122 (goto-char (match-beginning 1))
1123 (save-match-data ,@body))
1124 (goto-char (match-end 0))))
1125 (unless visited-p (kill-buffer to-be-removed))
1126 (goto-char point))))
1127 (def-edebug-spec org-babel-map-inline-src-blocks (form body))
1129 (defvar org-babel-lob-one-liner-regexp)
1131 ;;;###autoload
1132 (defmacro org-babel-map-call-lines (file &rest body)
1133 "Evaluate BODY forms on each call line in FILE.
1134 If FILE is nil evaluate BODY forms on source blocks in current
1135 buffer."
1136 (declare (indent 1))
1137 (let ((tempvar (make-symbol "file")))
1138 `(let* ((,tempvar ,file)
1139 (visited-p (or (null ,tempvar)
1140 (get-file-buffer (expand-file-name ,tempvar))))
1141 (point (point)) to-be-removed)
1142 (save-window-excursion
1143 (when ,tempvar (find-file ,tempvar))
1144 (setq to-be-removed (current-buffer))
1145 (goto-char (point-min))
1146 (while (re-search-forward org-babel-lob-one-liner-regexp nil t)
1147 (when (org-babel-active-location-p)
1148 (goto-char (match-beginning 1))
1149 (save-match-data ,@body))
1150 (goto-char (match-end 0))))
1151 (unless visited-p (kill-buffer to-be-removed))
1152 (goto-char point))))
1153 (def-edebug-spec org-babel-map-call-lines (form body))
1155 ;;;###autoload
1156 (defmacro org-babel-map-executables (file &rest body)
1157 (declare (indent 1))
1158 (let ((tempvar (make-symbol "file"))
1159 (rx (make-symbol "rx")))
1160 `(let* ((,tempvar ,file)
1161 (,rx (concat "\\(" org-babel-src-block-regexp
1162 "\\|" org-babel-inline-src-block-regexp
1163 "\\|" org-babel-lob-one-liner-regexp "\\)"))
1164 (visited-p (or (null ,tempvar)
1165 (get-file-buffer (expand-file-name ,tempvar))))
1166 (point (point)) to-be-removed)
1167 (save-window-excursion
1168 (when ,tempvar (find-file ,tempvar))
1169 (setq to-be-removed (current-buffer))
1170 (goto-char (point-min))
1171 (while (re-search-forward ,rx nil t)
1172 (when (org-babel-active-location-p)
1173 (goto-char (match-beginning 1))
1174 (when (looking-at org-babel-inline-src-block-regexp)
1175 (forward-char 1))
1176 (save-match-data ,@body))
1177 (goto-char (match-end 0))))
1178 (unless visited-p (kill-buffer to-be-removed))
1179 (goto-char point))))
1180 (def-edebug-spec org-babel-map-executables (form body))
1182 ;;;###autoload
1183 (defun org-babel-execute-buffer (&optional arg)
1184 "Execute source code blocks in a buffer.
1185 Call `org-babel-execute-src-block' on every source block in
1186 the current buffer."
1187 (interactive "P")
1188 (org-babel-eval-wipe-error-buffer)
1189 (org-save-outline-visibility t
1190 (org-babel-map-executables nil
1191 (if (looking-at org-babel-lob-one-liner-regexp)
1192 (org-babel-lob-execute-maybe)
1193 (org-babel-execute-src-block arg)))))
1195 ;;;###autoload
1196 (defun org-babel-execute-subtree (&optional arg)
1197 "Execute source code blocks in a subtree.
1198 Call `org-babel-execute-src-block' on every source block in
1199 the current subtree."
1200 (interactive "P")
1201 (save-restriction
1202 (save-excursion
1203 (org-narrow-to-subtree)
1204 (org-babel-execute-buffer arg)
1205 (widen))))
1207 ;;;###autoload
1208 (defun org-babel-sha1-hash (&optional info)
1209 "Generate an sha1 hash based on the value of info."
1210 (interactive)
1211 (let ((print-level nil)
1212 (info (or info (org-babel-get-src-block-info))))
1213 (setf (nth 2 info)
1214 (sort (copy-sequence (nth 2 info))
1215 (lambda (a b) (string< (car a) (car b)))))
1216 (let* ((rm (lambda (lst)
1217 (dolist (p '("replace" "silent" "none"
1218 "append" "prepend"))
1219 (setq lst (remove p lst)))
1220 lst))
1221 (norm (lambda (arg)
1222 (let ((v (if (and (listp (cdr arg)) (null (cddr arg)))
1223 (copy-sequence (cdr arg))
1224 (cdr arg))))
1225 (when (and v (not (and (sequencep v)
1226 (not (consp v))
1227 (= (length v) 0))))
1228 (cond
1229 ((and (listp v) ; lists are sorted
1230 (member (car arg) '(:result-params)))
1231 (sort (funcall rm v) #'string<))
1232 ((and (stringp v) ; strings are sorted
1233 (member (car arg) '(:results :exports)))
1234 (mapconcat #'identity (sort (funcall rm (split-string v))
1235 #'string<) " "))
1236 (t v))))))
1237 ;; expanded body
1238 (lang (nth 0 info))
1239 (params (nth 2 info))
1240 (body (if (org-babel-noweb-p params :eval)
1241 (org-babel-expand-noweb-references info) (nth 1 info)))
1242 (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
1243 (assignments-cmd (intern (concat "org-babel-variable-assignments:"
1244 lang)))
1245 (expanded
1246 (if (fboundp expand-cmd) (funcall expand-cmd body params)
1247 (org-babel-expand-body:generic
1248 body params (and (fboundp assignments-cmd)
1249 (funcall assignments-cmd params))))))
1250 (let* ((it (format "%s-%s"
1251 (mapconcat
1252 #'identity
1253 (delq nil (mapcar (lambda (arg)
1254 (let ((normalized (funcall norm arg)))
1255 (when normalized
1256 (format "%S" normalized))))
1257 (nth 2 info))) ":")
1258 expanded))
1259 (hash (sha1 it)))
1260 (when (org-called-interactively-p 'interactive) (message hash))
1261 hash))))
1263 (defun org-babel-current-result-hash (&optional info)
1264 "Return the current in-buffer hash."
1265 (org-babel-where-is-src-block-result nil info)
1266 (org-no-properties (match-string 5)))
1268 (defun org-babel-set-current-result-hash (hash info)
1269 "Set the current in-buffer hash to HASH."
1270 (org-babel-where-is-src-block-result nil info)
1271 (save-excursion (goto-char (match-beginning 5))
1272 (mapc #'delete-overlay (overlays-at (point)))
1273 (forward-char org-babel-hash-show)
1274 (mapc #'delete-overlay (overlays-at (point)))
1275 (replace-match hash nil nil nil 5)
1276 (goto-char (point-at-bol))
1277 (org-babel-hide-hash)))
1279 (defun org-babel-hide-hash ()
1280 "Hide the hash in the current results line.
1281 Only the initial `org-babel-hash-show' characters of the hash
1282 will remain visible."
1283 (add-to-invisibility-spec '(org-babel-hide-hash . t))
1284 (save-excursion
1285 (when (and (re-search-forward org-babel-result-regexp nil t)
1286 (match-string 5))
1287 (let* ((start (match-beginning 5))
1288 (hide-start (+ org-babel-hash-show start))
1289 (end (match-end 5))
1290 (hash (match-string 5))
1291 ov1 ov2)
1292 (setq ov1 (make-overlay start hide-start))
1293 (setq ov2 (make-overlay hide-start end))
1294 (overlay-put ov2 'invisible 'org-babel-hide-hash)
1295 (overlay-put ov1 'babel-hash hash)))))
1297 (defun org-babel-hide-all-hashes ()
1298 "Hide the hash in the current buffer.
1299 Only the initial `org-babel-hash-show' characters of each hash
1300 will remain visible. This function should be called as part of
1301 the `org-mode-hook'."
1302 (save-excursion
1303 (while (and (not org-babel-hash-show-time)
1304 (re-search-forward org-babel-result-regexp nil t))
1305 (goto-char (match-beginning 0))
1306 (org-babel-hide-hash)
1307 (goto-char (match-end 0)))))
1308 (add-hook 'org-mode-hook 'org-babel-hide-all-hashes)
1310 (defun org-babel-hash-at-point (&optional point)
1311 "Return the value of the hash at POINT.
1312 The hash is also added as the last element of the kill ring.
1313 This can be called with C-c C-c."
1314 (interactive)
1315 (let ((hash (car (delq nil (mapcar
1316 (lambda (ol) (overlay-get ol 'babel-hash))
1317 (overlays-at (or point (point))))))))
1318 (when hash (kill-new hash) (message hash))))
1319 (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-hash-at-point)
1321 (defun org-babel-result-hide-spec ()
1322 "Hide portions of results lines.
1323 Add `org-babel-hide-result' as an invisibility spec for hiding
1324 portions of results lines."
1325 (add-to-invisibility-spec '(org-babel-hide-result . t)))
1326 (add-hook 'org-mode-hook 'org-babel-result-hide-spec)
1328 (defvar org-babel-hide-result-overlays nil
1329 "Overlays hiding results.")
1331 (defun org-babel-result-hide-all ()
1332 "Fold all results in the current buffer."
1333 (interactive)
1334 (org-babel-show-result-all)
1335 (save-excursion
1336 (while (re-search-forward org-babel-result-regexp nil t)
1337 (save-excursion (goto-char (match-beginning 0))
1338 (org-babel-hide-result-toggle-maybe)))))
1340 (defun org-babel-show-result-all ()
1341 "Unfold all results in the current buffer."
1342 (mapc 'delete-overlay org-babel-hide-result-overlays)
1343 (setq org-babel-hide-result-overlays nil))
1345 ;;;###autoload
1346 (defun org-babel-hide-result-toggle-maybe ()
1347 "Toggle visibility of result at point."
1348 (interactive)
1349 (let ((case-fold-search t))
1350 (if (save-excursion
1351 (beginning-of-line 1)
1352 (looking-at org-babel-result-regexp))
1353 (progn (org-babel-hide-result-toggle)
1354 t) ;; to signal that we took action
1355 nil))) ;; to signal that we did not
1357 (defun org-babel-hide-result-toggle (&optional force)
1358 "Toggle the visibility of the current result."
1359 (interactive)
1360 (save-excursion
1361 (beginning-of-line)
1362 (if (re-search-forward org-babel-result-regexp nil t)
1363 (let ((start (progn (beginning-of-line 2) (- (point) 1)))
1364 (end (progn
1365 (while (looking-at org-babel-multi-line-header-regexp)
1366 (forward-line 1))
1367 (goto-char (- (org-babel-result-end) 1)) (point)))
1369 (if (memq t (mapcar (lambda (overlay)
1370 (eq (overlay-get overlay 'invisible)
1371 'org-babel-hide-result))
1372 (overlays-at start)))
1373 (if (or (not force) (eq force 'off))
1374 (mapc (lambda (ov)
1375 (when (member ov org-babel-hide-result-overlays)
1376 (setq org-babel-hide-result-overlays
1377 (delq ov org-babel-hide-result-overlays)))
1378 (when (eq (overlay-get ov 'invisible)
1379 'org-babel-hide-result)
1380 (delete-overlay ov)))
1381 (overlays-at start)))
1382 (setq ov (make-overlay start end))
1383 (overlay-put ov 'invisible 'org-babel-hide-result)
1384 ;; make the block accessible to isearch
1385 (overlay-put
1386 ov 'isearch-open-invisible
1387 (lambda (ov)
1388 (when (member ov org-babel-hide-result-overlays)
1389 (setq org-babel-hide-result-overlays
1390 (delq ov org-babel-hide-result-overlays)))
1391 (when (eq (overlay-get ov 'invisible)
1392 'org-babel-hide-result)
1393 (delete-overlay ov))))
1394 (push ov org-babel-hide-result-overlays)))
1395 (error "Not looking at a result line"))))
1397 ;; org-tab-after-check-for-cycling-hook
1398 (add-hook 'org-tab-first-hook 'org-babel-hide-result-toggle-maybe)
1399 ;; Remove overlays when changing major mode
1400 (add-hook 'org-mode-hook
1401 (lambda () (org-add-hook 'change-major-mode-hook
1402 'org-babel-show-result-all 'append 'local)))
1404 (defvar org-file-properties)
1405 (defun org-babel-params-from-properties (&optional lang)
1406 "Retrieve parameters specified as properties.
1407 Return a list of association lists of source block params
1408 specified in the properties of the current outline entry."
1409 (save-match-data
1410 (list
1411 ;; DEPRECATED header arguments specified as separate property at
1412 ;; point of definition
1413 (let (val sym)
1414 (org-babel-parse-multiple-vars
1415 (delq nil
1416 (mapcar
1417 (lambda (header-arg)
1418 (and (setq val (org-entry-get (point) header-arg t))
1419 (cons (intern (concat ":" header-arg))
1420 (org-babel-read val))))
1421 (mapcar
1422 #'symbol-name
1423 (mapcar
1424 #'car
1425 (org-babel-combine-header-arg-lists
1426 org-babel-common-header-args-w-values
1427 (progn
1428 (setq sym (intern (concat "org-babel-header-args:" lang)))
1429 (and (boundp sym) (eval sym))))))))))
1430 ;; header arguments specified with the header-args property at
1431 ;; point of call
1432 (org-babel-parse-header-arguments
1433 (org-entry-get org-babel-current-src-block-location
1434 "header-args" 'inherit))
1435 (when lang ;; language-specific header arguments at point of call
1436 (org-babel-parse-header-arguments
1437 (org-entry-get org-babel-current-src-block-location
1438 (concat "header-args:" lang) 'inherit))))))
1440 (defvar org-src-preserve-indentation) ;; declare defcustom from org-src
1441 (defun org-babel-parse-src-block-match ()
1442 "Parse the results from a match of the `org-babel-src-block-regexp'."
1443 (let* ((block-indentation (length (match-string 1)))
1444 (lang (org-no-properties (match-string 2)))
1445 (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
1446 (switches (match-string 3))
1447 (body (org-no-properties
1448 (let* ((body (match-string 5))
1449 (sub-length (- (length body) 1)))
1450 (if (and (> sub-length 0)
1451 (string= "\n" (substring body sub-length)))
1452 (substring body 0 sub-length)
1453 (or body "")))))
1454 (preserve-indentation (or org-src-preserve-indentation
1455 (save-match-data
1456 (string-match "-i\\>" switches)))))
1457 (list lang
1458 ;; get block body less properties, protective commas, and indentation
1459 (with-temp-buffer
1460 (save-match-data
1461 (insert (org-unescape-code-in-string body))
1462 (unless preserve-indentation (org-do-remove-indentation))
1463 (buffer-string)))
1464 (apply #'org-babel-merge-params
1465 org-babel-default-header-args
1466 (when (boundp lang-headers) (eval lang-headers))
1467 (append
1468 (org-babel-params-from-properties lang)
1469 (list (org-babel-parse-header-arguments
1470 (org-no-properties (or (match-string 4) ""))))))
1471 switches
1472 block-indentation)))
1474 (defun org-babel-parse-inline-src-block-match ()
1475 "Parse the results from a match of the `org-babel-inline-src-block-regexp'."
1476 (let* ((lang (org-no-properties (match-string 2)))
1477 (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
1478 (list lang
1479 (org-unescape-code-in-string (org-no-properties (match-string 5)))
1480 (apply #'org-babel-merge-params
1481 org-babel-default-inline-header-args
1482 (if (boundp lang-headers) (eval lang-headers) nil)
1483 (append
1484 (org-babel-params-from-properties lang)
1485 (list (org-babel-parse-header-arguments
1486 (org-no-properties (or (match-string 4) ""))))))
1487 nil)))
1489 (defun org-babel-balanced-split (string alts)
1490 "Split STRING on instances of ALTS.
1491 ALTS is a cons of two character options where each option may be
1492 either the numeric code of a single character or a list of
1493 character alternatives. For example to split on balanced
1494 instances of \"[ \t]:\" set ALTS to '((32 9) . 58)."
1495 (let* ((matches (lambda (ch spec) (if (listp spec) (member ch spec) (equal spec ch))))
1496 (matched (lambda (ch last)
1497 (if (consp alts)
1498 (and (funcall matches ch (cdr alts))
1499 (funcall matches last (car alts)))
1500 (funcall matches ch alts))))
1501 (balance 0) (last 0)
1502 quote partial lst)
1503 (mapc (lambda (ch) ; split on [], (), "" balanced instances of [ \t]:
1504 (setq balance (+ balance
1505 (cond ((or (equal 91 ch) (equal 40 ch)) 1)
1506 ((or (equal 93 ch) (equal 41 ch)) -1)
1507 (t 0))))
1508 (when (and (equal 34 ch) (not (equal 92 last)))
1509 (setq quote (not quote)))
1510 (setq partial (cons ch partial))
1511 (when (and (= balance 0) (not quote) (funcall matched ch last))
1512 (setq lst (cons (apply #'string (nreverse
1513 (if (consp alts)
1514 (cddr partial)
1515 (cdr partial))))
1516 lst))
1517 (setq partial nil))
1518 (setq last ch))
1519 (string-to-list string))
1520 (nreverse (cons (apply #'string (nreverse partial)) lst))))
1522 (defun org-babel-join-splits-near-ch (ch list)
1523 "Join splits where \"=\" is on either end of the split."
1524 (let ((last= (lambda (str) (= ch (aref str (1- (length str))))))
1525 (first= (lambda (str) (= ch (aref str 0)))))
1526 (reverse
1527 (org-reduce (lambda (acc el)
1528 (let ((head (car acc)))
1529 (if (and head (or (funcall last= head) (funcall first= el)))
1530 (cons (concat head el) (cdr acc))
1531 (cons el acc))))
1532 list :initial-value nil))))
1534 (defun org-babel-parse-header-arguments (arg-string)
1535 "Parse a string of header arguments returning an alist."
1536 (when (> (length arg-string) 0)
1537 (org-babel-parse-multiple-vars
1538 (delq nil
1539 (mapcar
1540 (lambda (arg)
1541 (if (string-match
1542 "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)"
1543 arg)
1544 (cons (intern (match-string 1 arg))
1545 (org-babel-read (org-babel-chomp (match-string 2 arg))))
1546 (cons (intern (org-babel-chomp arg)) nil)))
1547 (let ((raw (org-babel-balanced-split arg-string '((32 9) . 58))))
1548 (cons (car raw) (mapcar (lambda (r) (concat ":" r)) (cdr raw)))))))))
1550 (defun org-babel-parse-multiple-vars (header-arguments)
1551 "Expand multiple variable assignments behind a single :var keyword.
1553 This allows expression of multiple variables with one :var as
1554 shown below.
1556 #+PROPERTY: var foo=1, bar=2"
1557 (let (results)
1558 (mapc (lambda (pair)
1559 (if (eq (car pair) :var)
1560 (mapcar (lambda (v) (push (cons :var (org-babel-trim v)) results))
1561 (org-babel-join-splits-near-ch
1562 61 (org-babel-balanced-split (cdr pair) 32)))
1563 (push pair results)))
1564 header-arguments)
1565 (nreverse results)))
1567 (defun org-babel-process-params (params)
1568 "Expand variables in PARAMS and add summary parameters."
1569 (let* ((processed-vars (mapcar (lambda (el)
1570 (if (consp (cdr el))
1571 (cdr el)
1572 (org-babel-ref-parse (cdr el))))
1573 (org-babel-get-header params :var)))
1574 (vars-and-names (if (and (assoc :colname-names params)
1575 (assoc :rowname-names params))
1576 (list processed-vars)
1577 (org-babel-disassemble-tables
1578 processed-vars
1579 (cdr (assoc :hlines params))
1580 (cdr (assoc :colnames params))
1581 (cdr (assoc :rownames params)))))
1582 (raw-result (or (cdr (assoc :results params)) ""))
1583 (result-params (append
1584 (split-string (if (stringp raw-result)
1585 raw-result
1586 (eval raw-result)))
1587 (cdr (assoc :result-params params)))))
1588 (append
1589 (mapcar (lambda (var) (cons :var var)) (car vars-and-names))
1590 (list
1591 (cons :colname-names (or (cdr (assoc :colname-names params))
1592 (cadr vars-and-names)))
1593 (cons :rowname-names (or (cdr (assoc :rowname-names params))
1594 (caddr vars-and-names)))
1595 (cons :result-params result-params)
1596 (cons :result-type (cond ((member "output" result-params) 'output)
1597 ((member "value" result-params) 'value)
1598 (t 'value))))
1599 (org-babel-get-header params :var 'other))))
1601 ;; row and column names
1602 (defun org-babel-del-hlines (table)
1603 "Remove all 'hlines from TABLE."
1604 (remq 'hline table))
1606 (defun org-babel-get-colnames (table)
1607 "Return the column names of TABLE.
1608 Return a cons cell, the `car' of which contains the TABLE less
1609 colnames, and the `cdr' of which contains a list of the column
1610 names."
1611 (if (equal 'hline (nth 1 table))
1612 (cons (cddr table) (car table))
1613 (cons (cdr table) (car table))))
1615 (defun org-babel-get-rownames (table)
1616 "Return the row names of TABLE.
1617 Return a cons cell, the `car' of which contains the TABLE less
1618 rownames, and the `cdr' of which contains a list of the rownames.
1619 Note: this function removes any hlines in TABLE."
1620 (let* ((table (org-babel-del-hlines table))
1621 (rownames (funcall (lambda ()
1622 (let ((tp table))
1623 (mapcar
1624 (lambda (row)
1625 (prog1
1626 (pop (car tp))
1627 (setq tp (cdr tp))))
1628 table))))))
1629 (cons table rownames)))
1631 (defun org-babel-put-colnames (table colnames)
1632 "Add COLNAMES to TABLE if they exist."
1633 (if colnames (apply 'list colnames 'hline table) table))
1635 (defun org-babel-put-rownames (table rownames)
1636 "Add ROWNAMES to TABLE if they exist."
1637 (if rownames
1638 (mapcar (lambda (row)
1639 (if (listp row)
1640 (cons (or (pop rownames) "") row)
1641 row)) table)
1642 table))
1644 (defun org-babel-pick-name (names selector)
1645 "Select one out of an alist of row or column names.
1646 SELECTOR can be either a list of names in which case those names
1647 will be returned directly, or an index into the list NAMES in
1648 which case the indexed names will be return."
1649 (if (listp selector)
1650 selector
1651 (when names
1652 (if (and selector (symbolp selector) (not (equal t selector)))
1653 (cdr (assoc selector names))
1654 (if (integerp selector)
1655 (nth (- selector 1) names)
1656 (cdr (car (last names))))))))
1658 (defun org-babel-disassemble-tables (vars hlines colnames rownames)
1659 "Parse tables for further processing.
1660 Process the variables in VARS according to the HLINES,
1661 ROWNAMES and COLNAMES header arguments. Return a list consisting
1662 of the vars, cnames and rnames."
1663 (let (cnames rnames)
1664 (list
1665 (mapcar
1666 (lambda (var)
1667 (when (listp (cdr var))
1668 (when (and (not (equal colnames "no"))
1669 (or colnames (and (equal (nth 1 (cdr var)) 'hline)
1670 (not (member 'hline (cddr (cdr var)))))))
1671 (let ((both (org-babel-get-colnames (cdr var))))
1672 (setq cnames (cons (cons (car var) (cdr both))
1673 cnames))
1674 (setq var (cons (car var) (car both)))))
1675 (when (and rownames (not (equal rownames "no")))
1676 (let ((both (org-babel-get-rownames (cdr var))))
1677 (setq rnames (cons (cons (car var) (cdr both))
1678 rnames))
1679 (setq var (cons (car var) (car both)))))
1680 (when (and hlines (not (equal hlines "yes")))
1681 (setq var (cons (car var) (org-babel-del-hlines (cdr var))))))
1682 var)
1683 vars)
1684 (reverse cnames) (reverse rnames))))
1686 (defun org-babel-reassemble-table (table colnames rownames)
1687 "Add column and row names to a table.
1688 Given a TABLE and set of COLNAMES and ROWNAMES add the names
1689 to the table for reinsertion to org-mode."
1690 (if (listp table)
1691 (let ((table (if (and rownames (= (length table) (length rownames)))
1692 (org-babel-put-rownames table rownames) table)))
1693 (if (and colnames (listp (car table)) (= (length (car table))
1694 (length colnames)))
1695 (org-babel-put-colnames table colnames) table))
1696 table))
1698 (defun org-babel-where-is-src-block-head ()
1699 "Find where the current source block begins.
1700 Return the point at the beginning of the current source block.
1701 Specifically at the beginning of the #+BEGIN_SRC line. Also set
1702 match-data relatively to `org-babel-src-block-regexp', which see.
1703 If the point is not on a source block then return nil."
1704 (let ((element (org-element-at-point)))
1705 (when (eq (org-element-type element) 'src-block)
1706 (let ((end (org-element-property :end element)))
1707 (org-with-wide-buffer
1708 ;; Ensure point is not on a blank line after the block.
1709 (beginning-of-line)
1710 (skip-chars-forward " \r\t\n" end)
1711 (when (< (point) end)
1712 (prog1 (goto-char (org-element-property :post-affiliated element))
1713 (looking-at org-babel-src-block-regexp))))))))
1715 ;;;###autoload
1716 (defun org-babel-goto-src-block-head ()
1717 "Go to the beginning of the current code block."
1718 (interactive)
1719 (let ((head (org-babel-where-is-src-block-head)))
1720 (if head (goto-char head) (error "Not currently in a code block"))))
1722 ;;;###autoload
1723 (defun org-babel-goto-named-src-block (name)
1724 "Go to a named source-code block."
1725 (interactive
1726 (let ((completion-ignore-case t)
1727 (case-fold-search t)
1728 (under-point (thing-at-point 'line)))
1729 (list (org-icompleting-read
1730 "source-block name: " (org-babel-src-block-names) nil t
1731 (cond
1732 ;; noweb
1733 ((string-match (org-babel-noweb-wrap) under-point)
1734 (let ((block-name (match-string 1 under-point)))
1735 (string-match "[^(]*" block-name)
1736 (match-string 0 block-name)))
1737 ;; #+call:
1738 ((string-match org-babel-lob-one-liner-regexp under-point)
1739 (let ((source-info (car (org-babel-lob-get-info))))
1740 (if (string-match "^\\([^\\[]+?\\)\\(\\[.*\\]\\)?(" source-info)
1741 (let ((source-name (match-string 1 source-info)))
1742 source-name))))
1743 ;; #+results:
1744 ((string-match (concat "#\\+" org-babel-results-keyword
1745 "\\:\s+\\([^\\(]*\\)") under-point)
1746 (match-string 1 under-point))
1747 ;; symbol-at-point
1748 ((and (thing-at-point 'symbol))
1749 (org-babel-find-named-block (thing-at-point 'symbol))
1750 (thing-at-point 'symbol))
1751 (""))))))
1752 (let ((point (org-babel-find-named-block name)))
1753 (if point
1754 ;; taken from `org-open-at-point'
1755 (progn (org-mark-ring-push) (goto-char point) (org-show-context))
1756 (message "source-code block '%s' not found in this buffer" name))))
1758 (defun org-babel-find-named-block (name)
1759 "Find a named source-code block.
1760 Return the location of the source block identified by source
1761 NAME, or nil if no such block exists. Set match data according
1762 to `org-babel-named-src-block-regexp'."
1763 (save-excursion
1764 (goto-char (point-min))
1765 (ignore-errors
1766 (org-next-block 1 nil (org-babel-named-src-block-regexp-for-name name)))))
1768 (defun org-babel-src-block-names (&optional file)
1769 "Returns the names of source blocks in FILE or the current buffer."
1770 (when file (find-file file))
1771 (save-excursion
1772 (goto-char (point-min))
1773 (let ((re (org-babel-named-src-block-regexp-for-name))
1774 names)
1775 (while (ignore-errors (org-next-block 1 nil re))
1776 (push (org-match-string-no-properties 9) names))
1777 names)))
1779 ;;;###autoload
1780 (defun org-babel-goto-named-result (name)
1781 "Go to a named result."
1782 (interactive
1783 (let ((completion-ignore-case t))
1784 (list (org-icompleting-read "source-block name: "
1785 (org-babel-result-names) nil t))))
1786 (let ((point (org-babel-find-named-result name)))
1787 (if point
1788 ;; taken from `org-open-at-point'
1789 (progn (goto-char point) (org-show-context))
1790 (message "result '%s' not found in this buffer" name))))
1792 (defun org-babel-find-named-result (name &optional point)
1793 "Find a named result.
1794 Return the location of the result named NAME in the current
1795 buffer or nil if no such result exists."
1796 (save-excursion
1797 (let ((case-fold-search t))
1798 (goto-char (or point (point-min)))
1799 (catch 'is-a-code-block
1800 (when (re-search-forward
1801 (concat org-babel-result-regexp
1802 "[ \t]" (regexp-quote name) "[ \t]*[\n\f\v\r]") nil t)
1803 (when (and (string= "name" (downcase (match-string 1)))
1804 (or (beginning-of-line 1)
1805 (looking-at org-babel-src-block-regexp)
1806 (looking-at org-babel-multi-line-header-regexp)
1807 (looking-at org-babel-lob-one-liner-regexp)))
1808 (throw 'is-a-code-block (org-babel-find-named-result name (point))))
1809 (beginning-of-line 0) (point))))))
1811 (defun org-babel-result-names (&optional file)
1812 "Returns the names of results in FILE or the current buffer."
1813 (save-excursion
1814 (when file (find-file file)) (goto-char (point-min))
1815 (let ((case-fold-search t) names)
1816 (while (re-search-forward org-babel-result-w-name-regexp nil t)
1817 (setq names (cons (match-string 4) names)))
1818 names)))
1820 ;;;###autoload
1821 (defun org-babel-next-src-block (&optional arg)
1822 "Jump to the next source block.
1823 With optional prefix argument ARG, jump forward ARG many source blocks."
1824 (interactive "p")
1825 (org-next-block arg nil org-babel-src-block-regexp))
1827 ;;;###autoload
1828 (defun org-babel-previous-src-block (&optional arg)
1829 "Jump to the previous source block.
1830 With optional prefix argument ARG, jump backward ARG many source blocks."
1831 (interactive "p")
1832 (org-previous-block arg org-babel-src-block-regexp))
1834 (defvar org-babel-load-languages)
1836 ;;;###autoload
1837 (defun org-babel-mark-block ()
1838 "Mark current src block."
1839 (interactive)
1840 (let ((head (org-babel-where-is-src-block-head)))
1841 (when head
1842 (save-excursion
1843 (goto-char head)
1844 (looking-at org-babel-src-block-regexp))
1845 (push-mark (match-end 5) nil t)
1846 (goto-char (match-beginning 5)))))
1848 (defun org-babel-demarcate-block (&optional arg)
1849 "Wrap or split the code in the region or on the point.
1850 When called from inside of a code block the current block is
1851 split. When called from outside of a code block a new code block
1852 is created. In both cases if the region is demarcated and if the
1853 region is not active then the point is demarcated."
1854 (interactive "P")
1855 (let* ((info (org-babel-get-src-block-info 'light))
1856 (start (org-babel-where-is-src-block-head))
1857 (block (and start (match-string 0)))
1858 (headers (and start (match-string 4)))
1859 (stars (concat (make-string (or (org-current-level) 1) ?*) " "))
1860 (lower-case-p (and block
1861 (let (case-fold-search)
1862 (org-string-match-p "#\\+begin_src" block)))))
1863 (if info
1864 (mapc
1865 (lambda (place)
1866 (save-excursion
1867 (goto-char place)
1868 (let ((lang (nth 0 info))
1869 (indent (make-string (nth 5 info) ? )))
1870 (when (string-match "^[[:space:]]*$"
1871 (buffer-substring (point-at-bol)
1872 (point-at-eol)))
1873 (delete-region (point-at-bol) (point-at-eol)))
1874 (insert (concat
1875 (if (looking-at "^") "" "\n")
1876 indent (funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")
1877 (if arg stars indent) "\n"
1878 indent (funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
1879 lang
1880 (if (> (length headers) 1)
1881 (concat " " headers) headers)
1882 (if (looking-at "[\n\r]")
1884 (concat "\n" (make-string (current-column) ? )))))))
1885 (move-end-of-line 2))
1886 (sort (if (org-region-active-p) (list (mark) (point)) (list (point))) #'>))
1887 (let ((start (point))
1888 (lang (org-icompleting-read
1889 "Lang: "
1890 (mapcar #'symbol-name
1891 (delete-dups
1892 (append (mapcar #'car org-babel-load-languages)
1893 (mapcar (lambda (el) (intern (car el)))
1894 org-src-lang-modes))))))
1895 (body (delete-and-extract-region
1896 (if (org-region-active-p) (mark) (point)) (point))))
1897 (insert (concat (if (looking-at "^") "" "\n")
1898 (if arg (concat stars "\n") "")
1899 (funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
1900 lang "\n"
1901 body
1902 (if (or (= (length body) 0)
1903 (string-match "[\r\n]$" body)) "" "\n")
1904 (funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")))
1905 (goto-char start) (move-end-of-line 1)))))
1907 (defvar org-babel-lob-one-liner-regexp)
1908 (defun org-babel-where-is-src-block-result (&optional insert info hash indent)
1909 "Find where the current source block results begin.
1910 Return the point at the beginning of the result of the current
1911 source block. Specifically at the beginning of the results line.
1912 If no result exists for this block then create a results line
1913 following the source block."
1914 (save-excursion
1915 (let* ((case-fold-search t)
1916 (on-lob-line (save-excursion
1917 (beginning-of-line 1)
1918 (looking-at org-babel-lob-one-liner-regexp)))
1919 (inlinep (when (org-babel-get-inline-src-block-matches)
1920 (match-end 0)))
1921 (name (nth 4 (or info (org-babel-get-src-block-info 'light))))
1922 (head (unless on-lob-line (org-babel-where-is-src-block-head)))
1923 found beg end)
1924 (when head (goto-char head))
1925 (org-with-wide-buffer
1926 (setq
1927 found ;; was there a result (before we potentially insert one)
1929 inlinep
1930 (and
1931 ;; named results:
1932 ;; - return t if it is found, else return nil
1933 ;; - if it does not need to be rebuilt, then don't set end
1934 ;; - if it does need to be rebuilt then do set end
1935 name (setq beg (org-babel-find-named-result name))
1936 (prog1 beg
1937 (when (and hash (not (string= hash (match-string 5))))
1938 (goto-char beg) (setq end beg) ;; beginning of result
1939 (forward-line 1)
1940 (delete-region end (org-babel-result-end)) nil)))
1941 (and
1942 ;; unnamed results:
1943 ;; - return t if it is found, else return nil
1944 ;; - if it is found, and the hash doesn't match, delete and set end
1945 (or on-lob-line (re-search-forward "^[ \t]*#\\+end_src" nil t))
1946 (progn (end-of-line 1)
1947 (if (eobp) (insert "\n") (forward-char 1))
1948 (setq end (point))
1949 (and
1950 (not name)
1951 (progn ;; unnamed results line already exists
1952 (catch 'non-comment
1953 (while (re-search-forward "[^ \f\t\n\r\v]" nil t)
1954 (beginning-of-line 1)
1955 (cond
1956 ((looking-at (concat org-babel-result-regexp "\n"))
1957 (throw 'non-comment t))
1958 ((and (looking-at "^[ \t]*#")
1959 (not (looking-at
1960 org-babel-lob-one-liner-regexp)))
1961 (end-of-line 1))
1962 (t (throw 'non-comment nil))))))
1963 (let ((this-hash (match-string 5)))
1964 (prog1 (point)
1965 ;; must remove and rebuild if hash!=old-hash
1966 (if (and hash (not (string= hash this-hash)))
1967 (progn
1968 (setq end (point-at-bol))
1969 (forward-line 1)
1970 (delete-region end (org-babel-result-end))
1971 (setq beg end))
1972 (setq end nil))))))))))
1973 (if (not (and insert end)) found
1974 (goto-char end)
1975 (unless beg
1976 (if (looking-at "[\n\r]") (forward-char 1) (insert "\n")))
1977 (insert (concat
1978 (when (wholenump indent) (make-string indent ? ))
1979 "#+" org-babel-results-keyword
1980 (when hash
1981 (if org-babel-hash-show-time
1982 (concat
1983 "["(format-time-string "<%Y-%m-%d %H:%M:%S>")" "hash"]")
1984 (concat "["hash"]")))
1986 (when name (concat " " name)) "\n"))
1987 (unless beg (insert "\n") (backward-char))
1988 (beginning-of-line 0)
1989 (if hash (org-babel-hide-hash))
1990 (point)))))
1992 (defvar org-block-regexp)
1993 (defun org-babel-read-result ()
1994 "Read the result at `point' into emacs-lisp."
1995 (let ((case-fold-search t) result-string)
1996 (cond
1997 ((org-at-table-p) (org-babel-read-table))
1998 ((org-at-item-p) (org-babel-read-list))
1999 ((looking-at org-bracket-link-regexp) (org-babel-read-link))
2000 ((looking-at org-block-regexp) (org-remove-indentation (match-string 4)))
2001 ((or (looking-at "^[ \t]*: ") (looking-at "^[ \t]*:$"))
2002 (setq result-string
2003 (org-babel-trim
2004 (mapconcat (lambda (line)
2005 (or (and (> (length line) 1)
2006 (string-match "^[ \t]*: ?\\(.+\\)" line)
2007 (match-string 1 line))
2008 ""))
2009 (split-string
2010 (buffer-substring
2011 (point) (org-babel-result-end)) "[\r\n]+")
2012 "\n")))
2013 (or (org-babel-number-p result-string) result-string))
2014 ((looking-at org-babel-result-regexp)
2015 (save-excursion (forward-line 1) (org-babel-read-result))))))
2017 (defun org-babel-read-table ()
2018 "Read the table at `point' into emacs-lisp."
2019 (mapcar (lambda (row)
2020 (if (and (symbolp row) (equal row 'hline)) row
2021 (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval)) row)))
2022 (org-table-to-lisp)))
2024 (defun org-babel-read-list ()
2025 "Read the list at `point' into emacs-lisp."
2026 (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval))
2027 (mapcar #'cadr (cdr (org-list-parse-list)))))
2029 (defvar org-link-types-re)
2030 (defun org-babel-read-link ()
2031 "Read the link at `point' into emacs-lisp.
2032 If the path of the link is a file path it is expanded using
2033 `expand-file-name'."
2034 (let* ((case-fold-search t)
2035 (raw (and (looking-at org-bracket-link-regexp)
2036 (org-no-properties (match-string 1))))
2037 (type (and (string-match org-link-types-re raw)
2038 (match-string 1 raw))))
2039 (cond
2040 ((not type) (expand-file-name raw))
2041 ((string= type "file")
2042 (and (string-match "file\\(.*\\):\\(.+\\)" raw)
2043 (expand-file-name (match-string 2 raw))))
2044 (t raw))))
2046 (defun org-babel-format-result (result &optional sep)
2047 "Format RESULT for writing to file."
2048 (let ((echo-res (lambda (r) (if (stringp r) r (format "%S" r)))))
2049 (if (listp result)
2050 ;; table result
2051 (orgtbl-to-generic
2052 result (list :sep (or sep "\t") :fmt echo-res))
2053 ;; scalar result
2054 (funcall echo-res result))))
2056 (defun org-babel-insert-result
2057 (result &optional result-params info hash indent lang)
2058 "Insert RESULT into the current buffer.
2060 By default RESULT is inserted after the end of the current source
2061 block. The RESULT of an inline source block usually will be
2062 wrapped inside a `results' macro and placed on the same line as
2063 the inline source block. The macro is stripped upon export.
2064 Multiline and non-scalar RESULTS from inline source blocks are
2065 not allowed. With optional argument RESULT-PARAMS controls
2066 insertion of results in the Org mode file. RESULT-PARAMS can
2067 take the following values:
2069 replace - (default option) insert results after the source block
2070 or inline source block replacing any previously
2071 inserted results.
2073 silent -- no results are inserted into the Org-mode buffer but
2074 the results are echoed to the minibuffer and are
2075 ingested by Emacs (a potentially time consuming
2076 process).
2078 file ---- the results are interpreted as a file path, and are
2079 inserted into the buffer using the Org-mode file syntax.
2081 list ---- the results are interpreted as an Org-mode list.
2083 raw ----- results are added directly to the Org-mode file. This
2084 is a good option if you code block will output org-mode
2085 formatted text.
2087 drawer -- results are added directly to the Org-mode file as with
2088 \"raw\", but are wrapped in a RESULTS drawer or results
2089 macro, allowing them to later be replaced or removed
2090 automatically.
2092 org ----- results are added inside of a \"src_org{}\" or \"#+BEGIN_SRC
2093 org\" block depending on whether the current source block is
2094 inline or not. They are not comma-escaped when inserted,
2095 but Org syntax here will be discarded when exporting the
2096 file.
2098 html ---- results are added inside of a #+BEGIN_HTML block or
2099 html export snippet depending on whether the current
2100 source block is inline or not. This is a good option
2101 if your code block will output html formatted text.
2103 latex --- results are added inside of a #+BEGIN_LATEX block or
2104 latex export snippet depending on whether the current
2105 source block is inline or not. This is a good option
2106 if your code block will output latex formatted text.
2108 code ---- the results are extracted in the syntax of the source
2109 code of the language being evaluated and are added
2110 inside of a source block with the source-code language
2111 set appropriately. Also, source block inlining is
2112 preserved in this case. Note this relies on the
2113 optional LANG argument.
2115 list ---- the results are rendered as a list. This option not
2116 allowed for inline src blocks.
2118 table --- the results are rendered as a table. This option not
2119 allowed for inline src blocks.
2121 INFO may provide the values of these header arguments (in the
2122 `header-arguments-alist' see the docstring for
2123 `org-babel-get-src-block-info'):
2125 :file --- the name of the file to which output should be written.
2127 :wrap --- the effect is similar to `latex' in RESULT-PARAMS but
2128 using the argument supplied to specify the export block
2129 or snippet type."
2131 (if (stringp result)
2132 (progn
2133 (setq result (org-no-properties result))
2134 (when (member "file" result-params)
2135 (setq result (org-babel-result-to-file
2136 result (when (assoc :file-desc (nth 2 info))
2137 (or (cdr (assoc :file-desc (nth 2 info)))
2138 result))))))
2139 (unless (listp result) (setq result (format "%S" result))))
2140 (if (and result-params (member "silent" result-params))
2141 (progn
2142 (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
2143 result)
2144 (save-excursion
2145 (let* ((inlinep
2146 (save-excursion
2147 (when (or (org-babel-get-inline-src-block-matches)
2148 (org-babel-get-lob-one-liner-matches))
2149 (goto-char (match-end 0))
2150 (org-babel-remove-inline-result)
2151 (insert " ")
2152 (point))))
2153 (existing-result
2154 (unless inlinep
2155 (org-babel-where-is-src-block-result t info hash indent)))
2156 (bad-inline-p
2157 (when inlinep
2159 (and (member "table" result-params) "`:results table'")
2160 (and (listp result) "list result")
2161 (and (org-string-match-p "\n." result) "multiline result")
2162 (and (member "list" result-params) "`:results list'"))))
2163 (results-switches
2164 (cdr (assoc :results_switches (nth 2 info))))
2165 (visible-beg (copy-marker (point-min)))
2166 (visible-end (copy-marker (point-max)))
2167 ;; When results exist outside of the current visible
2168 ;; region of the buffer, be sure to widen buffer to
2169 ;; update them.
2170 (outside-scope-p (and existing-result
2171 (or (> visible-beg existing-result)
2172 (<= visible-end existing-result))))
2173 beg end)
2174 (when (and (stringp result) ; ensure results end in a newline
2175 (not inlinep)
2176 (> (length result) 0)
2177 (not (or (string-equal (substring result -1) "\n")
2178 (string-equal (substring result -1) "\r"))))
2179 (setq result (concat result "\n")))
2180 (unwind-protect
2181 (progn
2182 (when outside-scope-p (widen))
2183 (if (not existing-result)
2184 (setq beg (or inlinep (point)))
2185 (goto-char existing-result)
2186 (save-excursion
2187 (re-search-forward "#" nil t)
2188 (setq indent (- (current-column) 1)))
2189 (forward-line 1)
2190 (setq beg (point))
2191 (cond
2192 ((member "replace" result-params)
2193 (delete-region (point) (org-babel-result-end)))
2194 ((member "append" result-params)
2195 (goto-char (org-babel-result-end)) (setq beg (point-marker)))
2196 ((member "prepend" result-params)))) ; already there
2197 (setq results-switches
2198 (if results-switches (concat " " results-switches) ""))
2199 (let ((wrap (lambda (start finish &optional no-escape no-newlines
2200 inline-start inline-finish)
2201 (when inlinep
2202 (setq start inline-start)
2203 (setq finish inline-finish)
2204 (setq no-newlines t))
2205 (goto-char end)
2206 (insert (concat finish (unless no-newlines "\n")))
2207 (goto-char beg)
2208 (insert (concat start (unless no-newlines "\n")))
2209 (unless no-escape
2210 (org-escape-code-in-region (min (point) end) end))
2211 (goto-char end)
2212 (unless no-newlines (goto-char (point-at-eol)))
2213 (setq end (point-marker))))
2214 (tabulablep
2215 (lambda (r)
2216 ;; Non-nil when result R can be turned into
2217 ;; a table.
2218 (and (listp r)
2219 (null (cdr (last r)))
2220 (org-every
2221 (lambda (e) (or (atom e) (null (cdr (last e)))))
2222 result)))))
2223 ;; insert results based on type
2224 (cond
2225 ;; Do nothing for an empty result.
2226 ((null result))
2227 ;; Illegal inline result or params.
2228 (bad-inline-p
2229 (error "Inline error: %s cannot be used" bad-inline-p))
2230 ;; insert a list if preferred
2231 ((member "list" result-params)
2232 (insert
2233 (org-babel-trim
2234 (org-list-to-generic
2235 (cons 'unordered
2236 (mapcar
2237 (lambda (el) (list nil (if (stringp el) el (format "%S" el))))
2238 (if (listp result) result (split-string result "\n" t))))
2239 '(:splicep nil :istart "- " :iend "\n")))
2240 "\n"))
2241 ;; Try hard to print RESULT as a table. Give up if
2242 ;; it contains an improper list.
2243 ((funcall tabulablep result)
2244 (goto-char beg)
2245 (insert (concat (orgtbl-to-orgtbl
2246 (if (org-every
2247 (lambda (e)
2248 (or (eq e 'hline) (listp e)))
2249 result)
2250 result
2251 (list result))
2252 nil)
2253 "\n"))
2254 (goto-char beg)
2255 (when (org-at-table-p) (org-table-align))
2256 (goto-char (org-table-end)))
2257 ;; Print verbatim a list that cannot be turned into
2258 ;; a table.
2259 ((listp result) (insert (format "%s\n" result)))
2260 ((member "file" result-params)
2261 (when inlinep
2262 (goto-char inlinep)
2263 (setq result (org-macro-escape-arguments result)))
2264 (insert result))
2265 ((and inlinep
2266 (not (member "raw" result-params)))
2267 (goto-char inlinep)
2268 (insert (org-macro-escape-arguments
2269 (org-babel-chomp result "\n"))))
2270 (t (goto-char beg) (insert result)))
2271 (setq end (point-marker))
2272 ;; possibly wrap result
2273 (cond
2274 (bad-inline-p) ; Do nothing.
2275 ((assoc :wrap (nth 2 info))
2276 (let ((name (or (cdr (assoc :wrap (nth 2 info))) "RESULTS")))
2277 (funcall wrap (concat "#+BEGIN_" name)
2278 (concat "#+END_" (car (org-split-string name)))
2279 nil nil (concat "{{{results(@@" name ":") "@@)}}}")))
2280 ((member "html" result-params)
2281 (funcall wrap "#+BEGIN_HTML" "#+END_HTML" nil nil
2282 "{{{results(@@html:" "@@)}}}"))
2283 ((member "latex" result-params)
2284 (funcall wrap "#+BEGIN_LaTeX" "#+END_LaTeX" nil nil
2285 "{{{results(@@latex:" "@@)}}}"))
2286 ((member "org" result-params)
2287 (goto-char beg) (if (org-at-table-p) (org-cycle))
2288 (funcall wrap "#+BEGIN_SRC org" "#+END_SRC" nil nil
2289 "{{{results(src_org{" "})}}}"))
2290 ((member "code" result-params)
2291 (let ((lang (or lang "none")))
2292 (funcall wrap (format "#+BEGIN_SRC %s%s" lang results-switches)
2293 "#+END_SRC" nil nil
2294 (format "{{{results(src_%s[%s]{" lang results-switches)
2295 "})}}}")))
2296 ((member "raw" result-params)
2297 (goto-char beg) (if (org-at-table-p) (org-cycle)))
2298 ((or (member "drawer" result-params)
2299 ;; Stay backward compatible with <7.9.2
2300 (member "wrap" result-params))
2301 (goto-char beg) (if (org-at-table-p) (org-cycle))
2302 (funcall wrap ":RESULTS:" ":END:" 'no-escape nil
2303 "{{{results(" ")}}}"))
2304 ((and inlinep (member "file" result-params))
2305 (funcall wrap nil nil nil nil "{{{results(" ")}}}"))
2306 ((and (not (funcall tabulablep result))
2307 (not (member "file" result-params)))
2308 (let ((org-babel-inline-result-wrap
2309 ;; Hard code {{{results(...)}}} on top of customization.
2310 (format "{{{results(%s)}}}" org-babel-inline-result-wrap)))
2311 (org-babel-examplify-region beg end results-switches)
2312 (setq end (point))))))
2313 ;; possibly indent the results to match the #+results line
2314 (when (and (not inlinep) (numberp indent) indent (> indent 0)
2315 ;; in this case `table-align' does the work for us
2316 (not (and (listp result)
2317 (member "append" result-params))))
2318 (indent-rigidly beg end indent))
2319 (if (null result)
2320 (if (member "value" result-params)
2321 (message "Code block returned no value.")
2322 (message "Code block produced no output."))
2323 (message "Code block evaluation complete.")))
2324 (when outside-scope-p (narrow-to-region visible-beg visible-end))
2325 (set-marker visible-beg nil)
2326 (set-marker visible-end nil))))))
2328 (defun org-babel-remove-result (&optional info keep-keyword)
2329 "Remove the result of the current source block."
2330 (interactive)
2331 (let ((location (org-babel-where-is-src-block-result nil info)))
2332 (when location
2333 (save-excursion
2334 (goto-char location)
2335 (when (looking-at (concat org-babel-result-regexp ".*$"))
2336 (delete-region
2337 (if keep-keyword (1+ (match-end 0)) (1- (match-beginning 0)))
2338 (progn (forward-line 1) (org-babel-result-end))))))))
2340 (defun org-babel-remove-inline-result ()
2341 "Remove the result of the current inline-src-block or babel call.
2342 The result must be wrapped in a `results' macro to be removed.
2343 Leading whitespace is trimmed."
2344 (interactive)
2345 (let* ((el (org-element-context))
2346 (post-blank (org-element-property :post-blank el)))
2347 (when (memq (org-element-type el) '(inline-src-block inline-babel-call))
2348 (org-with-wide-buffer
2349 (goto-char (org-element-property :end el))
2350 (let ((el (org-element-context)))
2351 (when (and (eq (org-element-type el) 'macro)
2352 (string= (org-element-property :key el) "results"))
2353 (delete-region ; And leading whitespace.
2354 (- (org-element-property :begin el) post-blank)
2355 (- (org-element-property :end el)
2356 (org-element-property :post-blank el)))))))))
2358 (defun org-babel-remove-result-one-or-many (x)
2359 "Remove the result of the current source block.
2360 If called with a prefix argument, remove all result blocks
2361 in the buffer."
2362 (interactive "P")
2363 (if x
2364 (org-babel-map-src-blocks nil (org-babel-remove-result))
2365 (org-babel-remove-result)))
2367 (defun org-babel-result-end ()
2368 "Return the point at the end of the current set of results."
2369 (save-excursion
2370 (cond
2371 ((org-at-table-p) (progn (goto-char (org-table-end)) (point)))
2372 ((org-at-item-p) (let* ((struct (org-list-struct))
2373 (prvs (org-list-prevs-alist struct)))
2374 (org-list-get-list-end (point-at-bol) struct prvs)))
2375 ((let ((case-fold-search t)) (looking-at "^\\([ \t]*\\):results:"))
2376 (progn (re-search-forward (concat "^" (match-string 1) ":END:"))
2377 (forward-char 1) (point)))
2379 (let ((case-fold-search t))
2380 (if (looking-at (concat "[ \t]*#\\+begin_\\([^ \t\n\r]+\\)"))
2381 (progn (re-search-forward (concat "[ \t]*#\\+end_" (match-string 1))
2382 nil t)
2383 (forward-char 1))
2384 (while (looking-at "[ \t]*\\(: \\|:$\\|\\[\\[\\)")
2385 (forward-line 1))))
2386 (point)))))
2388 (defun org-babel-result-to-file (result &optional description)
2389 "Convert RESULT into an `org-mode' link with optional DESCRIPTION.
2390 If the `default-directory' is different from the containing
2391 file's directory then expand relative links."
2392 (when (stringp result)
2393 (format "[[file:%s]%s]"
2394 (if (and default-directory
2395 buffer-file-name
2396 (not (string= (expand-file-name default-directory)
2397 (expand-file-name
2398 (file-name-directory buffer-file-name)))))
2399 (expand-file-name result default-directory)
2400 result)
2401 (if description (concat "[" description "]") ""))))
2403 (defvar org-babel-capitalize-example-region-markers nil
2404 "Make true to capitalize begin/end example markers inserted by code blocks.")
2406 (define-obsolete-function-alias
2407 'org-babel-examplize-region
2408 'org-babel-examplify-region "25.1")
2410 (defun org-babel-examplify-region (beg end &optional results-switches)
2411 "Comment out region using the inline '==' or ': ' org example quote."
2412 (interactive "*r")
2413 (let ((chars-between (lambda (b e)
2414 (not (string-match "^[\\s]*$"
2415 (buffer-substring b e)))))
2416 (maybe-cap (lambda (str) (if org-babel-capitalize-example-region-markers
2417 (upcase str) str)))
2418 (beg-bol (save-excursion (goto-char beg) (point-at-bol)))
2419 (end-bol (save-excursion (goto-char end) (point-at-bol)))
2420 (end-eol (save-excursion (goto-char end) (point-at-eol))))
2421 (if (and (not (= end end-bol))
2422 (or (funcall chars-between beg-bol beg)
2423 (funcall chars-between end end-eol)))
2424 (save-excursion
2425 (goto-char beg)
2426 (insert (format org-babel-inline-result-wrap
2427 (prog1 (buffer-substring beg end)
2428 (delete-region beg end)))))
2429 (let ((size (count-lines beg end)))
2430 (save-excursion
2431 (cond ((= size 0)) ; do nothing for an empty result
2432 ((< size org-babel-min-lines-for-block-output)
2433 (goto-char beg)
2434 (dotimes (n size)
2435 (beginning-of-line 1) (insert ": ") (forward-line 1)))
2437 (goto-char beg)
2438 (insert (if results-switches
2439 (format "%s%s\n"
2440 (funcall maybe-cap "#+begin_example")
2441 results-switches)
2442 (funcall maybe-cap "#+begin_example\n")))
2443 (if (markerp end) (goto-char end) (forward-char (- end beg)))
2444 (insert (funcall maybe-cap "#+end_example\n")))))))))
2446 (defun org-babel-update-block-body (new-body)
2447 "Update the body of the current code block to NEW-BODY."
2448 (if (not (org-babel-where-is-src-block-head))
2449 (error "Not in a source block")
2450 (save-match-data
2451 (replace-match (concat (org-babel-trim (org-remove-indentation new-body))
2452 "\n") nil t nil 5))
2453 (indent-rigidly (match-beginning 5) (match-end 5) 2)))
2455 (defun org-babel-merge-params (&rest plists)
2456 "Combine all parameter association lists in PLISTS.
2457 Later elements of PLISTS override the values of previous elements.
2458 This takes into account some special considerations for certain
2459 parameters when merging lists."
2460 (let* ((results-exclusive-groups
2461 (mapcar (lambda (group) (mapcar #'symbol-name group))
2462 (cdr (assoc 'results org-babel-common-header-args-w-values))))
2463 (exports-exclusive-groups
2464 (mapcar (lambda (group) (mapcar #'symbol-name group))
2465 (cdr (assoc 'exports org-babel-common-header-args-w-values))))
2466 (variable-index 0)
2467 (e-merge (lambda (exclusive-groups &rest result-params)
2468 ;; maintain exclusivity of mutually exclusive parameters
2469 (let (output)
2470 (mapc (lambda (new-params)
2471 (mapc (lambda (new-param)
2472 (mapc (lambda (exclusive-group)
2473 (when (member new-param exclusive-group)
2474 (mapcar (lambda (excluded-param)
2475 (setq output
2476 (delete
2477 excluded-param
2478 output)))
2479 exclusive-group)))
2480 exclusive-groups)
2481 (setq output (org-uniquify
2482 (cons new-param output))))
2483 new-params))
2484 result-params)
2485 output)))
2486 params results exports tangle noweb cache vars shebang comments padline
2487 clearnames)
2489 (mapc
2490 (lambda (plist)
2491 (mapc
2492 (lambda (pair)
2493 (case (car pair)
2494 (:var
2495 (let ((name (if (listp (cdr pair))
2496 (cadr pair)
2497 (and (string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*="
2498 (cdr pair))
2499 (intern (match-string 1 (cdr pair)))))))
2500 (if name
2501 (setq vars
2502 (append
2503 (if (member name (mapcar #'car vars))
2504 (progn
2505 (push name clearnames)
2506 (delq nil
2507 (mapcar
2508 (lambda (p)
2509 (unless (equal (car p) name) p))
2510 vars)))
2511 vars)
2512 (list (cons name pair))))
2513 ;; if no name is given and we already have named variables
2514 ;; then assign to named variables in order
2515 (if (and vars (nth variable-index vars))
2516 (let ((name (car (nth variable-index vars))))
2517 (push name clearnames) ; clear out colnames
2518 ; and rownames
2519 ; for replace vars
2520 (prog1 (setf (cddr (nth variable-index vars))
2521 (concat (symbol-name name) "=" (cdr pair)))
2522 (incf variable-index)))
2523 (error "Variable \"%s\" must be assigned a default value"
2524 (cdr pair))))))
2525 (:results
2526 (setq results (funcall e-merge results-exclusive-groups
2527 results
2528 (split-string
2529 (let ((r (cdr pair)))
2530 (if (stringp r) r (eval r)))))))
2531 (:file
2532 (when (cdr pair)
2533 (setq results (funcall e-merge results-exclusive-groups
2534 results '("file")))
2535 (unless (or (member "both" exports)
2536 (member "none" exports)
2537 (member "code" exports))
2538 (setq exports (funcall e-merge exports-exclusive-groups
2539 exports '("results"))))
2540 (setq params (cons pair (assq-delete-all (car pair) params)))))
2541 (:file-ext
2542 (when (cdr pair)
2543 (setq results (funcall e-merge results-exclusive-groups
2544 results '("file")))
2545 (unless (or (member "both" exports)
2546 (member "none" exports)
2547 (member "code" exports))
2548 (setq exports (funcall e-merge exports-exclusive-groups
2549 exports '("results"))))
2550 (setq params (cons pair (assq-delete-all (car pair) params)))))
2551 (:exports
2552 (setq exports (funcall e-merge exports-exclusive-groups
2553 exports (split-string (cdr pair)))))
2554 (:tangle ;; take the latest -- always overwrite
2555 (setq tangle (or (list (cdr pair)) tangle)))
2556 (:noweb
2557 (setq noweb (funcall e-merge
2558 '(("yes" "no" "tangle" "no-export"
2559 "strip-export" "eval"))
2560 noweb
2561 (split-string (or (cdr pair) "")))))
2562 (:cache
2563 (setq cache (funcall e-merge '(("yes" "no")) cache
2564 (split-string (or (cdr pair) "")))))
2565 (:padline
2566 (setq padline (funcall e-merge '(("yes" "no")) padline
2567 (split-string (or (cdr pair) "")))))
2568 (:shebang ;; take the latest -- always overwrite
2569 (setq shebang (or (list (cdr pair)) shebang)))
2570 (:comments
2571 (setq comments (funcall e-merge '(("yes" "no")) comments
2572 (split-string (or (cdr pair) "")))))
2573 (t ;; replace: this covers e.g. :session
2574 (setq params (cons pair (assq-delete-all (car pair) params))))))
2575 plist))
2576 plists)
2577 (setq vars (reverse vars))
2578 (while vars (setq params (cons (cons :var (cddr (pop vars))) params)))
2579 ;; clear out col-names and row-names for replaced variables
2580 (mapc
2581 (lambda (name)
2582 (mapc
2583 (lambda (param)
2584 (when (assoc param params)
2585 (setf (cdr (assoc param params))
2586 (org-remove-if (lambda (pair) (equal (car pair) name))
2587 (cdr (assoc param params))))
2588 (setf params (org-remove-if (lambda (pair) (and (equal (car pair) param)
2589 (null (cdr pair))))
2590 params))))
2591 (list :colname-names :rowname-names)))
2592 clearnames)
2593 (mapc
2594 (lambda (hd)
2595 (let ((key (intern (concat ":" (symbol-name hd))))
2596 (val (eval hd)))
2597 (setf params (cons (cons key (mapconcat 'identity val " ")) params))))
2598 '(results exports tangle noweb padline cache shebang comments))
2599 params))
2601 (defvar org-babel-use-quick-and-dirty-noweb-expansion nil
2602 "Set to true to use regular expressions to expand noweb references.
2603 This results in much faster noweb reference expansion but does
2604 not properly allow code blocks to inherit the \":noweb-ref\"
2605 header argument from buffer or subtree wide properties.")
2607 (defun org-babel-noweb-p (params context)
2608 "Check if PARAMS require expansion in CONTEXT.
2609 CONTEXT may be one of :tangle, :export or :eval."
2610 (let* (intersect
2611 (intersect (lambda (as bs)
2612 (when as
2613 (if (member (car as) bs)
2614 (car as)
2615 (funcall intersect (cdr as) bs))))))
2616 (funcall intersect (case context
2617 (:tangle '("yes" "tangle" "no-export" "strip-export"))
2618 (:eval '("yes" "no-export" "strip-export" "eval"))
2619 (:export '("yes")))
2620 (split-string (or (cdr (assoc :noweb params)) "")))))
2622 (defun org-babel-expand-noweb-references (&optional info parent-buffer)
2623 "Expand Noweb references in the body of the current source code block.
2625 For example the following reference would be replaced with the
2626 body of the source-code block named 'example-block'.
2628 <<example-block>>
2630 Note that any text preceding the <<foo>> construct on a line will
2631 be interposed between the lines of the replacement text. So for
2632 example if <<foo>> is placed behind a comment, then the entire
2633 replacement text will also be commented.
2635 This function must be called from inside of the buffer containing
2636 the source-code block which holds BODY.
2638 In addition the following syntax can be used to insert the
2639 results of evaluating the source-code block named 'example-block'.
2641 <<example-block()>>
2643 Any optional arguments can be passed to example-block by placing
2644 the arguments inside the parenthesis following the convention
2645 defined by `org-babel-lob'. For example
2647 <<example-block(a=9)>>
2649 would set the value of argument \"a\" equal to \"9\". Note that
2650 these arguments are not evaluated in the current source-code
2651 block but are passed literally to the \"example-block\"."
2652 (let* ((parent-buffer (or parent-buffer (current-buffer)))
2653 (info (or info (org-babel-get-src-block-info 'light)))
2654 (lang (nth 0 info))
2655 (body (nth 1 info))
2656 (ob-nww-start org-babel-noweb-wrap-start)
2657 (ob-nww-end org-babel-noweb-wrap-end)
2658 (comment (string= "noweb" (cdr (assoc :comments (nth 2 info)))))
2659 (rx-prefix (concat "\\(" org-babel-src-name-regexp "\\|"
2660 ":noweb-ref[ \t]+" "\\)"))
2661 (new-body "")
2662 (nb-add (lambda (text) (setq new-body (concat new-body text))))
2663 (c-wrap (lambda (text)
2664 (with-temp-buffer
2665 (funcall (intern (concat lang "-mode")))
2666 (comment-region (point) (progn (insert text) (point)))
2667 (org-babel-trim (buffer-string)))))
2668 index source-name evaluate prefix)
2669 (with-temp-buffer
2670 (org-set-local 'org-babel-noweb-wrap-start ob-nww-start)
2671 (org-set-local 'org-babel-noweb-wrap-end ob-nww-end)
2672 (insert body) (goto-char (point-min))
2673 (setq index (point))
2674 (while (and (re-search-forward (org-babel-noweb-wrap) nil t))
2675 (save-match-data (setf source-name (match-string 1)))
2676 (save-match-data (setq evaluate (string-match "\(.*\)" source-name)))
2677 (save-match-data
2678 (setq prefix
2679 (buffer-substring (match-beginning 0)
2680 (save-excursion
2681 (beginning-of-line 1) (point)))))
2682 ;; add interval to new-body (removing noweb reference)
2683 (goto-char (match-beginning 0))
2684 (funcall nb-add (buffer-substring index (point)))
2685 (goto-char (match-end 0))
2686 (setq index (point))
2687 (funcall
2688 nb-add
2689 (with-current-buffer parent-buffer
2690 (save-restriction
2691 (widen)
2692 (mapconcat ;; Interpose PREFIX between every line.
2693 #'identity
2694 (split-string
2695 (if evaluate
2696 (let ((raw (org-babel-ref-resolve source-name)))
2697 (if (stringp raw) raw (format "%S" raw)))
2699 ;; Retrieve from the library of babel.
2700 (nth 2 (assoc (intern source-name)
2701 org-babel-library-of-babel))
2702 ;; Return the contents of headlines literally.
2703 (save-excursion
2704 (when (org-babel-ref-goto-headline-id source-name)
2705 (org-babel-ref-headline-body)))
2706 ;; Find the expansion of reference in this buffer.
2707 (let ((rx (concat rx-prefix source-name "[ \t\n]"))
2708 expansion)
2709 (save-excursion
2710 (goto-char (point-min))
2711 (if org-babel-use-quick-and-dirty-noweb-expansion
2712 (while (re-search-forward rx nil t)
2713 (let* ((i (org-babel-get-src-block-info 'light))
2714 (body (org-babel-expand-noweb-references i))
2715 (sep (or (cdr (assoc :noweb-sep (nth 2 i)))
2716 "\n"))
2717 (full (if comment
2718 (let ((cs (org-babel-tangle-comment-links i)))
2719 (concat (funcall c-wrap (car cs)) "\n"
2720 body "\n"
2721 (funcall c-wrap (cadr cs))))
2722 body)))
2723 (setq expansion (cons sep (cons full expansion)))))
2724 (org-babel-map-src-blocks nil
2725 (let ((i (org-babel-get-src-block-info 'light)))
2726 (when (equal (or (cdr (assoc :noweb-ref (nth 2 i)))
2727 (nth 4 i))
2728 source-name)
2729 (let* ((body (org-babel-expand-noweb-references i))
2730 (sep (or (cdr (assoc :noweb-sep (nth 2 i)))
2731 "\n"))
2732 (full (if comment
2733 (let ((cs (org-babel-tangle-comment-links i)))
2734 (concat (funcall c-wrap (car cs)) "\n"
2735 body "\n"
2736 (funcall c-wrap (cadr cs))))
2737 body)))
2738 (setq expansion
2739 (cons sep (cons full expansion)))))))))
2740 (and expansion
2741 (mapconcat #'identity (nreverse (cdr expansion)) "")))
2742 ;; Possibly raise an error if named block doesn't exist.
2743 (if (or org-babel-noweb-error-all-langs
2744 (member lang org-babel-noweb-error-langs))
2745 (error "%s" (concat
2746 (org-babel-noweb-wrap source-name)
2747 "could not be resolved (see "
2748 "`org-babel-noweb-error-langs')"))
2749 "")))
2750 "[\n\r]") (concat "\n" prefix))))))
2751 (funcall nb-add (buffer-substring index (point-max))))
2752 new-body))
2754 (defun org-babel--script-escape-inner (str)
2755 (let (in-single in-double backslash out)
2756 (mapc
2757 (lambda (ch)
2758 (setq
2760 (if backslash
2761 (progn
2762 (setq backslash nil)
2763 (cond
2764 ((and in-single (eq ch ?'))
2765 ;; Escaped single quote inside single quoted string:
2766 ;; emit just a single quote, since we've changed the
2767 ;; outer quotes to double.
2768 (cons ch out))
2769 ((eq ch ?\")
2770 ;; Escaped double quote
2771 (if in-single
2772 ;; This should be interpreted as backslash+quote,
2773 ;; not an escape. Emit a three backslashes
2774 ;; followed by a quote (because one layer of
2775 ;; quoting will be stripped by `org-babel-read').
2776 (append (list ch ?\\ ?\\ ?\\) out)
2777 ;; Otherwise we are in a double-quoted string. Emit
2778 ;; a single escaped quote
2779 (append (list ch ?\\) out)))
2780 ((eq ch ?\\)
2781 ;; Escaped backslash: emit a single escaped backslash
2782 (append (list ?\\ ?\\) out))
2783 ;; Other: emit a quoted backslash followed by whatever
2784 ;; the character was (because one layer of quoting will
2785 ;; be stripped by `org-babel-read').
2786 (t (append (list ch ?\\ ?\\) out))))
2787 (case ch
2788 (?\[ (if (or in-double in-single)
2789 (cons ?\[ out)
2790 (cons ?\( out)))
2791 (?\] (if (or in-double in-single)
2792 (cons ?\] out)
2793 (cons ?\) out)))
2794 (?\{ (if (or in-double in-single)
2795 (cons ?\{ out)
2796 (cons ?\( out)))
2797 (?\} (if (or in-double in-single)
2798 (cons ?\} out)
2799 (cons ?\) out)))
2800 (?, (if (or in-double in-single)
2801 (cons ?, out) (cons ?\s out)))
2802 (?\' (if in-double
2803 (cons ?\' out)
2804 (setq in-single (not in-single)) (cons ?\" out)))
2805 (?\" (if in-single
2806 (append (list ?\" ?\\) out)
2807 (setq in-double (not in-double)) (cons ?\" out)))
2808 (?\\ (unless (or in-single in-double)
2809 (error "Can't handle backslash outside string in `org-babel-script-escape'"))
2810 (setq backslash t)
2811 out)
2812 (t (cons ch out))))))
2813 (string-to-list str))
2814 (when (or in-single in-double)
2815 (error "Unterminated string in `org-babel-script-escape'"))
2816 (apply #'string (reverse out))))
2818 (defun org-babel-script-escape (str &optional force)
2819 "Safely convert tables into elisp lists."
2820 (unless (stringp str)
2821 (error "`org-babel-script-escape' expects a string"))
2822 (let ((escaped
2823 (cond
2824 ((and (> (length str) 2)
2825 (or (and (string-equal "[" (substring str 0 1))
2826 (string-equal "]" (substring str -1)))
2827 (and (string-equal "{" (substring str 0 1))
2828 (string-equal "}" (substring str -1)))
2829 (and (string-equal "(" (substring str 0 1))
2830 (string-equal ")" (substring str -1)))))
2832 (concat "'" (org-babel--script-escape-inner str)))
2833 ((or force
2834 (and (> (length str) 2)
2835 (or (and (string-equal "'" (substring str 0 1))
2836 (string-equal "'" (substring str -1)))
2837 ;; We need to pass double-quoted strings
2838 ;; through the backslash-twiddling bits, even
2839 ;; though we don't need to change their
2840 ;; delimiters.
2841 (and (string-equal "\"" (substring str 0 1))
2842 (string-equal "\"" (substring str -1))))))
2843 (org-babel--script-escape-inner str))
2844 (t str))))
2845 (condition-case nil (org-babel-read escaped) (error escaped))))
2847 (defun org-babel-read (cell &optional inhibit-lisp-eval)
2848 "Convert the string value of CELL to a number if appropriate.
2849 Otherwise if CELL looks like lisp (meaning it starts with a
2850 \"(\", \"'\", \"`\" or a \"[\") then read and evaluate it as
2851 lisp, otherwise return it unmodified as a string. Optional
2852 argument INHIBIT-LISP-EVAL inhibits lisp evaluation for
2853 situations in which is it not appropriate."
2854 (if (and (stringp cell) (not (equal cell "")))
2855 (or (org-babel-number-p cell)
2856 (if (and (not inhibit-lisp-eval)
2857 (or (member (substring cell 0 1) '("(" "'" "`" "["))
2858 (string= cell "*this*")))
2859 (eval (read cell))
2860 (if (string= (substring cell 0 1) "\"")
2861 (read cell)
2862 (progn (set-text-properties 0 (length cell) nil cell) cell))))
2863 cell))
2865 (defun org-babel-number-p (string)
2866 "If STRING represents a number return its value."
2867 (if (and (string-match "[0-9]+" string)
2868 (string-match "^-?[0-9]*\\.?[0-9]*$" string)
2869 (= (length (substring string (match-beginning 0)
2870 (match-end 0)))
2871 (length string)))
2872 (string-to-number string)))
2874 (defun org-babel-import-elisp-from-file (file-name &optional separator)
2875 "Read the results located at FILE-NAME into an elisp table.
2876 If the table is trivial, then return it as a scalar."
2877 (let (result)
2878 (save-window-excursion
2879 (with-temp-buffer
2880 (condition-case err
2881 (progn
2882 (org-table-import file-name separator)
2883 (delete-file file-name)
2884 (setq result (mapcar (lambda (row)
2885 (mapcar #'org-babel-string-read row))
2886 (org-table-to-lisp))))
2887 (error (message "Error reading results: %s" err) nil)))
2888 (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
2889 (if (consp (car result))
2890 (if (null (cdr (car result)))
2891 (caar result)
2892 result)
2893 (car result))
2894 result))))
2896 (defun org-babel-string-read (cell)
2897 "Strip nested \"s from around strings."
2898 (org-babel-read (or (and (stringp cell)
2899 (string-match "\\\"\\(.+\\)\\\"" cell)
2900 (match-string 1 cell))
2901 cell) t))
2903 (defun org-babel-chomp (string &optional regexp)
2904 "Strip a trailing space or carriage return from STRING.
2905 The default regexp used is \"[ \\f\\t\\n\\r\\v]\" but another one
2906 can be specified as the REGEXP argument."
2907 (let ((regexp (or regexp "[ \f\t\n\r\v]")))
2908 (while (and (> (length string) 0)
2909 (string-match regexp (substring string -1)))
2910 (setq string (substring string 0 -1)))
2911 string))
2913 (defun org-babel-trim (string &optional regexp)
2914 "Strip a leading and trailing space or carriage return from STRING.
2915 Like `org-babel-chomp', but run on both the first and last
2916 character of the string."
2917 (org-babel-chomp
2918 (org-reverse-string
2919 (org-babel-chomp (org-reverse-string string) regexp)) regexp))
2921 (defun org-babel-tramp-handle-call-process-region
2922 (start end program &optional delete buffer display &rest args)
2923 "Use Tramp to handle `call-process-region'.
2924 Fixes a bug in `tramp-handle-call-process-region'."
2925 (if (and (featurep 'tramp) (file-remote-p default-directory))
2926 (let ((tmpfile (tramp-compat-make-temp-file "")))
2927 (write-region start end tmpfile)
2928 (when delete (delete-region start end))
2929 (unwind-protect
2930 ;; (apply 'call-process program tmpfile buffer display args)
2931 ;; bug in tramp
2932 (apply 'process-file program tmpfile buffer display args)
2933 (delete-file tmpfile)))
2934 ;; org-babel-call-process-region-original is the original emacs
2935 ;; definition. It is in scope from the let binding in
2936 ;; org-babel-execute-src-block
2937 (apply org-babel-call-process-region-original
2938 start end program delete buffer display args)))
2940 (defun org-babel-local-file-name (file)
2941 "Return the local name component of FILE."
2942 (or (file-remote-p file 'localname) file))
2944 (defun org-babel-process-file-name (name &optional no-quote-p)
2945 "Prepare NAME to be used in an external process.
2946 If NAME specifies a remote location, the remote portion of the
2947 name is removed, since in that case the process will be executing
2948 remotely. The file name is then processed by `expand-file-name'.
2949 Unless second argument NO-QUOTE-P is non-nil, the file name is
2950 additionally processed by `shell-quote-argument'"
2951 (let ((f (org-babel-local-file-name (expand-file-name name))))
2952 (if no-quote-p f (shell-quote-argument f))))
2954 (defvar org-babel-temporary-directory)
2955 (unless (or noninteractive (boundp 'org-babel-temporary-directory))
2956 (defvar org-babel-temporary-directory
2957 (or (and (boundp 'org-babel-temporary-directory)
2958 (file-exists-p org-babel-temporary-directory)
2959 org-babel-temporary-directory)
2960 (make-temp-file "babel-" t))
2961 "Directory to hold temporary files created to execute code blocks.
2962 Used by `org-babel-temp-file'. This directory will be removed on
2963 Emacs shutdown."))
2965 (defcustom org-babel-remote-temporary-directory "/tmp/"
2966 "Directory to hold temporary files on remote hosts."
2967 :group 'org-babel
2968 :type 'string)
2970 (defmacro org-babel-result-cond (result-params scalar-form &rest table-forms)
2971 "Call the code to parse raw string results according to RESULT-PARAMS."
2972 (declare (indent 1)
2973 (debug (form form &rest form)))
2974 (org-with-gensyms (params)
2975 `(let ((,params ,result-params))
2976 (unless (member "none" ,params)
2977 (if (or (member "scalar" ,params)
2978 (member "verbatim" ,params)
2979 (member "html" ,params)
2980 (member "code" ,params)
2981 (member "pp" ,params)
2982 (and (or (member "output" ,params)
2983 (member "raw" ,params)
2984 (member "org" ,params)
2985 (member "drawer" ,params))
2986 (not (member "table" ,params))))
2987 ,scalar-form
2988 ,@table-forms)))))
2989 (def-edebug-spec org-babel-result-cond (form form body))
2991 (defun org-babel-temp-file (prefix &optional suffix)
2992 "Create a temporary file in the `org-babel-temporary-directory'.
2993 Passes PREFIX and SUFFIX directly to `make-temp-file' with the
2994 value of `temporary-file-directory' temporarily set to the value
2995 of `org-babel-temporary-directory'."
2996 (if (file-remote-p default-directory)
2997 (let ((prefix
2998 (concat (file-remote-p default-directory)
2999 (expand-file-name
3000 prefix org-babel-remote-temporary-directory))))
3001 (make-temp-file prefix nil suffix))
3002 (let ((temporary-file-directory
3003 (or (and (boundp 'org-babel-temporary-directory)
3004 (file-exists-p org-babel-temporary-directory)
3005 org-babel-temporary-directory)
3006 temporary-file-directory)))
3007 (make-temp-file prefix nil suffix))))
3009 (defun org-babel-remove-temporary-directory ()
3010 "Remove `org-babel-temporary-directory' on Emacs shutdown."
3011 (when (and (boundp 'org-babel-temporary-directory)
3012 (file-exists-p org-babel-temporary-directory))
3013 ;; taken from `delete-directory' in files.el
3014 (condition-case nil
3015 (progn
3016 (mapc (lambda (file)
3017 ;; This test is equivalent to
3018 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
3019 ;; but more efficient
3020 (if (eq t (car (file-attributes file)))
3021 (delete-directory file)
3022 (delete-file file)))
3023 ;; We do not want to delete "." and "..".
3024 (directory-files org-babel-temporary-directory 'full
3025 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
3026 (delete-directory org-babel-temporary-directory))
3027 (error
3028 (message "Failed to remove temporary Org-babel directory %s"
3029 (if (boundp 'org-babel-temporary-directory)
3030 org-babel-temporary-directory
3031 "[directory not defined]"))))))
3033 (add-hook 'kill-emacs-hook 'org-babel-remove-temporary-directory)
3035 (defun org-babel-one-header-arg-safe-p (pair safe-list)
3036 "Determine if the PAIR is a safe babel header arg according to SAFE-LIST.
3038 For the format of SAFE-LIST, see `org-babel-safe-header-args'."
3039 (and (consp pair)
3040 (keywordp (car pair))
3041 (stringp (cdr pair))
3043 (memq (car pair) safe-list)
3044 (let ((entry (assq (car pair) safe-list)))
3045 (and entry
3046 (consp entry)
3047 (cond ((functionp (cdr entry))
3048 (funcall (cdr entry) (cdr pair)))
3049 ((listp (cdr entry))
3050 (member (cdr pair) (cdr entry)))
3051 (t nil)))))))
3053 (defun org-babel-generate-file-param (src-name params)
3054 "Calculate the filename for source block results.
3056 The directory is calculated from the :output-dir property of the
3057 source block; if not specified, use the current directory.
3059 If the source block has a #+NAME and the :file parameter does not
3060 contain any period characters, then the :file parameter is
3061 treated as an extension, and the output file name is the
3062 concatenation of the directory (as calculated above), the block
3063 name, a period, and the parameter value as a file extension.
3064 Otherwise, the :file parameter is treated as a full file name,
3065 and the output file name is the directory (as calculated above)
3066 plus the parameter value."
3067 (let* ((file-cons (assq :file params))
3068 (file-ext-cons (assq :file-ext params))
3069 (file-ext (cdr-safe file-ext-cons))
3070 (dir (cdr-safe (assq :output-dir params)))
3071 fname)
3072 ;; create the output-dir if it does not exist
3073 (when dir
3074 (make-directory dir t))
3075 (if file-cons
3076 ;; :file given; add :output-dir if given
3077 (when dir
3078 (setcdr file-cons (concat (file-name-as-directory dir) (cdr file-cons))))
3079 ;; :file not given; compute from name and :file-ext if possible
3080 (when (and src-name file-ext)
3081 (if dir
3082 (setq fname (concat (file-name-as-directory (or dir ""))
3083 src-name "." file-ext))
3084 (setq fname (concat src-name "." file-ext)))
3085 (setq params (cons (cons :file fname) params))))
3086 params))
3088 ;;; Used by backends: R, Maxima, Octave.
3089 (defun org-babel-graphical-output-file (params)
3090 "File where a babel block should send graphical output, per PARAMS."
3091 (unless (assq :file params)
3092 (if (assq :file-ext params)
3093 (user-error ":file-ext given but no :file generated; did you forget to give a block a #+NAME?")
3094 (user-error "No :file header argument given; cannot create graphical result.")))
3095 (and (member "graphics" (cdr (assq :result-params params)))
3096 (cdr (assq :file params))))
3098 (provide 'ob-core)
3100 ;; Local variables:
3101 ;; generated-autoload-file: "org-loaddefs.el"
3102 ;; End:
3104 ;;; ob-core.el ends here