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