org-babel.el 36 KB

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