org-babel.el 65 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603
  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
  32. (progn (org-babel-execute-src-block current-prefix-arg info) t) nil)))
  33. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-execute-src-block-maybe)
  34. (defun org-babel-expand-src-block-maybe ()
  35. "Detect if this is context for a org-babel src-block and if so
  36. then run `org-babel-expand-src-block'."
  37. (interactive)
  38. (let ((info (org-babel-get-src-block-info)))
  39. (if info
  40. (progn (org-babel-expand-src-block current-prefix-arg info) t)
  41. nil)))
  42. (defadvice org-edit-special (around org-babel-prep-session-for-edit activate)
  43. "Prepare the current source block's session according to it's
  44. header arguments before editing in an org-src buffer. This
  45. function is called when `org-edit-special' is called with a
  46. prefix argument from inside of a source-code block."
  47. (when current-prefix-arg
  48. (let* ((info (org-babel-get-src-block-info))
  49. (lang (first info))
  50. (params (third info))
  51. (session (cdr (assoc :session params))))
  52. (when (and info session) ;; we are in a source-code block with a session
  53. (funcall
  54. (intern (concat "org-babel-prep-session:" lang)) session params))))
  55. ad-do-it)
  56. (defadvice org-open-at-point (around org-babel-open-at-point activate)
  57. "If `point' is on a source code block, then open that block's
  58. results with `org-babel-open-src-block-results', otherwise defer
  59. to `org-open-at-point'."
  60. (interactive "P")
  61. (or (call-interactively #'org-babel-open-src-block-result) ad-do-it))
  62. (defun org-babel-load-in-session-maybe ()
  63. "Detect if this is context for a org-babel src-block and if so
  64. then run `org-babel-load-in-session'."
  65. (interactive)
  66. (let ((info (org-babel-get-src-block-info)))
  67. (if info
  68. (progn (org-babel-load-in-session current-prefix-arg info) t)
  69. nil)))
  70. (add-hook 'org-metaup-hook 'org-babel-load-in-session-maybe)
  71. (defun org-babel-pop-to-session-maybe ()
  72. "Detect if this is context for a org-babel src-block and if so
  73. then run `org-babel-pop-to-session'."
  74. (interactive)
  75. (let ((info (org-babel-get-src-block-info)))
  76. (if info (progn (org-babel-pop-to-session current-prefix-arg info) t) nil)))
  77. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  78. (defconst org-babel-header-arg-names
  79. '(cache cmdline colnames dir exports file noweb results
  80. session tangle var noeval)
  81. "Common header arguments used by org-babel. Note that
  82. individual languages may define their own language specific
  83. header arguments as well.")
  84. (defvar org-babel-default-header-args
  85. '((:session . "none") (:results . "replace") (:exports . "code")
  86. (:cache . "no") (:noweb . "no") (:hlines . "no"))
  87. "Default arguments to use when evaluating a source block.")
  88. (defvar org-babel-default-inline-header-args
  89. '((:session . "none") (:results . "silent") (:exports . "results"))
  90. "Default arguments to use when evaluating an inline source block.")
  91. (defvar org-babel-current-buffer-properties)
  92. (make-variable-buffer-local 'org-babel-current-buffer-properties)
  93. (defvar org-babel-src-block-regexp nil
  94. "Regexp used to test when inside of a org-babel src-block")
  95. (defvar org-babel-inline-src-block-regexp nil
  96. "Regexp used to test when on an inline org-babel src-block")
  97. (defvar org-babel-result-regexp
  98. "^[ \t]*#\\+res\\(ults\\|name\\)\\(\\[\\([[:alnum:]]+\\)\\]\\)?\\:"
  99. "Regular expression used to match result lines. If the
  100. results are associated with a hash key then the hash will be
  101. saved in the second match data.")
  102. (defvar org-babel-source-name-regexp
  103. "^[ \t]*#\\+\\(srcname\\|source\\|function\\):[ \t]*"
  104. "Regular expression used to match a source name line.")
  105. (defvar org-babel-min-lines-for-block-output 10
  106. "If number of lines of output is equal to or exceeds this
  107. value, the output is placed in a #+begin_example...#+end_example
  108. block. Otherwise the output is marked as literal by inserting
  109. colons at the starts of the lines. This variable only takes
  110. effect if the :results output option is in effect.")
  111. (defvar org-babel-noweb-error-langs nil
  112. "List of language for which errors should be raised when the
  113. source code block satisfying a noweb reference in this language
  114. can not be resolved.")
  115. (defvar org-babel-hash-show 4
  116. "Number of initial characters to show of a hidden results hash.")
  117. (defvar org-babel-after-execute-hook nil
  118. "Hook for functions to be called after `org-babel-execute-src-block'")
  119. (defun org-babel-named-src-block-regexp-for-name (name)
  120. "Regexp used to match named src block."
  121. (concat org-babel-source-name-regexp (regexp-quote name) "[ \t\n]*"
  122. (substring org-babel-src-block-regexp 1)))
  123. (defun org-babel-set-interpreters (var value)
  124. (set-default var value)
  125. (setq
  126. org-babel-src-block-regexp
  127. (concat "^\\([ \t]*\\)#\\+begin_src[ \t]+\\(" ;; (1) indentation (2) lang
  128. (mapconcat 'regexp-quote value "\\|")
  129. "\\)[ \t]*"
  130. "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)" ;; (3) switches
  131. "\\([^\n]*\\)\n" ;; (4) header arguments
  132. "\\([^\000]+?\n\\)[ \t]*#\\+end_src"));; (5) body
  133. (setq org-babel-inline-src-block-regexp
  134. (concat "[ \f\t\n\r\v]\\(src_" ;; (1) replacement target
  135. "\\(" ;; (2) lang
  136. (mapconcat 'regexp-quote value "\\|")
  137. "\\)"
  138. "\\(\\|\\[\\(.*?\\)\\]\\)" ;; (3,4) (unused, headers)
  139. "{\\([^\f\n\r\v]+?\\)}" ;; (5) body
  140. "\\)")))
  141. (defun org-babel-add-interpreter (interpreter)
  142. "Add INTERPRETER to `org-babel-interpreters' and update
  143. `org-babel-src-block-regexp' appropriately."
  144. (unless (member interpreter org-babel-interpreters)
  145. (setq org-babel-interpreters
  146. (sort (cons interpreter org-babel-interpreters)
  147. (lambda (left right)
  148. (> (length left) (length right)))))
  149. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  150. (defcustom org-babel-interpreters '()
  151. "Interpreters allows for evaluation tags.
  152. This is a list of program names (as strings) that can evaluate code and
  153. insert the output into an Org-mode buffer. Valid choices are
  154. R Evaluate R code
  155. emacs-lisp Evaluate Emacs Lisp code and display the result
  156. sh Pass command to the shell and display the result
  157. perl The perl interpreter
  158. python The python interpreter
  159. ruby The ruby interpreter
  160. The source block regexp `org-babel-src-block-regexp' is updated
  161. when a new interpreter is added to this list through the
  162. customize interface. To add interpreters to this variable from
  163. lisp code use the `org-babel-add-interpreter' function."
  164. :group 'org-babel
  165. :set 'org-babel-set-interpreters
  166. :type '(set :greedy t
  167. (const "R")
  168. (const "emacs-lisp")
  169. (const "sh")
  170. (const "perl")
  171. (const "python")
  172. (const "ruby")))
  173. ;;; functions
  174. (defun org-babel-execute-src-block (&optional arg info params)
  175. "Execute the current source code block, and insert the results
  176. into the buffer. Source code execution and the collection and
  177. formatting of results can be controlled through a variety of
  178. header arguments.
  179. Optionally supply a value for INFO in the form returned by
  180. `org-babel-get-src-block-info'.
  181. Optionally supply a value for PARAMS which will be merged with
  182. the header arguments specified at the front of the source code
  183. block."
  184. (interactive)
  185. (let* ((info (or info (org-babel-get-src-block-info)))
  186. (lang (first info))
  187. (params (setf (third info)
  188. (sort (org-babel-merge-params (third info) params)
  189. (lambda (el1 el2) (string< (symbol-name (car el1))
  190. (symbol-name (car el2)))))))
  191. (new-hash
  192. (if (and (cdr (assoc :cache params))
  193. (string= "yes" (cdr (assoc :cache params))))
  194. (org-babel-sha1-hash info)))
  195. (old-hash (org-babel-result-hash info))
  196. (body (setf (second info)
  197. (if (and (cdr (assoc :noweb params))
  198. (string= "yes" (cdr (assoc :noweb params))))
  199. (org-babel-expand-noweb-references info)
  200. (second info))))
  201. (result-params (split-string (or (cdr (assoc :results params)) "")))
  202. (result-type (cond ((member "output" result-params) 'output)
  203. ((member "value" result-params) 'value)
  204. (t 'value)))
  205. (cmd (intern (concat "org-babel-execute:" lang)))
  206. (dir (cdr (assoc :dir params)))
  207. (default-directory
  208. (or (and dir (file-name-as-directory dir)) default-directory))
  209. (call-process-region-original
  210. (if (boundp 'call-process-region-original) call-process-region-original
  211. (symbol-function 'call-process-region)))
  212. (indent (car (last info)))
  213. result)
  214. (unwind-protect
  215. (flet ((call-process-region (&rest args)
  216. (apply 'org-babel-tramp-handle-call-process-region args)))
  217. (unless (member lang org-babel-interpreters)
  218. (error "Language is not in `org-babel-interpreters': %s" lang))
  219. (if (and (not arg) new-hash (equal new-hash old-hash))
  220. (save-excursion ;; return cached result
  221. (goto-char (org-babel-where-is-src-block-result nil info))
  222. (end-of-line 1) (forward-char 1)
  223. (setq result (org-babel-read-result))
  224. (message (replace-regexp-in-string "%" "%%"
  225. (format "%S" result))) result)
  226. (setq result (funcall cmd body params))
  227. (if (eq result-type 'value)
  228. (setq result (if (and (or (member "vector" result-params)
  229. (member "table" result-params))
  230. (not (listp result)))
  231. (list (list result))
  232. result)))
  233. (org-babel-insert-result result result-params info new-hash indent)
  234. (run-hooks 'org-babel-after-execute-hook)
  235. result))
  236. (setq call-process-region 'call-process-region-original))))
  237. (defun org-babel-expand-body:generic (body params &optional processed-params)
  238. "Expand a block of code with org-babel according to it's header
  239. arguments. This generic implementation of body expansion is
  240. called for languages which have not defined their own specific
  241. org-babel-expand-body:lang function." body)
  242. (defun org-babel-expand-src-block (&optional arg info params)
  243. "Expand the current source code block according to it's header
  244. arguments, and pop open the results in a preview buffer."
  245. (interactive)
  246. (let* ((info (or info (org-babel-get-src-block-info)))
  247. (lang (first info))
  248. (params (setf (third info)
  249. (sort (org-babel-merge-params (third info) params)
  250. (lambda (el1 el2) (string< (symbol-name (car el1))
  251. (symbol-name (car el2)))))))
  252. (body (setf (second info)
  253. (if (and (cdr (assoc :noweb params))
  254. (string= "yes" (cdr (assoc :noweb params))))
  255. (org-babel-expand-noweb-references info) (second info))))
  256. (cmd (intern (concat "org-babel-expand-body:" lang)))
  257. (expanded (funcall (if (fboundp cmd) cmd 'org-babel-expand-body:generic)
  258. body params)))
  259. (org-edit-src-code
  260. nil expanded (concat "*Org-Babel Preview " (buffer-name) "[ " lang " ]*"))))
  261. (defun org-babel-load-in-session (&optional arg info)
  262. "Load the body of the current source-code block. Evaluate the
  263. header arguments for the source block before entering the
  264. session. After loading the body this pops open the session."
  265. (interactive)
  266. (let* ((info (or info (org-babel-get-src-block-info)))
  267. (lang (first info))
  268. (body (second info))
  269. (params (third info))
  270. (session (cdr (assoc :session params))))
  271. (unless (member lang org-babel-interpreters)
  272. (error "Language is not in `org-babel-interpreters': %s" lang))
  273. ;; if called with a prefix argument, then process header arguments
  274. (pop-to-buffer
  275. (funcall (intern (concat "org-babel-load-session:" lang))
  276. session body params))
  277. (end-of-line 1)))
  278. (defun org-babel-switch-to-session (&optional arg info)
  279. "Switch to the session of the current source-code block.
  280. If called with a prefix argument then evaluate the header arguments
  281. for the source block before entering the session. Copy the body
  282. of the source block to the kill ring."
  283. (interactive)
  284. (let* ((info (or info (org-babel-get-src-block-info)))
  285. (lang (first info))
  286. (body (second info))
  287. (params (third info))
  288. (session (cdr (assoc :session params)))
  289. (dir (cdr (assoc :dir params)))
  290. (default-directory
  291. (or (and dir (file-name-as-directory dir)) default-directory)))
  292. (unless (member lang org-babel-interpreters)
  293. (error "Language is not in `org-babel-interpreters': %s" lang))
  294. ;; copy body to the kill ring
  295. (with-temp-buffer (insert (org-babel-trim body))
  296. (copy-region-as-kill (point-min) (point-max)))
  297. ;; if called with a prefix argument, then process header arguments
  298. (when arg
  299. (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  300. ;; just to the session using pop-to-buffer
  301. (pop-to-buffer
  302. (funcall (intern (format "org-babel-%s-initiate-session" lang))
  303. session params))
  304. (end-of-line 1)))
  305. (defalias 'org-babel-pop-to-session 'org-babel-switch-to-session)
  306. (defun org-babel-open-src-block-result (&optional re-run)
  307. "If `point' is on a src block then open the results of the
  308. source code block, otherwise return nil. With optional prefix
  309. argument RE-RUN the source-code block is evaluated even if
  310. results already exist."
  311. (interactive "P")
  312. (when (org-babel-get-src-block-info)
  313. (save-excursion
  314. ;; go to the results, if there aren't any then run the block
  315. (goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
  316. (progn (org-babel-execute-src-block)
  317. (org-babel-where-is-src-block-result))))
  318. (end-of-line 1)
  319. (while (looking-at "[\n\r\t\f ]") (forward-char 1))
  320. ;; open the results
  321. (if (looking-at org-bracket-link-regexp)
  322. ;; file results
  323. (org-open-at-point)
  324. (let ((results (org-babel-read-result)))
  325. (flet ((echo-res (result)
  326. (if (stringp result) result (format "%S" result))))
  327. (pop-to-buffer (get-buffer-create "org-babel-results"))
  328. (delete-region (point-min) (point-max))
  329. (if (listp results)
  330. ;; table result
  331. (insert (orgtbl-to-generic results '(:sep "\t" :fmt echo-res)))
  332. ;; scalar result
  333. (insert (echo-res results))))))
  334. t)))
  335. (defun org-babel-execute-buffer (&optional arg)
  336. "Call `org-babel-execute-src-block' on every source block in
  337. the current buffer."
  338. (interactive "P")
  339. (save-excursion
  340. (org-save-outline-visibility t
  341. (goto-char (point-min))
  342. (show-all)
  343. (while (re-search-forward org-babel-src-block-regexp nil t)
  344. (let ((pos-end (match-end 0)))
  345. (goto-char (match-beginning 0))
  346. (org-babel-execute-src-block arg)
  347. (goto-char pos-end))))))
  348. (defun org-babel-execute-subtree (&optional arg)
  349. "Call `org-babel-execute-src-block' on every source block in
  350. the current subtree."
  351. (interactive "P")
  352. (save-restriction
  353. (save-excursion
  354. (org-narrow-to-subtree)
  355. (org-babel-execute-buffer)
  356. (widen))))
  357. (defun org-babel-get-src-block-info (&optional header-vars-only)
  358. "Get information of the current source block.
  359. Returns a list
  360. (language body header-arguments-alist switches name function-args indent).
  361. Unless HEADER-VARS-ONLY is non-nil, any variable
  362. references provided in 'function call style' (i.e. in a
  363. parenthesised argument list following the src block name) are
  364. added to the header-arguments-alist."
  365. (let ((case-fold-search t) head info args indent)
  366. (if (setq head (org-babel-where-is-src-block-head))
  367. (save-excursion
  368. (goto-char head)
  369. (setq info (org-babel-parse-src-block-match))
  370. (setq indent (car (last info)))
  371. (setq info (butlast info))
  372. (forward-line -1)
  373. (if (looking-at
  374. (concat org-babel-source-name-regexp
  375. "\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)"))
  376. (progn
  377. (setq info (append info (list (org-babel-clean-text-properties
  378. (match-string 2)))))
  379. ;; Note that e.g. "name()" and "name( )" result in
  380. ;; ((:var . "")). We maintain that behaviour, and the
  381. ;; resulting non-nil sixth element is relied upon in
  382. ;; org-babel-exp-code to detect a functional-style
  383. ;; block in those cases. However, "name" without any
  384. ;; parentheses would result in the same thing, so we
  385. ;; explicitly avoid that.
  386. (if (setq args (match-string 4))
  387. (setq info
  388. (append info (list
  389. (mapcar
  390. (lambda (ref) (cons :var ref))
  391. (org-babel-ref-split-args args))))))
  392. (unless header-vars-only
  393. (setf (third info)
  394. (org-babel-merge-params (sixth info) (third info)))))
  395. (setq info (append info (list nil nil))))
  396. (append info (list indent)))
  397. (if (save-excursion ;; inline source block
  398. (re-search-backward "[ \f\t\n\r\v]" nil t)
  399. (looking-at org-babel-inline-src-block-regexp))
  400. (org-babel-parse-inline-src-block-match)
  401. nil)))) ;; indicate that no source block was found
  402. (defun org-babel-sha1-hash (&optional info)
  403. (interactive)
  404. (let* ((info (or info (org-babel-get-src-block-info)))
  405. (hash (sha1 (format "%s-%s" (mapconcat (lambda (arg) (format "%S" arg))
  406. (third info) ":")
  407. (second info)))))
  408. (when (interactive-p) (message hash))
  409. hash))
  410. (defun org-babel-result-hash (&optional info)
  411. (org-babel-where-is-src-block-result nil info)
  412. (org-babel-clean-text-properties (match-string 3)))
  413. (defun org-babel-hide-hash ()
  414. "Hide the hash in the current results line. Only the initial
  415. `org-babel-hash-show' characters of the hash will remain
  416. visible."
  417. (add-to-invisibility-spec '(org-babel-hide-hash . t))
  418. (save-excursion
  419. (when (and (re-search-forward org-babel-result-regexp nil t)
  420. (match-string 3))
  421. (let* ((start (match-beginning 3))
  422. (hide-start (+ org-babel-hash-show start))
  423. (end (match-end 3))
  424. (hash (match-string 3))
  425. ov1 ov2)
  426. (setq ov1 (make-overlay start hide-start))
  427. (setq ov2 (make-overlay hide-start end))
  428. (overlay-put ov2 'invisible 'org-babel-hide-hash)
  429. (overlay-put ov1 'babel-hash hash)))))
  430. (defun org-babel-hide-all-hashes ()
  431. "Hide the hash in the current buffer. Only the initial
  432. `org-babel-hash-show' characters of each hash will remain
  433. visible. This function should be called as part of the
  434. `org-mode-hook'."
  435. (save-excursion
  436. (while (re-search-forward org-babel-result-regexp nil t)
  437. (goto-char (match-beginning 0))
  438. (org-babel-hide-hash)
  439. (goto-char (match-end 0)))))
  440. (add-hook 'org-mode-hook 'org-babel-hide-all-hashes)
  441. (defun org-babel-hash-at-point (&optional point)
  442. "Return the value of the hash at `point'. The hash is also
  443. added as the last element of the kill ring. This can be called
  444. with C-c C-c."
  445. (interactive)
  446. (let ((hash (car (delq nil (mapcar
  447. (lambda (ol) (overlay-get ol 'babel-hash))
  448. (overlays-at (or point (point))))))))
  449. (when hash (kill-new hash) (message hash))))
  450. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-hash-at-point)
  451. (defun org-babel-result-hide-spec ()
  452. (add-to-invisibility-spec '(org-babel-hide-result . t)))
  453. (add-hook 'org-mode-hook 'org-babel-result-hide-spec)
  454. (defvar org-babel-hide-result-overlays nil
  455. "Overlays hiding results.")
  456. (defun org-babel-result-hide-all ()
  457. "Fold all results in the current buffer."
  458. (interactive)
  459. (org-babel-show-result-all)
  460. (save-excursion
  461. (while (re-search-forward org-babel-result-regexp nil t)
  462. (save-excursion (goto-char (match-beginning 0))
  463. (org-babel-hide-result-toggle-maybe)))))
  464. (defun org-babel-show-result-all ()
  465. "Unfold all results in the current buffer."
  466. (mapc 'delete-overlay org-babel-hide-result-overlays)
  467. (setq org-babel-hide-result-overlays nil))
  468. (defun org-babel-hide-result-toggle-maybe ()
  469. "Toggle visibility of result at point."
  470. (interactive)
  471. (let ((case-fold-search t))
  472. (if (save-excursion
  473. (beginning-of-line 1)
  474. (looking-at org-babel-result-regexp))
  475. (progn (org-babel-hide-result-toggle)
  476. t) ;; to signal that we took action
  477. nil))) ;; to signal that we did not
  478. (defun org-babel-hide-result-toggle (&optional force)
  479. "Toggle the visibility of the current result."
  480. (interactive)
  481. (save-excursion
  482. (beginning-of-line)
  483. (if (re-search-forward org-babel-result-regexp nil t)
  484. (let ((start (progn (beginning-of-line 2) (- (point) 1)))
  485. (end (progn (goto-char (- (org-babel-result-end) 1)) (point)))
  486. ov)
  487. (if (memq t (mapcar (lambda (overlay)
  488. (eq (overlay-get overlay 'invisible)
  489. 'org-babel-hide-result))
  490. (overlays-at start)))
  491. (if (or (not force) (eq force 'off))
  492. (mapc (lambda (ov)
  493. (when (member ov org-babel-hide-result-overlays)
  494. (setq org-babel-hide-result-overlays
  495. (delq ov org-babel-hide-result-overlays)))
  496. (when (eq (overlay-get ov 'invisible)
  497. 'org-babel-hide-result)
  498. (delete-overlay ov)))
  499. (overlays-at start)))
  500. (setq ov (make-overlay start end))
  501. (overlay-put ov 'invisible 'org-babel-hide-result)
  502. ;; make the block accessible to isearch
  503. (overlay-put
  504. ov 'isearch-open-invisible
  505. (lambda (ov)
  506. (when (member ov org-babel-hide-result-overlays)
  507. (setq org-babel-hide-result-overlays
  508. (delq ov org-babel-hide-result-overlays)))
  509. (when (eq (overlay-get ov 'invisible)
  510. 'org-babel-hide-result)
  511. (delete-overlay ov))))
  512. (push ov org-babel-hide-result-overlays)))
  513. (error "Not looking at a result line"))))
  514. ;; org-tab-after-check-for-cycling-hook
  515. (add-hook 'org-tab-first-hook 'org-babel-hide-result-toggle-maybe)
  516. ;; Remove overlays when changing major mode
  517. (add-hook 'org-mode-hook
  518. (lambda () (org-add-hook 'change-major-mode-hook
  519. 'org-babel-show-result-all 'append 'local)))
  520. (defmacro org-babel-map-source-blocks (file &rest body)
  521. "Evaluate BODY forms on each source-block in FILE."
  522. (declare (indent 1))
  523. `(let ((visited-p (get-file-buffer (expand-file-name ,file)))
  524. to-be-removed)
  525. (save-window-excursion
  526. (find-file ,file)
  527. (setq to-be-removed (current-buffer))
  528. (goto-char (point-min))
  529. (while (re-search-forward org-babel-src-block-regexp nil t)
  530. (goto-char (match-beginning 0))
  531. (save-match-data ,@body)
  532. (goto-char (match-end 0))))
  533. (unless visited-p
  534. (kill-buffer to-be-removed))))
  535. (defun org-babel-params-from-properties (&optional lang)
  536. "Return an association list of any source block params which
  537. may be specified in the properties of the current outline entry."
  538. (save-match-data
  539. (let (val sym)
  540. (delq nil
  541. (mapcar
  542. (lambda (header-arg)
  543. (and (setq val
  544. (or (condition-case nil
  545. (org-entry-get (point) header-arg t)
  546. (error nil))
  547. (cdr (assoc header-arg org-file-properties))))
  548. (cons (intern (concat ":" header-arg)) val)))
  549. (mapcar
  550. 'symbol-name
  551. (append
  552. org-babel-header-arg-names
  553. (progn
  554. (setq sym (intern (concat "org-babel-header-arg-names:" lang)))
  555. (and (boundp sym) (eval sym))))))))))
  556. (defun org-babel-params-from-buffer ()
  557. "Return an association list of any source block params which
  558. may be specified at the top of the current buffer."
  559. (or org-babel-current-buffer-properties
  560. (setq org-babel-current-buffer-properties
  561. (save-excursion
  562. (save-restriction
  563. (widen)
  564. (goto-char (point-min))
  565. (when (re-search-forward
  566. (org-make-options-regexp (list "BABEL")) nil t)
  567. (org-babel-parse-header-arguments
  568. (org-match-string-no-properties 2))))))))
  569. (defun org-babel-parse-src-block-match ()
  570. (let* ((block-indentation (length (match-string 1)))
  571. (lang (org-babel-clean-text-properties (match-string 2)))
  572. (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
  573. (switches (match-string 3))
  574. (body (org-babel-clean-text-properties (match-string 5)))
  575. (preserve-indentation (or org-src-preserve-indentation
  576. (string-match "-i\\>" switches))))
  577. (list lang
  578. ;; get block body less properties, protective commas, and indentation
  579. (with-temp-buffer
  580. (save-match-data
  581. (insert (org-babel-strip-protective-commas body))
  582. (unless preserve-indentation (org-do-remove-indentation))
  583. (buffer-string)))
  584. (org-babel-merge-params
  585. org-babel-default-header-args
  586. (org-babel-params-from-buffer)
  587. (org-babel-params-from-properties lang)
  588. (if (boundp lang-headers) (eval lang-headers) nil)
  589. (org-babel-parse-header-arguments
  590. (org-babel-clean-text-properties (or (match-string 4) ""))))
  591. switches
  592. block-indentation)))
  593. (defun org-babel-parse-inline-src-block-match ()
  594. (let* ((lang (org-babel-clean-text-properties (match-string 2)))
  595. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  596. (list lang
  597. (org-babel-strip-protective-commas
  598. (org-babel-clean-text-properties (match-string 5)))
  599. (org-babel-merge-params
  600. org-babel-default-inline-header-args
  601. (org-babel-params-from-buffer)
  602. (org-babel-params-from-properties lang)
  603. (if (boundp lang-headers) (eval lang-headers) nil)
  604. (org-babel-parse-header-arguments
  605. (org-babel-clean-text-properties (or (match-string 4) "")))))))
  606. (defun org-babel-parse-header-arguments (arg-string)
  607. "Parse a string of header arguments returning an alist."
  608. (if (> (length arg-string) 0)
  609. (delq nil
  610. (mapcar
  611. (lambda (arg)
  612. (if (string-match
  613. "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)"
  614. arg)
  615. (cons (intern (concat ":" (match-string 1 arg)))
  616. (let ((raw (org-babel-chomp (match-string 2 arg))))
  617. (if (org-babel-number-p raw)
  618. raw (org-babel-read raw))))
  619. (cons (intern (concat ":" arg)) nil)))
  620. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  621. (defun org-babel-process-params (params)
  622. "Parse params and resolve references.
  623. Return a list (session vars result-params result-type colnames rownames)."
  624. (let* ((session (cdr (assoc :session params)))
  625. (vars-and-names (org-babel-disassemble-tables
  626. (org-babel-ref-variables params)
  627. (cdr (assoc :hlines params))
  628. (cdr (assoc :colnames params))
  629. (cdr (assoc :rownames params))))
  630. (vars (car vars-and-names))
  631. (colnames (cadr vars-and-names))
  632. (rownames (caddr vars-and-names))
  633. (result-params (split-string (or (cdr (assoc :results params)) "")))
  634. (result-type (cond ((member "output" result-params) 'output)
  635. ((member "value" result-params) 'value)
  636. (t 'value))))
  637. (list session vars result-params result-type colnames rownames)))
  638. ;; row and column names
  639. (defun org-babel-del-hlines (table)
  640. "Remove all 'hlines from TABLE."
  641. (remove 'hline table))
  642. (defun org-babel-get-colnames (table)
  643. "Return a cons cell, the `car' of which contains the TABLE
  644. less colnames, and the `cdr' of which contains a list of the
  645. column names"
  646. (if (equal 'hline (second table))
  647. (cons (cddr table) (car table))
  648. (cons (cdr table) (car table))))
  649. (defun org-babel-get-rownames (table)
  650. "Return a cons cell, the `car' of which contains the TABLE less
  651. colnames, and the `cdr' of which contains a list of the column
  652. names. Note: this function removes any hlines in TABLE"
  653. (flet ((trans (table) (apply #'mapcar* #'list table)))
  654. (let* ((width (apply 'max (mapcar (lambda (el) (if (listp el) (length el) 0)) table)))
  655. (table (trans (mapcar (lambda (row)
  656. (if (not (equal row 'hline))
  657. row
  658. (setq row '())
  659. (dotimes (n width) (setq row (cons 'hline row)))
  660. row))
  661. table))))
  662. (cons (mapcar (lambda (row) (if (equal (car row) 'hline) 'hline row))
  663. (trans (cdr table)))
  664. (remove 'hline (car table))))))
  665. (defun org-babel-put-colnames (table colnames)
  666. "Add COLNAMES to TABLE if they exist."
  667. (if colnames (apply 'list colnames 'hline table) table))
  668. (defun org-babel-put-rownames (table rownames)
  669. "Add ROWNAMES to TABLE if they exist."
  670. (if rownames
  671. (mapcar (lambda (row)
  672. (if (listp row)
  673. (cons (or (pop rownames) "") row)
  674. row)) table)
  675. table))
  676. (defun org-babel-pick-name (names selector)
  677. "Select one out of an alist of row or column names."
  678. (when names
  679. (if (and selector (symbolp selector) (not (equal t selector)))
  680. (cdr (assoc selector names))
  681. (if (integerp selector)
  682. (nth (- selector 1) names)
  683. (cdr (car (last names)))))))
  684. (defun org-babel-disassemble-tables (vars hlines colnames rownames)
  685. "Process the variables in VARS according to the HLINES,
  686. ROWNAMES and COLNAMES header arguments. Return a list consisting
  687. of the vars, cnames and rnames."
  688. (let (cnames rnames)
  689. (list
  690. (mapcar
  691. (lambda (var)
  692. (when (listp (cdr var))
  693. (when (and (not (equal colnames "no"))
  694. (or colnames (and (equal (second (cdr var)) 'hline)
  695. (not (member 'hline (cddr (cdr var)))))))
  696. (let ((both (org-babel-get-colnames (cdr var))))
  697. (setq cnames (cons (cons (car var) (cdr both))
  698. cnames))
  699. (setq var (cons (car var) (car both)))))
  700. (when (and rownames (not (equal rownames "no")))
  701. (let ((both (org-babel-get-rownames (cdr var))))
  702. (setq rnames (cons (cons (car var) (cdr both))
  703. rnames))
  704. (setq var (cons (car var) (car both)))))
  705. (when (and hlines (not (equal hlines "yes")))
  706. (setq var (cons (car var) (org-babel-del-hlines (cdr var))))))
  707. var)
  708. vars)
  709. cnames rnames)))
  710. (defun org-babel-reassemble-table (table colnames rownames)
  711. "Given a TABLE and set of COLNAMES and ROWNAMES add the names
  712. to the table for reinsertion to org-mode."
  713. (if (listp table)
  714. ((lambda (table)
  715. (if (and colnames (listp (car table)) (= (length (car table))
  716. (length colnames)))
  717. (org-babel-put-colnames table colnames) table))
  718. (if (and rownames (= (length table) (length rownames)))
  719. (org-babel-put-rownames table rownames) table))
  720. table))
  721. (defun org-babel-where-is-src-block-head ()
  722. "Return the point at the beginning of the current source
  723. block. Specifically at the beginning of the #+BEGIN_SRC line.
  724. If the point is not on a source block then return nil."
  725. (let ((initial (point)) top bottom)
  726. (or
  727. (save-excursion ;; on a source name line
  728. (beginning-of-line 1)
  729. (and (looking-at org-babel-source-name-regexp) (forward-line 1)
  730. (looking-at org-babel-src-block-regexp)
  731. (point)))
  732. (save-excursion ;; on a #+begin_src line
  733. (beginning-of-line 1)
  734. (and (looking-at org-babel-src-block-regexp)
  735. (point)))
  736. (save-excursion ;; inside a src block
  737. (and
  738. (re-search-backward "^[ \t]*#\\+begin_src" nil t) (setq top (point))
  739. (re-search-forward "^[ \t]*#\\+end_src" nil t) (setq bottom (point))
  740. (< top initial) (< initial bottom)
  741. (progn (goto-char top) (beginning-of-line 1)
  742. (looking-at org-babel-src-block-regexp))
  743. (point))))))
  744. (defun org-babel-goto-named-source-block (&optional name)
  745. "Go to a named source-code block."
  746. (interactive "ssource-block name: ")
  747. (let ((point (org-babel-find-named-block name)))
  748. (if point
  749. ;; taken from `org-open-at-point'
  750. (progn (goto-char point) (org-show-context))
  751. (message "source-code block '%s' not found in this buffer" name))))
  752. (defun org-babel-find-named-block (name)
  753. "Find a named source-code block.
  754. Return the location of the source block identified by source
  755. NAME, or nil if no such block exists. Set match data according to
  756. org-babel-named-src-block-regexp."
  757. (save-excursion
  758. (let ((case-fold-search t)
  759. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  760. (goto-char (point-min))
  761. (when (or (re-search-forward regexp nil t)
  762. (re-search-backward regexp nil t))
  763. (match-beginning 0)))))
  764. (defun org-babel-find-named-result (name)
  765. "Return the location of the result named NAME in the current
  766. buffer or nil if no such result exists."
  767. (save-excursion
  768. (goto-char (point-min))
  769. (when (re-search-forward
  770. (concat org-babel-result-regexp
  771. "[ \t]" (regexp-quote name) "[ \t\n\f\v\r]") nil t)
  772. (beginning-of-line 0) (point))))
  773. (defun org-babel-where-is-src-block-result (&optional insert info hash indent)
  774. "Return the point at the beginning of the result of the current
  775. source block. Specifically at the beginning of the results line.
  776. If no result exists for this block then create a results line
  777. following the source block."
  778. (save-excursion
  779. (let* ((on-lob-line (progn (beginning-of-line 1)
  780. (looking-at org-babel-lob-one-liner-regexp)))
  781. (name (if on-lob-line
  782. (first (org-babel-lob-get-info))
  783. (fifth (or info (org-babel-get-src-block-info)))))
  784. (head (unless on-lob-line (org-babel-where-is-src-block-head))) end)
  785. (when head (goto-char head))
  786. (or (and name (org-babel-find-named-result name))
  787. (and (or on-lob-line (re-search-forward "^[ \t]*#\\+end_src" nil t))
  788. (progn (end-of-line 1)
  789. (if (eobp) (insert "\n") (forward-char 1))
  790. (setq end (point))
  791. (or (and (not name)
  792. (progn ;; unnamed results line already exists
  793. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  794. (beginning-of-line 1)
  795. (looking-at
  796. (concat org-babel-result-regexp "\n"))))
  797. ;; or (with optional insert) back up and
  798. ;; make one ourselves
  799. (when insert
  800. (goto-char end)
  801. (if (looking-at "[\n\r]")
  802. (forward-char 1) (insert "\n"))
  803. (insert (concat
  804. (if indent
  805. (mapconcat
  806. (lambda (el) " ")
  807. (number-sequence 1 indent) "")
  808. "")
  809. "#+results"
  810. (when hash (concat "["hash"]"))
  811. ":"
  812. (when name (concat " " name)) "\n"))
  813. (beginning-of-line 0)
  814. (if hash (org-babel-hide-hash)) t)))
  815. (point))))))
  816. (defun org-babel-read-result ()
  817. "Read the result at `point' into emacs-lisp."
  818. (let ((case-fold-search t) result-string)
  819. (cond
  820. ((org-at-table-p) (org-babel-read-table))
  821. ((looking-at org-bracket-link-regexp) (org-babel-read-link))
  822. ((looking-at org-block-regexp) (org-babel-trim (match-string 4)))
  823. ((looking-at "^[ \t]*: ")
  824. (setq result-string
  825. (org-babel-trim
  826. (mapconcat (lambda (line)
  827. (if (and (> (length line) 1)
  828. (string-match "^[ \t]*: \\(.+\\)" line))
  829. (match-string 1 line)
  830. line))
  831. (split-string
  832. (buffer-substring
  833. (point) (org-babel-result-end)) "[\r\n]+")
  834. "\n")))
  835. (or (org-babel-number-p result-string) result-string))
  836. ((looking-at org-babel-result-regexp)
  837. (save-excursion (forward-line 1) (org-babel-read-result))))))
  838. (defun org-babel-read-table ()
  839. "Read the table at `point' into emacs-lisp."
  840. (mapcar (lambda (row)
  841. (if (and (symbolp row) (equal row 'hline)) row
  842. (mapcar #'org-babel-read row)))
  843. (org-table-to-lisp)))
  844. (defun org-babel-read-link ()
  845. "Read the link at `point' into emacs-lisp. If the path of the
  846. link is a file path it is expanded using `expand-file-name'."
  847. (let* ((case-fold-search t)
  848. (raw (and (looking-at org-bracket-link-regexp)
  849. (org-babel-clean-text-properties (match-string 1))))
  850. (type (and (string-match org-link-types-re raw)
  851. (match-string 1 raw))))
  852. (cond
  853. ((not type) (expand-file-name raw))
  854. ((string= type "file")
  855. (and (string-match "file\\(.*\\):\\(.+\\)" raw)
  856. (expand-file-name (match-string 2 raw))))
  857. (t raw))))
  858. (defun org-babel-insert-result (result &optional result-params info hash indent)
  859. "Insert RESULT into the current buffer after the end of the
  860. current source block. With optional argument RESULT-PARAMS
  861. controls insertion of results in the org-mode file.
  862. RESULT-PARAMS can take the following values...
  863. replace - (default option) insert results after the source block
  864. replacing any previously inserted results
  865. silent -- no results are inserted
  866. file ---- the results are interpreted as a file path, and are
  867. inserted into the buffer using the Org-mode file syntax
  868. raw ----- results are added directly to the org-mode file. This
  869. is a good option if you code block will output org-mode
  870. formatted text.
  871. org ----- this is the same as the 'raw' option
  872. html ---- results are added inside of a #+BEGIN_HTML block. This
  873. is a good option if you code block will output html
  874. formatted text.
  875. latex --- results are added inside of a #+BEGIN_LATEX block.
  876. This is a good option if you code block will output
  877. latex formatted text.
  878. code ---- the results are extracted in the syntax of the source
  879. code of the language being evaluated and are added
  880. inside of a #+BEGIN_SRC block with the source-code
  881. language set appropriately."
  882. (if (stringp result)
  883. (progn
  884. (setq result (org-babel-clean-text-properties result))
  885. (when (member "file" result-params)
  886. (setq result (org-babel-result-to-file result))))
  887. (unless (listp result) (setq result (format "%S" result))))
  888. (if (= (length result) 0)
  889. (if (member "value" result-params)
  890. (message "No result returned by source block")
  891. (message "Source block produced no output"))
  892. (if (and result-params (member "silent" result-params))
  893. (progn
  894. (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  895. result)
  896. (when (and (stringp result) ;; ensure results end in a newline
  897. (not (or (string-equal (substring result -1) "\n")
  898. (string-equal (substring result -1) "\r"))))
  899. (setq result (concat result "\n")))
  900. (save-excursion
  901. (let ((existing-result (org-babel-where-is-src-block-result
  902. t info hash indent))
  903. (results-switches
  904. (cdr (assoc :results_switches (third info))))
  905. beg end)
  906. (when existing-result
  907. (goto-char existing-result)
  908. (save-excursion
  909. (re-search-forward "#" nil t)
  910. (setq indent (- (current-column) 1)))
  911. (forward-line 1)
  912. (setq beg (point))
  913. (cond
  914. ((member "replace" result-params)
  915. (delete-region (point) (org-babel-result-end)))
  916. ((member "append" result-params)
  917. (goto-char (org-babel-result-end)) (setq beg (point)))
  918. ((member "prepend" result-params) ;; already there
  919. )))
  920. (setq results-switches
  921. (if results-switches (concat " " results-switches) ""))
  922. (cond
  923. ;; assume the result is a table if it's not a string
  924. ((not (stringp result))
  925. (insert (concat (orgtbl-to-orgtbl
  926. (if (or (eq 'hline (car result))
  927. (and (listp (car result))
  928. (listp (cdr (car result)))))
  929. result (list result))
  930. '(:fmt (lambda (cell) (format "%s" cell)))) "\n"))
  931. (goto-char beg) (org-table-align))
  932. ((member "file" result-params)
  933. (insert result))
  934. ((member "html" result-params)
  935. (insert (format "#+BEGIN_HTML%s\n%s#+END_HTML\n"
  936. results-switches result)))
  937. ((member "latex" result-params)
  938. (insert (format "#+BEGIN_LaTeX%s\n%s#+END_LaTeX\n"
  939. results-switches result)))
  940. ((member "code" result-params)
  941. (insert (format "#+BEGIN_SRC %s%s\n%s#+END_SRC\n"
  942. lang results-switches result)))
  943. ((or (member "raw" result-params) (member "org" result-params))
  944. (save-excursion (insert result)) (if (org-at-table-p) (org-cycle)))
  945. (t
  946. (org-babel-examplize-region
  947. (point) (progn (insert result) (point)) results-switches)))
  948. ;; possibly indent the results to match the #+results line
  949. (setq end (if (listp result) (org-table-end) (point)))
  950. (when (and indent (> indent 0)
  951. ;; in this case `table-align' does the work for us
  952. (not (and (listp result)
  953. (member "append" result-params))))
  954. (indent-rigidly beg end indent))))
  955. (message "finished"))))
  956. (defun org-babel-result-to-org-string (result)
  957. "Return RESULT as a string in org-mode format. This function
  958. relies on `org-babel-insert-result'."
  959. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  960. (defun org-babel-remove-result (&optional info)
  961. "Remove the result of the current source block."
  962. (interactive)
  963. (let ((location (org-babel-where-is-src-block-result nil info)) start)
  964. (when location
  965. (save-excursion
  966. (goto-char location) (setq start (point)) (forward-line 1)
  967. (delete-region start (org-babel-result-end))))))
  968. (defun org-babel-result-end ()
  969. "Return the point at the end of the current set of results"
  970. (save-excursion
  971. (if (org-at-table-p)
  972. (progn (goto-char (org-table-end)) (point))
  973. (let ((case-fold-search t))
  974. (cond
  975. ((looking-at "[ \t]*#\\+begin_latex")
  976. (search-forward "[ \t]*#\\+end_latex" nil t)
  977. (forward-line 1))
  978. ((looking-at "[ \t]*#\\+begin_html")
  979. (search-forward "[ \t]*#\\+end_html" nil t)
  980. (forward-line 1))
  981. ((looking-at "[ \t]*#\\+begin_example")
  982. (search-forward "[ \t]*#\\+end_example" nil t)
  983. (forward-line 1))
  984. ((looking-at "[ \t]*#\\+begin_src")
  985. (search-forward "[ \t]*#\\+end_src" nil t)
  986. (forward-line 1))
  987. (t (progn (while (looking-at "[ \t]*\\(: \\|\\[\\[\\)")
  988. (forward-line 1))))))
  989. (point))))
  990. (defun org-babel-result-to-file (result)
  991. "Convert RESULT into an `org-mode' link. If the
  992. `default-directory' is different from the containing file's
  993. directory then expand relative links."
  994. (format
  995. "[[file:%s]]"
  996. (if (and default-directory
  997. buffer-file-name
  998. (not (string= (expand-file-name default-directory)
  999. (expand-file-name
  1000. (file-name-directory buffer-file-name)))))
  1001. (expand-file-name result default-directory)
  1002. result)))
  1003. (defun org-babel-examplize-region (beg end &optional results-switches)
  1004. "Comment out region using the ': ' org example quote."
  1005. (interactive "*r")
  1006. (let ((size (count-lines beg end)))
  1007. (save-excursion
  1008. (cond ((= size 0)
  1009. (error (concat "This should be impossible:"
  1010. "a newline was appended to result if missing")))
  1011. ((< size org-babel-min-lines-for-block-output)
  1012. (goto-char beg)
  1013. (dotimes (n size)
  1014. (beginning-of-line 1) (insert ": ") (forward-line 1)))
  1015. (t
  1016. (goto-char beg)
  1017. (insert (if results-switches
  1018. (format "#+begin_example%s\n" results-switches)
  1019. "#+begin_example\n"))
  1020. (forward-char (- end beg))
  1021. (insert "#+end_example\n"))))))
  1022. (defun org-babel-merge-params (&rest plists)
  1023. "Combine all parameter association lists in PLISTS. Later
  1024. elements of PLISTS override the values of previous element. This
  1025. takes into account some special considerations for certain
  1026. parameters when merging lists."
  1027. (let ((results-exclusive-groups
  1028. '(("file" "vector" "table" "scalar" "raw" "org"
  1029. "html" "latex" "code" "pp")
  1030. ("replace" "silent" "append" "prepend")
  1031. ("output" "value")))
  1032. (exports-exclusive-groups
  1033. '(("code" "results" "both" "none")))
  1034. params results exports tangle noweb cache vars var ref shebang comments)
  1035. (flet ((e-merge (exclusive-groups &rest result-params)
  1036. ;; maintain exclusivity of mutually exclusive parameters
  1037. (let (output)
  1038. (mapc (lambda (new-params)
  1039. (mapc (lambda (new-param)
  1040. (mapc (lambda (exclusive-group)
  1041. (when (member new-param exclusive-group)
  1042. (mapcar (lambda (excluded-param)
  1043. (setq output
  1044. (delete
  1045. excluded-param
  1046. output)))
  1047. exclusive-group)))
  1048. exclusive-groups)
  1049. (setq output (org-uniquify
  1050. (cons new-param output))))
  1051. new-params))
  1052. result-params)
  1053. output)))
  1054. (mapc (lambda (plist)
  1055. (mapc (lambda (pair)
  1056. (case (car pair)
  1057. (:var
  1058. ;; we want only one specification per variable
  1059. (when (string-match
  1060. (concat "^\\([^= \f\t\n\r\v]+\\)[ \t]*="
  1061. "[ \t]*\\([^\f\n\r\v]+\\)$") (cdr pair))
  1062. ;; TODO: When is this not true?
  1063. (setq var (intern (match-string 1 (cdr pair)))
  1064. ref (match-string 2 (cdr pair))
  1065. vars (cons (cons var ref)
  1066. (assq-delete-all var vars)))))
  1067. (:results
  1068. (setq results
  1069. (e-merge results-exclusive-groups
  1070. results (split-string (cdr pair)))))
  1071. (:file
  1072. (when (cdr pair)
  1073. (setq results (e-merge results-exclusive-groups
  1074. results '("file")))
  1075. (unless (or (member "both" exports)
  1076. (member "none" exports)
  1077. (member "code" exports))
  1078. (setq exports (e-merge exports-exclusive-groups
  1079. exports '("results"))))
  1080. (setq params
  1081. (cons pair
  1082. (assq-delete-all (car pair) params)))))
  1083. (:exports
  1084. (setq exports
  1085. (e-merge exports-exclusive-groups
  1086. exports (split-string (cdr pair)))))
  1087. (:tangle ;; take the latest -- always overwrite
  1088. (setq tangle (or (list (cdr pair)) tangle)))
  1089. (:noweb
  1090. (setq noweb
  1091. (e-merge '(("yes" "no")) noweb
  1092. (split-string (or (cdr pair) "")))))
  1093. (:cache
  1094. (setq cache
  1095. (e-merge '(("yes" "no")) cache
  1096. (split-string (or (cdr pair) "")))))
  1097. (:shebang ;; take the latest -- always overwrite
  1098. (setq shebang (or (list (cdr pair)) shebang)))
  1099. (:comments
  1100. (setq comments
  1101. (e-merge '(("yes" "no")) comments
  1102. (split-string (or (cdr pair) "")))))
  1103. (t ;; replace: this covers e.g. :session
  1104. (setq params
  1105. (cons pair
  1106. (assq-delete-all (car pair) params))))))
  1107. plist))
  1108. plists))
  1109. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  1110. (while vars (setq params (cons (cons :var (pop vars)) params)))
  1111. (cons (cons :comments (mapconcat 'identity comments " "))
  1112. (cons (cons :shebang (mapconcat 'identity shebang " "))
  1113. (cons (cons :cache (mapconcat 'identity cache " "))
  1114. (cons (cons :noweb (mapconcat 'identity noweb " "))
  1115. (cons (cons :tangle (mapconcat 'identity tangle " "))
  1116. (cons (cons :exports
  1117. (mapconcat 'identity exports " "))
  1118. (cons
  1119. (cons :results
  1120. (mapconcat 'identity results " "))
  1121. params)))))))))
  1122. (defun org-babel-expand-noweb-references (&optional info parent-buffer)
  1123. "This function expands Noweb style references in the body of
  1124. the current source-code block. For example the following
  1125. reference would be replaced with the body of the source-code
  1126. block named 'example-block'.
  1127. <<example-block>>
  1128. Note that any text preceding the <<foo>> construct on a line will
  1129. be interposed between the lines of the replacement text. So for
  1130. example if <<foo>> is placed behind a comment, then the entire
  1131. replacement text will also be commented.
  1132. This function must be called from inside of the buffer containing
  1133. the source-code block which holds BODY.
  1134. In addition the following syntax can be used to insert the
  1135. results of evaluating the source-code block named 'example-block'.
  1136. <<example-block()>>
  1137. Any optional arguments can be passed to example-block by placing
  1138. the arguments inside the parenthesis following the convention
  1139. defined by `org-babel-lob'. For example
  1140. <<example-block(a=9)>>
  1141. would set the value of argument \"a\" equal to \"9\". Note that
  1142. these arguments are not evaluated in the current source-code
  1143. block but are passed literally to the \"example-block\"."
  1144. (let* ((parent-buffer (or parent-buffer (current-buffer)))
  1145. (info (or info (org-babel-get-src-block-info)))
  1146. (lang (first info))
  1147. (body (second info))
  1148. (new-body "") index source-name evaluate prefix)
  1149. (flet ((nb-add (text)
  1150. (setq new-body (concat new-body text))))
  1151. (with-temp-buffer
  1152. (insert body) (goto-char (point-min))
  1153. (setq index (point))
  1154. (while (and (re-search-forward "<<\\(.+?\\)>>" nil t))
  1155. (save-match-data (setf source-name (match-string 1)))
  1156. (save-match-data (setq evaluate (string-match "\(.*\)" source-name)))
  1157. (save-match-data
  1158. (setq prefix
  1159. (buffer-substring (match-beginning 0)
  1160. (save-excursion
  1161. (beginning-of-line 1) (point)))))
  1162. ;; add interval to new-body (removing noweb reference)
  1163. (goto-char (match-beginning 0))
  1164. (nb-add (buffer-substring index (point)))
  1165. (goto-char (match-end 0))
  1166. (setq index (point))
  1167. (nb-add (save-excursion
  1168. (set-buffer parent-buffer)
  1169. (mapconcat ;; interpose `prefix' between every line
  1170. #'identity
  1171. (split-string
  1172. (if evaluate
  1173. (let ((raw (org-babel-ref-resolve-reference
  1174. source-name nil)))
  1175. (if (stringp raw) raw (format "%S" raw)))
  1176. (save-restriction
  1177. (widen)
  1178. (let ((point (org-babel-find-named-block source-name)))
  1179. (if point
  1180. (save-excursion
  1181. (goto-char point)
  1182. (org-babel-trim
  1183. (org-babel-expand-noweb-references
  1184. (org-babel-get-src-block-info))))
  1185. ;; optionally raise an error if named
  1186. ;; source-block doesn't exist
  1187. (if (member lang org-babel-noweb-error-langs)
  1188. (error
  1189. (concat "<<%s>> could not be resolved "
  1190. "(see `org-babel-noweb-error-langs')")
  1191. source-name)
  1192. "")))))
  1193. "[\n\r]") (concat "\n" prefix)))))
  1194. (nb-add (buffer-substring index (point-max)))))
  1195. new-body))
  1196. (defun org-babel-error-notify (exit-code stderr)
  1197. (message (format "Shell command exited with code %d" exit-code))
  1198. (let ((buf (get-buffer-create "*Org-Babel Error Output*")))
  1199. (with-current-buffer buf
  1200. (goto-char (point-max))
  1201. (save-excursion (insert stderr)))
  1202. (display-buffer buf)))
  1203. (defun org-babel-clean-text-properties (text)
  1204. "Strip all properties from text return."
  1205. (when text
  1206. (set-text-properties 0 (length text) nil text) text))
  1207. (defun org-babel-strip-protective-commas (body)
  1208. "Strip protective commas from bodies of source blocks."
  1209. (replace-regexp-in-string "^,#" "#" body))
  1210. (defun org-babel-read (cell)
  1211. "Convert the string value of CELL to a number if appropriate.
  1212. Otherwise if cell looks like lisp (meaning it starts with a
  1213. \"(\" or a \"'\") then read it as lisp, otherwise return it
  1214. unmodified as a string.
  1215. This is taken almost directly from `org-read-prop'."
  1216. (if (and (stringp cell) (not (equal cell "")))
  1217. (or (org-babel-number-p cell)
  1218. (if (or (equal "(" (substring cell 0 1))
  1219. (equal "'" (substring cell 0 1))
  1220. (equal "`" (substring cell 0 1)))
  1221. (eval (read cell))
  1222. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  1223. cell))
  1224. (defun org-babel-number-p (string)
  1225. "Return t if STRING represents a number"
  1226. (if (and (string-match "^-?[0-9]*\\.?[0-9]*$" string)
  1227. (= (length (substring string (match-beginning 0)
  1228. (match-end 0)))
  1229. (length string)))
  1230. (string-to-number string)))
  1231. (defun org-babel-import-elisp-from-file (file-name)
  1232. "Read the results located at FILE-NAME into an elisp table. If
  1233. the table is trivial, then return it as a scalar."
  1234. (let (result)
  1235. (save-window-excursion
  1236. (with-temp-buffer
  1237. (condition-case nil
  1238. (progn
  1239. (org-table-import file-name nil)
  1240. (delete-file file-name)
  1241. (setq result (mapcar (lambda (row)
  1242. (mapcar #'org-babel-string-read row))
  1243. (org-table-to-lisp))))
  1244. (error nil)))
  1245. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  1246. (if (consp (car result))
  1247. (if (null (cdr (car result)))
  1248. (caar result)
  1249. result)
  1250. (car result))
  1251. result))))
  1252. (defun org-babel-string-read (cell)
  1253. "Strip nested \"s from around strings."
  1254. (org-babel-read (or (and (stringp cell)
  1255. (string-match "\\\"\\(.+\\)\\\"" cell)
  1256. (match-string 1 cell))
  1257. cell)))
  1258. (defun org-babel-reverse-string (string)
  1259. (apply 'string (reverse (string-to-list string))))
  1260. (defun org-babel-chomp (string &optional regexp)
  1261. "Remove any trailing space or carriage returns characters from
  1262. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  1263. overwritten by specifying a regexp as a second argument."
  1264. (let ((regexp (or regexp "[ \f\t\n\r\v]")))
  1265. (while (and (> (length string) 0)
  1266. (string-match regexp (substring string -1)))
  1267. (setq string (substring string 0 -1)))
  1268. string))
  1269. (defun org-babel-trim (string &optional regexp)
  1270. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  1271. (org-babel-chomp (org-babel-reverse-string
  1272. (org-babel-chomp (org-babel-reverse-string string) regexp))
  1273. regexp))
  1274. (defun org-babel-tramp-handle-call-process-region
  1275. (start end program &optional delete buffer display &rest args)
  1276. "Use tramp to handle call-process-region.
  1277. Fixes a bug in `tramp-handle-call-process-region'."
  1278. (if (and (featurep 'tramp) (file-remote-p default-directory))
  1279. (let ((tmpfile (tramp-compat-make-temp-file "")))
  1280. (write-region start end tmpfile)
  1281. (when delete (delete-region start end))
  1282. (unwind-protect
  1283. ;; (apply 'call-process program tmpfile buffer display args)
  1284. ;; bug in tramp
  1285. (apply 'process-file program tmpfile buffer display args)
  1286. (delete-file tmpfile)))
  1287. ;; call-process-region-original is the original emacs definition. It
  1288. ;; is in scope from the let binding in org-babel-execute-src-block
  1289. (apply call-process-region-original
  1290. start end program delete buffer display args)))
  1291. (defun org-babel-maybe-remote-file (file)
  1292. (if (file-remote-p default-directory)
  1293. (let* ((vec (tramp-dissect-file-name default-directory))
  1294. (user (tramp-file-name-user vec))
  1295. (host (tramp-file-name-host vec)))
  1296. (concat "/" user (when user "@") host ":" file))
  1297. file))
  1298. (defun org-babel-shell-command-on-region (start end command
  1299. &optional output-buffer replace
  1300. error-buffer display-error-buffer)
  1301. "Execute string COMMAND in inferior shell with region as input.
  1302. Fixes bugs in the emacs 23.1.1 version of `shell-command-on-region'
  1303. Normally display output (if any) in temp buffer `*Shell Command Output*';
  1304. Prefix arg means replace the region with it. Return the exit code of
  1305. COMMAND.
  1306. To specify a coding system for converting non-ASCII characters in
  1307. the input and output to the shell command, use
  1308. \\[universal-coding-system-argument] before this command. By
  1309. default, the input (from the current buffer) is encoded in the
  1310. same coding system that will be used to save the file,
  1311. `buffer-file-coding-system'. If the output is going to replace
  1312. the region, then it is decoded from that same coding system.
  1313. The noninteractive arguments are START, END, COMMAND,
  1314. OUTPUT-BUFFER, REPLACE, ERROR-BUFFER, and DISPLAY-ERROR-BUFFER.
  1315. Noninteractive callers can specify coding systems by binding
  1316. `coding-system-for-read' and `coding-system-for-write'.
  1317. If the command generates output, the output may be displayed
  1318. in the echo area or in a buffer.
  1319. If the output is short enough to display in the echo area
  1320. \(determined by the variable `max-mini-window-height' if
  1321. `resize-mini-windows' is non-nil), it is shown there. Otherwise
  1322. it is displayed in the buffer `*Shell Command Output*'. The output
  1323. is available in that buffer in both cases.
  1324. If there is output and an error, a message about the error
  1325. appears at the end of the output.
  1326. If there is no output, or if output is inserted in the current buffer,
  1327. then `*Shell Command Output*' is deleted.
  1328. If the optional fourth argument OUTPUT-BUFFER is non-nil,
  1329. that says to put the output in some other buffer.
  1330. If OUTPUT-BUFFER is a buffer or buffer name, put the output there.
  1331. If OUTPUT-BUFFER is not a buffer and not nil,
  1332. insert output in the current buffer.
  1333. In either case, the output is inserted after point (leaving mark after it).
  1334. If REPLACE, the optional fifth argument, is non-nil, that means insert
  1335. the output in place of text from START to END, putting point and mark
  1336. around it.
  1337. If optional sixth argument ERROR-BUFFER is non-nil, it is a buffer
  1338. or buffer name to which to direct the command's standard error output.
  1339. If it is nil, error output is mingled with regular output.
  1340. If DISPLAY-ERROR-BUFFER is non-nil, display the error buffer if there
  1341. were any errors. (This is always t, interactively.)
  1342. In an interactive call, the variable `shell-command-default-error-buffer'
  1343. specifies the value of ERROR-BUFFER."
  1344. (interactive (let (string)
  1345. (unless (mark)
  1346. (error "The mark is not set now, so there is no region"))
  1347. ;; Do this before calling region-beginning
  1348. ;; and region-end, in case subprocess output
  1349. ;; relocates them while we are in the minibuffer.
  1350. (setq string (read-shell-command "Shell command on region: "))
  1351. ;; call-interactively recognizes region-beginning and
  1352. ;; region-end specially, leaving them in the history.
  1353. (list (region-beginning) (region-end)
  1354. string
  1355. current-prefix-arg
  1356. current-prefix-arg
  1357. shell-command-default-error-buffer
  1358. t)))
  1359. (let ((error-file
  1360. (if error-buffer
  1361. (make-temp-file
  1362. (expand-file-name "scor"
  1363. (or (unless (featurep 'xemacs)
  1364. small-temporary-file-directory)
  1365. temporary-file-directory)))
  1366. nil))
  1367. exit-status)
  1368. (if (or replace
  1369. (and output-buffer
  1370. (not (or (bufferp output-buffer) (stringp output-buffer)))))
  1371. ;; Replace specified region with output from command.
  1372. (let ((swap (and replace (< start end))))
  1373. ;; Don't muck with mark unless REPLACE says we should.
  1374. (goto-char start)
  1375. (and replace (push-mark (point) 'nomsg))
  1376. (setq exit-status
  1377. (call-process-region start end shell-file-name t
  1378. (if error-file
  1379. (list output-buffer error-file)
  1380. t)
  1381. nil shell-command-switch command))
  1382. ;; It is rude to delete a buffer which the command is not using.
  1383. ;; (let ((shell-buffer (get-buffer "*Shell Command Output*")))
  1384. ;; (and shell-buffer (not (eq shell-buffer (current-buffer)))
  1385. ;; (kill-buffer shell-buffer)))
  1386. ;; Don't muck with mark unless REPLACE says we should.
  1387. (and replace swap (exchange-point-and-mark)))
  1388. ;; No prefix argument: put the output in a temp buffer,
  1389. ;; replacing its entire contents.
  1390. (let ((buffer (get-buffer-create
  1391. (or output-buffer "*Shell Command Output*"))))
  1392. (unwind-protect
  1393. (if (eq buffer (current-buffer))
  1394. ;; If the input is the same buffer as the output,
  1395. ;; delete everything but the specified region,
  1396. ;; then replace that region with the output.
  1397. (progn (setq buffer-read-only nil)
  1398. (delete-region (max start end) (point-max))
  1399. (delete-region (point-min) (min start end))
  1400. (setq exit-status
  1401. (call-process-region (point-min) (point-max)
  1402. shell-file-name t
  1403. (if error-file
  1404. (list t error-file)
  1405. t)
  1406. nil shell-command-switch
  1407. command)))
  1408. ;; Clear the output buffer, then run the command with
  1409. ;; output there.
  1410. (let ((directory default-directory))
  1411. (save-excursion
  1412. (set-buffer buffer)
  1413. (setq buffer-read-only nil)
  1414. (if (not output-buffer)
  1415. (setq default-directory directory))
  1416. (erase-buffer)))
  1417. (setq exit-status
  1418. (call-process-region start end shell-file-name nil
  1419. (if error-file
  1420. (list buffer error-file)
  1421. buffer)
  1422. nil shell-command-switch command)))
  1423. ;; Report the output.
  1424. (with-current-buffer buffer
  1425. (setq mode-line-process
  1426. (cond ((null exit-status)
  1427. " - Error")
  1428. ((stringp exit-status)
  1429. (format " - Signal [%s]" exit-status))
  1430. ((not (equal 0 exit-status))
  1431. (format " - Exit [%d]" exit-status)))))
  1432. (if (with-current-buffer buffer (> (point-max) (point-min)))
  1433. ;; There's some output, display it
  1434. (display-message-or-buffer buffer)
  1435. ;; No output; error?
  1436. (let ((output
  1437. (if (and error-file
  1438. (< 0 (nth 7 (file-attributes error-file))))
  1439. "some error output"
  1440. "no output")))
  1441. (cond ((null exit-status)
  1442. (message "(Shell command failed with error)"))
  1443. ((equal 0 exit-status)
  1444. (message "(Shell command succeeded with %s)"
  1445. output))
  1446. ((stringp exit-status)
  1447. (message "(Shell command killed by signal %s)"
  1448. exit-status))
  1449. (t
  1450. (message "(Shell command failed with code %d and %s)"
  1451. exit-status output))))
  1452. ;; Don't kill: there might be useful info in the undo-log.
  1453. ;; (kill-buffer buffer)
  1454. ))))
  1455. (when (and error-file (file-exists-p error-file))
  1456. (if (< 0 (nth 7 (file-attributes error-file)))
  1457. (with-current-buffer (get-buffer-create error-buffer)
  1458. (let ((pos-from-end (- (point-max) (point))))
  1459. (or (bobp)
  1460. (insert "\f\n"))
  1461. ;; Do no formatting while reading error file,
  1462. ;; because that can run a shell command, and we
  1463. ;; don't want that to cause an infinite recursion.
  1464. (format-insert-file error-file nil)
  1465. ;; Put point after the inserted errors.
  1466. (goto-char (- (point-max) pos-from-end)))
  1467. (and display-error-buffer
  1468. (display-buffer (current-buffer)))))
  1469. (delete-file error-file))
  1470. exit-status))
  1471. (provide 'org-babel)
  1472. ;;; org-babel.el ends here