org-babel.el 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  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 (language body header-arguments-alist switches
  266. name). Unless HEADER-VARS-ONLY is non-nil, any variable
  267. references provided in 'function call style' (i.e. in a
  268. parenthesised argument list following the src block name) are
  269. added to the header-arguments-alist."
  270. (let ((case-fold-search t) head info)
  271. (if (setq head (org-babel-where-is-src-block-head))
  272. (save-excursion
  273. (goto-char head)
  274. (setq info (org-babel-parse-src-block-match))
  275. (forward-line -1)
  276. (when (looking-at "#\\+srcname:[ \t]*\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)")
  277. (setq info (append info (list (org-babel-clean-text-properties (match-string 1)))))
  278. (unless header-vars-only
  279. (setf (third info)
  280. (org-babel-merge-params
  281. (mapcar (lambda (ref) (cons :var ref))
  282. (org-babel-ref-split-args (match-string 3)))
  283. (third info)))))
  284. info)
  285. (if (save-excursion ;; inline source block
  286. (re-search-backward "[ \f\t\n\r\v]" nil t)
  287. (looking-at org-babel-inline-src-block-regexp))
  288. (org-babel-parse-inline-src-block-match)
  289. nil)))) ;; indicate that no source block was found
  290. (defmacro org-babel-map-source-blocks (file &rest body)
  291. "Evaluate BODY forms on each source-block in FILE."
  292. (declare (indent 1))
  293. `(let ((visited-p (get-buffer (file-name-nondirectory ,file))))
  294. (save-window-excursion
  295. (find-file ,file) (goto-char (point-min))
  296. (while (re-search-forward org-babel-src-block-regexp nil t)
  297. (goto-char (match-beginning 0))
  298. (save-match-data ,@body)
  299. (goto-char (match-end 0))))
  300. (unless visited-p (kill-buffer (file-name-nondirectory file)))))
  301. (defun org-babel-params-from-properties ()
  302. "Return an association list of any source block params which
  303. may be specified in the properties of the current outline entry."
  304. (save-match-data
  305. (delq nil
  306. (mapcar
  307. (lambda (header-arg)
  308. (let ((val (or (org-entry-get (point) header-arg 'selective)
  309. (cdr (assoc header-arg org-file-properties)))))
  310. (when val
  311. ;; (message "param-from-property %s=%s" header-arg val) ;; debugging statement
  312. (cons (intern (concat ":" header-arg)) val))))
  313. '("exports" "results" "session" "tangle" "var")))))
  314. (defun org-babel-parse-src-block-match ()
  315. (let* ((lang (org-babel-clean-text-properties (match-string 1)))
  316. (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
  317. (switches (match-string 2))
  318. (body (org-babel-clean-text-properties (match-string 4)))
  319. (preserve-indentation (or org-src-preserve-indentation
  320. (string-match "-i\\>" switches))))
  321. (list lang
  322. ;; get src block body removing properties, protective commas, and indentation
  323. (with-temp-buffer
  324. (save-match-data
  325. (insert (org-babel-strip-protective-commas body))
  326. (unless preserve-indentation (org-do-remove-indentation))
  327. (buffer-string)))
  328. (org-babel-merge-params
  329. org-babel-default-header-args
  330. (org-babel-params-from-properties)
  331. (if (boundp lang-headers) (eval lang-headers) nil)
  332. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))
  333. switches)))
  334. (defun org-babel-parse-inline-src-block-match ()
  335. (let* ((lang (org-babel-clean-text-properties (match-string 2)))
  336. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  337. (list lang
  338. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 5)))
  339. (org-babel-merge-params
  340. org-babel-default-inline-header-args
  341. (org-babel-params-from-properties)
  342. (if (boundp lang-headers) (eval lang-headers) nil)
  343. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 4) "")))))))
  344. (defun org-babel-parse-header-arguments (arg-string)
  345. "Parse a string of header arguments returning an alist."
  346. (if (> (length arg-string) 0)
  347. (delq nil
  348. (mapcar
  349. (lambda (arg)
  350. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  351. (cons (intern (concat ":" (match-string 1 arg)))
  352. (org-babel-chomp (match-string 2 arg)))
  353. (cons (intern (concat ":" arg)) nil)))
  354. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  355. (defun org-babel-process-params (params)
  356. "Parse params and resolve references.
  357. Return a list (session vars result-params result-type). These are
  358. made available to the org-babel-execute:LANG functions via
  359. multiple-value-bind."
  360. (let* ((session (cdr (assoc :session params)))
  361. (vars (org-babel-ref-variables params))
  362. (result-params (split-string (or (cdr (assoc :results params)) "")))
  363. (result-type (cond ((member "output" result-params) 'output)
  364. ((member "value" result-params) 'value)
  365. (t 'value))))
  366. (list session vars result-params result-type)))
  367. (defun org-babel-where-is-src-block-head ()
  368. "Return the point at the beginning of the current source
  369. block. Specifically at the beginning of the #+BEGIN_SRC line.
  370. If the point is not on a source block then return nil."
  371. (let ((initial (point)) top bottom)
  372. (or
  373. (save-excursion ;; on a #+srcname: line
  374. (beginning-of-line 1)
  375. (and (looking-at "#\\+srcname") (forward-line 1)
  376. (looking-at org-babel-src-block-regexp)
  377. (point)))
  378. (save-excursion ;; on a #+begin_src line
  379. (beginning-of-line 1)
  380. (and (looking-at org-babel-src-block-regexp)
  381. (point)))
  382. (save-excursion ;; inside a src block
  383. (and
  384. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  385. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  386. (< top initial) (< initial bottom)
  387. (goto-char top) (move-beginning-of-line 1)
  388. (looking-at org-babel-src-block-regexp)
  389. (point))))))
  390. (defun org-babel-goto-named-source-block (&optional name)
  391. "Go to a named source-code block."
  392. (interactive "ssource-block name: ")
  393. (let ((point (org-babel-find-named-block name)))
  394. (if point
  395. ;; taken from `org-open-at-point'
  396. (progn (goto-char point) (org-show-context))
  397. (message "source-code block '%s' not found in this buffer" name))))
  398. (defun org-babel-find-named-block (name)
  399. "Find a named source-code block.
  400. Return the location of the source block identified by
  401. #+srcname NAME, or nil if no such block exists. Set match data
  402. according to org-babel-named-src-block-regexp."
  403. (save-excursion
  404. (let ((case-fold-search t)
  405. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  406. (goto-char (point-min))
  407. (when (or (re-search-forward regexp nil t)
  408. (re-search-backward regexp nil t))
  409. (match-beginning 0)))))
  410. (defun org-babel-find-named-result (name)
  411. "Return the location of the result named NAME in the current
  412. buffer or nil if no such result exists."
  413. (save-excursion
  414. (goto-char (point-min))
  415. (when (re-search-forward ;; ellow end-of-buffer in following regexp?
  416. (concat "#\\+resname:[ \t]*" (regexp-quote name) "[ \t\n\f\v\r]") nil t)
  417. (move-beginning-of-line 0) (point))))
  418. (defun org-babel-where-is-src-block-result (&optional insert)
  419. "Return the point at the beginning of the result of the current
  420. source block. Specifically at the beginning of the #+RESNAME:
  421. line. If no result exists for this block then create a
  422. #+RESNAME: line following the source block."
  423. (save-excursion
  424. (let* ((on-lob-line (progn (beginning-of-line 1)
  425. (looking-at org-babel-lob-one-liner-regexp)))
  426. (name (if on-lob-line (first (org-babel-lob-get-info))
  427. (fifth (org-babel-get-src-block-info))))
  428. (head (unless on-lob-line (org-babel-where-is-src-block-head))) end)
  429. (when head (goto-char head))
  430. (or (and name (org-babel-find-named-result name))
  431. (and (or on-lob-line (re-search-forward "#\\+end_src" nil t))
  432. (progn (move-end-of-line 1)
  433. (if (eobp) (insert "\n") (forward-char 1))
  434. (setq end (point))
  435. (or (and (not name)
  436. (progn ;; either the unnamed #+resname: line already exists
  437. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  438. (move-beginning-of-line 1) (looking-at "#\\+resname:\n")))
  439. ;; or (with optional insert) we need to back up and make one ourselves
  440. (when insert
  441. (goto-char end) (open-line 2) (forward-char 1)
  442. (insert (concat "#+resname:" (if name (concat " " name)) "\n"))
  443. (move-beginning-of-line 0) t)))
  444. (point))))))
  445. (defun org-babel-read-result ()
  446. "Read the result at `point' into emacs-lisp."
  447. (cond
  448. ((org-at-table-p) (org-babel-read-table))
  449. ((looking-at ": ")
  450. (let ((result-string
  451. (org-babel-trim
  452. (mapconcat (lambda (line) (if (and (> (length line) 1)
  453. (string= ": " (substring line 0 2)))
  454. (substring line 2)
  455. line))
  456. (split-string
  457. (buffer-substring (point) (org-babel-result-end)) "[\r\n]+")
  458. "\n"))))
  459. (or (org-babel-number-p result-string) result-string)))
  460. ((looking-at "^#\\+RESNAME:")
  461. (save-excursion (forward-line 1) (org-babel-read-result)))))
  462. (defun org-babel-read-table ()
  463. "Read the table at `point' into emacs-lisp."
  464. (mapcar (lambda (row)
  465. (if (and (symbolp row) (equal row 'hline)) row
  466. (mapcar #'org-babel-read row)))
  467. (org-table-to-lisp)))
  468. (defun org-babel-insert-result (result &optional insert)
  469. "Insert RESULT into the current buffer after the end of the
  470. current source block. With optional argument INSERT controls
  471. insertion of results in the org-mode file. INSERT can take the
  472. following values...
  473. replace - (default option) insert results after the source block
  474. replacing any previously inserted results
  475. silent -- no results are inserted
  476. file ---- the results are interpreted as a file path, and are
  477. inserted into the buffer using the Org-mode file syntax
  478. raw ----- results are added directly to the org-mode file. This
  479. is a good option if you code block will output org-mode
  480. formatted text.
  481. org ----- this is the same as the 'raw' option
  482. html ---- results are added inside of a #+BEGIN_HTML block. This
  483. is a good option if you code block will output html
  484. formatted text.
  485. latex --- results are added inside of a #+BEGIN_LATEX block.
  486. This is a good option if you code block will output
  487. latex formatted text.
  488. code ---- the results are extracted in the syntax of the source
  489. code of the language being evaluated and are added
  490. inside of a #+BEGIN_SRC block with the source-code
  491. language set appropriately."
  492. (if (stringp result)
  493. (progn
  494. (setq result (org-babel-clean-text-properties result))
  495. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  496. (unless (listp result) (setq result (format "%S" result))))
  497. (if (and insert (member "replace" insert) (not (member "silent" insert)))
  498. (org-babel-remove-result))
  499. (if (= (length result) 0)
  500. (if (member "value" result-params)
  501. (message "No result returned by source block")
  502. (message "Source block produced no output"))
  503. (if (and insert (member "silent" insert))
  504. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  505. (when (and (stringp result) ;; ensure results end in a newline
  506. (not (or (string-equal (substring result -1) "\n")
  507. (string-equal (substring result -1) "\r"))))
  508. (setq result (concat result "\n")))
  509. (save-excursion
  510. (let ((existing-result (org-babel-where-is-src-block-result t)))
  511. (when existing-result (goto-char existing-result) (forward-line 1)))
  512. (cond
  513. ;; assume the result is a table if it's not a string
  514. ((not (stringp result))
  515. (insert (concat (orgtbl-to-orgtbl
  516. (if (and (listp (car result)) (listp (cdr (car result))))
  517. result (list result))
  518. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  519. (forward-line -1) (org-cycle))
  520. ((member "file" insert)
  521. (insert result))
  522. ((member "html" insert)
  523. (insert (format "#+BEGIN_HTML\n%s#+END_HTML\n" result)))
  524. ((member "latex" insert)
  525. (insert (format "#+BEGIN_LaTeX\n%s#+END_LaTeX\n" result)))
  526. ((member "code" insert)
  527. (insert (format "#+BEGIN_SRC %s\n%s#+END_SRC\n" lang result)))
  528. ((or (member "raw" insert) (member "org" insert))
  529. (save-excursion (insert result)) (if (org-at-table-p) (org-cycle)))
  530. (t
  531. (org-babel-examplize-region (point) (progn (insert result) (point))))))
  532. (message "finished"))))
  533. (defun org-babel-result-to-org-string (result)
  534. "Return RESULT as a string in org-mode format. This function
  535. relies on `org-babel-insert-result'."
  536. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  537. (defun org-babel-remove-result ()
  538. "Remove the result of the current source block."
  539. (interactive)
  540. (save-excursion
  541. (goto-char (org-babel-where-is-src-block-result t)) (forward-line 1)
  542. (delete-region (point) (org-babel-result-end))))
  543. (defun org-babel-result-end ()
  544. "Return the point at the end of the current set of results"
  545. (save-excursion
  546. (if (org-at-table-p)
  547. (progn (goto-char (org-table-end)) (point))
  548. (let ((case-fold-search t))
  549. (cond
  550. ((looking-at "#\\+begin_latex")
  551. (search-forward "#+end_latex" nil t)
  552. (forward-line 1))
  553. ((looking-at "#\\+begin_html")
  554. (search-forward "#+end_html" nil t)
  555. (forward-line 1))
  556. ((looking-at "#\\+begin_example")
  557. (search-forward "#+end_example" nil t)
  558. (forward-line 1))
  559. ((looking-at "#\\+begin_src")
  560. (search-forward "#+end_src" nil t)
  561. (forward-line 1))
  562. (t (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  563. (forward-line 1))))))
  564. (point))))
  565. (defun org-babel-result-to-file (result)
  566. "Return an `org-mode' link with the path being the value or
  567. RESULT, and the display being the `file-name-nondirectory' if
  568. non-nil."
  569. (concat "[[file:" result "]]"))
  570. (defun org-babel-examplize-region (beg end)
  571. "Comment out region using the ': ' org example quote."
  572. (interactive "*r")
  573. (let ((size (abs (- (line-number-at-pos end)
  574. (line-number-at-pos beg)))))
  575. (save-excursion
  576. (cond ((= size 0)
  577. (error "This should be impossible: a newline was appended to result if missing")
  578. (let ((result (buffer-substring beg end)))
  579. (delete-region beg end)
  580. (insert (concat ": " result))))
  581. ((< size org-babel-min-lines-for-block-output)
  582. (goto-char beg)
  583. (dotimes (n size)
  584. (move-beginning-of-line 1) (insert ": ") (forward-line 1)))
  585. (t
  586. (goto-char beg)
  587. (insert "#+begin_example\n")
  588. (forward-char (- end beg))
  589. (insert "#+end_example\n"))))))
  590. (defun org-babel-merge-params (&rest plists)
  591. "Combine all parameter association lists in PLISTS. Later
  592. elements of PLISTS override the values of previous element. This
  593. takes into account some special considerations for certain
  594. parameters when merging lists."
  595. (let ((results-exclusive-groups
  596. '(("file" "vector" "table" "scalar" "raw" "org" "html" "latex" "code" "pp")
  597. ("replace" "silent")
  598. ("output" "value")))
  599. (exports-exclusive-groups
  600. '(("code" "results" "both" "none")))
  601. params results exports tangle vars var ref)
  602. (flet ((e-merge (exclusive-groups &rest result-params)
  603. ;; maintain exclusivity of mutually exclusive parameters
  604. (let (output)
  605. (mapc (lambda (new-params)
  606. (mapc (lambda (new-param)
  607. (mapc (lambda (exclusive-group)
  608. (when (member new-param exclusive-group)
  609. (mapcar (lambda (excluded-param)
  610. (setq output (delete excluded-param output)))
  611. exclusive-group)))
  612. exclusive-groups)
  613. (setq output (org-uniquify (cons new-param output))))
  614. new-params))
  615. result-params)
  616. output)))
  617. (mapc (lambda (plist)
  618. (mapc (lambda (pair)
  619. (case (car pair)
  620. (:var
  621. ;; we want only one specification per variable
  622. (when (string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=[ \t]*\\([^\f\n\r\v]+\\)$" (cdr pair))
  623. ;; TODO: When is this not true?
  624. (setq var (intern (match-string 1 (cdr pair)))
  625. ref (match-string 2 (cdr pair))
  626. vars (cons (cons var ref) (assq-delete-all var vars)))))
  627. (:results
  628. (setq results
  629. (e-merge results-exclusive-groups results (split-string (cdr pair)))))
  630. (:file
  631. (when (cdr pair)
  632. (setq results (e-merge results-exclusive-groups results '("file")))
  633. (unless (or (member "both" exports) (member "none" exports))
  634. (setq exports (e-merge exports-exclusive-groups exports '("results"))))
  635. (setq params (cons pair (assq-delete-all (car pair) params)))))
  636. (:exports
  637. (setq exports (e-merge exports-exclusive-groups
  638. exports (split-string (cdr pair)))))
  639. (:tangle
  640. (setq tangle (e-merge '(("yes" "no"))
  641. tangle (split-string (cdr pair)))))
  642. (t ;; replace: this covers e.g. :session
  643. (setq params (cons pair (assq-delete-all (car pair) params))))))
  644. plist))
  645. plists))
  646. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  647. (while vars (setq params (cons (cons :var (pop vars)) params)))
  648. (cons (cons :tangle (mapconcat 'identity tangle " "))
  649. (cons (cons :exports (mapconcat 'identity exports " "))
  650. (cons (cons :results (mapconcat 'identity results " "))
  651. params)))))
  652. (defun org-babel-expand-noweb-references (&optional info parent-buffer)
  653. "This function expands Noweb style references in the body of
  654. the current source-code block. For example the following
  655. reference would be replaced with the body of the source-code
  656. block named 'example-block' (assuming the '#' character starts a
  657. comment) .
  658. # <<example-block>>
  659. This function must be called from inside of the buffer containing
  660. the source-code block which holds BODY.
  661. In addition the following syntax can be used to insert the
  662. results of evaluating the source-code block named 'example-block'.
  663. # <<example-block()>>
  664. Any optional arguments can be passed to example-block by placing
  665. the arguments inside the parenthesis following the convention
  666. defined by `org-babel-lob'. For example
  667. # <<example-block(a=9)>>
  668. would set the value of argument \"a\" equal to \"9\". Note that
  669. these arguments are not evaluated in the current source-code block but are passed literally to the \"example-block\"."
  670. (let* ((parent-buffer (or parent-buffer (current-buffer)))
  671. (info (or info (org-babel-get-src-block-info)))
  672. (lang (first info))
  673. (body (second info))
  674. (new-body "") index source-name evaluate)
  675. (flet ((nb-add (text)
  676. (setq new-body (concat new-body text))))
  677. (with-temp-buffer
  678. (insert body) (goto-char (point-min))
  679. (funcall (intern (concat (or (and (cdr (assoc lang org-src-lang-modes))
  680. (symbol-name
  681. (cdr (assoc lang org-src-lang-modes))))
  682. lang) "-mode")))
  683. (setq index (point))
  684. (while (and (re-search-forward "<<\\(.+\\)>>" nil t))
  685. (save-match-data (setf source-name (match-string 1)))
  686. (save-match-data (setq evaluate (string-match "\(.*\)" source-name)))
  687. ;; add interval to new-body (removing noweb reference)
  688. (goto-char (match-beginning 0))
  689. (nb-add (buffer-substring index (point)))
  690. (goto-char (match-end 0))
  691. (setq index (point))
  692. (nb-add (save-excursion
  693. (set-buffer parent-buffer)
  694. (if evaluate
  695. (let ((raw (org-babel-ref-resolve-reference
  696. source-name nil)))
  697. (if (stringp raw) raw (format "%S" raw)))
  698. (let ((point (org-babel-find-named-block source-name)))
  699. (if point
  700. (save-excursion
  701. (goto-char point)
  702. (concat "\n" (org-babel-expand-noweb-references
  703. (org-babel-get-src-block-info))))
  704. ""))))))
  705. (nb-add (buffer-substring index (point-max)))))
  706. new-body))
  707. (defun org-babel-clean-text-properties (text)
  708. "Strip all properties from text return."
  709. (set-text-properties 0 (length text) nil text) text)
  710. (defun org-babel-strip-protective-commas (body)
  711. "Strip protective commas from bodies of source blocks."
  712. (replace-regexp-in-string "^,#" "#" body))
  713. (defun org-babel-read (cell)
  714. "Convert the string value of CELL to a number if appropriate.
  715. Otherwise if cell looks like lisp (meaning it starts with a
  716. \"(\" or a \"'\") then read it as lisp, otherwise return it
  717. unmodified as a string.
  718. This is taken almost directly from `org-read-prop'."
  719. (if (and (stringp cell) (not (equal cell "")))
  720. (or (org-babel-number-p cell)
  721. (if (or (equal "(" (substring cell 0 1))
  722. (equal "'" (substring cell 0 1)))
  723. (read cell)
  724. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  725. cell))
  726. (defun org-babel-number-p (string)
  727. "Return t if STRING represents a number"
  728. (if (and (string-match "^-?[[:digit:]]*\\.?[[:digit:]]*$" string)
  729. (= (match-end 0) (length string)))
  730. (string-to-number string)))
  731. (defun org-babel-import-elisp-from-file (file-name)
  732. "Read the results located at FILE-NAME into an elisp table. If
  733. the table is trivial, then return it as a scalar."
  734. (let (result)
  735. (with-temp-buffer
  736. (condition-case nil
  737. (progn
  738. (org-table-import file-name nil)
  739. (delete-file file-name)
  740. (setq result (mapcar (lambda (row)
  741. (mapcar #'org-babel-string-read row))
  742. (org-table-to-lisp))))
  743. (error nil)))
  744. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  745. (if (consp (car result))
  746. (if (null (cdr (car result)))
  747. (caar result)
  748. result)
  749. (car result))
  750. result)))
  751. (defun org-babel-string-read (cell)
  752. "Strip nested \"s from around strings in exported R values."
  753. (org-babel-read (or (and (stringp cell)
  754. (string-match "\\\"\\(.+\\)\\\"" cell)
  755. (match-string 1 cell))
  756. cell)))
  757. (defun org-babel-reverse-string (string)
  758. (apply 'string (reverse (string-to-list string))))
  759. (defun org-babel-chomp (string &optional regexp)
  760. "Remove any trailing space or carriage returns characters from
  761. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  762. overwritten by specifying a regexp as a second argument."
  763. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  764. (setq string (substring string 0 -1)))
  765. string)
  766. (defun org-babel-trim (string &optional regexp)
  767. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  768. (org-babel-chomp (org-babel-reverse-string
  769. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  770. (provide 'org-babel)
  771. ;;; org-babel.el ends here