org-babel.el 36 KB

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