org-babel.el 57 KB

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