org-babel.el 58 KB

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