org-babel.el 37 KB

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