1 ;;; ob-core.el --- Working with Code Blocks -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2009-2016 Free Software Foundation, Inc.
5 ;; Authors: Eric Schulte
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/>.
31 (defconst org-babel-exeext
32 (if (memq system-type
'(windows-nt cygwin
))
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."
105 (defcustom org-confirm-babel-evaluate t
106 "Confirm before evaluation.
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."
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
133 Remove code block evaluation from the `\\[org-ctrl-c-ctrl-c]' key binding."
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
144 :package-version
'(Org .
"8.0")
148 (eq (compare-strings "RESULTS" nil nil v nil nil 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'."
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'."
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."
168 (put 'org-babel-inline-result-wrap
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."
179 :package-version
'(Org .
"9.0")
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
197 ;; (1) indentation (2) lang
198 "^\\([ \t]*\\)#\\+begin_src[ \t]+\\([^ \f\t\n\r\v]+\\)[ \t]*"
200 "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)"
201 ;; (4) header arguments
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."
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
)
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
))))
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
)))
255 (message "Evaluation of this %s code-block%sis disabled."
257 (let ((name (nth 4 info
))) (if name
(format " (%s) " name
) ""))))
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
))
280 (name-string (if name
(format " (%s) " name
) " ")))
285 (and (not (bound-and-true-p
286 org-babel-confirm-evaluate-answer-no
))
288 (format "Evaluate this %s code block%son your system? "
291 (message "Evaluation of this %s code-block%sis aborted."
294 (x (error "Unexpected value `%s' from `org-babel-check-confirm-evaluate'" x
)))))
297 (defun org-babel-execute-safely-maybe ()
298 (unless org-babel-no-eval-on-ctrl-c-ctrl-c
299 (org-babel-execute-maybe)))
301 (add-hook 'org-ctrl-c-ctrl-c-hook
'org-babel-execute-safely-maybe
)
304 (defun org-babel-execute-maybe ()
306 (or (org-babel-execute-src-block-maybe)
307 (org-babel-lob-execute-maybe)))
309 (defmacro org-babel-when-in-src-block
(&rest body
)
310 "Execute BODY if point is in a source block and return t.
312 Otherwise do nothing and return nil."
313 `(if (memq (org-element-type (org-element-context))
314 '(inline-src-block src-block
))
320 (defun org-babel-execute-src-block-maybe ()
321 "Conditionally execute a source block.
322 Detect if this is context for a Babel src-block and if so
323 then run `org-babel-execute-src-block'."
325 (org-babel-when-in-src-block
326 (org-babel-eval-wipe-error-buffer)
327 (org-babel-execute-src-block current-prefix-arg
)))
330 (defun org-babel-view-src-block-info ()
331 "Display information on the current source block.
332 This includes header arguments, language and name, and is largely
333 a window into the `org-babel-get-src-block-info' function."
335 (let ((info (org-babel-get-src-block-info 'light
))
336 (full (lambda (it) (> (length it
) 0)))
337 (printf (lambda (fmt &rest args
) (princ (apply #'format fmt args
)))))
339 (with-help-window (help-buffer)
340 (let ((name (nth 4 info
))
342 (switches (nth 3 info
))
343 (header-args (nth 2 info
)))
344 (when name
(funcall printf
"Name: %s\n" name
))
345 (when lang
(funcall printf
"Lang: %s\n" lang
))
346 (funcall printf
"Properties:\n")
347 (funcall printf
"\t:header-args \t%s\n" (org-entry-get (point) "header-args" t
))
348 (funcall printf
"\t:header-args:%s \t%s\n" lang
(org-entry-get (point) (concat "header-args:" lang
) t
))
350 (when (funcall full switches
) (funcall printf
"Switches: %s\n" switches
))
351 (funcall printf
"Header Arguments:\n")
352 (dolist (pair (sort header-args
353 (lambda (a b
) (string< (symbol-name (car a
))
354 (symbol-name (car b
))))))
355 (when (funcall full
(format "%s" (cdr pair
)))
356 (funcall printf
"\t%S%s\t%s\n"
358 (if (> (length (format "%S" (car pair
))) 7) "" "\t")
362 (defun org-babel-expand-src-block-maybe ()
363 "Conditionally expand a source block.
364 Detect if this is context for a org-babel src-block and if so
365 then run `org-babel-expand-src-block'."
367 (org-babel-when-in-src-block
368 (org-babel-expand-src-block current-prefix-arg
)))
371 (defun org-babel-load-in-session-maybe ()
372 "Conditionally load a source block in a session.
373 Detect if this is context for a org-babel src-block and if so
374 then run `org-babel-load-in-session'."
376 (org-babel-when-in-src-block
377 (org-babel-load-in-session current-prefix-arg
)))
379 (add-hook 'org-metaup-hook
'org-babel-load-in-session-maybe
)
382 (defun org-babel-pop-to-session-maybe ()
383 "Conditionally pop to a session.
384 Detect if this is context for a org-babel src-block and if so
385 then run `org-babel-switch-to-session'."
387 (org-babel-when-in-src-block
388 (org-babel-switch-to-session current-prefix-arg
)))
390 (add-hook 'org-metadown-hook
'org-babel-pop-to-session-maybe
)
392 (defconst org-babel-common-header-args-w-values
393 '((cache .
((no yes
)))
395 (colnames .
((nil no yes
)))
396 (comments .
((no link yes org both noweb
)))
398 (eval .
((yes no no-export strip-export never-export eval never
400 (exports .
((code results both none
)))
405 (hlines .
((no yes
)))
406 (mkdirp .
((yes no
)))
409 (noweb .
((yes no tangle no-export strip-export
)))
413 (padline .
((yes no
)))
416 (results .
((file list vector table scalar verbatim
)
417 (raw html latex org code pp drawer
)
418 (replace silent none append prepend
)
420 (rownames .
((no yes
)))
424 (tangle .
((tangle yes no
:any
)))
425 (tangle-mode .
((#o755
#o555
#o444
:any
)))
429 (defconst org-babel-header-arg-names
430 (mapcar #'car org-babel-common-header-args-w-values
)
431 "Common header arguments used by org-babel.
432 Note that individual languages may define their own language
433 specific header arguments as well.")
435 (defconst org-babel-safe-header-args
436 '(:cache
:colnames
:comments
:exports
:epilogue
:hlines
:noeval
437 :noweb
:noweb-ref
:noweb-sep
:padline
:prologue
:rownames
438 :sep
:session
:tangle
:wrap
439 (:eval .
("never" "query"))
440 (:results .
(lambda (str) (not (string-match "file" str
)))))
441 "A list of safe header arguments for babel source blocks.
443 The list can have entries of the following forms:
444 - :ARG -> :ARG is always a safe header arg
445 - (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
446 `equal' to one of the VALs.
447 - (:ARG . FN) -> :ARG is safe as a header arg if the function FN
448 returns non-nil. FN is passed one
449 argument, the value of the header arg
452 (defmacro org-babel-header-args-safe-fn
(safe-list)
453 "Return a function that determines whether a list of header args are safe.
456 \(put \\='org-babel-default-header-args \\='safe-local-variable
457 (org-babel-header-args-safe-p org-babel-safe-header-args)
459 This allows org-babel languages to extend the list of safe values for
460 their `org-babel-default-header-args:foo' variable.
462 For the format of SAFE-LIST, see `org-babel-safe-header-args'."
468 (org-babel-one-header-arg-safe-p pair
,safe-list
)))
471 (defvar org-babel-default-header-args
472 '((:session .
"none") (:results .
"replace") (:exports .
"code")
473 (:cache .
"no") (:noweb .
"no") (:hlines .
"no") (:tangle .
"no"))
474 "Default arguments to use when evaluating a source block.")
475 (put 'org-babel-default-header-args
'safe-local-variable
476 (org-babel-header-args-safe-fn org-babel-safe-header-args
))
478 (defvar org-babel-default-inline-header-args
479 '((:session .
"none") (:results .
"replace")
480 (:exports .
"results") (:hlines .
"yes"))
481 "Default arguments to use when evaluating an inline source block.")
482 (put 'org-babel-default-inline-header-args
'safe-local-variable
483 (org-babel-header-args-safe-fn org-babel-safe-header-args
))
485 (defconst org-babel-name-regexp
486 (format "^[ \t]*#\\+%s:[ \t]*"
487 ;; FIXME: TBLNAME is for backward compatibility.
488 (regexp-opt '("NAME" "TBLNAME")))
489 "Regexp matching a NAME keyword.")
491 (defconst org-babel-result-regexp
492 (format "^[ \t]*#\\+%s\\(?:\\[\\(?:%s \\)?\\([[:alnum:]]+\\)\\]\\)?:[ \t]*"
493 org-babel-results-keyword
494 ;; <%Y-%m-%d %H:%M:%S>
495 "<\\(?:[0-9]\\{4\\}-[0-1][0-9]-[0-3][0-9] \
496 [0-2][0-9]\\(?::[0-5][0-9]\\)\\{2\\}\\)>")
497 "Regular expression used to match result lines.
498 If the results are associated with a hash key then the hash will
499 be saved in match group 1.")
501 (defconst org-babel-result-w-name-regexp
502 (concat org-babel-result-regexp
"\\(?9:[^ \t\n\r\v\f]+\\)")
503 "Regexp matching a RESULTS keyword with a name.
504 Name is saved in match group 9.")
506 (defvar org-babel-min-lines-for-block-output
10
507 "The minimum number of lines for block output.
508 If number of lines of output is equal to or exceeds this
509 value, the output is placed in a #+begin_example...#+end_example
510 block. Otherwise the output is marked as literal by inserting
511 colons at the starts of the lines. This variable only takes
512 effect if the :results output option is in effect.")
514 (defvar org-babel-noweb-error-all-langs nil
515 "Raise errors when noweb references don't resolve.
516 Also see `org-babel-noweb-error-langs' to control noweb errors on
517 a language by language bases.")
519 (defvar org-babel-noweb-error-langs nil
520 "Languages for which Babel will raise literate programming errors.
521 List of languages for which errors should be raised when the
522 source code block satisfying a noweb reference in this language
523 can not be resolved. Also see `org-babel-noweb-error-all-langs'
524 to raise errors for all languages.")
526 (defvar org-babel-hash-show
4
527 "Number of initial characters to show of a hidden results hash.")
529 (defvar org-babel-after-execute-hook nil
530 "Hook for functions to be called after `org-babel-execute-src-block'")
532 (defun org-babel-named-src-block-regexp-for-name (&optional name
)
533 "This generates a regexp used to match a src block named NAME.
534 If NAME is nil, match any name. Matched name is then put in
535 match group 9. Other match groups are defined in
536 `org-babel-src-block-regexp'."
537 (concat org-babel-src-name-regexp
538 (concat (if name
(regexp-quote name
) "\\(?9:.*?\\)") "[ \t]*" )
539 "\\(?:\n[ \t]*#\\+\\S-+:.*\\)*?"
541 (substring org-babel-src-block-regexp
1)))
543 (defun org-babel-named-data-regexp-for-name (name)
544 "This generates a regexp used to match data named NAME."
545 (concat org-babel-name-regexp
(regexp-quote name
) "[ \t]*$"))
547 (defun org-babel--normalize-body (datum)
548 "Normalize body for element or object DATUM.
549 DATUM is a source block element or an inline source block object.
550 Remove final newline character and spurious indentation."
551 (let* ((value (org-element-property :value datum
))
552 (body (if (string-suffix-p "\n" value
)
553 (substring value
0 -
1)
555 (cond ((eq (org-element-type datum
) 'inline-src-block
)
556 ;; Newline characters and indentation in an inline
557 ;; src-block are not meaningful, since they could come from
558 ;; some paragraph filling. Treat them as a white space.
559 (replace-regexp-in-string "\n[ \t]*" " " body
))
560 ((or org-src-preserve-indentation
561 (org-element-property :preserve-indent datum
))
563 (t (org-remove-indentation body
)))))
566 (defvar org-babel-current-src-block-location nil
567 "Marker pointing to the src block currently being executed.
568 This may also point to a call line or an inline code block. If
569 multiple blocks are being executed (e.g., in chained execution
570 through use of the :var header argument) this marker points to
571 the outer-most code block.")
575 (defun org-babel-get-src-block-info (&optional light datum
)
576 "Extract information from a source block or inline source block.
578 Optional argument LIGHT does not resolve remote variable
579 references; a process which could likely result in the execution
580 of other code blocks.
582 By default, consider the block at point. However, when optional
583 argument DATUM is provided, extract information from that parsed
586 Return nil if point is not on a source block. Otherwise, return
587 a list with the following pattern:
589 (language body arguments switches name start coderef)"
590 (let* ((datum (or datum
(org-element-context)))
591 (type (org-element-type datum
))
592 (inline (eq type
'inline-src-block
)))
593 (when (memq type
'(inline-src-block src-block
))
594 (let* ((lang (org-element-property :language datum
))
595 (lang-headers (intern
596 (concat "org-babel-default-header-args:" lang
)))
597 (name (org-element-property :name datum
))
601 (org-babel--normalize-body datum
)
602 (apply #'org-babel-merge-params
603 (if inline org-babel-default-inline-header-args
604 org-babel-default-header-args
)
605 (and (boundp lang-headers
) (eval lang-headers t
))
607 ;; If DATUM is provided, make sure we get node
608 ;; properties applicable to its location within
610 (org-with-point-at (org-element-property :begin datum
)
611 (org-babel-params-from-properties lang
))
612 (mapcar #'org-babel-parse-header-arguments
613 (cons (org-element-property :parameters datum
)
614 (org-element-property :header datum
)))))
615 (or (org-element-property :switches datum
) "")
617 (org-element-property (if inline
:begin
:post-affiliated
)
619 (and (not inline
) (org-src-coderef-format datum
)))))
621 (setf (nth 2 info
) (org-babel-process-params (nth 2 info
))))
622 (setf (nth 2 info
) (org-babel-generate-file-param name
(nth 2 info
)))
626 (defun org-babel-execute-src-block (&optional arg info params
)
627 "Execute the current source code block.
628 Insert the results of execution into the buffer. Source code
629 execution and the collection and formatting of results can be
630 controlled through a variety of header arguments.
632 With prefix argument ARG, force re-execution even if an existing
633 result cached in the buffer would otherwise have been returned.
635 Optionally supply a value for INFO in the form returned by
636 `org-babel-get-src-block-info'.
638 Optionally supply a value for PARAMS which will be merged with
639 the header arguments specified at the front of the source code
642 (let* ((org-babel-current-src-block-location
643 (or org-babel-current-src-block-location
645 (org-babel-where-is-src-block-head)))
646 (info (if info
(copy-tree info
) (org-babel-get-src-block-info))))
647 ;; Merge PARAMS with INFO before considering source block
648 ;; evaluation since both could disagree.
649 (cl-callf org-babel-merge-params
(nth 2 info
) params
)
650 (when (org-babel-check-evaluate info
)
651 (cl-callf org-babel-process-params
(nth 2 info
))
652 (let* ((params (nth 2 info
))
653 (cache (let ((c (cdr (assq :cache params
))))
654 (and (not arg
) c
(string= "yes" c
))))
655 (new-hash (and cache
(org-babel-sha1-hash info
)))
656 (old-hash (and cache
(org-babel-current-result-hash)))
657 (current-cache (and new-hash
(equal new-hash old-hash
))))
660 (save-excursion ;Return cached result.
661 (goto-char (org-babel-where-is-src-block-result nil info
))
663 (skip-chars-forward " \t")
664 (let ((result (org-babel-read-result)))
665 (message (replace-regexp-in-string "%" "%%" (format "%S" result
)))
667 ((org-babel-confirm-evaluate info
)
668 (let* ((lang (nth 0 info
))
669 (result-params (cdr (assq :result-params params
)))
670 ;; Expand noweb references in BODY and remove any
673 (let ((coderef (nth 6 info
))
675 (if (org-babel-noweb-p params
:eval
)
676 (org-babel-expand-noweb-references info
)
678 (if (not coderef
) expand
679 (replace-regexp-in-string
680 (org-src-coderef-regexp coderef
) "" expand nil nil
1))))
681 (dir (cdr (assq :dir params
)))
683 (or (and dir
(file-name-as-directory (expand-file-name dir
)))
685 (cmd (intern (concat "org-babel-execute:" lang
)))
687 (unless (fboundp cmd
)
688 (error "No org-babel-execute function for %s!" lang
))
689 (message "executing %s code block%s..."
691 (let ((name (nth 4 info
)))
692 (if name
(format " (%s)" name
) "")))
693 (if (member "none" result-params
)
694 (progn (funcall cmd body params
)
695 (message "result silenced"))
697 (let ((r (funcall cmd body params
)))
698 (if (and (eq (cdr (assq :result-type params
)) 'value
)
699 (or (member "vector" result-params
)
700 (member "table" result-params
))
704 (let ((file (cdr (assq :file params
))))
705 ;; If non-empty result and :file then write to :file.
709 (insert (org-babel-format-result
710 result
(cdr (assq :sep params
))))))
712 ;; Possibly perform post process provided its
713 ;; appropriate. Dynamically bind "*this*" to the
714 ;; actual results of the block.
715 (let ((post (cdr (assq :post params
))))
717 (let ((*this
* (if (not file
) result
718 (org-babel-result-to-file
720 (let ((desc (assq :file-desc params
)))
721 (and desc
(or (cdr desc
) result
)))))))
722 (setq result
(org-babel-ref-resolve post
))
724 (setq result-params
(remove "file" result-params
))))))
725 (org-babel-insert-result
726 result result-params info new-hash lang
)))
727 (run-hooks 'org-babel-after-execute-hook
)
730 (defun org-babel-expand-body:generic
(body params
&optional var-lines
)
731 "Expand BODY with PARAMS.
732 Expand a block of code with org-babel according to its header
733 arguments. This generic implementation of body expansion is
734 called for languages which have not defined their own specific
735 org-babel-expand-body:lang function."
736 (let ((pro (cdr (assq :prologue params
)))
737 (epi (cdr (assq :epilogue params
))))
738 (mapconcat #'identity
739 (append (when pro
(list pro
))
742 (when epi
(list epi
)))
746 (defun org-babel-expand-src-block (&optional _arg info params
)
747 "Expand the current source code block.
748 Expand according to the source code block's header
749 arguments and pop open the results in a preview buffer."
751 (let* ((info (or info
(org-babel-get-src-block-info)))
753 (params (setf (nth 2 info
)
754 (sort (org-babel-merge-params (nth 2 info
) params
)
755 (lambda (el1 el2
) (string< (symbol-name (car el1
))
756 (symbol-name (car el2
)))))))
757 (body (setf (nth 1 info
)
758 (if (org-babel-noweb-p params
:eval
)
759 (org-babel-expand-noweb-references info
) (nth 1 info
))))
760 (expand-cmd (intern (concat "org-babel-expand-body:" lang
)))
761 (assignments-cmd (intern (concat "org-babel-variable-assignments:"
764 (if (fboundp expand-cmd
) (funcall expand-cmd body params
)
765 (org-babel-expand-body:generic
766 body params
(and (fboundp assignments-cmd
)
767 (funcall assignments-cmd params
))))))
768 (if (called-interactively-p 'any
)
770 expanded
(concat "*Org-Babel Preview " (buffer-name) "[ " lang
" ]*"))
773 (defun org-babel-edit-distance (s1 s2
)
774 "Return the edit (levenshtein) distance between strings S1 S2."
775 (let* ((l1 (length s1
))
777 (dist (vconcat (mapcar (lambda (_) (make-vector (1+ l2
) nil
))
778 (number-sequence 1 (1+ l1
)))))
779 (in (lambda (i j
) (aref (aref dist i
) j
))))
780 (setf (aref (aref dist
0) 0) 0)
781 (dolist (j (number-sequence 1 l2
))
782 (setf (aref (aref dist
0) j
) j
))
783 (dolist (i (number-sequence 1 l1
))
784 (setf (aref (aref dist i
) 0) i
)
785 (dolist (j (number-sequence 1 l2
))
786 (setf (aref (aref dist i
) j
)
788 (1+ (funcall in
(1- i
) j
))
789 (1+ (funcall in i
(1- j
)))
790 (+ (if (equal (aref s1
(1- i
)) (aref s2
(1- j
))) 0 1)
791 (funcall in
(1- i
) (1- j
)))))))
794 (defun org-babel-combine-header-arg-lists (original &rest others
)
795 "Combine a number of lists of header argument names and arguments."
796 (let ((results (copy-sequence original
)))
797 (dolist (new-list others
)
798 (dolist (arg-pair new-list
)
799 (let ((header (car arg-pair
)))
801 (cons arg-pair
(cl-remove-if
802 (lambda (pair) (equal header
(car pair
)))
807 (defun org-babel-check-src-block ()
808 "Check for misspelled header arguments in the current code block."
810 ;; TODO: report malformed code block
811 ;; TODO: report incompatible combinations of header arguments
812 ;; TODO: report uninitialized variables
813 (let ((too-close 2) ;; <- control closeness to report potential match
814 (names (mapcar #'symbol-name org-babel-header-arg-names
)))
815 (dolist (header (mapcar (lambda (arg) (substring (symbol-name (car arg
)) 1))
816 (and (org-babel-where-is-src-block-head)
817 (org-babel-parse-header-arguments
819 (match-string 4))))))
821 (when (and (not (string= header name
))
822 (<= (org-babel-edit-distance header name
) too-close
)
823 (not (member header names
)))
824 (error "Supplied header \"%S\" is suspiciously close to \"%S\""
826 (message "No suspicious header arguments found.")))
829 (defun org-babel-insert-header-arg (&optional header-arg value
)
830 "Insert a header argument selecting from lists of common args and values."
832 (let* ((info (org-babel-get-src-block-info 'light
))
835 (lang-headers (intern (concat "org-babel-header-args:" lang
)))
836 (headers (org-babel-combine-header-arg-lists
837 org-babel-common-header-args-w-values
838 (when (boundp lang-headers
) (eval lang-headers t
))))
839 (header-arg (or header-arg
843 (lambda (header-spec) (symbol-name (car header-spec
)))
845 (vals (cdr (assoc (intern header-arg
) headers
)))
849 (read-from-minibuffer "value: "))
853 (let ((arg (completing-read
856 (mapcar #'symbol-name group
)))))
857 (if (and arg
(not (string= "default" arg
)))
863 (goto-char (point-at-eol))
864 (unless (= (char-before (point)) ?\
) (insert " "))
865 (insert ":" header-arg
) (when value
(insert " " value
)))))
867 ;; Add support for completing-read insertion of header arguments after ":"
868 (defun org-babel-header-arg-expand ()
869 "Call `org-babel-enter-header-arg-w-completion' in appropriate contexts."
870 (when (and (equal (char-before) ?\
:) (org-babel-where-is-src-block-head))
871 (org-babel-enter-header-arg-w-completion (match-string 2))))
873 (defun org-babel-enter-header-arg-w-completion (&optional lang
)
874 "Insert header argument appropriate for LANG with completion."
875 (let* ((lang-headers-var (intern (concat "org-babel-header-args:" lang
)))
876 (lang-headers (when (boundp lang-headers-var
) (eval lang-headers-var t
)))
877 (headers-w-values (org-babel-combine-header-arg-lists
878 org-babel-common-header-args-w-values lang-headers
))
879 (headers (mapcar #'symbol-name
(mapcar #'car headers-w-values
)))
880 (header (org-completing-read "Header Arg: " headers
))
881 (args (cdr (assoc (intern header
) headers-w-values
)))
882 (arg (when (and args
(listp args
))
884 (format "%s: " header
)
885 (mapcar #'symbol-name
(apply #'append args
))))))
886 (insert (concat header
" " (or arg
"")))
889 (add-hook 'org-tab-first-hook
'org-babel-header-arg-expand
)
892 (defun org-babel-load-in-session (&optional _arg info
)
893 "Load the body of the current source-code block.
894 Evaluate the header arguments for the source block before
895 entering the session. After loading the body this pops open the
898 (let* ((info (or info
(org-babel-get-src-block-info)))
900 (params (nth 2 info
))
902 (user-error "No src code block at point")
904 (if (org-babel-noweb-p params
:eval
)
905 (org-babel-expand-noweb-references info
)
907 (session (cdr (assq :session params
)))
908 (dir (cdr (assq :dir params
)))
910 (or (and dir
(file-name-as-directory dir
)) default-directory
))
911 (cmd (intern (concat "org-babel-load-session:" lang
))))
912 (unless (fboundp cmd
)
913 (error "No org-babel-load-session function for %s!" lang
))
914 (pop-to-buffer (funcall cmd session body params
))
918 (defun org-babel-initiate-session (&optional arg info
)
919 "Initiate session for current code block.
920 If called with a prefix argument then resolve any variable
921 references in the header arguments and assign these variables in
922 the session. Copy the body of the code block to the kill ring."
924 (let* ((info (or info
(org-babel-get-src-block-info (not arg
))))
927 (params (nth 2 info
))
928 (session (cdr (assq :session params
)))
929 (dir (cdr (assq :dir params
)))
931 (or (and dir
(file-name-as-directory dir
)) default-directory
))
932 (init-cmd (intern (format "org-babel-%s-initiate-session" lang
)))
933 (prep-cmd (intern (concat "org-babel-prep-session:" lang
))))
934 (when (and (stringp session
) (string= session
"none"))
935 (error "This block is not using a session!"))
936 (unless (fboundp init-cmd
)
937 (error "No org-babel-initiate-session function for %s!" lang
))
938 (with-temp-buffer (insert (org-trim body
))
939 (copy-region-as-kill (point-min) (point-max)))
941 (unless (fboundp prep-cmd
)
942 (error "No org-babel-prep-session function for %s!" lang
))
943 (funcall prep-cmd session params
))
944 (funcall init-cmd session params
)))
947 (defun org-babel-switch-to-session (&optional arg info
)
948 "Switch to the session of the current code block.
949 Uses `org-babel-initiate-session' to start the session. If called
950 with a prefix argument then this is passed on to
951 `org-babel-initiate-session'."
953 (pop-to-buffer (org-babel-initiate-session arg info
))
956 (defalias 'org-babel-pop-to-session
'org-babel-switch-to-session
)
958 (defvar org-src-window-setup
)
961 (defun org-babel-switch-to-session-with-code (&optional arg _info
)
962 "Switch to code buffer and display session."
966 (let ((other-window-buffer (window-buffer (next-window))))
967 (set-window-buffer (next-window) (current-buffer))
968 (set-window-buffer (selected-window) other-window-buffer
))
970 (info (org-babel-get-src-block-info))
971 (org-src-window-setup 'reorganize-frame
))
973 (org-babel-switch-to-session arg info
))
975 (funcall swap-windows
)))
978 (defmacro org-babel-do-in-edit-buffer
(&rest body
)
979 "Evaluate BODY in edit buffer if there is a code block at point.
980 Return t if a code block was found at point, nil otherwise."
981 `(let ((org-src-window-setup 'switch-invisibly
))
982 (when (and (org-babel-where-is-src-block-head)
984 (unwind-protect (progn ,@body
)
987 (def-edebug-spec org-babel-do-in-edit-buffer
(body))
989 (defun org-babel-do-key-sequence-in-edit-buffer (key)
990 "Read key sequence and execute the command in edit buffer.
991 Enter a key sequence to be executed in the language major-mode
992 edit buffer. For example, TAB will alter the contents of the
993 Org code block according to the effect of TAB in the language
994 major mode buffer. For languages that support interactive
995 sessions, this can be used to send code from the Org buffer
996 to the session for evaluation using the native major mode
997 evaluation mechanisms."
998 (interactive "kEnter key-sequence to execute in edit buffer: ")
999 (org-babel-do-in-edit-buffer
1001 (key-binding (or key
(read-key-sequence nil
))))))
1003 (defvar org-bracket-link-regexp
)
1005 (defun org-babel-active-location-p ()
1006 (memq (org-element-type (save-match-data (org-element-context)))
1007 '(babel-call inline-babel-call inline-src-block src-block
)))
1010 (defun org-babel-open-src-block-result (&optional re-run
)
1011 "If `point' is on a src block then open the results of the
1012 source code block, otherwise return nil. With optional prefix
1013 argument RE-RUN the source-code block is evaluated even if
1014 results already exist."
1016 (let ((info (org-babel-get-src-block-info 'light
)))
1019 ;; go to the results, if there aren't any then run the block
1020 (goto-char (or (and (not re-run
) (org-babel-where-is-src-block-result))
1021 (progn (org-babel-execute-src-block)
1022 (org-babel-where-is-src-block-result))))
1024 (while (looking-at "[\n\r\t\f ]") (forward-char 1))
1026 (if (looking-at org-bracket-link-regexp
)
1029 (let ((r (org-babel-format-result
1030 (org-babel-read-result) (cdr (assq :sep
(nth 2 info
))))))
1031 (pop-to-buffer (get-buffer-create "*Org-Babel Results*"))
1032 (delete-region (point-min) (point-max))
1037 (defmacro org-babel-map-src-blocks
(file &rest body
)
1038 "Evaluate BODY forms on each source-block in FILE.
1039 If FILE is nil evaluate BODY forms on source blocks in current
1040 buffer. During evaluation of BODY the following local variables
1041 are set relative to the currently matched code block.
1043 full-block ------- string holding the entirety of the code block
1044 beg-block -------- point at the beginning of the code block
1045 end-block -------- point at the end of the matched code block
1046 lang ------------- string holding the language of the code block
1047 beg-lang --------- point at the beginning of the lang
1048 end-lang --------- point at the end of the lang
1049 switches --------- string holding the switches
1050 beg-switches ----- point at the beginning of the switches
1051 end-switches ----- point at the end of the switches
1052 header-args ------ string holding the header-args
1053 beg-header-args -- point at the beginning of the header-args
1054 end-header-args -- point at the end of the header-args
1055 body ------------- string holding the body of the code block
1056 beg-body --------- point at the beginning of the body
1057 end-body --------- point at the end of the body"
1058 (declare (indent 1))
1059 (let ((tempvar (make-symbol "file")))
1060 `(let* ((case-fold-search t
)
1062 (visited-p (or (null ,tempvar
)
1063 (get-file-buffer (expand-file-name ,tempvar
))))
1064 (point (point)) to-be-removed
)
1065 (save-window-excursion
1066 (when ,tempvar
(find-file ,tempvar
))
1067 (setq to-be-removed
(current-buffer))
1068 (goto-char (point-min))
1069 (while (re-search-forward org-babel-src-block-regexp nil t
)
1070 (when (org-babel-active-location-p)
1071 (goto-char (match-beginning 0))
1072 (let ((full-block (match-string 0))
1073 (beg-block (match-beginning 0))
1074 (end-block (match-end 0))
1075 (lang (match-string 2))
1076 (beg-lang (match-beginning 2))
1077 (end-lang (match-end 2))
1078 (switches (match-string 3))
1079 (beg-switches (match-beginning 3))
1080 (end-switches (match-end 3))
1081 (header-args (match-string 4))
1082 (beg-header-args (match-beginning 4))
1083 (end-header-args (match-end 4))
1084 (body (match-string 5))
1085 (beg-body (match-beginning 5))
1086 (end-body (match-end 5)))
1087 ;; Silence byte-compiler in case `body' doesn't use all
1089 (ignore full-block beg-block end-block lang
1090 beg-lang end-lang switches beg-switches
1091 end-switches header-args beg-header-args
1092 end-header-args body beg-body end-body
)
1094 (goto-char end-block
)))))
1095 (unless visited-p
(kill-buffer to-be-removed
))
1096 (goto-char point
))))
1097 (def-edebug-spec org-babel-map-src-blocks
(form body
))
1100 (defmacro org-babel-map-inline-src-blocks
(file &rest body
)
1101 "Evaluate BODY forms on each inline source block in FILE.
1102 If FILE is nil evaluate BODY forms on source blocks in current
1104 (declare (indent 1) (debug (form body
)))
1105 (org-with-gensyms (datum end point tempvar to-be-removed visitedp
)
1106 `(let* ((case-fold-search t
)
1108 (,visitedp
(or (null ,tempvar
)
1109 (get-file-buffer (expand-file-name ,tempvar
))))
1112 (save-window-excursion
1113 (when ,tempvar
(find-file ,tempvar
))
1114 (setq ,to-be-removed
(current-buffer))
1115 (goto-char (point-min))
1116 (while (re-search-forward "src_\\S-" nil t
)
1117 (let ((,datum
(save-match-data (org-element-context))))
1118 (when (eq (org-element-type ,datum
) 'inline-src-block
)
1119 (goto-char (match-beginning 0))
1120 (let ((,end
(copy-marker (org-element-property :end
,datum
))))
1123 (set-marker ,end nil
))))))
1124 (unless ,visitedp
(kill-buffer ,to-be-removed
))
1125 (goto-char ,point
))))
1128 (defmacro org-babel-map-call-lines
(file &rest body
)
1129 "Evaluate BODY forms on each call line in FILE.
1130 If FILE is nil evaluate BODY forms on source blocks in current
1132 (declare (indent 1) (debug (form body
)))
1133 (org-with-gensyms (datum end point tempvar to-be-removed visitedp
)
1134 `(let* ((case-fold-search t
)
1136 (,visitedp
(or (null ,tempvar
)
1137 (get-file-buffer (expand-file-name ,tempvar
))))
1140 (save-window-excursion
1141 (when ,tempvar
(find-file ,tempvar
))
1142 (setq ,to-be-removed
(current-buffer))
1143 (goto-char (point-min))
1144 (while (re-search-forward "call_\\S-\\|^[ \t]*#\\+CALL:" nil t
)
1145 (let ((,datum
(save-match-data (org-element-context))))
1146 (when (memq (org-element-type ,datum
)
1147 '(babel-call inline-babel-call
))
1148 (goto-char (match-beginning 0))
1149 (let ((,end
(copy-marker (org-element-property :end
,datum
))))
1152 (set-marker ,end nil
))))))
1153 (unless ,visitedp
(kill-buffer ,to-be-removed
))
1154 (goto-char ,point
))))
1157 (defmacro org-babel-map-executables
(file &rest body
)
1158 "Evaluate BODY forms on each active Babel code in FILE.
1159 If FILE is nil evaluate BODY forms on source blocks in current
1161 (declare (indent 1) (debug (form body
)))
1162 (org-with-gensyms (datum end point tempvar to-be-removed visitedp
)
1163 `(let* ((case-fold-search t
)
1165 (,visitedp
(or (null ,tempvar
)
1166 (get-file-buffer (expand-file-name ,tempvar
))))
1169 (save-window-excursion
1170 (when ,tempvar
(find-file ,tempvar
))
1171 (setq ,to-be-removed
(current-buffer))
1172 (goto-char (point-min))
1173 (while (re-search-forward
1174 "\\(call\\|src\\)_\\|^[ \t]*#\\+\\(BEGIN_SRC\\|CALL:\\)" nil t
)
1175 (let ((,datum
(save-match-data (org-element-context))))
1176 (when (memq (org-element-type ,datum
)
1177 '(babel-call inline-babel-call inline-src-block
1179 (goto-char (match-beginning 0))
1180 (let ((,end
(copy-marker (org-element-property :end
,datum
))))
1183 (set-marker ,end nil
))))))
1184 (unless ,visitedp
(kill-buffer ,to-be-removed
))
1185 (goto-char ,point
))))
1188 (defun org-babel-execute-buffer (&optional arg
)
1189 "Execute source code blocks in a buffer.
1190 Call `org-babel-execute-src-block' on every source block in
1191 the current buffer."
1193 (org-babel-eval-wipe-error-buffer)
1194 (org-save-outline-visibility t
1195 (org-babel-map-executables nil
1196 (if (memq (org-element-type (org-element-context))
1197 '(babel-call inline-babel-call
))
1198 (org-babel-lob-execute-maybe)
1199 (org-babel-execute-src-block arg
)))))
1202 (defun org-babel-execute-subtree (&optional arg
)
1203 "Execute source code blocks in a subtree.
1204 Call `org-babel-execute-src-block' on every source block in
1205 the current subtree."
1209 (org-narrow-to-subtree)
1210 (org-babel-execute-buffer arg
)
1214 (defun org-babel-sha1-hash (&optional info
)
1215 "Generate an sha1 hash based on the value of info."
1217 (let ((print-level nil
)
1218 (info (or info
(org-babel-get-src-block-info))))
1220 (sort (copy-sequence (nth 2 info
))
1221 (lambda (a b
) (string< (car a
) (car b
)))))
1222 (let* ((rm (lambda (lst)
1223 (dolist (p '("replace" "silent" "none"
1224 "append" "prepend"))
1225 (setq lst
(remove p lst
)))
1228 (let ((v (if (and (listp (cdr arg
)) (null (cddr arg
)))
1229 (copy-sequence (cdr arg
))
1231 (when (and v
(not (and (sequencep v
)
1235 ((and (listp v
) ; lists are sorted
1236 (member (car arg
) '(:result-params
)))
1237 (sort (funcall rm v
) #'string
<))
1238 ((and (stringp v
) ; strings are sorted
1239 (member (car arg
) '(:results
:exports
)))
1240 (mapconcat #'identity
(sort (funcall rm
(split-string v
))
1245 (params (nth 2 info
))
1246 (body (if (org-babel-noweb-p params
:eval
)
1247 (org-babel-expand-noweb-references info
) (nth 1 info
)))
1248 (expand-cmd (intern (concat "org-babel-expand-body:" lang
)))
1249 (assignments-cmd (intern (concat "org-babel-variable-assignments:"
1252 (if (fboundp expand-cmd
) (funcall expand-cmd body params
)
1253 (org-babel-expand-body:generic
1254 body params
(and (fboundp assignments-cmd
)
1255 (funcall assignments-cmd params
))))))
1256 (let* ((it (format "%s-%s"
1259 (delq nil
(mapcar (lambda (arg)
1260 (let ((normalized (funcall norm arg
)))
1262 (format "%S" normalized
))))
1266 (when (called-interactively-p 'interactive
) (message hash
))
1269 (defun org-babel-current-result-hash (&optional info
)
1270 "Return the current in-buffer hash."
1271 (let ((result (org-babel-where-is-src-block-result nil info
)))
1273 (org-with-wide-buffer
1275 (looking-at org-babel-result-regexp
)
1276 (match-string-no-properties 1)))))
1278 (defun org-babel-set-current-result-hash (hash info
)
1279 "Set the current in-buffer hash to HASH."
1280 (org-with-wide-buffer
1281 (goto-char (org-babel-where-is-src-block-result nil info
))
1282 (looking-at org-babel-result-regexp
)
1283 (goto-char (match-beginning 1))
1284 (mapc #'delete-overlay
(overlays-at (point)))
1285 (forward-char org-babel-hash-show
)
1286 (mapc #'delete-overlay
(overlays-at (point)))
1287 (replace-match hash nil nil nil
1)
1289 (org-babel-hide-hash)))
1291 (defun org-babel-hide-hash ()
1292 "Hide the hash in the current results line.
1293 Only the initial `org-babel-hash-show' characters of the hash
1294 will remain visible."
1295 (add-to-invisibility-spec '(org-babel-hide-hash . t
))
1297 (when (and (re-search-forward org-babel-result-regexp nil t
)
1299 (let* ((start (match-beginning 1))
1300 (hide-start (+ org-babel-hash-show start
))
1302 (hash (match-string 1))
1304 (setq ov1
(make-overlay start hide-start
))
1305 (setq ov2
(make-overlay hide-start end
))
1306 (overlay-put ov2
'invisible
'org-babel-hide-hash
)
1307 (overlay-put ov1
'babel-hash hash
)))))
1309 (defun org-babel-hide-all-hashes ()
1310 "Hide the hash in the current buffer.
1311 Only the initial `org-babel-hash-show' characters of each hash
1312 will remain visible. This function should be called as part of
1313 the `org-mode-hook'."
1315 (while (and (not org-babel-hash-show-time
)
1316 (re-search-forward org-babel-result-regexp nil t
))
1317 (goto-char (match-beginning 0))
1318 (org-babel-hide-hash)
1319 (goto-char (match-end 0)))))
1320 (add-hook 'org-mode-hook
'org-babel-hide-all-hashes
)
1322 (defun org-babel-hash-at-point (&optional point
)
1323 "Return the value of the hash at POINT.
1325 The hash is also added as the last element of the kill ring.
1326 This can be called with `\\[org-ctrl-c-ctrl-c]'."
1328 (let ((hash (car (delq nil
(mapcar
1329 (lambda (ol) (overlay-get ol
'babel-hash
))
1330 (overlays-at (or point
(point))))))))
1331 (when hash
(kill-new hash
) (message hash
))))
1332 (add-hook 'org-ctrl-c-ctrl-c-hook
'org-babel-hash-at-point
)
1334 (defun org-babel-result-hide-spec ()
1335 "Hide portions of results lines.
1336 Add `org-babel-hide-result' as an invisibility spec for hiding
1337 portions of results lines."
1338 (add-to-invisibility-spec '(org-babel-hide-result . t
)))
1339 (add-hook 'org-mode-hook
'org-babel-result-hide-spec
)
1341 (defvar org-babel-hide-result-overlays nil
1342 "Overlays hiding results.")
1344 (defun org-babel-result-hide-all ()
1345 "Fold all results in the current buffer."
1347 (org-babel-show-result-all)
1349 (while (re-search-forward org-babel-result-regexp nil t
)
1350 (save-excursion (goto-char (match-beginning 0))
1351 (org-babel-hide-result-toggle-maybe)))))
1353 (defun org-babel-show-result-all ()
1354 "Unfold all results in the current buffer."
1355 (mapc 'delete-overlay org-babel-hide-result-overlays
)
1356 (setq org-babel-hide-result-overlays nil
))
1359 (defun org-babel-hide-result-toggle-maybe ()
1360 "Toggle visibility of result at point."
1362 (let ((case-fold-search t
))
1364 (beginning-of-line 1)
1365 (looking-at org-babel-result-regexp
))
1366 (progn (org-babel-hide-result-toggle)
1367 t
) ;; to signal that we took action
1368 nil
))) ;; to signal that we did not
1370 (defun org-babel-hide-result-toggle (&optional force
)
1371 "Toggle the visibility of the current result."
1375 (if (re-search-forward org-babel-result-regexp nil t
)
1376 (let ((start (progn (beginning-of-line 2) (- (point) 1)))
1378 (while (looking-at org-babel-multi-line-header-regexp
)
1380 (goto-char (- (org-babel-result-end) 1)) (point)))
1382 (if (memq t
(mapcar (lambda (overlay)
1383 (eq (overlay-get overlay
'invisible
)
1384 'org-babel-hide-result
))
1385 (overlays-at start
)))
1386 (when (or (not force
) (eq force
'off
))
1388 (when (member ov org-babel-hide-result-overlays
)
1389 (setq org-babel-hide-result-overlays
1390 (delq ov org-babel-hide-result-overlays
)))
1391 (when (eq (overlay-get ov
'invisible
)
1392 'org-babel-hide-result
)
1393 (delete-overlay ov
)))
1394 (overlays-at start
)))
1395 (setq ov
(make-overlay start end
))
1396 (overlay-put ov
'invisible
'org-babel-hide-result
)
1397 ;; make the block accessible to isearch
1399 ov
'isearch-open-invisible
1401 (when (member ov org-babel-hide-result-overlays
)
1402 (setq org-babel-hide-result-overlays
1403 (delq ov org-babel-hide-result-overlays
)))
1404 (when (eq (overlay-get ov
'invisible
)
1405 'org-babel-hide-result
)
1406 (delete-overlay ov
))))
1407 (push ov org-babel-hide-result-overlays
)))
1408 (error "Not looking at a result line"))))
1410 ;; org-tab-after-check-for-cycling-hook
1411 (add-hook 'org-tab-first-hook
'org-babel-hide-result-toggle-maybe
)
1412 ;; Remove overlays when changing major mode
1413 (add-hook 'org-mode-hook
1414 (lambda () (add-hook 'change-major-mode-hook
1415 'org-babel-show-result-all
'append
'local
)))
1417 (defvar org-file-properties
)
1418 (defun org-babel-params-from-properties (&optional lang
)
1419 "Retrieve parameters specified as properties.
1420 Return a list of association lists of source block params
1421 specified in the properties of the current outline entry."
1424 ;; header arguments specified with the header-args property at
1426 (org-babel-parse-header-arguments
1427 (org-entry-get org-babel-current-src-block-location
1430 (and lang
; language-specific header arguments at point of call
1431 (org-babel-parse-header-arguments
1432 (org-entry-get org-babel-current-src-block-location
1433 (concat "header-args:" lang
)
1436 (defun org-babel-balanced-split (string alts
)
1437 "Split STRING on instances of ALTS.
1438 ALTS is a cons of two character options where each option may be
1439 either the numeric code of a single character or a list of
1440 character alternatives. For example to split on balanced
1441 instances of \"[ \t]:\" set ALTS to ((32 9) . 58)."
1442 (let* ((matches (lambda (ch spec
) (if (listp spec
) (member ch spec
) (equal spec ch
))))
1443 (matched (lambda (ch last
)
1445 (and (funcall matches ch
(cdr alts
))
1446 (funcall matches last
(car alts
)))
1447 (funcall matches ch alts
))))
1448 (balance 0) (last 0)
1450 (mapc (lambda (ch) ; split on [], (), "" balanced instances of [ \t]:
1451 (setq balance
(+ balance
1452 (cond ((or (equal 91 ch
) (equal 40 ch
)) 1)
1453 ((or (equal 93 ch
) (equal 41 ch
)) -
1)
1455 (when (and (equal 34 ch
) (not (equal 92 last
)))
1456 (setq quote
(not quote
)))
1457 (setq partial
(cons ch partial
))
1458 (when (and (= balance
0) (not quote
) (funcall matched ch last
))
1459 (setq lst
(cons (apply #'string
(nreverse
1466 (string-to-list string
))
1467 (nreverse (cons (apply #'string
(nreverse partial
)) lst
))))
1469 (defun org-babel-join-splits-near-ch (ch list
)
1470 "Join splits where \"=\" is on either end of the split."
1471 (let ((last= (lambda (str) (= ch
(aref str
(1- (length str
))))))
1472 (first= (lambda (str) (= ch
(aref str
0)))))
1474 (cl-reduce (lambda (acc el
)
1475 (let ((head (car acc
)))
1476 (if (and head
(or (funcall last
= head
) (funcall first
= el
)))
1477 (cons (concat head el
) (cdr acc
))
1479 list
:initial-value nil
))))
1481 (defun org-babel-parse-header-arguments (arg-string)
1482 "Parse a string of header arguments returning an alist."
1483 (when (> (length arg-string
) 0)
1484 (org-babel-parse-multiple-vars
1489 "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)"
1491 (cons (intern (match-string 1 arg
))
1492 (org-babel-read (org-babel-chomp (match-string 2 arg
))))
1493 (cons (intern (org-babel-chomp arg
)) nil
)))
1494 (let ((raw (org-babel-balanced-split arg-string
'((32 9) .
58))))
1495 (cons (car raw
) (mapcar (lambda (r) (concat ":" r
)) (cdr raw
)))))))))
1497 (defun org-babel-parse-multiple-vars (header-arguments)
1498 "Expand multiple variable assignments behind a single :var keyword.
1500 This allows expression of multiple variables with one :var as
1503 #+PROPERTY: var foo=1, bar=2"
1505 (mapc (lambda (pair)
1506 (if (eq (car pair
) :var
)
1507 (mapcar (lambda (v) (push (cons :var
(org-trim v
)) results
))
1508 (org-babel-join-splits-near-ch
1509 61 (org-babel-balanced-split (cdr pair
) 32)))
1510 (push pair results
)))
1512 (nreverse results
)))
1514 (defun org-babel-process-params (params)
1515 "Expand variables in PARAMS and add summary parameters."
1516 (let* ((processed-vars (mapcar (lambda (el)
1519 (org-babel-ref-parse el
)))
1520 (org-babel--get-vars params
)))
1521 (vars-and-names (if (and (assq :colname-names params
)
1522 (assq :rowname-names params
))
1523 (list processed-vars
)
1524 (org-babel-disassemble-tables
1526 (cdr (assq :hlines params
))
1527 (cdr (assq :colnames params
))
1528 (cdr (assq :rownames params
)))))
1529 (raw-result (or (cdr (assq :results params
)) ""))
1530 (result-params (delete-dups
1532 (split-string (if (stringp raw-result
)
1534 (eval raw-result t
)))
1535 (cdr (assq :result-params params
))))))
1537 (mapcar (lambda (var) (cons :var var
)) (car vars-and-names
))
1539 (cons :colname-names
(or (cdr (assq :colname-names params
))
1540 (cadr vars-and-names
)))
1541 (cons :rowname-names
(or (cdr (assq :rowname-names params
))
1542 (cl-caddr vars-and-names
)))
1543 (cons :result-params result-params
)
1544 (cons :result-type
(cond ((member "output" result-params
) 'output
)
1545 ((member "value" result-params
) 'value
)
1548 (lambda (x) (memq (car x
) '(:colname-names
:rowname-names
:result-params
1549 :result-type
:var
)))
1552 ;; row and column names
1553 (defun org-babel-del-hlines (table)
1554 "Remove all `hline's from TABLE."
1555 (remq 'hline table
))
1557 (defun org-babel-get-colnames (table)
1558 "Return the column names of TABLE.
1559 Return a cons cell, the `car' of which contains the TABLE less
1560 colnames, and the `cdr' of which contains a list of the column
1562 (if (eq 'hline
(nth 1 table
))
1563 (cons (cddr table
) (car table
))
1564 (cons (cdr table
) (car table
))))
1566 (defun org-babel-get-rownames (table)
1567 "Return the row names of TABLE.
1568 Return a cons cell, the `car' of which contains the TABLE less
1569 rownames, and the `cdr' of which contains a list of the rownames.
1570 Note: this function removes any hlines in TABLE."
1571 (let* ((table (org-babel-del-hlines table
))
1572 (rownames (funcall (lambda ()
1578 (setq tp
(cdr tp
))))
1580 (cons table rownames
)))
1582 (defun org-babel-put-colnames (table colnames
)
1583 "Add COLNAMES to TABLE if they exist."
1584 (if colnames
(apply 'list colnames
'hline table
) table
))
1586 (defun org-babel-put-rownames (table rownames
)
1587 "Add ROWNAMES to TABLE if they exist."
1589 (mapcar (lambda (row)
1591 (cons (or (pop rownames
) "") row
)
1595 (defun org-babel-pick-name (names selector
)
1596 "Select one out of an alist of row or column names.
1597 SELECTOR can be either a list of names in which case those names
1598 will be returned directly, or an index into the list NAMES in
1599 which case the indexed names will be return."
1600 (if (listp selector
)
1603 (if (and selector
(symbolp selector
) (not (equal t selector
)))
1604 (cdr (assoc selector names
))
1605 (if (integerp selector
)
1606 (nth (- selector
1) names
)
1607 (cdr (car (last names
))))))))
1609 (defun org-babel-disassemble-tables (vars hlines colnames rownames
)
1610 "Parse tables for further processing.
1611 Process the variables in VARS according to the HLINES,
1612 ROWNAMES and COLNAMES header arguments. Return a list consisting
1613 of the vars, cnames and rnames."
1614 (let (cnames rnames
)
1618 (when (listp (cdr var
))
1619 (when (and (not (equal colnames
"no"))
1620 (or colnames
(and (eq (nth 1 (cdr var
)) 'hline
)
1621 (not (member 'hline
(cddr (cdr var
)))))))
1622 (let ((both (org-babel-get-colnames (cdr var
))))
1623 (setq cnames
(cons (cons (car var
) (cdr both
))
1625 (setq var
(cons (car var
) (car both
)))))
1626 (when (and rownames
(not (equal rownames
"no")))
1627 (let ((both (org-babel-get-rownames (cdr var
))))
1628 (setq rnames
(cons (cons (car var
) (cdr both
))
1630 (setq var
(cons (car var
) (car both
)))))
1631 (when (and hlines
(not (equal hlines
"yes")))
1632 (setq var
(cons (car var
) (org-babel-del-hlines (cdr var
))))))
1635 (reverse cnames
) (reverse rnames
))))
1637 (defun org-babel-reassemble-table (table colnames rownames
)
1638 "Add column and row names to a table.
1639 Given a TABLE and set of COLNAMES and ROWNAMES add the names
1640 to the table for reinsertion to org-mode."
1642 (let ((table (if (and rownames
(= (length table
) (length rownames
)))
1643 (org-babel-put-rownames table rownames
) table
)))
1644 (if (and colnames
(listp (car table
)) (= (length (car table
))
1646 (org-babel-put-colnames table colnames
) table
))
1649 (defun org-babel-where-is-src-block-head (&optional src-block
)
1650 "Find where the current source block begins.
1652 If optional argument SRC-BLOCK is `src-block' type element, find
1653 its current beginning instead.
1655 Return the point at the beginning of the current source block.
1656 Specifically at the beginning of the #+BEGIN_SRC line. Also set
1657 match-data relatively to `org-babel-src-block-regexp', which see.
1658 If the point is not on a source block then return nil."
1659 (let ((element (or src-block
(org-element-at-point))))
1660 (when (eq (org-element-type element
) 'src-block
)
1661 (let ((end (org-element-property :end element
)))
1662 (org-with-wide-buffer
1663 ;; Ensure point is not on a blank line after the block.
1665 (skip-chars-forward " \r\t\n" end
)
1666 (when (< (point) end
)
1667 (prog1 (goto-char (org-element-property :post-affiliated element
))
1668 (looking-at org-babel-src-block-regexp
))))))))
1671 (defun org-babel-goto-src-block-head ()
1672 "Go to the beginning of the current code block."
1674 (let ((head (org-babel-where-is-src-block-head)))
1675 (if head
(goto-char head
) (error "Not currently in a code block"))))
1678 (defun org-babel-goto-named-src-block (name)
1679 "Go to a named source-code block."
1681 (let ((completion-ignore-case t
)
1682 (case-fold-search t
)
1683 (all-block-names (org-babel-src-block-names)))
1684 (list (completing-read
1685 "source-block name: " all-block-names nil t
1686 (let* ((context (org-element-context))
1687 (type (org-element-type context
))
1689 (and (memq type
'(inline-src-block src-block
))
1690 (org-in-regexp (org-babel-noweb-wrap)))))
1694 (+ (car noweb-ref
) (length org-babel-noweb-wrap-start
))
1695 (- (cdr noweb-ref
) (length org-babel-noweb-wrap-end
))))
1696 ((memq type
'(babel-call inline-babel-call
)) ;#+CALL:
1697 (org-element-property :call context
))
1698 ((car (org-element-property :results context
))) ;#+RESULTS:
1699 ((let ((symbol (thing-at-point 'symbol
))) ;Symbol.
1701 (member-ignore-case symbol all-block-names
)
1704 (let ((point (org-babel-find-named-block name
)))
1706 ;; Taken from `org-open-at-point'.
1707 (progn (org-mark-ring-push) (goto-char point
) (org-show-context))
1708 (message "source-code block `%s' not found in this buffer" name
))))
1710 (defun org-babel-find-named-block (name)
1711 "Find a named source-code block.
1712 Return the location of the source block identified by source
1713 NAME, or nil if no such block exists. Set match data according
1714 to `org-babel-named-src-block-regexp'."
1716 (goto-char (point-min))
1718 (org-next-block 1 nil
(org-babel-named-src-block-regexp-for-name name
)))))
1720 (defun org-babel-src-block-names (&optional file
)
1721 "Returns the names of source blocks in FILE or the current buffer."
1722 (when file
(find-file file
))
1724 (goto-char (point-min))
1725 (let ((re (org-babel-named-src-block-regexp-for-name))
1727 (while (ignore-errors (org-next-block 1 nil re
))
1728 (push (match-string-no-properties 9) names
))
1732 (defun org-babel-goto-named-result (name)
1733 "Go to a named result."
1735 (let ((completion-ignore-case t
))
1736 (list (completing-read "Source-block name: "
1737 (org-babel-result-names) nil t
))))
1738 (let ((point (org-babel-find-named-result name
)))
1740 ;; taken from `org-open-at-point'
1741 (progn (goto-char point
) (org-show-context))
1742 (message "result `%s' not found in this buffer" name
))))
1744 (defun org-babel-find-named-result (name)
1745 "Find a named result.
1746 Return the location of the result named NAME in the current
1747 buffer or nil if no such result exists."
1749 (goto-char (point-min))
1750 (let ((case-fold-search t
)
1751 (re (format "^[ \t]*#\\+%s.*?:[ \t]*%s[ \t]*$"
1752 org-babel-results-keyword
1753 (regexp-quote name
))))
1755 (while (re-search-forward re nil t
)
1756 (let ((element (org-element-at-point)))
1757 (when (or (eq (org-element-type element
) 'keyword
)
1759 (org-element-property :post-affiliated element
)))
1760 (throw :found
(line-beginning-position)))))))))
1762 (defun org-babel-result-names (&optional file
)
1763 "Returns the names of results in FILE or the current buffer."
1765 (when file
(find-file file
)) (goto-char (point-min))
1766 (let ((case-fold-search t
) names
)
1767 (while (re-search-forward org-babel-result-w-name-regexp nil t
)
1768 (setq names
(cons (match-string-no-properties 9) names
)))
1772 (defun org-babel-next-src-block (&optional arg
)
1773 "Jump to the next source block.
1774 With optional prefix argument ARG, jump forward ARG many source blocks."
1776 (org-next-block arg nil org-babel-src-block-regexp
))
1779 (defun org-babel-previous-src-block (&optional arg
)
1780 "Jump to the previous source block.
1781 With optional prefix argument ARG, jump backward ARG many source blocks."
1783 (org-previous-block arg org-babel-src-block-regexp
))
1785 (defvar org-babel-load-languages
)
1788 (defun org-babel-mark-block ()
1789 "Mark current src block."
1791 (let ((head (org-babel-where-is-src-block-head)))
1795 (looking-at org-babel-src-block-regexp
))
1796 (push-mark (match-end 5) nil t
)
1797 (goto-char (match-beginning 5)))))
1799 (defun org-babel-demarcate-block (&optional arg
)
1800 "Wrap or split the code in the region or on the point.
1801 When called from inside of a code block the current block is
1802 split. When called from outside of a code block a new code block
1803 is created. In both cases if the region is demarcated and if the
1804 region is not active then the point is demarcated."
1806 (let* ((info (org-babel-get-src-block-info 'light
))
1807 (start (org-babel-where-is-src-block-head))
1808 (block (and start
(match-string 0)))
1809 (headers (and start
(match-string 4)))
1810 (stars (concat (make-string (or (org-current-level) 1) ?
*) " "))
1811 (lower-case-p (and block
1812 (let (case-fold-search)
1813 (string-match-p "#\\+begin_src" block
)))))
1819 (let ((lang (nth 0 info
))
1820 (indent (make-string (org-get-indentation) ?\s
)))
1821 (when (string-match "^[[:space:]]*$"
1822 (buffer-substring (point-at-bol)
1824 (delete-region (point-at-bol) (point-at-eol)))
1826 (if (looking-at "^") "" "\n")
1827 indent
(funcall (if lower-case-p
'downcase
'upcase
) "#+end_src\n")
1828 (if arg stars indent
) "\n"
1829 indent
(funcall (if lower-case-p
'downcase
'upcase
) "#+begin_src ")
1831 (if (> (length headers
) 1)
1832 (concat " " headers
) headers
)
1833 (if (looking-at "[\n\r]")
1835 (concat "\n" (make-string (current-column) ?
)))))))
1836 (move-end-of-line 2))
1837 (sort (if (org-region-active-p) (list (mark) (point)) (list (point))) #'>))
1838 (let ((start (point))
1839 (lang (completing-read
1841 (mapcar #'symbol-name
1843 (append (mapcar #'car org-babel-load-languages
)
1844 (mapcar (lambda (el) (intern (car el
)))
1845 org-src-lang-modes
))))))
1846 (body (delete-and-extract-region
1847 (if (org-region-active-p) (mark) (point)) (point))))
1848 (insert (concat (if (looking-at "^") "" "\n")
1849 (if arg
(concat stars
"\n") "")
1850 (funcall (if lower-case-p
'downcase
'upcase
) "#+begin_src ")
1853 (if (or (= (length body
) 0)
1854 (string-suffix-p "\r" body
)
1855 (string-suffix-p "\n" body
)) "" "\n")
1856 (funcall (if lower-case-p
'downcase
'upcase
) "#+end_src\n")))
1857 (goto-char start
) (move-end-of-line 1)))))
1859 (defun org-babel--insert-results-keyword (name hash
)
1860 "Insert RESULTS keyword with NAME value at point.
1861 If NAME is nil, results are anonymous. HASH is a string used as
1862 the results hash, or nil. Leave point before the keyword."
1863 (save-excursion (insert "\n")) ;open line to indent.
1866 (insert (concat "#+" org-babel-results-keyword
1867 (cond ((not hash
) nil
)
1868 (org-babel-hash-show-time
1870 (format-time-string "<%F %T>")
1872 (t (format "[%s]" hash
)))
1874 (when name
(concat " " name
))
1876 ;; Make sure results are going to be followed by at least one blank
1877 ;; line so they do not get merged with the next element, e.g.,
1882 ;; : fixed-width area, unrelated to the above.
1883 (unless (looking-at "^[ \t]*$") (save-excursion (insert "\n")))
1884 (beginning-of-line 0)
1885 (when hash
(org-babel-hide-hash)))
1887 (defun org-babel--clear-results-maybe (hash)
1888 "Clear results when hash doesn't match HASH.
1890 When results hash does not match HASH, remove RESULTS keyword at
1891 point, along with related contents. Do nothing if HASH is nil.
1893 Return a non-nil value if results were cleared. In this case,
1894 leave point where new results should be inserted."
1896 (looking-at org-babel-result-regexp
)
1897 (unless (string= (match-string 1) hash
)
1898 (let* ((e (org-element-at-point))
1899 (post (copy-marker (org-element-property :post-affiliated e
))))
1903 (goto-char (org-element-property :end e
))
1904 (skip-chars-backward " \t\n")
1905 (line-beginning-position 2)))
1906 ;; Delete RESULT keyword. However, if RESULTS keyword is
1907 ;; orphaned, ignore this part. The deletion above already
1909 (unless (= (point) post
)
1910 (delete-region (line-beginning-position)
1911 (line-beginning-position 2)))
1913 (set-marker post nil
)
1916 (defun org-babel-where-is-src-block-result (&optional insert _info hash
)
1917 "Find where the current source block results begin.
1919 Return the point at the beginning of the result of the current
1920 source block, specifically at the beginning of the results line.
1922 If no result exists for this block return nil, unless optional
1923 argument INSERT is non-nil. In this case, create a results line
1924 following the source block and return the position at its
1925 beginning. In the case of inline code, remove the results part
1928 If optional argument HASH is a string, remove contents related to
1929 RESULTS keyword if its hash is different. Then update the latter
1931 (let ((context (org-element-context)))
1933 (org-with-wide-buffer
1934 (pcase (org-element-type context
)
1935 ((or `inline-babel-call
`inline-src-block
)
1936 ;; Results for inline objects are located right after them.
1937 ;; There is no RESULTS line to insert either.
1938 (let ((limit (org-element-property
1939 :contents-end
(org-element-property :parent context
))))
1940 (goto-char (org-element-property :end context
))
1941 (skip-chars-forward " \t\n" limit
)
1945 (let ((result (org-element-context)))
1946 (and (eq (org-element-type result
) 'macro
)
1947 (string= (org-element-property :key result
)
1949 (if (not insert
) (point)
1953 (goto-char (org-element-property :end result
))
1954 (skip-chars-backward " \t")
1957 ((or `babel-call
`src-block
)
1958 (let* ((name (org-element-property :name context
))
1959 (named-results (and name
(org-babel-find-named-result name
))))
1960 (goto-char (or named-results
(org-element-property :end context
)))
1962 ;; Existing results named after the current source.
1964 (when (org-babel--clear-results-maybe hash
)
1965 (org-babel--insert-results-keyword name hash
))
1966 (throw :found
(point)))
1967 ;; Named results expect but none to be found.
1969 ;; No possible anonymous results at the very end of
1970 ;; buffer or outside CONTEXT parent.
1972 (or (org-element-property
1973 :contents-end
(org-element-property :parent context
))
1975 ;; Check if next element is an anonymous result below
1976 ;; the current block.
1977 ((let* ((next (org-element-at-point))
1978 (end (save-excursion
1980 (org-element-property :post-affiliated next
))
1981 (line-end-position)))
1982 (empty-result-re (concat org-babel-result-regexp
"$"))
1983 (case-fold-search t
))
1984 (re-search-forward empty-result-re end t
))
1986 (when (org-babel--clear-results-maybe hash
)
1987 (org-babel--insert-results-keyword nil hash
))
1988 (throw :found
(point))))))
1989 ;; Ignore other elements.
1990 (_ (throw :found nil
))))
1991 ;; No result found. Insert a RESULTS keyword below element, if
1992 ;; appropriate. In this case, ensure there is an empty line
1993 ;; after the previous element.
1996 (goto-char (min (org-element-property :end context
) (point-max)))
1997 (skip-chars-backward " \t\n")
1999 (unless (bolp) (insert "\n"))
2001 (org-babel--insert-results-keyword
2002 (org-element-property :name context
) hash
)
2005 (defun org-babel-read-element (element)
2006 "Read ELEMENT into emacs-lisp.
2007 Return nil if ELEMENT cannot be read."
2008 (org-with-wide-buffer
2009 (goto-char (org-element-property :post-affiliated element
))
2010 (pcase (org-element-type element
)
2012 (let ((v (org-trim (org-element-property :value element
))))
2013 (or (org-babel--string-to-number v
) v
)))
2014 (`table
(org-babel-read-table))
2015 (`plain-list
(org-babel-read-list))
2017 (let ((v (org-element-property :value element
)))
2018 (if (or org-src-preserve-indentation
2019 (org-element-property :preserve-indent element
))
2021 (org-remove-indentation v
))))
2023 (org-remove-indentation (org-element-property :value element
)))
2025 ;; Treat paragraphs containing a single link specially.
2026 (skip-chars-forward " \t")
2027 (if (and (looking-at org-bracket-link-regexp
)
2029 (goto-char (match-end 0))
2030 (skip-chars-forward " \r\t\n")
2031 (<= (org-element-property :end element
)
2033 (org-babel-read-link)
2034 (buffer-substring-no-properties
2035 (org-element-property :contents-begin element
)
2036 (org-element-property :contents-end element
))))
2037 ((or `center-block
`quote-block
`verse-block
`special-block
)
2038 (org-remove-indentation
2039 (buffer-substring-no-properties
2040 (org-element-property :contents-begin element
)
2041 (org-element-property :contents-end element
))))
2044 (defun org-babel-read-result ()
2045 "Read the result at point into emacs-lisp."
2046 (and (not (save-excursion
2048 (looking-at-p "[ \t]*$")))
2049 (org-babel-read-element (org-element-at-point))))
2051 (defun org-babel-read-table ()
2052 "Read the table at point into emacs-lisp."
2053 (mapcar (lambda (row)
2054 (if (and (symbolp row
) (equal row
'hline
)) row
2055 (mapcar (lambda (el) (org-babel-read el
'inhibit-lisp-eval
)) row
)))
2056 (org-table-to-lisp)))
2058 (defun org-babel-read-list ()
2059 "Read the list at point into emacs-lisp."
2060 (mapcar (lambda (el) (org-babel-read el
'inhibit-lisp-eval
))
2061 (cdr (org-list-to-lisp))))
2063 (defvar org-link-types-re
)
2064 (defun org-babel-read-link ()
2065 "Read the link at point into emacs-lisp.
2066 If the path of the link is a file path it is expanded using
2067 `expand-file-name'."
2068 (let* ((case-fold-search t
)
2069 (raw (and (looking-at org-bracket-link-regexp
)
2070 (org-no-properties (match-string 1))))
2071 (type (and (string-match org-link-types-re raw
)
2072 (match-string 1 raw
))))
2074 ((not type
) (expand-file-name raw
))
2075 ((string= type
"file")
2076 (and (string-match "file\\(.*\\):\\(.+\\)" raw
)
2077 (expand-file-name (match-string 2 raw
))))
2080 (defun org-babel-format-result (result &optional sep
)
2081 "Format RESULT for writing to file."
2082 (let ((echo-res (lambda (r) (if (stringp r
) r
(format "%S" r
)))))
2086 result
(list :sep
(or sep
"\t") :fmt echo-res
))
2088 (funcall echo-res result
))))
2090 (defun org-babel-insert-result (result &optional result-params info hash lang
)
2091 "Insert RESULT into the current buffer.
2093 By default RESULT is inserted after the end of the current source
2094 block. The RESULT of an inline source block usually will be
2095 wrapped inside a `results' macro and placed on the same line as
2096 the inline source block. The macro is stripped upon export.
2097 Multiline and non-scalar RESULTS from inline source blocks are
2098 not allowed. With optional argument RESULT-PARAMS controls
2099 insertion of results in the Org mode file. RESULT-PARAMS can
2100 take the following values:
2102 replace - (default option) insert results after the source block
2103 or inline source block replacing any previously
2106 silent -- no results are inserted into the Org buffer but
2107 the results are echoed to the minibuffer and are
2108 ingested by Emacs (a potentially time consuming
2111 file ---- the results are interpreted as a file path, and are
2112 inserted into the buffer using the Org file syntax.
2114 list ---- the results are interpreted as an Org list.
2116 raw ----- results are added directly to the Org file. This is
2117 a good option if you code block will output Org
2120 drawer -- results are added directly to the Org file as with
2121 \"raw\", but are wrapped in a RESULTS drawer or results
2122 macro, allowing them to later be replaced or removed
2125 org ----- results are added inside of a \"src_org{}\" or \"#+BEGIN_SRC
2126 org\" block depending on whether the current source block is
2127 inline or not. They are not comma-escaped when inserted,
2128 but Org syntax here will be discarded when exporting the
2131 html ---- results are added inside of a #+BEGIN_EXPORT HTML block
2132 or html export snippet depending on whether the current
2133 source block is inline or not. This is a good option
2134 if your code block will output html formatted text.
2136 latex --- results are added inside of a #+BEGIN_EXPORT LATEX
2137 block or latex export snippet depending on whether the
2138 current source block is inline or not. This is a good
2139 option if your code block will output latex formatted
2142 code ---- the results are extracted in the syntax of the source
2143 code of the language being evaluated and are added
2144 inside of a source block with the source-code language
2145 set appropriately. Also, source block inlining is
2146 preserved in this case. Note this relies on the
2147 optional LANG argument.
2149 list ---- the results are rendered as a list. This option not
2150 allowed for inline src blocks.
2152 table --- the results are rendered as a table. This option not
2153 allowed for inline src blocks.
2155 INFO may provide the values of these header arguments (in the
2156 `header-arguments-alist' see the docstring for
2157 `org-babel-get-src-block-info'):
2159 :file --- the name of the file to which output should be written.
2161 :wrap --- the effect is similar to `latex' in RESULT-PARAMS but
2162 using the argument supplied to specify the export block
2164 (cond ((stringp result
)
2165 (setq result
(org-no-properties result
))
2166 (when (member "file" result-params
)
2167 (setq result
(org-babel-result-to-file
2168 result
(when (assq :file-desc
(nth 2 info
))
2169 (or (cdr (assq :file-desc
(nth 2 info
)))
2172 (t (setq result
(format "%S" result
))))
2173 (if (and result-params
(member "silent" result-params
))
2174 (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result
)))
2176 (let ((inline (let ((context (org-element-context)))
2177 (and (memq (org-element-type context
)
2178 '(inline-babel-call inline-src-block
))
2182 (or (and (member "table" result-params
) "`:results table'")
2183 (and (listp result
) "list result")
2184 (and (string-match-p "\n." result
) "multiline result")
2185 (and (member "list" result-params
) "`:results list'"))))
2187 (user-error "Inline error: %s cannot be used" warning
))))
2189 (let* ((visible-beg (point-min-marker))
2190 (visible-end (copy-marker (point-max) t
))
2191 (inline (let ((context (org-element-context)))
2192 (and (memq (org-element-type context
)
2193 '(inline-babel-call inline-src-block
))
2195 (existing-result (org-babel-where-is-src-block-result t nil hash
))
2196 (results-switches (cdr (assq :results_switches
(nth 2 info
))))
2197 ;; When results exist outside of the current visible
2198 ;; region of the buffer, be sure to widen buffer to
2200 (outside-scope (and existing-result
2202 (or (> visible-beg existing-result
)
2203 (<= visible-end existing-result
))))
2205 ;; Ensure non-inline results end in a newline.
2206 (when (and (org-string-nw-p result
)
2208 (not (string-equal (substring result -
1) "\n")))
2209 (setq result
(concat result
"\n")))
2212 (when outside-scope
(widen))
2213 (if existing-result
(goto-char existing-result
)
2214 (goto-char (org-element-property :end inline
))
2215 (skip-chars-backward " \t"))
2217 (setq indent
(org-get-indentation))
2222 ;; Make sure new results are separated from the
2223 ;; source code by one space.
2224 (unless existing-result
2226 (setq beg
(point))))
2227 ((member "replace" result-params
)
2228 (delete-region (point) (org-babel-result-end)))
2229 ((member "append" result-params
)
2230 (goto-char (org-babel-result-end)) (setq beg
(point-marker)))
2231 ((member "prepend" result-params
))) ; already there
2232 (setq results-switches
2233 (if results-switches
(concat " " results-switches
) ""))
2234 (let ((wrap (lambda (start finish
&optional no-escape no-newlines
2235 inline-start inline-finish
)
2237 (setq start inline-start
)
2238 (setq finish inline-finish
)
2239 (setq no-newlines t
))
2241 (insert (concat finish
(unless no-newlines
"\n")))
2243 (insert (concat start
(unless no-newlines
"\n")))
2245 (org-escape-code-in-region (min (point) end
) end
))
2247 (unless no-newlines
(goto-char (point-at-eol)))
2248 (setq end
(point-marker))))
2251 ;; Non-nil when result R can be turned into
2254 (null (cdr (last r
)))
2256 (lambda (e) (or (atom e
) (null (cdr (last e
)))))
2258 ;; insert results based on type
2260 ;; Do nothing for an empty result.
2262 ;; Insert a list if preferred.
2263 ((member "list" result-params
)
2266 (org-list-to-generic
2270 (list (if (stringp e
) e
(format "%S" e
))))
2271 (if (listp result
) result
2272 (split-string result
"\n" t
))))
2273 '(:splicep nil
:istart
"- " :iend
"\n")))
2275 ;; Try hard to print RESULT as a table. Give up if
2276 ;; it contains an improper list.
2277 ((funcall tabulablep result
)
2279 (insert (concat (orgtbl-to-orgtbl
2282 (or (eq e
'hline
) (listp e
)))
2289 (when (org-at-table-p) (org-table-align))
2290 (goto-char (org-table-end)))
2291 ;; Print verbatim a list that cannot be turned into
2293 ((listp result
) (insert (format "%s\n" result
)))
2294 ((member "file" result-params
)
2296 (setq result
(org-macro-escape-arguments result
)))
2298 ((and inline
(not (member "raw" result-params
)))
2299 (insert (org-macro-escape-arguments
2300 (org-babel-chomp result
"\n"))))
2301 (t (goto-char beg
) (insert result
)))
2302 (setq end
(point-marker))
2303 ;; possibly wrap result
2305 ((assq :wrap
(nth 2 info
))
2306 (let ((name (or (cdr (assq :wrap
(nth 2 info
))) "RESULTS")))
2307 (funcall wrap
(concat "#+BEGIN_" name
)
2308 (concat "#+END_" (car (org-split-string name
)))
2309 nil nil
(concat "{{{results(@@" name
":") "@@)}}}")))
2310 ((member "html" result-params
)
2311 (funcall wrap
"#+BEGIN_EXPORT html" "#+END_EXPORT" nil nil
2312 "{{{results(@@html:" "@@)}}}"))
2313 ((member "latex" result-params
)
2314 (funcall wrap
"#+BEGIN_EXPORT latex" "#+END_EXPORT" nil nil
2315 "{{{results(@@latex:" "@@)}}}"))
2316 ((member "org" result-params
)
2317 (goto-char beg
) (when (org-at-table-p) (org-cycle))
2318 (funcall wrap
"#+BEGIN_SRC org" "#+END_SRC" nil nil
2319 "{{{results(src_org{" "})}}}"))
2320 ((member "code" result-params
)
2321 (let ((lang (or lang
"none")))
2322 (funcall wrap
(format "#+BEGIN_SRC %s%s" lang results-switches
)
2324 (format "{{{results(src_%s[%s]{" lang results-switches
)
2326 ((member "raw" result-params
)
2327 (goto-char beg
) (when (org-at-table-p) (org-cycle)))
2328 ((or (member "drawer" result-params
)
2329 ;; Stay backward compatible with <7.9.2
2330 (member "wrap" result-params
))
2331 (goto-char beg
) (when (org-at-table-p) (org-cycle))
2332 (funcall wrap
":RESULTS:" ":END:" 'no-escape nil
2333 "{{{results(" ")}}}"))
2334 ((and inline
(member "file" result-params
))
2335 (funcall wrap nil nil nil nil
"{{{results(" ")}}}"))
2336 ((and (not (funcall tabulablep result
))
2337 (not (member "file" result-params
)))
2338 (let ((org-babel-inline-result-wrap
2339 ;; Hard code {{{results(...)}}} on top of customization.
2340 (format "{{{results(%s)}}}"
2341 org-babel-inline-result-wrap
)))
2342 (org-babel-examplify-region beg end results-switches inline
)
2343 (setq end
(point))))))
2344 ;; Possibly indent results in par with #+results line.
2345 (when (and (not inline
) (numberp indent
) (> indent
0)
2346 ;; In this case `table-align' does the work
2348 (not (and (listp result
)
2349 (member "append" result-params
))))
2350 (indent-rigidly beg end indent
))
2352 (if (member "value" result-params
)
2353 (message "Code block returned no value.")
2354 (message "Code block produced no output."))
2355 (message "Code block evaluation complete.")))
2356 (when outside-scope
(narrow-to-region visible-beg visible-end
))
2357 (set-marker visible-beg nil
)
2358 (set-marker visible-end nil
)))))))
2360 (defun org-babel-remove-result (&optional info keep-keyword
)
2361 "Remove the result of the current source block."
2363 (let ((location (org-babel-where-is-src-block-result nil info
)))
2366 (goto-char location
)
2367 (when (looking-at (concat org-babel-result-regexp
".*$"))
2369 (if keep-keyword
(1+ (match-end 0)) (1- (match-beginning 0)))
2370 (progn (forward-line 1) (org-babel-result-end))))))))
2372 (defun org-babel-remove-inline-result (&optional datum
)
2373 "Remove the result of the current inline-src-block or babel call.
2374 The result must be wrapped in a `results' macro to be removed.
2375 Leading white space is trimmed."
2377 (let* ((el (or datum
(org-element-context))))
2378 (when (memq (org-element-type el
) '(inline-src-block inline-babel-call
))
2379 (org-with-wide-buffer
2380 (goto-char (org-element-property :end el
))
2381 (skip-chars-backward " \t")
2382 (let ((result (save-excursion
2385 (org-element-property
2386 :contents-end
(org-element-property :parent el
)))
2387 (org-element-context))))
2388 (when (and (eq (org-element-type result
) 'macro
)
2389 (string= (org-element-property :key result
) "results"))
2390 (delete-region ; And leading whitespace.
2392 (progn (goto-char (org-element-property :end result
))
2393 (skip-chars-backward " \t\n")
2396 (defun org-babel-remove-result-one-or-many (x)
2397 "Remove the result of the current source block.
2398 If called with a prefix argument, remove all result blocks
2402 (org-babel-map-src-blocks nil
(org-babel-remove-result))
2403 (org-babel-remove-result)))
2405 (defun org-babel-result-end ()
2406 "Return the point at the end of the current set of results."
2409 ((org-at-table-p) (progn (goto-char (org-table-end)) (point)))
2410 ((org-at-item-p) (let* ((struct (org-list-struct))
2411 (prvs (org-list-prevs-alist struct
)))
2412 (org-list-get-list-end (point-at-bol) struct prvs
)))
2413 ((let ((case-fold-search t
)) (looking-at "^\\([ \t]*\\):results:"))
2414 (progn (re-search-forward (concat "^" (match-string 1) ":END:"))
2415 (forward-char 1) (point)))
2417 (let ((case-fold-search t
))
2418 (if (looking-at (concat "[ \t]*#\\+begin_\\([^ \t\n\r]+\\)"))
2419 (progn (re-search-forward (concat "[ \t]*#\\+end_" (match-string 1))
2422 (while (looking-at "[ \t]*\\(: \\|:$\\|\\[\\[\\)")
2426 (defun org-babel-result-to-file (result &optional description
)
2427 "Convert RESULT into an `org-mode' link with optional DESCRIPTION.
2428 If the `default-directory' is different from the containing
2429 file's directory then expand relative links."
2430 (when (stringp result
)
2431 (format "[[file:%s]%s]"
2432 (if (and default-directory
2434 (not (string= (expand-file-name default-directory
)
2436 (file-name-directory buffer-file-name
)))))
2437 (expand-file-name result default-directory
)
2439 (if description
(concat "[" description
"]") ""))))
2441 (defvar org-babel-capitalize-example-region-markers nil
2442 "Make true to capitalize begin/end example markers inserted by code blocks.")
2444 (defun org-babel-examplify-region (beg end
&optional results-switches inline
)
2445 "Comment out region using the inline `==' or `: ' org example quote."
2449 (if org-babel-capitalize-example-region-markers
(upcase str
) str
))))
2453 (insert (format org-babel-inline-result-wrap
2454 (delete-and-extract-region beg end
))))
2455 (let ((size (count-lines beg end
)))
2457 (cond ((= size
0)) ; do nothing for an empty result
2458 ((< size org-babel-min-lines-for-block-output
)
2461 (beginning-of-line 1) (insert ": ") (forward-line 1)))
2464 (insert (if results-switches
2466 (funcall maybe-cap
"#+begin_example")
2468 (funcall maybe-cap
"#+begin_example\n")))
2469 (if (markerp end
) (goto-char end
) (forward-char (- end beg
)))
2470 (insert (funcall maybe-cap
"#+end_example\n")))))))))
2472 (defun org-babel-update-block-body (new-body)
2473 "Update the body of the current code block to NEW-BODY."
2474 (let ((element (org-element-at-point)))
2475 (unless (eq (org-element-type element
) 'src-block
)
2476 (error "Not in a source block"))
2477 (goto-char (org-babel-where-is-src-block-head element
))
2478 (let* ((ind (org-get-indentation))
2479 (body-start (line-beginning-position 2))
2480 (body (org-element-normalize-string
2481 (if (or org-src-preserve-indentation
2482 (org-element-property :preserve-indent element
))
2485 (insert (org-remove-indentation new-body
))
2489 (+ ind org-edit-src-content-indentation
))
2490 (buffer-string))))))
2491 (delete-region body-start
2492 (org-with-wide-buffer
2493 (goto-char (org-element-property :end element
))
2494 (skip-chars-backward " \t\n")
2495 (line-beginning-position)))
2496 (goto-char body-start
)
2499 (defun org-babel-merge-params (&rest plists
)
2500 "Combine all parameter association lists in PLISTS.
2501 Later elements of PLISTS override the values of previous elements.
2502 This takes into account some special considerations for certain
2503 parameters when merging lists."
2504 (let* ((results-exclusive-groups
2505 (mapcar (lambda (group) (mapcar #'symbol-name group
))
2506 (cdr (assq 'results org-babel-common-header-args-w-values
))))
2507 (exports-exclusive-groups
2508 (mapcar (lambda (group) (mapcar #'symbol-name group
))
2509 (cdr (assq 'exports org-babel-common-header-args-w-values
))))
2511 (lambda (exclusive-groups &rest result-params
)
2512 ;; Maintain exclusivity of mutually exclusive parameters,
2513 ;; as defined in EXCLUSIVE-GROUPS while merging lists in
2516 (dolist (new-params result-params
(delete-dups output
))
2517 (dolist (new-param new-params
)
2518 (dolist (exclusive-group exclusive-groups
)
2519 (when (member new-param exclusive-group
)
2520 (setq output
(cl-remove-if
2521 (lambda (o) (member o exclusive-group
))
2523 (push new-param output
))))))
2524 (variable-index 0) ;Handle positional arguments.
2526 params
;Final parameters list.
2527 ;; Some keywords accept multiple values. We need to treat
2529 vars results exports
)
2530 (dolist (plist plists
)
2531 (dolist (pair plist
)
2535 ((listp value
) (car value
))
2536 ((string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=" value
)
2537 (intern (match-string 1 value
)))
2542 (append (if (not (assoc name vars
)) vars
2543 (push name clearnames
)
2544 (cl-remove-if (lambda (p) (equal name
(car p
)))
2546 (list (cons name pair
)))))
2547 ((and vars
(nth variable-index vars
))
2548 ;; If no name is given and we already have named
2549 ;; variables then assign to named variables in order.
2550 (let ((name (car (nth variable-index vars
))))
2551 ;; Clear out colnames and rownames for replace vars.
2552 (push name clearnames
)
2553 (setf (cddr (nth variable-index vars
))
2554 (concat (symbol-name name
) "=" value
))
2555 (cl-incf variable-index
)))
2556 (t (error "Variable \"%s\" must be assigned a default value"
2558 (`(:results .
,value
)
2559 (setq results
(funcall merge
2560 results-exclusive-groups
2563 (if (stringp value
) value
(eval value t
))))))
2564 (`(,(or :file
:file-ext
) .
,value
)
2565 ;; `:file' and `:file-ext' are regular keywords but they
2566 ;; imply a "file" `:results' and a "results" `:exports'.
2569 (funcall merge results-exclusive-groups results
'("file")))
2570 (unless (or (member "both" exports
)
2571 (member "none" exports
)
2572 (member "code" exports
))
2575 exports-exclusive-groups exports
'("results"))))
2576 (push pair params
)))
2577 (`(:exports .
,value
)
2578 (setq exports
(funcall merge
2579 exports-exclusive-groups
2581 (split-string (or value
"")))))
2582 ;; Regular keywords: any value overwrites the previous one.
2583 (_ (setq params
(cons pair
(assq-delete-all (car pair
) params
)))))))
2584 ;; Handle `:var' and clear out colnames and rownames for replaced
2586 (setq params
(nconc (mapcar (lambda (v) (cons :var
(cddr v
))) vars
)
2588 (dolist (name clearnames
)
2589 (dolist (param '(:colname-names
:rowname-names
))
2590 (when (assq param params
)
2591 (setf (cdr (assq param params
))
2592 (cl-remove-if (lambda (pair) (equal name
(car pair
)))
2593 (cdr (assq param params
))))
2595 (cl-remove-if (lambda (pair) (and (equal (car pair
) param
)
2598 ;; Handle other special keywords, which accept multiple values.
2599 (setq params
(nconc (list (cons :results
(mapconcat #'identity results
" "))
2600 (cons :exports
(mapconcat #'identity exports
" ")))
2602 ;; Return merged params.
2605 (defvar org-babel-use-quick-and-dirty-noweb-expansion nil
2606 "Set to true to use regular expressions to expand noweb references.
2607 This results in much faster noweb reference expansion but does
2608 not properly allow code blocks to inherit the \":noweb-ref\"
2609 header argument from buffer or subtree wide properties.")
2611 (defun org-babel-noweb-p (params context
)
2612 "Check if PARAMS require expansion in CONTEXT.
2613 CONTEXT may be one of :tangle, :export or :eval."
2614 (let ((allowed-values (cl-case context
2615 (:tangle
'("yes" "tangle" "no-export" "strip-export"))
2616 (:eval
'("yes" "no-export" "strip-export" "eval"))
2617 (:export
'("yes")))))
2618 (cl-some (lambda (v) (member v allowed-values
))
2619 (split-string (or (cdr (assq :noweb params
)) "")))))
2621 (defun org-babel-expand-noweb-references (&optional info parent-buffer
)
2622 "Expand Noweb references in the body of the current source code block.
2624 For example the following reference would be replaced with the
2625 body of the source-code block named `example-block'.
2629 Note that any text preceding the <<foo>> construct on a line will
2630 be interposed between the lines of the replacement text. So for
2631 example if <<foo>> is placed behind a comment, then the entire
2632 replacement text will also be commented.
2634 This function must be called from inside of the buffer containing
2635 the source-code block which holds BODY.
2637 In addition the following syntax can be used to insert the
2638 results of evaluating the source-code block named `example-block'.
2642 Any optional arguments can be passed to example-block by placing
2643 the arguments inside the parenthesis following the convention
2644 defined by `org-babel-lob'. For example
2646 <<example-block(a=9)>>
2648 would set the value of argument \"a\" equal to \"9\". Note that
2649 these arguments are not evaluated in the current source-code
2650 block but are passed literally to the \"example-block\"."
2651 (let* ((parent-buffer (or parent-buffer
(current-buffer)))
2652 (info (or info
(org-babel-get-src-block-info 'light
)))
2655 (ob-nww-start org-babel-noweb-wrap-start
)
2656 (ob-nww-end org-babel-noweb-wrap-end
)
2657 (comment (string= "noweb" (cdr (assq :comments
(nth 2 info
)))))
2658 (rx-prefix (concat "\\(" org-babel-src-name-regexp
"\\|"
2659 ":noweb-ref[ \t]+" "\\)"))
2661 (nb-add (lambda (text) (setq new-body
(concat new-body text
))))
2662 (c-wrap (lambda (text)
2664 (funcall (intern (concat lang
"-mode")))
2665 (comment-region (point) (progn (insert text
) (point)))
2666 (org-trim (buffer-string)))))
2667 index source-name evaluate prefix
)
2669 (setq-local org-babel-noweb-wrap-start ob-nww-start
)
2670 (setq-local org-babel-noweb-wrap-end ob-nww-end
)
2671 (insert body
) (goto-char (point-min))
2672 (setq index
(point))
2673 (while (and (re-search-forward (org-babel-noweb-wrap) nil t
))
2674 (save-match-data (setf source-name
(match-string 1)))
2675 (save-match-data (setq evaluate
(string-match "(.*)" source-name
)))
2678 (buffer-substring (match-beginning 0)
2680 (beginning-of-line 1) (point)))))
2681 ;; add interval to new-body (removing noweb reference)
2682 (goto-char (match-beginning 0))
2683 (funcall nb-add
(buffer-substring index
(point)))
2684 (goto-char (match-end 0))
2685 (setq index
(point))
2688 (with-current-buffer parent-buffer
2691 (mapconcat ;; Interpose PREFIX between every line.
2695 (let ((raw (org-babel-ref-resolve source-name
)))
2696 (if (stringp raw
) raw
(format "%S" raw
)))
2698 ;; Retrieve from the library of babel.
2699 (nth 2 (assoc (intern source-name
)
2700 org-babel-library-of-babel
))
2701 ;; Return the contents of headlines literally.
2703 (when (org-babel-ref-goto-headline-id source-name
)
2704 (org-babel-ref-headline-body)))
2705 ;; Find the expansion of reference in this buffer.
2706 (let ((rx (concat rx-prefix source-name
"[ \t\n]"))
2709 (goto-char (point-min))
2710 (if org-babel-use-quick-and-dirty-noweb-expansion
2711 (while (re-search-forward rx nil t
)
2712 (let* ((i (org-babel-get-src-block-info 'light
))
2713 (body (org-babel-expand-noweb-references i
))
2714 (sep (or (cdr (assq :noweb-sep
(nth 2 i
)))
2717 (let ((cs (org-babel-tangle-comment-links i
)))
2718 (concat (funcall c-wrap
(car cs
)) "\n"
2720 (funcall c-wrap
(cadr cs
))))
2722 (setq expansion
(cons sep
(cons full expansion
)))))
2723 (org-babel-map-src-blocks nil
2724 (let ((i (org-babel-get-src-block-info 'light
)))
2725 (when (equal (or (cdr (assq :noweb-ref
(nth 2 i
)))
2728 (let* ((body (org-babel-expand-noweb-references i
))
2729 (sep (or (cdr (assq :noweb-sep
(nth 2 i
)))
2732 (let ((cs (org-babel-tangle-comment-links i
)))
2733 (concat (funcall c-wrap
(car cs
)) "\n"
2735 (funcall c-wrap
(cadr cs
))))
2738 (cons sep
(cons full expansion
)))))))))
2740 (mapconcat #'identity
(nreverse (cdr expansion
)) "")))
2741 ;; Possibly raise an error if named block doesn't exist.
2742 (if (or org-babel-noweb-error-all-langs
2743 (member lang org-babel-noweb-error-langs
))
2745 (org-babel-noweb-wrap source-name
)
2746 "could not be resolved (see "
2747 "`org-babel-noweb-error-langs')"))
2749 "[\n\r]") (concat "\n" prefix
))))))
2750 (funcall nb-add
(buffer-substring index
(point-max))))
2753 (defun org-babel--script-escape-inner (str)
2754 (let (in-single in-double backslash out
)
2761 (setq backslash nil
)
2763 ((and in-single
(eq ch ?
'))
2764 ;; Escaped single quote inside single quoted string:
2765 ;; emit just a single quote, since we've changed the
2766 ;; outer quotes to double.
2769 ;; Escaped double quote
2771 ;; This should be interpreted as backslash+quote,
2772 ;; not an escape. Emit a three backslashes
2773 ;; followed by a quote (because one layer of
2774 ;; quoting will be stripped by `org-babel-read').
2775 (append (list ch ?
\\ ?
\\ ?
\\) out
)
2776 ;; Otherwise we are in a double-quoted string. Emit
2777 ;; a single escaped quote
2778 (append (list ch ?
\\) out
)))
2780 ;; Escaped backslash: emit a single escaped backslash
2781 (append (list ?
\\ ?
\\) out
))
2782 ;; Other: emit a quoted backslash followed by whatever
2783 ;; the character was (because one layer of quoting will
2784 ;; be stripped by `org-babel-read').
2785 (t (append (list ch ?
\\ ?
\\) out
))))
2787 (?\
[ (if (or in-double in-single
)
2790 (?\
] (if (or in-double in-single
)
2793 (?\
{ (if (or in-double in-single
)
2796 (?\
} (if (or in-double in-single
)
2799 (?
, (if (or in-double in-single
)
2800 (cons ?
, out
) (cons ?\s out
)))
2803 (setq in-single
(not in-single
)) (cons ?
\" out
)))
2805 (append (list ?
\" ?
\\) out
)
2806 (setq in-double
(not in-double
)) (cons ?
\" out
)))
2807 (?
\\ (unless (or in-single in-double
)
2808 (error "Can't handle backslash outside string in `org-babel-script-escape'"))
2811 (t (cons ch out
))))))
2812 (string-to-list str
))
2813 (when (or in-single in-double
)
2814 (error "Unterminated string in `org-babel-script-escape'"))
2815 (apply #'string
(reverse out
))))
2817 (defun org-babel-script-escape (str &optional force
)
2818 "Safely convert tables into elisp lists."
2819 (unless (stringp str
)
2820 (error "`org-babel-script-escape' expects a string"))
2823 ((and (> (length str
) 2)
2824 (or (and (string-equal "[" (substring str
0 1))
2825 (string-equal "]" (substring str -
1)))
2826 (and (string-equal "{" (substring str
0 1))
2827 (string-equal "}" (substring str -
1)))
2828 (and (string-equal "(" (substring str
0 1))
2829 (string-equal ")" (substring str -
1)))))
2831 (concat "'" (org-babel--script-escape-inner str
)))
2833 (and (> (length str
) 2)
2834 (or (and (string-equal "'" (substring str
0 1))
2835 (string-equal "'" (substring str -
1)))
2836 ;; We need to pass double-quoted strings
2837 ;; through the backslash-twiddling bits, even
2838 ;; though we don't need to change their
2840 (and (string-equal "\"" (substring str
0 1))
2841 (string-equal "\"" (substring str -
1))))))
2842 (org-babel--script-escape-inner str
))
2844 (condition-case nil
(org-babel-read escaped
) (error escaped
))))
2846 (defun org-babel-read (cell &optional inhibit-lisp-eval
)
2847 "Convert the string value of CELL to a number if appropriate.
2848 Otherwise if CELL looks like lisp (meaning it starts with a
2849 \"(\", \"\\='\", \"\\=`\" or a \"[\") then read and evaluate it as
2850 lisp, otherwise return it unmodified as a string. Optional
2851 argument INHIBIT-LISP-EVAL inhibits lisp evaluation for
2852 situations in which is it not appropriate."
2853 (if (and (stringp cell
) (not (equal cell
"")))
2854 (or (org-babel--string-to-number cell
)
2855 (if (and (not inhibit-lisp-eval
)
2856 (or (member (substring cell
0 1) '("(" "'" "`" "["))
2857 (string= cell
"*this*")))
2858 (eval (read cell
) t
)
2859 (if (string= (substring cell
0 1) "\"")
2861 (progn (set-text-properties 0 (length cell
) nil cell
) cell
))))
2864 (defun org-babel--string-to-number (string)
2865 "If STRING represents a number return its value.
2867 Otherwise return nil."
2868 (when (string-match "\\`-?[0-9]*\\.?[0-9]*\\'" string
)
2869 (string-to-number string
)))
2870 (define-obsolete-function-alias 'org-babel-number-p
'org-babel--string-to-number
"Org 9.0")
2872 (defun org-babel-import-elisp-from-file (file-name &optional separator
)
2873 "Read the results located at FILE-NAME into an elisp table.
2874 If the table is trivial, then return it as a scalar."
2876 (save-window-excursion
2880 (org-table-import file-name separator
)
2881 (delete-file file-name
)
2882 (setq result
(mapcar (lambda (row)
2883 (mapcar #'org-babel-string-read row
))
2884 (org-table-to-lisp))))
2885 (error (message "Error reading results: %s" err
) nil
)))
2886 (if (null (cdr result
)) ;; if result is trivial vector, then scalarize it
2887 (if (consp (car result
))
2888 (if (null (cdr (car result
)))
2894 (defun org-babel-string-read (cell)
2895 "Strip nested \"s from around strings."
2896 (org-babel-read (or (and (stringp cell
)
2897 (string-match "\\\"\\(.+\\)\\\"" cell
)
2898 (match-string 1 cell
))
2901 (defun org-babel-chomp (string &optional regexp
)
2902 "Strip a trailing space or carriage return from STRING.
2903 The default regexp used is \"[ \\f\\t\\n\\r\\v]\" but another one
2904 can be specified as the REGEXP argument."
2905 (let ((regexp (or regexp
"[ \f\t\n\r\v]")))
2906 (while (and (> (length string
) 0)
2907 (string-match regexp
(substring string -
1)))
2908 (setq string
(substring string
0 -
1)))
2911 (defun org-babel-local-file-name (file)
2912 "Return the local name component of FILE."
2913 (or (file-remote-p file
'localname
) file
))
2915 (defun org-babel-process-file-name (name &optional no-quote-p
)
2916 "Prepare NAME to be used in an external process.
2917 If NAME specifies a remote location, the remote portion of the
2918 name is removed, since in that case the process will be executing
2919 remotely. The file name is then processed by `expand-file-name'.
2920 Unless second argument NO-QUOTE-P is non-nil, the file name is
2921 additionally processed by `shell-quote-argument'"
2922 (let ((f (org-babel-local-file-name (expand-file-name name
))))
2923 (if no-quote-p f
(shell-quote-argument f
))))
2925 (defvar org-babel-temporary-directory
)
2926 (unless (or noninteractive
(boundp 'org-babel-temporary-directory
))
2927 (defvar org-babel-temporary-directory
2928 (or (and (boundp 'org-babel-temporary-directory
)
2929 (file-exists-p org-babel-temporary-directory
)
2930 org-babel-temporary-directory
)
2931 (make-temp-file "babel-" t
))
2932 "Directory to hold temporary files created to execute code blocks.
2933 Used by `org-babel-temp-file'. This directory will be removed on
2936 (defcustom org-babel-remote-temporary-directory
"/tmp/"
2937 "Directory to hold temporary files on remote hosts."
2941 (defmacro org-babel-result-cond
(result-params scalar-form
&rest table-forms
)
2942 "Call the code to parse raw string results according to RESULT-PARAMS."
2944 (debug (form form
&rest form
)))
2945 (org-with-gensyms (params)
2946 `(let ((,params
,result-params
))
2947 (unless (member "none" ,params
)
2948 (if (or (member "scalar" ,params
)
2949 (member "verbatim" ,params
)
2950 (member "html" ,params
)
2951 (member "code" ,params
)
2952 (member "pp" ,params
)
2953 (member "file" ,params
)
2954 (and (or (member "output" ,params
)
2955 (member "raw" ,params
)
2956 (member "org" ,params
)
2957 (member "drawer" ,params
))
2958 (not (member "table" ,params
))))
2961 (def-edebug-spec org-babel-result-cond
(form form body
))
2963 (defun org-babel-temp-file (prefix &optional suffix
)
2964 "Create a temporary file in the `org-babel-temporary-directory'.
2965 Passes PREFIX and SUFFIX directly to `make-temp-file' with the
2966 value of `temporary-file-directory' temporarily set to the value
2967 of `org-babel-temporary-directory'."
2968 (if (file-remote-p default-directory
)
2970 (concat (file-remote-p default-directory
)
2972 prefix org-babel-remote-temporary-directory
))))
2973 (make-temp-file prefix nil suffix
))
2974 (let ((temporary-file-directory
2975 (or (and (boundp 'org-babel-temporary-directory
)
2976 (file-exists-p org-babel-temporary-directory
)
2977 org-babel-temporary-directory
)
2978 temporary-file-directory
)))
2979 (make-temp-file prefix nil suffix
))))
2981 (defun org-babel-remove-temporary-directory ()
2982 "Remove `org-babel-temporary-directory' on Emacs shutdown."
2983 (when (and (boundp 'org-babel-temporary-directory
)
2984 (file-exists-p org-babel-temporary-directory
))
2985 ;; taken from `delete-directory' in files.el
2988 (mapc (lambda (file)
2989 ;; This test is equivalent to
2990 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
2991 ;; but more efficient
2992 (if (eq t
(car (file-attributes file
)))
2993 (delete-directory file
)
2994 (delete-file file
)))
2995 ;; We do not want to delete "." and "..".
2996 (directory-files org-babel-temporary-directory
'full
2997 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
2998 (delete-directory org-babel-temporary-directory
))
3000 (message "Failed to remove temporary Org-babel directory %s"
3001 (if (boundp 'org-babel-temporary-directory
)
3002 org-babel-temporary-directory
3003 "[directory not defined]"))))))
3005 (add-hook 'kill-emacs-hook
'org-babel-remove-temporary-directory
)
3007 (defun org-babel-one-header-arg-safe-p (pair safe-list
)
3008 "Determine if the PAIR is a safe babel header arg according to SAFE-LIST.
3010 For the format of SAFE-LIST, see `org-babel-safe-header-args'."
3012 (keywordp (car pair
))
3013 (stringp (cdr pair
))
3015 (memq (car pair
) safe-list
)
3016 (let ((entry (assq (car pair
) safe-list
)))
3019 (cond ((functionp (cdr entry
))
3020 (funcall (cdr entry
) (cdr pair
)))
3021 ((listp (cdr entry
))
3022 (member (cdr pair
) (cdr entry
)))
3025 (defun org-babel-generate-file-param (src-name params
)
3026 "Calculate the filename for source block results.
3028 The directory is calculated from the :output-dir property of the
3029 source block; if not specified, use the current directory.
3031 If the source block has a #+NAME and the :file parameter does not
3032 contain any period characters, then the :file parameter is
3033 treated as an extension, and the output file name is the
3034 concatenation of the directory (as calculated above), the block
3035 name, a period, and the parameter value as a file extension.
3036 Otherwise, the :file parameter is treated as a full file name,
3037 and the output file name is the directory (as calculated above)
3038 plus the parameter value."
3039 (let* ((file-cons (assq :file params
))
3040 (file-ext-cons (assq :file-ext params
))
3041 (file-ext (cdr-safe file-ext-cons
))
3042 (dir (cdr-safe (assq :output-dir params
)))
3044 ;; create the output-dir if it does not exist
3046 (make-directory dir t
))
3048 ;; :file given; add :output-dir if given
3050 (setcdr file-cons
(concat (file-name-as-directory dir
) (cdr file-cons
))))
3051 ;; :file not given; compute from name and :file-ext if possible
3052 (when (and src-name file-ext
)
3054 (setq fname
(concat (file-name-as-directory (or dir
""))
3055 src-name
"." file-ext
))
3056 (setq fname
(concat src-name
"." file-ext
)))
3057 (setq params
(cons (cons :file fname
) params
))))
3060 (defun org-babel-graphical-output-file (params)
3061 "File where a babel block should send graphical output, per PARAMS.
3062 Return nil if no graphical output is expected. Raise an error if
3063 the output file is ill-defined."
3064 (let ((file (cdr (assq :file params
))))
3065 (cond (file (and (member "graphics" (cdr (assq :result-params params
)))
3067 ((assq :file-ext params
)
3068 (user-error ":file-ext given but no :file generated; did you forget \
3070 (t (user-error "No :file header argument given; cannot create \
3071 graphical result")))))
3073 (defun org-babel-make-language-alias (new old
)
3074 "Make source blocks of type NEW aliases for those of type OLD.
3076 NEW and OLD should be strings. This function should be called
3077 after the babel API for OLD-type source blocks is fully defined.
3079 Callers of this function will probably want to add an entry to
3080 `org-src-lang-modes' as well."
3081 (dolist (fn '("execute" "expand-body" "prep-session"
3082 "variable-assignments" "load-session"))
3083 (let ((sym (intern-soft (concat "org-babel-" fn
":" old
))))
3084 (when (and sym
(fboundp sym
))
3085 (defalias (intern (concat "org-babel-" fn
":" new
)) sym
))))
3086 ;; Technically we don't need a `dolist' for just one variable, but
3087 ;; we keep it for symmetry/ease of future expansion.
3088 (dolist (var '("default-header-args"))
3089 (let ((sym (intern-soft (concat "org-babel-" var
":" old
))))
3090 (when (and sym
(boundp sym
))
3091 (defvaralias (intern (concat "org-babel-" var
":" new
)) sym
)))))
3093 (defun org-babel-strip-quotes (string)
3094 "Strip \\\"s from around a string, if applicable."
3095 (org-unbracket-string "\"" "\"" string
))
3100 ;; generated-autoload-file: "org-loaddefs.el"
3103 ;;; ob-core.el ends here