org-babel.el 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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. (defun org-babel-pop-to-session-maybe ()
  34. "Detect if this is context for a org-babel src-block and if so
  35. then run `org-babel-pop-to-session'."
  36. (interactive)
  37. (let ((info (org-babel-get-src-block-info)))
  38. (if info (progn (org-babel-pop-to-session current-prefix-arg info) t) nil)))
  39. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  40. (defvar org-babel-default-header-args '()
  41. "Default arguments to use when evaluating a source block.")
  42. (defvar org-babel-default-inline-header-args '((:results . "silent") (:exports . "results"))
  43. "Default arguments to use when evaluating an inline source block.")
  44. (defvar org-babel-src-block-regexp nil
  45. "Regexp used to test when inside of a org-babel src-block")
  46. (defvar org-babel-inline-src-block-regexp nil
  47. "Regexp used to test when on an inline org-babel src-block")
  48. (defun org-babel-set-interpreters (var value)
  49. (set-default var value)
  50. (setq org-babel-src-block-regexp
  51. (concat "#\\+begin_src \\("
  52. (mapconcat 'regexp-quote value "\\|")
  53. "\\)[ \t]*"
  54. "\\([ \t]+\\([^\n]+\\)\\)?\n" ;; match header arguments
  55. "\\([^\000]+?\\)#\\+end_src"))
  56. (setq org-babel-inline-src-block-regexp
  57. (concat "src_\\("
  58. (mapconcat 'regexp-quote value "\\|")
  59. "\\)"
  60. "\\(\\|\\[\\(.*\\)\\]\\)"
  61. "{\\([^\n]+\\)}")))
  62. (defun org-babel-add-interpreter (interpreter)
  63. "Add INTERPRETER to `org-babel-interpreters' and update
  64. `org-babel-src-block-regexp' appropriately."
  65. (unless (member interpreter org-babel-interpreters)
  66. (setq org-babel-interpreters (cons interpreter org-babel-interpreters))
  67. ;; (add-to-list 'org-babel-session-defaults (cons interpreter (format "org-babel-%s" interpreter)))
  68. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  69. (defcustom org-babel-interpreters '()
  70. "Interpreters allows for evaluation tags.
  71. This is a list of program names (as strings) that can evaluate code and
  72. insert the output into an Org-mode buffer. Valid choices are
  73. R Evaluate R code
  74. emacs-lisp Evaluate Emacs Lisp code and display the result
  75. sh Pass command to the shell and display the result
  76. perl The perl interpreter
  77. python The python interpreter
  78. ruby The ruby interpreter
  79. The source block regexp `org-babel-src-block-regexp' is updated
  80. when a new interpreter is added to this list through the
  81. customize interface. To add interpreters to this variable from
  82. lisp code use the `org-babel-add-interpreter' function."
  83. :group 'org-babel
  84. :set 'org-babel-set-interpreters
  85. :type '(set :greedy t
  86. (const "R")
  87. (const "emacs-lisp")
  88. (const "sh")
  89. (const "perl")
  90. (const "python")
  91. (const "ruby")))
  92. ;;; functions
  93. (defun org-babel-pop-to-session (&optional arg info)
  94. "Pop to the session of the current source-code block. If
  95. called with a prefix argument then evaluate the header arguments
  96. for the source block before entering the session. Copy the body
  97. of the source block to the kill ring."
  98. (interactive)
  99. (let* ((info (or info (org-babel-get-src-block-info)))
  100. (lang (first info))
  101. (body (second info))
  102. (params (third info))
  103. (session (cdr (assoc :session params))))
  104. (unless (member lang org-babel-interpreters)
  105. (error "Language is not in `org-babel-interpreters': %s" lang))
  106. ;; copy body to the kill ring
  107. (with-temp-buffer (insert (org-babel-trim body)) (copy-region-as-kill (point-min) (point-max)))
  108. ;; if called with a prefix argument, then process header arguments
  109. (if arg (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  110. ;; just to the session using pop-to-buffer
  111. (pop-to-buffer (funcall (intern (format "org-babel-%s-initiate-session" lang)) session))))
  112. (defun org-babel-execute-src-block (&optional arg info params)
  113. "Execute the current source code block, and dump the results
  114. into the buffer immediately following the block. Results are
  115. commented by `org-toggle-fixed-width-section'. With optional
  116. prefix don't dump results into buffer but rather return the
  117. results in raw elisp (this is useful for automated execution of a
  118. source block).
  119. Optionally supply a value for INFO in the form returned by
  120. `org-babel-get-src-block-info'.
  121. Optionally supply a value for PARAMS which will be merged with
  122. the header arguments specified at the source code block."
  123. (interactive)
  124. (let* ((info (or info (org-babel-get-src-block-info)))
  125. (lang (first info))
  126. (body (second info))
  127. (params (org-combine-plists params (third info)))
  128. (cmd (intern (concat "org-babel-execute:" lang)))
  129. result)
  130. ;; (message (format "params=%S" params)) ;; debugging statement
  131. (unless (member lang org-babel-interpreters)
  132. (error "Language is not in `org-babel-interpreters': %s" lang))
  133. (setq result (funcall cmd body params))
  134. ;; possibly force result into a vector
  135. (if (and (not (listp result)) (cdr (assoc :results params))
  136. (member "vector" (split-string (cdr (assoc :results params)))))
  137. (setq result (list result)))
  138. (if arg
  139. (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  140. (org-babel-insert-result result (cdr (assoc :results params))))
  141. result))
  142. (defun org-babel-eval-buffer (&optional arg)
  143. "Replace EVAL snippets in the entire buffer."
  144. (interactive "P")
  145. (save-excursion
  146. (goto-char (point-min))
  147. (while (re-search-forward org-babel-regexp nil t)
  148. (org-babel-eval-src-block arg))))
  149. (defun org-babel-eval-subtree (&optional arg)
  150. "Replace EVAL snippets in the entire subtree."
  151. (interactive "P")
  152. (save-excursion
  153. (org-narrow-to-subtree)
  154. (org-babel-eval-buffer)
  155. (widen)))
  156. (defun org-babel-get-src-block-name ()
  157. "Return the name of the current source block if one exists"
  158. (let ((case-fold-search t))
  159. (save-excursion
  160. (goto-char (org-babel-where-is-src-block-head))
  161. (if (save-excursion (forward-line -1)
  162. (looking-at "#\\+srcname:[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+\\)"))
  163. (org-babel-clean-text-properties (match-string 1))))))
  164. (defun org-babel-get-src-block-info ()
  165. "Return the information of the current source block as a list
  166. of the following form. (language body header-arguments-alist)"
  167. (let ((case-fold-search t) head)
  168. (if (setq head (org-babel-where-is-src-block-head))
  169. (save-excursion (goto-char head) (org-babel-parse-src-block-match))
  170. (if (save-excursion ;; inline source block
  171. (re-search-backward "[ \f\t\n\r\v]" nil t)
  172. (forward-char 1)
  173. (looking-at org-babel-inline-src-block-regexp))
  174. (org-babel-parse-inline-src-block-match)
  175. nil)))) ;; indicate that no source block was found
  176. (defun org-babel-parse-src-block-match ()
  177. (list (org-babel-clean-text-properties (match-string 1))
  178. (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
  179. (org-combine-plists org-babel-default-header-args
  180. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))))
  181. (defun org-babel-parse-inline-src-block-match ()
  182. (list (org-babel-clean-text-properties (match-string 1))
  183. (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
  184. (org-combine-plists org-babel-default-inline-header-args
  185. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))))
  186. (defun org-babel-parse-header-arguments (arg-string)
  187. "Parse a string of header arguments returning an alist."
  188. (delq nil
  189. (mapcar
  190. (lambda (arg) (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+.*\\)" arg)
  191. (cons (intern (concat ":" (match-string 1 arg))) (org-babel-chomp (match-string 2 arg)))))
  192. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t))))
  193. (defun org-babel-where-is-src-block-head ()
  194. "Return the point at the beginning of the current source
  195. block. Specifically at the beginning of the #+BEGIN_SRC line.
  196. If the point is not on a source block then return nil."
  197. (let ((initial (point)) top bottom)
  198. (or
  199. (save-excursion ;; on a #+srcname: line
  200. (beginning-of-line 1)
  201. (and (looking-at "#\\+srcname") (forward-line 1)
  202. (looking-at org-babel-src-block-regexp)
  203. (point)))
  204. (save-excursion ;; on a #+begin_src line
  205. (beginning-of-line 1)
  206. (and (looking-at org-babel-src-block-regexp)
  207. (point)))
  208. (save-excursion ;; inside a src block
  209. (and
  210. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  211. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  212. (< top initial) (< initial bottom)
  213. (goto-char top) (looking-at org-babel-src-block-regexp)
  214. (point))))))
  215. (defun org-babel-find-named-result (name)
  216. "Return the location of the result named NAME in the current
  217. buffer or nil if no such result exists."
  218. (save-excursion
  219. (goto-char (point-min))
  220. (when (re-search-forward (concat "#\\+resname:[ \t]*" (regexp-quote name)) nil t)
  221. (move-beginning-of-line 1) (point))))
  222. (defun org-babel-where-is-src-block-result ()
  223. "Return the point at the beginning of the result of the current
  224. source block. Specifically at the beginning of the #+RESNAME:
  225. line. If no result exists for this block then create a
  226. #+RESNAME: line following the source block."
  227. (save-excursion
  228. (goto-char (org-babel-where-is-src-block-head))
  229. (let ((name (org-babel-get-src-block-name)) end head)
  230. (or (and name (message name) (org-babel-find-named-result name))
  231. (and (re-search-forward "#\\+end_src" nil t)
  232. (progn (move-end-of-line 1)
  233. (if (eobp) (insert "\n") (forward-char 1))
  234. (setq end (point))
  235. (or (progn ;; either an unnamed #+resname: line already exists
  236. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  237. (move-beginning-of-line 1) (looking-at "#\\+resname:"))
  238. (progn ;; or we need to back up and make one ourselves
  239. (goto-char end) (open-line 2) (forward-char 1)
  240. (insert (concat "#+resname:" (if name (concat " " name))))
  241. (move-beginning-of-line 1) t)))
  242. (point))))))
  243. (defun org-babel-insert-result (result &optional insert)
  244. "Insert RESULT into the current buffer after the end of the
  245. current source block. With optional argument INSERT controls
  246. insertion of results in the org-mode file. INSERT can take the
  247. following values...
  248. t ------ the default options, simply insert the results after the
  249. source block
  250. replace - insert results after the source block replacing any
  251. previously inserted results
  252. silent -- no results are inserted"
  253. (if insert (setq insert (split-string insert)))
  254. (if (stringp result)
  255. (progn
  256. (setq result (org-babel-clean-text-properties result))
  257. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  258. (unless (listp result) (setq result (format "%S" result))))
  259. (if (and insert (member "replace" insert)) (org-babel-remove-result))
  260. (if (= (length result) 0)
  261. (message "no result returned by source block")
  262. (if (and insert (member "silent" insert))
  263. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  264. (when (and (stringp result) ;; ensure results end in a newline
  265. (not (or (string-equal (substring result -1) "\n")
  266. (string-equal (substring result -1) "\r"))))
  267. (setq result (concat result "\n")))
  268. (save-excursion
  269. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  270. (if (stringp result) ;; assume the result is a table if it's not a string
  271. (if (member "file" insert)
  272. (insert result)
  273. (org-babel-examplize-region (point) (progn (insert result) (point))))
  274. (progn
  275. (insert
  276. (concat (orgtbl-to-orgtbl
  277. (if (consp (car result)) result (list result))
  278. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  279. (forward-line -1)
  280. (org-cycle))))
  281. (message "finished"))))
  282. (defun org-babel-result-to-org-string (result)
  283. "Return RESULT as a string in org-mode format. This function
  284. relies on `org-babel-insert-result'."
  285. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  286. (defun org-babel-remove-result ()
  287. "Remove the result of the current source block."
  288. (interactive)
  289. (save-excursion
  290. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  291. (delete-region (point) (org-babel-result-end))))
  292. (defun org-babel-result-end ()
  293. "Return the point at the end of the current set of results"
  294. (save-excursion
  295. (if (org-at-table-p)
  296. (org-table-end)
  297. (while (if (looking-at "\\(: \\|\\[\\[\\)")
  298. (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  299. (forward-line 1)) t))
  300. (forward-line 1))
  301. (forward-line -1)
  302. (point))))
  303. (defun org-babel-result-to-file (result)
  304. "Return an `org-mode' link with the path being the value or
  305. RESULT, and the display being the `file-name-nondirectory' if
  306. non-nil."
  307. (let ((name (file-name-nondirectory result)))
  308. (concat "[[" result (if name (concat "][" name "]]") "]]"))))
  309. (defun org-babel-examplize-region (beg end)
  310. "Comment out region using the ': ' org example quote."
  311. (interactive "*r")
  312. (let ((size (abs (- (line-number-at-pos end)
  313. (line-number-at-pos beg)))))
  314. (if (= size 0)
  315. (let ((result (buffer-substring beg end)))
  316. (delete-region beg end)
  317. (insert (concat ": " result)))
  318. (save-excursion
  319. (goto-char beg)
  320. (dotimes (n size)
  321. (move-beginning-of-line 1) (insert ": ") (forward-line 1))))))
  322. (defun org-babel-clean-text-properties (text)
  323. "Strip all properties from text return."
  324. (set-text-properties 0 (length text) nil text) text)
  325. (defun org-babel-strip-protective-comas (body)
  326. "Strip protective comas from bodies of source blocks."
  327. (replace-regexp-in-string "^,#" "#" body))
  328. (defun org-babel-read (cell)
  329. "Convert the string value of CELL to a number if appropriate.
  330. Otherwise if cell looks like a list (meaning it starts with a
  331. '(') then read it as lisp, otherwise return it unmodified as a
  332. string.
  333. This is taken almost directly from `org-read-prop'."
  334. (if (and (stringp cell) (not (equal cell "")))
  335. (or (org-babel-number-p cell)
  336. (if (or (equal "(" (substring cell 0 1))
  337. (equal "'" (substring cell 0 2)))
  338. (read cell)
  339. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  340. cell))
  341. (defun org-babel-number-p (string)
  342. "Return t if STRING represents a number"
  343. (if (string-match "^[[:digit:]]*\\.?[[:digit:]]*$" string)
  344. (string-to-number string)))
  345. (defun org-babel-import-elisp-from-file (file-name)
  346. "Read the results located at FILE-NAME into an elisp table. If
  347. the table is trivial, then return it as a scalar."
  348. (let (result)
  349. (with-temp-buffer
  350. (condition-case nil
  351. (progn
  352. (org-table-import file-name nil)
  353. (delete-file file-name)
  354. (setq result (mapcar (lambda (row)
  355. (mapcar #'org-babel-string-read row))
  356. (org-table-to-lisp))))
  357. (error nil))
  358. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  359. (if (consp (car result))
  360. (if (null (cdr (car result)))
  361. (caar result)
  362. result)
  363. (car result))
  364. result))))
  365. (defun org-babel-string-read (cell)
  366. "Strip nested \"s from around strings in exported R values."
  367. (org-babel-read (or (and (stringp cell)
  368. (string-match "\\\"\\(.+\\)\\\"" cell)
  369. (match-string 1 cell))
  370. cell)))
  371. (defun org-babel-reverse-string (string)
  372. (apply 'string (reverse (string-to-list string))))
  373. (defun org-babel-chomp (string &optional regexp)
  374. "Remove any trailing space or carriage returns characters from
  375. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  376. overwritten by specifying a regexp as a second argument."
  377. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  378. (setq string (substring string 0 -1)))
  379. string)
  380. (defun org-babel-trim (string &optional regexp)
  381. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  382. (org-babel-chomp (org-babel-reverse-string
  383. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  384. (provide 'org-babel)
  385. ;;; org-babel.el ends here