org-babel.el 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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. (move-end-of-line 1)))
  113. (defun org-babel-execute-src-block (&optional arg info params)
  114. "Execute the current source code block, and dump the results
  115. into the buffer immediately following the block. Results are
  116. commented by `org-toggle-fixed-width-section'. With optional
  117. prefix don't dump results into buffer but rather return the
  118. results in raw elisp (this is useful for automated execution of a
  119. source block).
  120. Optionally supply a value for INFO in the form returned by
  121. `org-babel-get-src-block-info'.
  122. Optionally supply a value for PARAMS which will be merged with
  123. the header arguments specified at the source code block."
  124. (interactive)
  125. (let* ((info (or info (org-babel-get-src-block-info)))
  126. (lang (first info))
  127. (body (second info))
  128. (params (org-combine-plists params (third info)))
  129. (cmd (intern (concat "org-babel-execute:" lang)))
  130. result)
  131. ;; (message (format "params=%S" params)) ;; debugging statement
  132. (unless (member lang org-babel-interpreters)
  133. (error "Language is not in `org-babel-interpreters': %s" lang))
  134. (setq result (funcall cmd body params))
  135. ;; possibly force result into a vector
  136. (if (and (not (listp result)) (cdr (assoc :results params))
  137. (member "vector" (split-string (cdr (assoc :results params)))))
  138. (setq result (list result)))
  139. (if arg
  140. (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  141. (org-babel-insert-result result (cdr (assoc :results params))))
  142. result))
  143. (defun org-babel-eval-buffer (&optional arg)
  144. "Replace EVAL snippets in the entire buffer."
  145. (interactive "P")
  146. (save-excursion
  147. (goto-char (point-min))
  148. (while (re-search-forward org-babel-regexp nil t)
  149. (org-babel-eval-src-block arg))))
  150. (defun org-babel-eval-subtree (&optional arg)
  151. "Replace EVAL snippets in the entire subtree."
  152. (interactive "P")
  153. (save-excursion
  154. (org-narrow-to-subtree)
  155. (org-babel-eval-buffer)
  156. (widen)))
  157. (defun org-babel-get-src-block-name ()
  158. "Return the name of the current source block if one exists"
  159. (let ((case-fold-search t))
  160. (save-excursion
  161. (goto-char (org-babel-where-is-src-block-head))
  162. (if (save-excursion (forward-line -1)
  163. (looking-at "#\\+srcname:[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+\\)"))
  164. (org-babel-clean-text-properties (match-string 1))))))
  165. (defun org-babel-get-src-block-info ()
  166. "Return the information of the current source block as a list
  167. of the following form. (language body header-arguments-alist)"
  168. (let ((case-fold-search t) head)
  169. (if (setq head (org-babel-where-is-src-block-head))
  170. (save-excursion (goto-char head) (org-babel-parse-src-block-match))
  171. (if (save-excursion ;; inline source block
  172. (re-search-backward "[ \f\t\n\r\v]" nil t)
  173. (forward-char 1)
  174. (looking-at org-babel-inline-src-block-regexp))
  175. (org-babel-parse-inline-src-block-match)
  176. nil)))) ;; indicate that no source block was found
  177. (defun org-babel-parse-src-block-match ()
  178. (list (org-babel-clean-text-properties (match-string 1))
  179. (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
  180. (org-combine-plists org-babel-default-header-args
  181. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))))
  182. (defun org-babel-parse-inline-src-block-match ()
  183. (list (org-babel-clean-text-properties (match-string 1))
  184. (org-babel-strip-protective-comas (org-babel-clean-text-properties (match-string 4)))
  185. (org-combine-plists org-babel-default-inline-header-args
  186. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))))
  187. (defun org-babel-parse-header-arguments (arg-string)
  188. "Parse a string of header arguments returning an alist."
  189. (delq nil
  190. (mapcar
  191. (lambda (arg) (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+.*\\)" arg)
  192. (cons (intern (concat ":" (match-string 1 arg))) (org-babel-chomp (match-string 2 arg)))))
  193. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t))))
  194. (defun org-babel-where-is-src-block-head ()
  195. "Return the point at the beginning of the current source
  196. block. Specifically at the beginning of the #+BEGIN_SRC line.
  197. If the point is not on a source block then return nil."
  198. (let ((initial (point)) top bottom)
  199. (or
  200. (save-excursion ;; on a #+srcname: line
  201. (beginning-of-line 1)
  202. (and (looking-at "#\\+srcname") (forward-line 1)
  203. (looking-at org-babel-src-block-regexp)
  204. (point)))
  205. (save-excursion ;; on a #+begin_src line
  206. (beginning-of-line 1)
  207. (and (looking-at org-babel-src-block-regexp)
  208. (point)))
  209. (save-excursion ;; inside a src block
  210. (and
  211. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  212. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  213. (< top initial) (< initial bottom)
  214. (goto-char top) (looking-at org-babel-src-block-regexp)
  215. (point))))))
  216. (defun org-babel-find-named-result (name)
  217. "Return the location of the result named NAME in the current
  218. buffer or nil if no such result exists."
  219. (save-excursion
  220. (goto-char (point-min))
  221. (when (re-search-forward (concat "#\\+resname:[ \t]*" (regexp-quote name)) nil t)
  222. (move-beginning-of-line 1) (point))))
  223. (defun org-babel-where-is-src-block-result ()
  224. "Return the point at the beginning of the result of the current
  225. source block. Specifically at the beginning of the #+RESNAME:
  226. line. If no result exists for this block then create a
  227. #+RESNAME: line following the source block."
  228. (save-excursion
  229. (goto-char (org-babel-where-is-src-block-head))
  230. (let ((name (org-babel-get-src-block-name)) end head)
  231. (or (and name (message name) (org-babel-find-named-result name))
  232. (and (re-search-forward "#\\+end_src" nil t)
  233. (progn (move-end-of-line 1)
  234. (if (eobp) (insert "\n") (forward-char 1))
  235. (setq end (point))
  236. (or (progn ;; either an unnamed #+resname: line already exists
  237. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  238. (move-beginning-of-line 1) (looking-at "#\\+resname:"))
  239. (progn ;; or we need to back up and make one ourselves
  240. (goto-char end) (open-line 2) (forward-char 1)
  241. (insert (concat "#+resname:" (if name (concat " " name))))
  242. (move-beginning-of-line 1) t)))
  243. (point))))))
  244. (defun org-babel-insert-result (result &optional insert)
  245. "Insert RESULT into the current buffer after the end of the
  246. current source block. With optional argument INSERT controls
  247. insertion of results in the org-mode file. INSERT can take the
  248. following values...
  249. t ------ the default options, simply insert the results after the
  250. source block
  251. replace - insert results after the source block replacing any
  252. previously inserted results
  253. silent -- no results are inserted"
  254. (if insert (setq insert (split-string insert)))
  255. (if (stringp result)
  256. (progn
  257. (setq result (org-babel-clean-text-properties result))
  258. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  259. (unless (listp result) (setq result (format "%S" result))))
  260. (if (and insert (member "replace" insert)) (org-babel-remove-result))
  261. (if (= (length result) 0)
  262. (message "no result returned by source block")
  263. (if (and insert (member "silent" insert))
  264. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  265. (when (and (stringp result) ;; ensure results end in a newline
  266. (not (or (string-equal (substring result -1) "\n")
  267. (string-equal (substring result -1) "\r"))))
  268. (setq result (concat result "\n")))
  269. (save-excursion
  270. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  271. (if (stringp result) ;; assume the result is a table if it's not a string
  272. (if (member "file" insert)
  273. (insert result)
  274. (org-babel-examplize-region (point) (progn (insert result) (point))))
  275. (progn
  276. (insert
  277. (concat (orgtbl-to-orgtbl
  278. (if (consp (car result)) result (list result))
  279. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  280. (forward-line -1)
  281. (org-cycle))))
  282. (message "finished"))))
  283. (defun org-babel-result-to-org-string (result)
  284. "Return RESULT as a string in org-mode format. This function
  285. relies on `org-babel-insert-result'."
  286. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  287. (defun org-babel-remove-result ()
  288. "Remove the result of the current source block."
  289. (interactive)
  290. (save-excursion
  291. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  292. (delete-region (point) (org-babel-result-end))))
  293. (defun org-babel-result-end ()
  294. "Return the point at the end of the current set of results"
  295. (save-excursion
  296. (if (org-at-table-p)
  297. (org-table-end)
  298. (while (if (looking-at "\\(: \\|\\[\\[\\)")
  299. (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  300. (forward-line 1)) t))
  301. (forward-line 1))
  302. (forward-line -1)
  303. (point))))
  304. (defun org-babel-result-to-file (result)
  305. "Return an `org-mode' link with the path being the value or
  306. RESULT, and the display being the `file-name-nondirectory' if
  307. non-nil."
  308. (let ((name (file-name-nondirectory result)))
  309. (concat "[[" result (if name (concat "][" name "]]") "]]"))))
  310. (defun org-babel-examplize-region (beg end)
  311. "Comment out region using the ': ' org example quote."
  312. (interactive "*r")
  313. (let ((size (abs (- (line-number-at-pos end)
  314. (line-number-at-pos beg)))))
  315. (if (= size 0)
  316. (let ((result (buffer-substring beg end)))
  317. (delete-region beg end)
  318. (insert (concat ": " result)))
  319. (save-excursion
  320. (goto-char beg)
  321. (dotimes (n size)
  322. (move-beginning-of-line 1) (insert ": ") (forward-line 1))))))
  323. (defun org-babel-clean-text-properties (text)
  324. "Strip all properties from text return."
  325. (set-text-properties 0 (length text) nil text) text)
  326. (defun org-babel-strip-protective-comas (body)
  327. "Strip protective comas from bodies of source blocks."
  328. (replace-regexp-in-string "^,#" "#" body))
  329. (defun org-babel-read (cell)
  330. "Convert the string value of CELL to a number if appropriate.
  331. Otherwise if cell looks like a list (meaning it starts with a
  332. '(') then read it as lisp, otherwise return it unmodified as a
  333. string.
  334. This is taken almost directly from `org-read-prop'."
  335. (if (and (stringp cell) (not (equal cell "")))
  336. (or (org-babel-number-p cell)
  337. (if (or (equal "(" (substring cell 0 1))
  338. (equal "'" (substring cell 0 2)))
  339. (read cell)
  340. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  341. cell))
  342. (defun org-babel-number-p (string)
  343. "Return t if STRING represents a number"
  344. (if (string-match "^[[:digit:]]*\\.?[[:digit:]]*$" string)
  345. (string-to-number string)))
  346. (defun org-babel-import-elisp-from-file (file-name)
  347. "Read the results located at FILE-NAME into an elisp table. If
  348. the table is trivial, then return it as a scalar."
  349. (let (result)
  350. (with-temp-buffer
  351. (condition-case nil
  352. (progn
  353. (org-table-import file-name nil)
  354. (delete-file file-name)
  355. (setq result (mapcar (lambda (row)
  356. (mapcar #'org-babel-string-read row))
  357. (org-table-to-lisp))))
  358. (error nil))
  359. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  360. (if (consp (car result))
  361. (if (null (cdr (car result)))
  362. (caar result)
  363. result)
  364. (car result))
  365. result))))
  366. (defun org-babel-string-read (cell)
  367. "Strip nested \"s from around strings in exported R values."
  368. (org-babel-read (or (and (stringp cell)
  369. (string-match "\\\"\\(.+\\)\\\"" cell)
  370. (match-string 1 cell))
  371. cell)))
  372. (defun org-babel-reverse-string (string)
  373. (apply 'string (reverse (string-to-list string))))
  374. (defun org-babel-chomp (string &optional regexp)
  375. "Remove any trailing space or carriage returns characters from
  376. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  377. overwritten by specifying a regexp as a second argument."
  378. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  379. (setq string (substring string 0 -1)))
  380. string)
  381. (defun org-babel-trim (string &optional regexp)
  382. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  383. (org-babel-chomp (org-babel-reverse-string
  384. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  385. (provide 'org-babel)
  386. ;;; org-babel.el ends here