org-babel.el 37 KB

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