org-babel.el 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897
  1. ;;; org-babel.el --- facilitating communication between programming languages and people
  2. ;; Copyright (C) 2009 Eric Schulte, Dan Davison
  3. ;; Author: Eric Schulte, Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; See org-babel.org in the parent directory for more information
  24. ;;; Code:
  25. (require 'org)
  26. (defun org-babel-execute-src-block-maybe ()
  27. "Detect if this is context for a org-babel src-block and if so
  28. then run `org-babel-execute-src-block'."
  29. (interactive)
  30. (let ((info (org-babel-get-src-block-info)))
  31. (if info (progn (org-babel-execute-src-block current-prefix-arg info) t) nil)))
  32. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-execute-src-block-maybe)
  33. (defadvice org-edit-special (around org-babel-prep-session-for-edit activate)
  34. "Prepare the current source block's session according to it's
  35. header arguments before editing in an org-src buffer. This
  36. function is called when `org-edit-special' is called with a
  37. prefix argument from inside of a source-code block."
  38. (when current-prefix-arg
  39. (let* ((info (org-babel-get-src-block-info))
  40. (lang (first info))
  41. (params (third info))
  42. (session (cdr (assoc :session params))))
  43. (when (and info session) ;; if we are in a source-code block which has a session
  44. (funcall (intern (concat "org-babel-prep-session:" lang)) session params))))
  45. ad-do-it)
  46. (defadvice org-open-at-point (around org-babel-open-at-point activate)
  47. "If `point' is on a source code block, then open that block's
  48. results with `org-babel-open-src-block-results', otherwise defer
  49. to `org-open-at-point'."
  50. (interactive "P")
  51. (or (call-interactively #'org-babel-open-src-block-result) ad-do-it))
  52. (defun org-babel-load-in-session-maybe ()
  53. "Detect if this is context for a org-babel src-block and if so
  54. then run `org-babel-load-in-session'."
  55. (interactive)
  56. (let ((info (org-babel-get-src-block-info)))
  57. (if info (progn (org-babel-load-in-session current-prefix-arg info) t) nil)))
  58. (add-hook 'org-metaup-hook 'org-babel-load-in-session-maybe)
  59. (defun org-babel-pop-to-session-maybe ()
  60. "Detect if this is context for a org-babel src-block and if so
  61. then run `org-babel-pop-to-session'."
  62. (interactive)
  63. (let ((info (org-babel-get-src-block-info)))
  64. (if info (progn (org-babel-pop-to-session current-prefix-arg info) t) nil)))
  65. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  66. (defvar org-babel-default-header-args
  67. '((:session . "none") (:results . "replace") (:exports . "code") (:nocache))
  68. "Default arguments to use when evaluating a source block.")
  69. (defvar org-babel-default-inline-header-args
  70. '((:session . "none") (:results . "silent") (:exports . "results"))
  71. "Default arguments to use when evaluating an inline source block.")
  72. (defvar org-babel-src-block-regexp nil
  73. "Regexp used to test when inside of a org-babel src-block")
  74. (defvar org-babel-inline-src-block-regexp nil
  75. "Regexp used to test when on an inline org-babel src-block")
  76. (defvar org-babel-result-regexp
  77. "#\\+resname\\(\\[\\([[:alnum:]]+\\)\\]\\)?\\:"
  78. "Regular expressions used to match result lines. If the
  79. results are associated with a hash key then the hash will be
  80. saved in the second match data.")
  81. (defvar org-babel-min-lines-for-block-output 10
  82. "If number of lines of output is equal to or exceeds this
  83. value, the output is placed in a #+begin_example...#+end_example
  84. block. Otherwise the output is marked as literal by inserting
  85. colons at the starts of the lines. This variable only takes
  86. effect if the :results output option is in effect.")
  87. (defvar org-babel-noweb-error-langs nil
  88. "List of language for which errors should be raised when the
  89. source code block satisfying a noweb reference in this language
  90. can not be resolved.")
  91. (defun org-babel-named-src-block-regexp-for-name (name)
  92. "Regexp used to match named src block."
  93. (concat "#\\+srcname:[ \t]*" (regexp-quote name) "[ \t\n]*"
  94. (substring org-babel-src-block-regexp 1)))
  95. (defun org-babel-set-interpreters (var value)
  96. (set-default var value)
  97. (setq org-babel-src-block-regexp
  98. (concat "^[ \t]*#\\+begin_src[ \t]+\\(" ;; (1) lang
  99. (mapconcat 'regexp-quote value "\\|")
  100. "\\)[ \t]*"
  101. "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)" ;; (2) switches
  102. "\\([^\n]*\\)\n" ;; (3) header arguments
  103. "\\([^\000]+?\\)#\\+end_src")) ;; (4) body
  104. (setq org-babel-inline-src-block-regexp
  105. (concat "[ \f\t\n\r\v]\\(src_" ;; (1) replacement target
  106. "\\(" ;; (2) lang
  107. (mapconcat 'regexp-quote value "\\|")
  108. "\\)"
  109. "\\(\\|\\[\\(.*\\)\\]\\)" ;; (3,4) (unused, headers)
  110. "{\\([^\f\n\r\v]+\\)}" ;; (5) body
  111. "\\)")))
  112. (defun org-babel-add-interpreter (interpreter)
  113. "Add INTERPRETER to `org-babel-interpreters' and update
  114. `org-babel-src-block-regexp' appropriately."
  115. (unless (member interpreter org-babel-interpreters)
  116. (setq org-babel-interpreters (cons interpreter org-babel-interpreters))
  117. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  118. (defcustom org-babel-interpreters '()
  119. "Interpreters allows for evaluation tags.
  120. This is a list of program names (as strings) that can evaluate code and
  121. insert the output into an Org-mode buffer. Valid choices are
  122. R Evaluate R code
  123. emacs-lisp Evaluate Emacs Lisp code and display the result
  124. sh Pass command to the shell and display the result
  125. perl The perl interpreter
  126. python The python interpreter
  127. ruby The ruby interpreter
  128. The source block regexp `org-babel-src-block-regexp' is updated
  129. when a new interpreter is added to this list through the
  130. customize interface. To add interpreters to this variable from
  131. lisp code use the `org-babel-add-interpreter' function."
  132. :group 'org-babel
  133. :set 'org-babel-set-interpreters
  134. :type '(set :greedy t
  135. (const "R")
  136. (const "emacs-lisp")
  137. (const "sh")
  138. (const "perl")
  139. (const "python")
  140. (const "ruby")))
  141. ;;; functions
  142. (defun org-babel-execute-src-block (&optional arg info params)
  143. "Execute the current source code block, and insert the results
  144. into the buffer. Source code execution and the collection and
  145. formatting of results can be controlled through a variety of
  146. header arguments.
  147. Optionally supply a value for INFO in the form returned by
  148. `org-babel-get-src-block-info'.
  149. Optionally supply a value for PARAMS which will be merged with
  150. the header arguments specified at the front of the source code
  151. block."
  152. (interactive)
  153. ;; (message "supplied params=%S" params) ;; debugging
  154. (let* ((info (or info (org-babel-get-src-block-info)))
  155. (lang (first info))
  156. (params (setf (third info) (org-babel-merge-params (third info) params)))
  157. (new-hash (unless (assoc :nocache params) (org-babel-sha1-hash info)))
  158. (old-hash (org-babel-result-hash info))
  159. (body (setf (second info)
  160. (if (assoc :noweb params)
  161. (org-babel-expand-noweb-references info) (second info))))
  162. (result-params (split-string (or (cdr (assoc :results params)) "")))
  163. (result-type (cond ((member "output" result-params) 'output)
  164. ((member "value" result-params) 'value)
  165. (t 'value)))
  166. (cmd (intern (concat "org-babel-execute:" lang)))
  167. result)
  168. ;; (message "params=%S" params) ;; debugging
  169. (unless (member lang org-babel-interpreters)
  170. (error "Language is not in `org-babel-interpreters': %s" lang))
  171. (if (and (not arg) new-hash (equal new-hash old-hash))
  172. (save-excursion ;; return cached result
  173. (goto-char (org-babel-where-is-src-block-result nil info))
  174. (move-end-of-line 1) (forward-char 1)
  175. (setq result (org-babel-read-result))
  176. (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  177. (setq result (funcall cmd body params))
  178. (if (eq result-type 'value)
  179. (setq result (if (and (or (member "vector" result-params)
  180. (member "table" result-params))
  181. (not (listp result)))
  182. (list (list result))
  183. result)))
  184. (org-babel-insert-result result result-params info new-hash)
  185. result)))
  186. (defun org-babel-load-in-session (&optional arg info)
  187. "Load the body of the current source-code block. Evaluate the
  188. header arguments for the source block before entering the
  189. session. After loading the body this pops open the session."
  190. (interactive)
  191. (let* ((info (or info (org-babel-get-src-block-info)))
  192. (lang (first info))
  193. (body (second info))
  194. (params (third info))
  195. (session (cdr (assoc :session params))))
  196. (unless (member lang org-babel-interpreters)
  197. (error "Language is not in `org-babel-interpreters': %s" lang))
  198. ;; if called with a prefix argument, then process header arguments
  199. (pop-to-buffer (funcall (intern (concat "org-babel-load-session:" lang)) session body params))
  200. (move-end-of-line 1)))
  201. (defun org-babel-pop-to-session (&optional arg info)
  202. "Pop to the session of the current source-code block. If
  203. called with a prefix argument then evaluate the header arguments
  204. for the source block before entering the session. Copy the body
  205. of the source block to the kill ring."
  206. (interactive)
  207. (let* ((info (or info (org-babel-get-src-block-info)))
  208. (lang (first info))
  209. (body (second info))
  210. (params (third info))
  211. (session (cdr (assoc :session params))))
  212. (unless (member lang org-babel-interpreters)
  213. (error "Language is not in `org-babel-interpreters': %s" lang))
  214. ;; copy body to the kill ring
  215. (with-temp-buffer (insert (org-babel-trim body)) (copy-region-as-kill (point-min) (point-max)))
  216. ;; if called with a prefix argument, then process header arguments
  217. (if arg (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  218. ;; just to the session using pop-to-buffer
  219. (pop-to-buffer (funcall (intern (format "org-babel-%s-initiate-session" lang)) session))
  220. (move-end-of-line 1)))
  221. (defun org-babel-open-src-block-result (&optional re-run)
  222. "If `point' is on a src block then open the results of the
  223. source code block, otherwise return nil. With optional prefix
  224. argument RE-RUN the source-code block is evaluated even if
  225. results already exist."
  226. (interactive "P")
  227. (when (org-babel-get-src-block-info)
  228. (save-excursion
  229. ;; go to the results, if there aren't any then run the block
  230. (goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
  231. (progn (org-babel-execute-src-block)
  232. (org-babel-where-is-src-block-result))))
  233. (move-end-of-line 1) (forward-char 1)
  234. ;; open the results
  235. (if (looking-at org-bracket-link-regexp)
  236. ;; file results
  237. (org-open-at-point)
  238. (let ((results (org-babel-read-result)))
  239. (flet ((echo-res (result)
  240. (if (stringp result) result (format "%S" result))))
  241. (pop-to-buffer (get-buffer-create "org-babel-results"))
  242. (delete-region (point-min) (point-max))
  243. (if (listp results)
  244. ;; table result
  245. (insert (orgtbl-to-generic results '(:sep "\t" :fmt echo-res)))
  246. ;; scalar result
  247. (insert (echo-res results))))))
  248. t)))
  249. (defun org-babel-execute-buffer (&optional arg)
  250. "Replace EVAL snippets in the entire buffer."
  251. (interactive "P")
  252. (save-excursion
  253. (goto-char (point-min))
  254. (while (re-search-forward org-babel-src-block-regexp nil t)
  255. (goto-char (match-beginning 0))
  256. (org-babel-execute-src-block arg)
  257. (goto-char (match-end 0)))))
  258. (defun org-babel-execute-subtree (&optional arg)
  259. "Replace EVAL snippets in the entire subtree."
  260. (interactive "P")
  261. (save-excursion
  262. (org-narrow-to-subtree)
  263. (org-babel-execute-buffer)
  264. (widen)))
  265. (defun org-babel-get-src-block-info (&optional header-vars-only)
  266. "Get information of the current source block.
  267. Returns a list
  268. (language body header-arguments-alist switches name function-args).
  269. Unless HEADER-VARS-ONLY is non-nil, any variable
  270. references provided in 'function call style' (i.e. in a
  271. parenthesised argument list following the src block name) are
  272. added to the header-arguments-alist."
  273. (let ((case-fold-search t) head info args)
  274. (if (setq head (org-babel-where-is-src-block-head))
  275. (save-excursion
  276. (goto-char head)
  277. (setq info (org-babel-parse-src-block-match))
  278. (forward-line -1)
  279. (when (looking-at "#\\+srcname:[ \t]*\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)")
  280. (setq info (append info (list (org-babel-clean-text-properties (match-string 1)))))
  281. ;; Note that e.g. "name()" and "name( )" result in ((:var . "")).
  282. ;; We maintain that behaviour, and the resulting non-nil sixth
  283. ;; element is relied upon in org-babel-exp-code to detect a functional-style
  284. ;; block in those cases. However, "name" without any
  285. ;; parentheses would result in the same thing, so we
  286. ;; explicitly avoid that.
  287. (if (setq args (match-string 3))
  288. (setq info (append info (list (mapcar (lambda (ref) (cons :var ref))
  289. (org-babel-ref-split-args args))))))
  290. (unless header-vars-only
  291. (setf (third info)
  292. (org-babel-merge-params (sixth info) (third info)))))
  293. info)
  294. (if (save-excursion ;; inline source block
  295. (re-search-backward "[ \f\t\n\r\v]" nil t)
  296. (looking-at org-babel-inline-src-block-regexp))
  297. (org-babel-parse-inline-src-block-match)
  298. nil)))) ;; indicate that no source block was found
  299. (defun org-babel-sha1-hash (&optional info)
  300. (interactive)
  301. (let* ((info (or info (org-babel-get-src-block-info)))
  302. (hash (sha1 (format "%s-%s" (mapconcat (lambda (arg) (format "%S" arg))
  303. (third info) ":")
  304. (second info)))))
  305. (when (interactive-p) (message hash))
  306. hash))
  307. (defun org-babel-result-hash (&optional info)
  308. (org-babel-where-is-src-block-result nil info)
  309. (org-babel-clean-text-properties (match-string 2)))
  310. (defmacro org-babel-map-source-blocks (file &rest body)
  311. "Evaluate BODY forms on each source-block in FILE."
  312. (declare (indent 1))
  313. `(let ((visited-p (get-buffer (file-name-nondirectory ,file))))
  314. (save-window-excursion
  315. (find-file ,file) (goto-char (point-min))
  316. (while (re-search-forward org-babel-src-block-regexp nil t)
  317. (goto-char (match-beginning 0))
  318. (save-match-data ,@body)
  319. (goto-char (match-end 0))))
  320. (unless visited-p (kill-buffer (file-name-nondirectory file)))))
  321. (defun org-babel-params-from-properties ()
  322. "Return an association list of any source block params which
  323. may be specified in the properties of the current outline entry."
  324. (save-match-data
  325. (delq nil
  326. (mapcar
  327. (lambda (header-arg)
  328. (let ((val (or (org-entry-get (point) header-arg 'selective)
  329. (cdr (assoc header-arg org-file-properties)))))
  330. (when val
  331. ;; (message "param-from-property %s=%s" header-arg val) ;; debugging statement
  332. (cons (intern (concat ":" header-arg)) val))))
  333. '("exports" "results" "session" "tangle" "var")))))
  334. (defun org-babel-parse-src-block-match ()
  335. (let* ((lang (org-babel-clean-text-properties (match-string 1)))
  336. (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
  337. (switches (match-string 2))
  338. (body (org-babel-clean-text-properties (match-string 4)))
  339. (preserve-indentation (or org-src-preserve-indentation
  340. (string-match "-i\\>" switches))))
  341. (list lang
  342. ;; get src block body removing properties, protective commas, and indentation
  343. (with-temp-buffer
  344. (save-match-data
  345. (insert (org-babel-strip-protective-commas body))
  346. (unless preserve-indentation (org-do-remove-indentation))
  347. (buffer-string)))
  348. (org-babel-merge-params
  349. org-babel-default-header-args
  350. (org-babel-params-from-properties)
  351. (if (boundp lang-headers) (eval lang-headers) nil)
  352. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))
  353. switches)))
  354. (defun org-babel-parse-inline-src-block-match ()
  355. (let* ((lang (org-babel-clean-text-properties (match-string 2)))
  356. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  357. (list lang
  358. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 5)))
  359. (org-babel-merge-params
  360. org-babel-default-inline-header-args
  361. (org-babel-params-from-properties)
  362. (if (boundp lang-headers) (eval lang-headers) nil)
  363. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 4) "")))))))
  364. (defun org-babel-parse-header-arguments (arg-string)
  365. "Parse a string of header arguments returning an alist."
  366. (if (> (length arg-string) 0)
  367. (delq nil
  368. (mapcar
  369. (lambda (arg)
  370. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  371. (cons (intern (concat ":" (match-string 1 arg)))
  372. (org-babel-chomp (match-string 2 arg)))
  373. (cons (intern (concat ":" arg)) nil)))
  374. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  375. (defun org-babel-process-params (params)
  376. "Parse params and resolve references.
  377. Return a list (session vars result-params result-type)."
  378. (let* ((session (cdr (assoc :session params)))
  379. (vars (org-babel-ref-variables params))
  380. (result-params (split-string (or (cdr (assoc :results params)) "")))
  381. (result-type (cond ((member "output" result-params) 'output)
  382. ((member "value" result-params) 'value)
  383. (t 'value))))
  384. (list session vars result-params result-type)))
  385. (defun org-babel-where-is-src-block-head ()
  386. "Return the point at the beginning of the current source
  387. block. Specifically at the beginning of the #+BEGIN_SRC line.
  388. If the point is not on a source block then return nil."
  389. (let ((initial (point)) top bottom)
  390. (or
  391. (save-excursion ;; on a #+srcname: line
  392. (beginning-of-line 1)
  393. (and (looking-at "#\\+srcname") (forward-line 1)
  394. (looking-at org-babel-src-block-regexp)
  395. (point)))
  396. (save-excursion ;; on a #+begin_src line
  397. (beginning-of-line 1)
  398. (and (looking-at org-babel-src-block-regexp)
  399. (point)))
  400. (save-excursion ;; inside a src block
  401. (and
  402. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  403. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  404. (< top initial) (< initial bottom)
  405. (goto-char top) (move-beginning-of-line 1)
  406. (looking-at org-babel-src-block-regexp)
  407. (point))))))
  408. (defun org-babel-goto-named-source-block (&optional name)
  409. "Go to a named source-code block."
  410. (interactive "ssource-block name: ")
  411. (let ((point (org-babel-find-named-block name)))
  412. (if point
  413. ;; taken from `org-open-at-point'
  414. (progn (goto-char point) (org-show-context))
  415. (message "source-code block '%s' not found in this buffer" name))))
  416. (defun org-babel-find-named-block (name)
  417. "Find a named source-code block.
  418. Return the location of the source block identified by
  419. #+srcname NAME, or nil if no such block exists. Set match data
  420. according to org-babel-named-src-block-regexp."
  421. (save-excursion
  422. (let ((case-fold-search t)
  423. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  424. (goto-char (point-min))
  425. (when (or (re-search-forward regexp nil t)
  426. (re-search-backward regexp nil t))
  427. (match-beginning 0)))))
  428. (defun org-babel-find-named-result (name)
  429. "Return the location of the result named NAME in the current
  430. buffer or nil if no such result exists."
  431. (save-excursion
  432. (goto-char (point-min))
  433. (when (re-search-forward
  434. (concat org-babel-result-regexp "[ \t]" (regexp-quote name) "[ \t\n\f\v\r]") nil t)
  435. (move-beginning-of-line 0) (point))))
  436. (defun org-babel-where-is-src-block-result (&optional insert info hash)
  437. "Return the point at the beginning of the result of the current
  438. source block. Specifically at the beginning of the results line.
  439. If no result exists for this block then create a results line
  440. following the source block."
  441. (save-excursion
  442. (let* ((on-lob-line (progn (beginning-of-line 1)
  443. (looking-at org-babel-lob-one-liner-regexp)))
  444. (name (if on-lob-line (first (org-babel-lob-get-info))
  445. (fifth (or info (org-babel-get-src-block-info)))))
  446. (head (unless on-lob-line (org-babel-where-is-src-block-head))) end)
  447. (when head (goto-char head))
  448. (or (and name (org-babel-find-named-result name))
  449. (and (or on-lob-line (re-search-forward "#\\+end_src" nil t))
  450. (progn (move-end-of-line 1)
  451. (if (eobp) (insert "\n") (forward-char 1))
  452. (setq end (point))
  453. (or (and (not name)
  454. (progn ;; unnamed results line already exists
  455. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  456. (move-beginning-of-line 1)
  457. (looking-at (concat org-babel-result-regexp "\n"))))
  458. ;; or (with optional insert) back up and make one ourselves
  459. (when insert
  460. (goto-char end) (forward-char 1)
  461. (insert (concat "#+resname" (if hash (concat "["hash"]"))
  462. ":"(if name (concat " " name)) "\n"))
  463. (move-beginning-of-line 0) t)))
  464. (point))))))
  465. (defun org-babel-read-result ()
  466. "Read the result at `point' into emacs-lisp."
  467. (let ((case-fold-search t) result-string)
  468. (cond
  469. ((org-at-table-p) (org-babel-read-table))
  470. ((looking-at org-block-regexp) (org-babel-trim (match-string 4)))
  471. ((looking-at ": ")
  472. (setq result-string
  473. (org-babel-trim
  474. (mapconcat (lambda (line) (if (and (> (length line) 1)
  475. (string= ": " (substring line 0 2)))
  476. (substring line 2)
  477. line))
  478. (split-string
  479. (buffer-substring (point) (org-babel-result-end)) "[\r\n]+")
  480. "\n")))
  481. (or (org-babel-number-p result-string) result-string))
  482. ((looking-at org-babel-result-regexp)
  483. (save-excursion (forward-line 1) (org-babel-read-result))))))
  484. (defun org-babel-read-table ()
  485. "Read the table at `point' into emacs-lisp."
  486. (mapcar (lambda (row)
  487. (if (and (symbolp row) (equal row 'hline)) row
  488. (mapcar #'org-babel-read row)))
  489. (org-table-to-lisp)))
  490. (defun org-babel-insert-result (result &optional result-params info hash)
  491. "Insert RESULT into the current buffer after the end of the
  492. current source block. With optional argument RESULT-PARAMS
  493. controls insertion of results in the org-mode file.
  494. RESULT-PARAMS can take the following values...
  495. replace - (default option) insert results after the source block
  496. replacing any previously inserted results
  497. silent -- no results are inserted
  498. file ---- the results are interpreted as a file path, and are
  499. inserted into the buffer using the Org-mode file syntax
  500. raw ----- results are added directly to the org-mode file. This
  501. is a good option if you code block will output org-mode
  502. formatted text.
  503. org ----- this is the same as the 'raw' option
  504. html ---- results are added inside of a #+BEGIN_HTML block. This
  505. is a good option if you code block will output html
  506. formatted text.
  507. latex --- results are added inside of a #+BEGIN_LATEX block.
  508. This is a good option if you code block will output
  509. latex formatted text.
  510. code ---- the results are extracted in the syntax of the source
  511. code of the language being evaluated and are added
  512. inside of a #+BEGIN_SRC block with the source-code
  513. language set appropriately."
  514. (if (stringp result)
  515. (progn
  516. (setq result (org-babel-clean-text-properties result))
  517. (when (member "file" result-params)
  518. (setq result (org-babel-result-to-file result))))
  519. (unless (listp result) (setq result (format "%S" result))))
  520. (if (and result-params (member "replace" result-params)
  521. (not (member "silent" result-params)))
  522. (org-babel-remove-result info))
  523. (if (= (length result) 0)
  524. (if (member "value" result-params)
  525. (message "No result returned by source block")
  526. (message "Source block produced no output"))
  527. (if (and result-params (member "silent" result-params))
  528. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  529. result)
  530. (when (and (stringp result) ;; ensure results end in a newline
  531. (not (or (string-equal (substring result -1) "\n")
  532. (string-equal (substring result -1) "\r"))))
  533. (setq result (concat result "\n")))
  534. (save-excursion
  535. (let ((existing-result (org-babel-where-is-src-block-result t info hash))
  536. (results-switches (cdr (assoc :results_switches (third info)))))
  537. (when existing-result (goto-char existing-result) (forward-line 1))
  538. (setq results-switches
  539. (if results-switches (concat " " results-switches) ""))
  540. (cond
  541. ;; assume the result is a table if it's not a string
  542. ((not (stringp result))
  543. (insert (concat (orgtbl-to-orgtbl
  544. (if (and (listp (car result))
  545. (listp (cdr (car result))))
  546. result (list result))
  547. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  548. (forward-line -1) (org-cycle))
  549. ((member "file" result-params)
  550. (insert result))
  551. ((member "html" result-params)
  552. (insert (format "#+BEGIN_HTML%s\n%s#+END_HTML\n" results-switches result)))
  553. ((member "latex" result-params)
  554. (insert (format "#+BEGIN_LaTeX%s\n%s#+END_LaTeX\n" results-switches result)))
  555. ((member "code" result-params)
  556. (insert (format "#+BEGIN_SRC %s%s\n%s#+END_SRC\n" lang results-switches result)))
  557. ((or (member "raw" result-params) (member "org" result-params))
  558. (save-excursion (insert result)) (if (org-at-table-p) (org-cycle)))
  559. (t
  560. (org-babel-examplize-region
  561. (point) (progn (insert result) (point)) results-switches)))))
  562. (message "finished"))))
  563. (defun org-babel-result-to-org-string (result)
  564. "Return RESULT as a string in org-mode format. This function
  565. relies on `org-babel-insert-result'."
  566. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  567. (defun org-babel-remove-result (&optional info)
  568. "Remove the result of the current source block."
  569. (interactive)
  570. (let ((location (org-babel-where-is-src-block-result nil info)) start)
  571. (when location
  572. (save-excursion
  573. (goto-char location) (setq start (point)) (forward-line 1)
  574. (delete-region start (org-babel-result-end))))))
  575. (defun org-babel-result-end ()
  576. "Return the point at the end of the current set of results"
  577. (save-excursion
  578. (if (org-at-table-p)
  579. (progn (goto-char (org-table-end)) (point))
  580. (let ((case-fold-search t))
  581. (cond
  582. ((looking-at "#\\+begin_latex")
  583. (search-forward "#+end_latex" nil t)
  584. (forward-line 1))
  585. ((looking-at "#\\+begin_html")
  586. (search-forward "#+end_html" nil t)
  587. (forward-line 1))
  588. ((looking-at "#\\+begin_example")
  589. (search-forward "#+end_example" nil t)
  590. (forward-line 1))
  591. ((looking-at "#\\+begin_src")
  592. (search-forward "#+end_src" nil t)
  593. (forward-line 1))
  594. (t (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  595. (forward-line 1))))))
  596. (point))))
  597. (defun org-babel-result-to-file (result)
  598. "Return an `org-mode' link with the path being the value or
  599. RESULT, and the display being the `file-name-nondirectory' if
  600. non-nil."
  601. (concat "[[file:" result "]]"))
  602. (defun org-babel-examplize-region (beg end &optional results-switches)
  603. "Comment out region using the ': ' org example quote."
  604. (interactive "*r")
  605. (let ((size (abs (- (line-number-at-pos end)
  606. (line-number-at-pos beg)))))
  607. (save-excursion
  608. (cond ((= size 0)
  609. (error "This should be impossible: a newline was appended to result if missing"))
  610. ((< size org-babel-min-lines-for-block-output)
  611. (goto-char beg)
  612. (dotimes (n size)
  613. (move-beginning-of-line 1) (insert ": ") (forward-line 1)))
  614. (t
  615. (goto-char beg)
  616. (insert (if results-switches
  617. (format "#+begin_example%s\n" results-switches)
  618. "#+begin_example\n"))
  619. (forward-char (- end beg))
  620. (insert "#+end_example\n"))))))
  621. (defun org-babel-merge-params (&rest plists)
  622. "Combine all parameter association lists in PLISTS. Later
  623. elements of PLISTS override the values of previous element. This
  624. takes into account some special considerations for certain
  625. parameters when merging lists."
  626. (let ((results-exclusive-groups
  627. '(("file" "vector" "table" "scalar" "raw" "org" "html" "latex" "code" "pp")
  628. ("replace" "silent")
  629. ("output" "value")))
  630. (exports-exclusive-groups
  631. '(("code" "results" "both" "none")))
  632. params results exports tangle cache vars var ref)
  633. (flet ((e-merge (exclusive-groups &rest result-params)
  634. ;; maintain exclusivity of mutually exclusive parameters
  635. (let (output)
  636. (mapc (lambda (new-params)
  637. (mapc (lambda (new-param)
  638. (mapc (lambda (exclusive-group)
  639. (when (member new-param exclusive-group)
  640. (mapcar (lambda (excluded-param)
  641. (setq output (delete excluded-param output)))
  642. exclusive-group)))
  643. exclusive-groups)
  644. (setq output (org-uniquify (cons new-param output))))
  645. new-params))
  646. result-params)
  647. output)))
  648. (mapc (lambda (plist)
  649. (mapc (lambda (pair)
  650. (case (car pair)
  651. (:var
  652. ;; we want only one specification per variable
  653. (when (string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=[ \t]*\\([^\f\n\r\v]+\\)$" (cdr pair))
  654. ;; TODO: When is this not true?
  655. (setq var (intern (match-string 1 (cdr pair)))
  656. ref (match-string 2 (cdr pair))
  657. vars (cons (cons var ref) (assq-delete-all var vars)))))
  658. (:results
  659. (setq results
  660. (e-merge results-exclusive-groups results (split-string (cdr pair)))))
  661. (:file
  662. (when (cdr pair)
  663. (setq results (e-merge results-exclusive-groups results '("file")))
  664. (unless (or (member "both" exports) (member "none" exports))
  665. (setq exports (e-merge exports-exclusive-groups exports '("results"))))
  666. (setq params (cons pair (assq-delete-all (car pair) params)))))
  667. (:exports
  668. (setq exports (e-merge exports-exclusive-groups
  669. exports (split-string (cdr pair)))))
  670. (:tangle
  671. (setq tangle (e-merge '(("yes" "no"))
  672. tangle (split-string (cdr pair)))))
  673. (:cache (setq cache t)) (:nocache (setq cache nil))
  674. (t ;; replace: this covers e.g. :session
  675. (setq params (cons pair (assq-delete-all (car pair) params))))))
  676. plist))
  677. plists))
  678. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  679. (while vars (setq params (cons (cons :var (pop vars)) params)))
  680. (cons (if cache (list :cache) (list :nocache))
  681. (cons (cons :tangle (mapconcat 'identity tangle " "))
  682. (cons (cons :exports (mapconcat 'identity exports " "))
  683. (cons (cons :results (mapconcat 'identity results " "))
  684. params))))))
  685. (defun org-babel-expand-noweb-references (&optional info parent-buffer)
  686. "This function expands Noweb style references in the body of
  687. the current source-code block. For example the following
  688. reference would be replaced with the body of the source-code
  689. block named 'example-block' (assuming the '#' character starts a
  690. comment) .
  691. # <<example-block>>
  692. This function must be called from inside of the buffer containing
  693. the source-code block which holds BODY.
  694. In addition the following syntax can be used to insert the
  695. results of evaluating the source-code block named 'example-block'.
  696. # <<example-block()>>
  697. Any optional arguments can be passed to example-block by placing
  698. the arguments inside the parenthesis following the convention
  699. defined by `org-babel-lob'. For example
  700. # <<example-block(a=9)>>
  701. would set the value of argument \"a\" equal to \"9\". Note that
  702. these arguments are not evaluated in the current source-code block but are passed literally to the \"example-block\"."
  703. (let* ((parent-buffer (or parent-buffer (current-buffer)))
  704. (info (or info (org-babel-get-src-block-info)))
  705. (lang (first info))
  706. (body (second info))
  707. (new-body "") index source-name evaluate)
  708. (flet ((nb-add (text)
  709. (setq new-body (concat new-body text))))
  710. (with-temp-buffer
  711. (insert body) (goto-char (point-min))
  712. (funcall (intern (concat (or (and (cdr (assoc lang org-src-lang-modes))
  713. (symbol-name
  714. (cdr (assoc lang org-src-lang-modes))))
  715. lang) "-mode")))
  716. (setq index (point))
  717. (while (and (re-search-forward "<<\\(.+?\\)>>" nil t))
  718. (save-match-data (setf source-name (match-string 1)))
  719. (save-match-data (setq evaluate (string-match "\(.*\)" source-name)))
  720. ;; add interval to new-body (removing noweb reference)
  721. (goto-char (match-beginning 0))
  722. (nb-add (buffer-substring index (point)))
  723. (goto-char (match-end 0))
  724. (setq index (point))
  725. (nb-add (save-excursion
  726. (set-buffer parent-buffer)
  727. (if evaluate
  728. (let ((raw (org-babel-ref-resolve-reference
  729. source-name nil)))
  730. (if (stringp raw) raw (format "%S" raw)))
  731. (let ((point (org-babel-find-named-block source-name)))
  732. (if point
  733. (save-excursion
  734. (goto-char point)
  735. (org-babel-trim (org-babel-expand-noweb-references
  736. (org-babel-get-src-block-info))))
  737. ;; optionally raise an error if named source-block doesn't exist
  738. (if (member lang org-babel-noweb-error-langs)
  739. (error
  740. "<<%s>> could not be resolved (see `org-babel-noweb-error-langs')"
  741. source-name)
  742. "")))))))
  743. (nb-add (buffer-substring index (point-max)))))
  744. new-body))
  745. (defun org-babel-clean-text-properties (text)
  746. "Strip all properties from text return."
  747. (set-text-properties 0 (length text) nil text) text)
  748. (defun org-babel-strip-protective-commas (body)
  749. "Strip protective commas from bodies of source blocks."
  750. (replace-regexp-in-string "^,#" "#" body))
  751. (defun org-babel-read (cell)
  752. "Convert the string value of CELL to a number if appropriate.
  753. Otherwise if cell looks like lisp (meaning it starts with a
  754. \"(\" or a \"'\") then read it as lisp, otherwise return it
  755. unmodified as a string.
  756. This is taken almost directly from `org-read-prop'."
  757. (if (and (stringp cell) (not (equal cell "")))
  758. (or (org-babel-number-p cell)
  759. (if (or (equal "(" (substring cell 0 1))
  760. (equal "'" (substring cell 0 1)))
  761. (read cell)
  762. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  763. cell))
  764. (defun org-babel-number-p (string)
  765. "Return t if STRING represents a number"
  766. (if (and (string-match "^-?[[:digit:]]*\\.?[[:digit:]]*$" string)
  767. (= (match-end 0) (length string)))
  768. (string-to-number string)))
  769. (defun org-babel-import-elisp-from-file (file-name)
  770. "Read the results located at FILE-NAME into an elisp table. If
  771. the table is trivial, then return it as a scalar."
  772. (let (result)
  773. (with-temp-buffer
  774. (condition-case nil
  775. (progn
  776. (org-table-import file-name nil)
  777. (delete-file file-name)
  778. (setq result (mapcar (lambda (row)
  779. (mapcar #'org-babel-string-read row))
  780. (org-table-to-lisp))))
  781. (error nil)))
  782. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  783. (if (consp (car result))
  784. (if (null (cdr (car result)))
  785. (caar result)
  786. result)
  787. (car result))
  788. result)))
  789. (defun org-babel-string-read (cell)
  790. "Strip nested \"s from around strings in exported R values."
  791. (org-babel-read (or (and (stringp cell)
  792. (string-match "\\\"\\(.+\\)\\\"" cell)
  793. (match-string 1 cell))
  794. cell)))
  795. (defun org-babel-reverse-string (string)
  796. (apply 'string (reverse (string-to-list string))))
  797. (defun org-babel-chomp (string &optional regexp)
  798. "Remove any trailing space or carriage returns characters from
  799. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  800. overwritten by specifying a regexp as a second argument."
  801. (let ((regexp (or regexp "[ \f\t\n\r\v]")))
  802. (while (and (> (length string) 0) (string-match regexp (substring string -1)))
  803. (setq string (substring string 0 -1)))
  804. string))
  805. (defun org-babel-trim (string &optional regexp)
  806. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  807. (org-babel-chomp (org-babel-reverse-string
  808. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  809. (provide 'org-babel)
  810. ;;; org-babel.el ends here