org-babel.el 20 KB

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