org-babel.el 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  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. (defun org-babel-named-src-block-regexp-for-name (name)
  102. "Regexp used to match named src block."
  103. (concat org-babel-source-name-regexp (regexp-quote name) "[ \t\n]*"
  104. (substring org-babel-src-block-regexp 1)))
  105. (defun org-babel-set-interpreters (var value)
  106. (set-default var value)
  107. (setq org-babel-src-block-regexp
  108. (concat "^[ \t]*#\\+begin_src[ \t]+\\(" ;; (1) lang
  109. (mapconcat 'regexp-quote value "\\|")
  110. "\\)[ \t]*"
  111. "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)" ;; (2) switches
  112. "\\([^\n]*\\)\n" ;; (3) header arguments
  113. "\\([^\000]+?\\)#\\+end_src")) ;; (4) body
  114. (setq org-babel-inline-src-block-regexp
  115. (concat "[ \f\t\n\r\v]\\(src_" ;; (1) replacement target
  116. "\\(" ;; (2) lang
  117. (mapconcat 'regexp-quote value "\\|")
  118. "\\)"
  119. "\\(\\|\\[\\(.*\\)\\]\\)" ;; (3,4) (unused, headers)
  120. "{\\([^\f\n\r\v]+\\)}" ;; (5) body
  121. "\\)")))
  122. (defun org-babel-add-interpreter (interpreter)
  123. "Add INTERPRETER to `org-babel-interpreters' and update
  124. `org-babel-src-block-regexp' appropriately."
  125. (unless (member interpreter org-babel-interpreters)
  126. (setq org-babel-interpreters (cons interpreter org-babel-interpreters))
  127. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  128. (defcustom org-babel-interpreters '()
  129. "Interpreters allows for evaluation tags.
  130. This is a list of program names (as strings) that can evaluate code and
  131. insert the output into an Org-mode buffer. Valid choices are
  132. R Evaluate R code
  133. emacs-lisp Evaluate Emacs Lisp code and display the result
  134. sh Pass command to the shell and display the result
  135. perl The perl interpreter
  136. python The python interpreter
  137. ruby The ruby interpreter
  138. The source block regexp `org-babel-src-block-regexp' is updated
  139. when a new interpreter is added to this list through the
  140. customize interface. To add interpreters to this variable from
  141. lisp code use the `org-babel-add-interpreter' function."
  142. :group 'org-babel
  143. :set 'org-babel-set-interpreters
  144. :type '(set :greedy t
  145. (const "R")
  146. (const "emacs-lisp")
  147. (const "sh")
  148. (const "perl")
  149. (const "python")
  150. (const "ruby")))
  151. ;;; functions
  152. (defun org-babel-execute-src-block (&optional arg info params)
  153. "Execute the current source code block, and insert the results
  154. into the buffer. Source code execution and the collection and
  155. formatting of results can be controlled through a variety of
  156. header arguments.
  157. Optionally supply a value for INFO in the form returned by
  158. `org-babel-get-src-block-info'.
  159. Optionally supply a value for PARAMS which will be merged with
  160. the header arguments specified at the front of the source code
  161. block."
  162. (interactive)
  163. ;; (message "supplied params=%S" params) ;; debugging
  164. (let* ((info (or info (org-babel-get-src-block-info)))
  165. (lang (first info))
  166. (params (setf (third info)
  167. (sort (org-babel-merge-params (third info) params)
  168. (lambda (el1 el2) (string< (symbol-name (car el1))
  169. (symbol-name (car el2)))))))
  170. (new-hash (if (and (cdr (assoc :cache params))
  171. (string= "yes" (cdr (assoc :cache params)))) (org-babel-sha1-hash info)))
  172. (old-hash (org-babel-result-hash info))
  173. (body (setf (second info)
  174. (if (and (cdr (assoc :noweb params))
  175. (string= "yes" (cdr (assoc :noweb params))))
  176. (org-babel-expand-noweb-references info) (second info))))
  177. (result-params (split-string (or (cdr (assoc :results params)) "")))
  178. (result-type (cond ((member "output" result-params) 'output)
  179. ((member "value" result-params) 'value)
  180. (t 'value)))
  181. (cmd (intern (concat "org-babel-execute:" lang)))
  182. (dir (cdr (assoc :dir params)))
  183. (default-directory
  184. (or (and dir (if (string-match "/$" dir) dir (concat dir "/"))) default-directory))
  185. (call-process-region-original (symbol-function 'call-process-region))
  186. result)
  187. ;; (message "params=%S" params) ;; debugging
  188. (flet ((call-process-region (&rest args)
  189. (apply 'org-babel-tramp-handle-call-process-region args)))
  190. (unless (member lang org-babel-interpreters)
  191. (error "Language is not in `org-babel-interpreters': %s" lang))
  192. (if (and (not arg) new-hash (equal new-hash old-hash))
  193. (save-excursion ;; return cached result
  194. (goto-char (org-babel-where-is-src-block-result nil info))
  195. (move-end-of-line 1) (forward-char 1)
  196. (setq result (org-babel-read-result))
  197. (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  198. (setq result (funcall cmd body params))
  199. (if (eq result-type 'value)
  200. (setq result (if (and (or (member "vector" result-params)
  201. (member "table" result-params))
  202. (not (listp result)))
  203. (list (list result))
  204. result)))
  205. (org-babel-insert-result result result-params info new-hash)
  206. result))))
  207. (defun org-babel-load-in-session (&optional arg info)
  208. "Load the body of the current source-code block. Evaluate the
  209. header arguments for the source block before entering the
  210. session. After loading the body this pops open the session."
  211. (interactive)
  212. (let* ((info (or info (org-babel-get-src-block-info)))
  213. (lang (first info))
  214. (body (second info))
  215. (params (third info))
  216. (session (cdr (assoc :session params))))
  217. (unless (member lang org-babel-interpreters)
  218. (error "Language is not in `org-babel-interpreters': %s" lang))
  219. ;; if called with a prefix argument, then process header arguments
  220. (pop-to-buffer (funcall (intern (concat "org-babel-load-session:" lang)) session body params))
  221. (move-end-of-line 1)))
  222. (defun org-babel-pop-to-session (&optional arg info)
  223. "Pop to the session of the current source-code block. If
  224. called with a prefix argument then evaluate the header arguments
  225. for the source block before entering the session. Copy the body
  226. of the source block to the kill ring."
  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. ;; copy body to the kill ring
  236. (with-temp-buffer (insert (org-babel-trim body)) (copy-region-as-kill (point-min) (point-max)))
  237. ;; if called with a prefix argument, then process header arguments
  238. (if arg (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  239. ;; just to the session using pop-to-buffer
  240. (pop-to-buffer (funcall (intern (format "org-babel-%s-initiate-session" lang)) session))
  241. (move-end-of-line 1)))
  242. (defun org-babel-open-src-block-result (&optional re-run)
  243. "If `point' is on a src block then open the results of the
  244. source code block, otherwise return nil. With optional prefix
  245. argument RE-RUN the source-code block is evaluated even if
  246. results already exist."
  247. (interactive "P")
  248. (when (org-babel-get-src-block-info)
  249. (save-excursion
  250. ;; go to the results, if there aren't any then run the block
  251. (goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
  252. (progn (org-babel-execute-src-block)
  253. (org-babel-where-is-src-block-result))))
  254. (move-end-of-line 1) (forward-char 1)
  255. ;; open the results
  256. (if (looking-at org-bracket-link-regexp)
  257. ;; file results
  258. (org-open-at-point)
  259. (let ((results (org-babel-read-result)))
  260. (flet ((echo-res (result)
  261. (if (stringp result) result (format "%S" result))))
  262. (pop-to-buffer (get-buffer-create "org-babel-results"))
  263. (delete-region (point-min) (point-max))
  264. (if (listp results)
  265. ;; table result
  266. (insert (orgtbl-to-generic results '(:sep "\t" :fmt echo-res)))
  267. ;; scalar result
  268. (insert (echo-res results))))))
  269. t)))
  270. (defun org-babel-execute-buffer (&optional arg)
  271. "Call `org-babel-execute-src-block' on every source block in
  272. the current buffer."
  273. (interactive "P")
  274. (save-excursion
  275. (goto-char (point-min))
  276. (while (re-search-forward org-babel-src-block-regexp nil t)
  277. (let ((pos-end (match-end 0)))
  278. (goto-char (match-beginning 0))
  279. (org-babel-execute-src-block arg)
  280. (goto-char pos-end)))))
  281. (defun org-babel-execute-subtree (&optional arg)
  282. "Call `org-babel-execute-src-block' on every source block in
  283. the current subtree."
  284. (interactive "P")
  285. (save-excursion
  286. (org-narrow-to-subtree)
  287. (org-babel-execute-buffer)
  288. (widen)))
  289. (defun org-babel-get-src-block-info (&optional header-vars-only)
  290. "Get information of the current source block.
  291. Returns a list
  292. (language body header-arguments-alist switches name function-args).
  293. Unless HEADER-VARS-ONLY is non-nil, any variable
  294. references provided in 'function call style' (i.e. in a
  295. parenthesised argument list following the src block name) are
  296. added to the header-arguments-alist."
  297. (let ((case-fold-search t) head info args)
  298. (if (setq head (org-babel-where-is-src-block-head))
  299. (save-excursion
  300. (goto-char head)
  301. (setq info (org-babel-parse-src-block-match))
  302. (forward-line -1)
  303. (when (looking-at (concat org-babel-source-name-regexp
  304. "\\([^ ()\f\t\n\r\v]+\\)\\(\(\\(.*\\)\)\\|\\)"))
  305. (setq info (append info (list (org-babel-clean-text-properties (match-string 2)))))
  306. ;; Note that e.g. "name()" and "name( )" result in ((:var . "")).
  307. ;; We maintain that behaviour, and the resulting non-nil sixth
  308. ;; element is relied upon in org-babel-exp-code to detect a functional-style
  309. ;; block in those cases. However, "name" without any
  310. ;; parentheses would result in the same thing, so we
  311. ;; explicitly avoid that.
  312. (if (setq args (match-string 4))
  313. (setq info (append info (list (mapcar (lambda (ref) (cons :var ref))
  314. (org-babel-ref-split-args args))))))
  315. (unless header-vars-only
  316. (setf (third info)
  317. (org-babel-merge-params (sixth info) (third info)))))
  318. info)
  319. (if (save-excursion ;; inline source block
  320. (re-search-backward "[ \f\t\n\r\v]" nil t)
  321. (looking-at org-babel-inline-src-block-regexp))
  322. (org-babel-parse-inline-src-block-match)
  323. nil)))) ;; indicate that no source block was found
  324. (defun org-babel-sha1-hash (&optional info)
  325. (interactive)
  326. (let* ((info (or info (org-babel-get-src-block-info)))
  327. (hash (sha1 (format "%s-%s" (mapconcat (lambda (arg) (format "%S" arg))
  328. (third info) ":")
  329. (second info)))))
  330. (when (interactive-p) (message hash))
  331. hash))
  332. (defun org-babel-result-hash (&optional info)
  333. (org-babel-where-is-src-block-result nil info)
  334. (org-babel-clean-text-properties (match-string 3)))
  335. (defun org-babel-hide-hash ()
  336. "Hide the hash in the current results line. Only the initial
  337. `org-babel-hash-show' characters of the hash will remain
  338. visible."
  339. (org-add-to-invisibility-spec '(org-babel-hide-hash . t))
  340. (save-excursion
  341. (when (and (re-search-forward org-babel-result-regexp nil t)
  342. (match-string 3))
  343. (let* ((start (match-beginning 3))
  344. (hide-start (+ org-babel-hash-show start))
  345. (end (match-end 3))
  346. (hash (match-string 3))
  347. ov1 ov2)
  348. (setq ov1 (org-make-overlay start hide-start))
  349. (setq ov2 (org-make-overlay hide-start end))
  350. (org-overlay-put ov2 'invisible 'org-babel-hide-hash)
  351. (org-overlay-put ov1 'babel-hash hash)))))
  352. (defun org-babel-hide-all-hashes ()
  353. "Hide the hash in the current buffer. Only the initial
  354. `org-babel-hash-show' characters of each hash will remain
  355. visible. This function should be called as part of the
  356. `org-mode-hook'."
  357. (save-excursion
  358. (while (re-search-forward org-babel-result-regexp nil t)
  359. (goto-char (match-beginning 0))
  360. (org-babel-hide-hash)
  361. (goto-char (match-end 0)))))
  362. (add-hook 'org-mode-hook 'org-babel-hide-all-hashes)
  363. (defun org-babel-hash-at-point (&optional point)
  364. "Return the value of the hash at `point'. The hash is also
  365. added as the last element of the kill ring. This can be called
  366. with C-c C-c."
  367. (interactive)
  368. (let ((hash (car (delq nil (mapcar
  369. (lambda (ol) (org-overlay-get ol 'babel-hash))
  370. (org-overlays-at (or point (point))))))))
  371. (when hash (kill-new hash) (message hash))))
  372. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-hash-at-point)
  373. (defun org-babel-result-hide-spec ()
  374. (org-add-to-invisibility-spec '(org-babel-hide-result . t)))
  375. (add-hook 'org-mode-hook 'org-babel-result-hide-spec)
  376. (defvar org-babel-hide-result-overlays nil
  377. "Overlays hiding results.")
  378. (defun org-babel-result-hide-all ()
  379. "Fold all results in the current buffer."
  380. (interactive)
  381. (org-babel-show-result-all)
  382. (save-excursion
  383. (while (re-search-forward org-babel-result-regexp nil t)
  384. (save-excursion (goto-char (match-beginning 0))
  385. (org-babel-hide-result-toggle-maybe)))))
  386. (defun org-babel-show-result-all ()
  387. "Unfold all results in the current buffer."
  388. (mapc 'org-delete-overlay org-babel-hide-result-overlays)
  389. (setq org-babel-hide-result-overlays nil))
  390. (defun org-babel-hide-result-toggle-maybe ()
  391. "Toggle visibility of result at point."
  392. (interactive)
  393. (let ((case-fold-search t))
  394. (if (save-excursion
  395. (beginning-of-line 1)
  396. (looking-at org-babel-result-regexp))
  397. (progn (org-babel-hide-result-toggle)
  398. t) ;; to signal that we took action
  399. nil))) ;; to signal that we did not
  400. (defun org-babel-hide-result-toggle (&optional force)
  401. "Toggle the visibility of the current result."
  402. (interactive)
  403. (save-excursion
  404. (beginning-of-line)
  405. (if (re-search-forward org-babel-result-regexp nil t)
  406. (let ((start (progn (beginning-of-line 2) (- (point) 1)))
  407. (end (progn (goto-char (- (org-babel-result-end) 1)) (point)))
  408. ov)
  409. (if (memq t (mapcar (lambda (overlay)
  410. (eq (org-overlay-get overlay 'invisible)
  411. 'org-babel-hide-result))
  412. (org-overlays-at start)))
  413. (if (or (not force) (eq force 'off))
  414. (mapc (lambda (ov)
  415. (when (member ov org-babel-hide-result-overlays)
  416. (setq org-babel-hide-result-overlays
  417. (delq ov org-babel-hide-result-overlays)))
  418. (when (eq (org-overlay-get ov 'invisible)
  419. 'org-babel-hide-result)
  420. (org-delete-overlay ov)))
  421. (org-overlays-at start)))
  422. (setq ov (org-make-overlay start end))
  423. (org-overlay-put ov 'invisible 'org-babel-hide-result)
  424. ;; make the block accessible to isearch
  425. (org-overlay-put
  426. ov 'isearch-open-invisible
  427. (lambda (ov)
  428. (when (member ov org-babel-hide-result-overlays)
  429. (setq org-babel-hide-result-overlays
  430. (delq ov org-babel-hide-result-overlays)))
  431. (when (eq (org-overlay-get ov 'invisible)
  432. 'org-babel-hide-result)
  433. (org-delete-overlay ov))))
  434. (push ov org-babel-hide-result-overlays)))
  435. (error "Not looking at a result line"))))
  436. ;; org-tab-after-check-for-cycling-hook
  437. (add-hook 'org-tab-first-hook 'org-babel-hide-result-toggle-maybe)
  438. ;; Remove overlays when changing major mode
  439. (add-hook 'org-mode-hook
  440. (lambda () (org-add-hook 'change-major-mode-hook
  441. 'org-babel-show-result-all 'append 'local)))
  442. (defmacro org-babel-map-source-blocks (file &rest body)
  443. "Evaluate BODY forms on each source-block in FILE."
  444. (declare (indent 1))
  445. `(let ((visited-p (get-buffer (file-name-nondirectory ,file))))
  446. (save-window-excursion
  447. (find-file ,file) (goto-char (point-min))
  448. (while (re-search-forward org-babel-src-block-regexp nil t)
  449. (goto-char (match-beginning 0))
  450. (save-match-data ,@body)
  451. (goto-char (match-end 0))))
  452. (unless visited-p (kill-buffer (file-name-nondirectory file)))))
  453. (defun org-babel-params-from-properties ()
  454. "Return an association list of any source block params which
  455. may be specified in the properties of the current outline entry."
  456. (save-match-data
  457. (delq nil
  458. (mapcar
  459. (lambda (header-arg)
  460. (let ((val (or (condition-case nil
  461. (org-entry-get (point) header-arg t)
  462. (error nil))
  463. (cdr (assoc header-arg org-file-properties)))))
  464. (when val
  465. ;; (message "prop %s=%s" header-arg val) ;; debugging
  466. (cons (intern (concat ":" header-arg)) val))))
  467. (mapcar 'symbol-name org-babel-header-arg-names)))))
  468. (defun org-babel-parse-src-block-match ()
  469. (let* ((lang (org-babel-clean-text-properties (match-string 1)))
  470. (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
  471. (switches (match-string 2))
  472. (body (org-babel-clean-text-properties (match-string 4)))
  473. (preserve-indentation (or org-src-preserve-indentation
  474. (string-match "-i\\>" switches))))
  475. (list lang
  476. ;; get src block body removing properties, protective commas, and indentation
  477. (with-temp-buffer
  478. (save-match-data
  479. (insert (org-babel-strip-protective-commas body))
  480. (unless preserve-indentation (org-do-remove-indentation))
  481. (buffer-string)))
  482. (org-babel-merge-params
  483. org-babel-default-header-args
  484. (org-babel-params-from-properties)
  485. (if (boundp lang-headers) (eval lang-headers) nil)
  486. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) ""))))
  487. switches)))
  488. (defun org-babel-parse-inline-src-block-match ()
  489. (let* ((lang (org-babel-clean-text-properties (match-string 2)))
  490. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  491. (list lang
  492. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 5)))
  493. (org-babel-merge-params
  494. org-babel-default-inline-header-args
  495. (org-babel-params-from-properties)
  496. (if (boundp lang-headers) (eval lang-headers) nil)
  497. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 4) "")))))))
  498. (defun org-babel-parse-header-arguments (arg-string)
  499. "Parse a string of header arguments returning an alist."
  500. (if (> (length arg-string) 0)
  501. (delq nil
  502. (mapcar
  503. (lambda (arg)
  504. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  505. (cons (intern (concat ":" (match-string 1 arg)))
  506. (let ((raw (org-babel-chomp (match-string 2 arg))))
  507. (if (org-babel-number-p raw) raw (eval (org-babel-read raw)))))
  508. (cons (intern (concat ":" arg)) nil)))
  509. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  510. (defun org-babel-process-params (params)
  511. "Parse params and resolve references.
  512. Return a list (session vars result-params result-type)."
  513. (let* ((session (cdr (assoc :session params)))
  514. (vars (org-babel-ref-variables params))
  515. (result-params (split-string (or (cdr (assoc :results params)) "")))
  516. (result-type (cond ((member "output" result-params) 'output)
  517. ((member "value" result-params) 'value)
  518. (t 'value))))
  519. (list session vars result-params result-type)))
  520. (defun org-babel-where-is-src-block-head ()
  521. "Return the point at the beginning of the current source
  522. block. Specifically at the beginning of the #+BEGIN_SRC line.
  523. If the point is not on a source block then return nil."
  524. (let ((initial (point)) top bottom)
  525. (or
  526. (save-excursion ;; on a source name line
  527. (beginning-of-line 1)
  528. (and (looking-at org-babel-source-name-regexp) (forward-line 1)
  529. (looking-at org-babel-src-block-regexp)
  530. (point)))
  531. (save-excursion ;; on a #+begin_src line
  532. (beginning-of-line 1)
  533. (and (looking-at org-babel-src-block-regexp)
  534. (point)))
  535. (save-excursion ;; inside a src block
  536. (and
  537. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  538. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  539. (< top initial) (< initial bottom)
  540. (goto-char top) (move-beginning-of-line 1)
  541. (looking-at org-babel-src-block-regexp)
  542. (point))))))
  543. (defun org-babel-goto-named-source-block (&optional name)
  544. "Go to a named source-code block."
  545. (interactive "ssource-block name: ")
  546. (let ((point (org-babel-find-named-block name)))
  547. (if point
  548. ;; taken from `org-open-at-point'
  549. (progn (goto-char point) (org-show-context))
  550. (message "source-code block '%s' not found in this buffer" name))))
  551. (defun org-babel-find-named-block (name)
  552. "Find a named source-code block.
  553. Return the location of the source block identified by source
  554. NAME, or nil if no such block exists. Set match data according to
  555. org-babel-named-src-block-regexp."
  556. (save-excursion
  557. (let ((case-fold-search t)
  558. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  559. (goto-char (point-min))
  560. (when (or (re-search-forward regexp nil t)
  561. (re-search-backward regexp nil t))
  562. (match-beginning 0)))))
  563. (defun org-babel-find-named-result (name)
  564. "Return the location of the result named NAME in the current
  565. buffer or nil if no such result exists."
  566. (save-excursion
  567. (goto-char (point-min))
  568. (when (re-search-forward
  569. (concat org-babel-result-regexp "[ \t]" (regexp-quote name) "[ \t\n\f\v\r]") nil t)
  570. (move-beginning-of-line 0) (point))))
  571. (defun org-babel-where-is-src-block-result (&optional insert info hash)
  572. "Return the point at the beginning of the result of the current
  573. source block. Specifically at the beginning of the results line.
  574. If no result exists for this block then create a results line
  575. following the source block."
  576. (save-excursion
  577. (let* ((on-lob-line (progn (beginning-of-line 1)
  578. (looking-at org-babel-lob-one-liner-regexp)))
  579. (name (if on-lob-line (first (org-babel-lob-get-info))
  580. (fifth (or info (org-babel-get-src-block-info)))))
  581. (head (unless on-lob-line (org-babel-where-is-src-block-head))) end)
  582. (when head (goto-char head))
  583. (or (and name (org-babel-find-named-result name))
  584. (and (or on-lob-line (re-search-forward "#\\+end_src" nil t))
  585. (progn (move-end-of-line 1)
  586. (if (eobp) (insert "\n") (forward-char 1))
  587. (setq end (point))
  588. (or (and (not name)
  589. (progn ;; unnamed results line already exists
  590. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  591. (move-beginning-of-line 1)
  592. (looking-at (concat org-babel-result-regexp "\n"))))
  593. ;; or (with optional insert) back up and make one ourselves
  594. (when insert
  595. (goto-char end)
  596. (if (looking-at "[\n\r]") (forward-char 1) (insert "\n"))
  597. (insert (concat "#+results" (if hash (concat "["hash"]"))
  598. ":"(if name (concat " " name)) "\n"))
  599. (move-beginning-of-line 0)
  600. (if hash (org-babel-hide-hash)) t)))
  601. (point))))))
  602. (defun org-babel-read-result ()
  603. "Read the result at `point' into emacs-lisp."
  604. (let ((case-fold-search t) result-string)
  605. (cond
  606. ((org-at-table-p) (org-babel-read-table))
  607. ((looking-at org-bracket-link-regexp) (org-babel-read-link))
  608. ((looking-at org-block-regexp) (org-babel-trim (match-string 4)))
  609. ((looking-at ": ")
  610. (setq result-string
  611. (org-babel-trim
  612. (mapconcat (lambda (line) (if (and (> (length line) 1)
  613. (string= ": " (substring line 0 2)))
  614. (substring line 2)
  615. line))
  616. (split-string
  617. (buffer-substring (point) (org-babel-result-end)) "[\r\n]+")
  618. "\n")))
  619. (or (org-babel-number-p result-string) result-string))
  620. ((looking-at org-babel-result-regexp)
  621. (save-excursion (forward-line 1) (org-babel-read-result))))))
  622. (defun org-babel-read-table ()
  623. "Read the table at `point' into emacs-lisp."
  624. (mapcar (lambda (row)
  625. (if (and (symbolp row) (equal row 'hline)) row
  626. (mapcar #'org-babel-read row)))
  627. (org-table-to-lisp)))
  628. (defun org-babel-read-link ()
  629. "Read the link at `point' into emacs-lisp. If the path of the
  630. link is a file path it is expanded using `expand-file-name'."
  631. (let* ((case-fold-search t)
  632. (raw (and (looking-at org-bracket-link-regexp)
  633. (org-babel-clean-text-properties (match-string 1))))
  634. (type (and (string-match org-link-types-re raw)
  635. (match-string 1 raw))))
  636. (cond
  637. ((not type) (expand-file-name raw))
  638. ((string= type "file")
  639. (and (string-match "file\\(.*\\):\\(.+\\)" raw)
  640. (expand-file-name (match-string 2 raw))))
  641. (t raw))))
  642. (defun org-babel-insert-result (result &optional result-params info hash)
  643. "Insert RESULT into the current buffer after the end of the
  644. current source block. With optional argument RESULT-PARAMS
  645. controls insertion of results in the org-mode file.
  646. RESULT-PARAMS can take the following values...
  647. replace - (default option) insert results after the source block
  648. replacing any previously inserted results
  649. silent -- no results are inserted
  650. file ---- the results are interpreted as a file path, and are
  651. inserted into the buffer using the Org-mode file syntax
  652. raw ----- results are added directly to the org-mode file. This
  653. is a good option if you code block will output org-mode
  654. formatted text.
  655. org ----- this is the same as the 'raw' option
  656. html ---- results are added inside of a #+BEGIN_HTML block. This
  657. is a good option if you code block will output html
  658. formatted text.
  659. latex --- results are added inside of a #+BEGIN_LATEX block.
  660. This is a good option if you code block will output
  661. latex formatted text.
  662. code ---- the results are extracted in the syntax of the source
  663. code of the language being evaluated and are added
  664. inside of a #+BEGIN_SRC block with the source-code
  665. language set appropriately."
  666. (if (stringp result)
  667. (progn
  668. (setq result (org-babel-clean-text-properties result))
  669. (when (member "file" result-params)
  670. (setq result (org-babel-result-to-file result))))
  671. (unless (listp result) (setq result (format "%S" result))))
  672. (if (and result-params (member "replace" result-params)
  673. (not (member "silent" result-params)))
  674. (org-babel-remove-result info))
  675. (if (= (length result) 0)
  676. (if (member "value" result-params)
  677. (message "No result returned by source block")
  678. (message "Source block produced no output"))
  679. (if (and result-params (member "silent" result-params))
  680. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
  681. result)
  682. (when (and (stringp result) ;; ensure results end in a newline
  683. (not (or (string-equal (substring result -1) "\n")
  684. (string-equal (substring result -1) "\r"))))
  685. (setq result (concat result "\n")))
  686. (save-excursion
  687. (let ((existing-result (org-babel-where-is-src-block-result t info hash))
  688. (results-switches (cdr (assoc :results_switches (third info)))))
  689. (when existing-result (goto-char existing-result) (forward-line 1))
  690. (setq results-switches
  691. (if results-switches (concat " " results-switches) ""))
  692. (cond
  693. ;; assume the result is a table if it's not a string
  694. ((not (stringp result))
  695. (insert (concat (orgtbl-to-orgtbl
  696. (if (and (listp (car result))
  697. (listp (cdr (car result))))
  698. result (list result))
  699. '(:fmt (lambda (cell) (format "%s" cell)))) "\n"))
  700. (forward-line -1) (org-cycle))
  701. ((member "file" result-params)
  702. (insert result))
  703. ((member "html" result-params)
  704. (insert (format "#+BEGIN_HTML%s\n%s#+END_HTML\n" results-switches result)))
  705. ((member "latex" result-params)
  706. (insert (format "#+BEGIN_LaTeX%s\n%s#+END_LaTeX\n" results-switches result)))
  707. ((member "code" result-params)
  708. (insert (format "#+BEGIN_SRC %s%s\n%s#+END_SRC\n" lang results-switches result)))
  709. ((or (member "raw" result-params) (member "org" result-params))
  710. (save-excursion (insert result)) (if (org-at-table-p) (org-cycle)))
  711. (t
  712. (org-babel-examplize-region
  713. (point) (progn (insert result) (point)) results-switches)))))
  714. (message "finished"))))
  715. (defun org-babel-result-to-org-string (result)
  716. "Return RESULT as a string in org-mode format. This function
  717. relies on `org-babel-insert-result'."
  718. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  719. (defun org-babel-remove-result (&optional info)
  720. "Remove the result of the current source block."
  721. (interactive)
  722. (let ((location (org-babel-where-is-src-block-result nil info)) start)
  723. (when location
  724. (save-excursion
  725. (goto-char location) (setq start (point)) (forward-line 1)
  726. (delete-region start (org-babel-result-end))))))
  727. (defun org-babel-result-end ()
  728. "Return the point at the end of the current set of results"
  729. (save-excursion
  730. (if (org-at-table-p)
  731. (progn (goto-char (org-table-end)) (point))
  732. (let ((case-fold-search t))
  733. (cond
  734. ((looking-at "#\\+begin_latex")
  735. (search-forward "#+end_latex" nil t)
  736. (forward-line 1))
  737. ((looking-at "#\\+begin_html")
  738. (search-forward "#+end_html" nil t)
  739. (forward-line 1))
  740. ((looking-at "#\\+begin_example")
  741. (search-forward "#+end_example" nil t)
  742. (forward-line 1))
  743. ((looking-at "#\\+begin_src")
  744. (search-forward "#+end_src" nil t)
  745. (forward-line 1))
  746. (t (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  747. (forward-line 1))))))
  748. (point))))
  749. (defun org-babel-result-to-file (result)
  750. "Return an `org-mode' link with the path being the value or
  751. RESULT, and the display being the `file-name-nondirectory' if
  752. non-nil."
  753. (concat "[[file:" result "]]"))
  754. (defun org-babel-examplize-region (beg end &optional results-switches)
  755. "Comment out region using the ': ' org example quote."
  756. (interactive "*r")
  757. (let ((size (abs (- (line-number-at-pos end)
  758. (line-number-at-pos beg)))))
  759. (save-excursion
  760. (cond ((= size 0)
  761. (error "This should be impossible: a newline was appended to result if missing"))
  762. ((< size org-babel-min-lines-for-block-output)
  763. (goto-char beg)
  764. (dotimes (n size)
  765. (move-beginning-of-line 1) (insert ": ") (forward-line 1)))
  766. (t
  767. (goto-char beg)
  768. (insert (if results-switches
  769. (format "#+begin_example%s\n" results-switches)
  770. "#+begin_example\n"))
  771. (forward-char (- end beg))
  772. (insert "#+end_example\n"))))))
  773. (defun org-babel-merge-params (&rest plists)
  774. "Combine all parameter association lists in PLISTS. Later
  775. elements of PLISTS override the values of previous element. This
  776. takes into account some special considerations for certain
  777. parameters when merging lists."
  778. (let ((results-exclusive-groups
  779. '(("file" "vector" "table" "scalar" "raw" "org" "html" "latex" "code" "pp")
  780. ("replace" "silent")
  781. ("output" "value")))
  782. (exports-exclusive-groups
  783. '(("code" "results" "both" "none")))
  784. params results exports tangle noweb cache vars var ref shebang comments)
  785. (flet ((e-merge (exclusive-groups &rest result-params)
  786. ;; maintain exclusivity of mutually exclusive parameters
  787. (let (output)
  788. (mapc (lambda (new-params)
  789. (mapc (lambda (new-param)
  790. (mapc (lambda (exclusive-group)
  791. (when (member new-param exclusive-group)
  792. (mapcar (lambda (excluded-param)
  793. (setq output (delete excluded-param output)))
  794. exclusive-group)))
  795. exclusive-groups)
  796. (setq output (org-uniquify (cons new-param output))))
  797. new-params))
  798. result-params)
  799. output)))
  800. (mapc (lambda (plist)
  801. (mapc (lambda (pair)
  802. (case (car pair)
  803. (:var
  804. ;; we want only one specification per variable
  805. (when (string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=[ \t]*\\([^\f\n\r\v]+\\)$" (cdr pair))
  806. ;; TODO: When is this not true?
  807. (setq var (intern (match-string 1 (cdr pair)))
  808. ref (match-string 2 (cdr pair))
  809. vars (cons (cons var ref) (assq-delete-all var vars)))))
  810. (:results
  811. (setq results
  812. (e-merge results-exclusive-groups results (split-string (cdr pair)))))
  813. (:file
  814. (when (cdr pair)
  815. (setq results (e-merge results-exclusive-groups results '("file")))
  816. (unless (or (member "both" exports)
  817. (member "none" exports)
  818. (member "code" exports))
  819. (setq exports (e-merge exports-exclusive-groups exports '("results"))))
  820. (setq params (cons pair (assq-delete-all (car pair) params)))))
  821. (:exports
  822. (setq exports (e-merge exports-exclusive-groups
  823. exports (split-string (cdr pair)))))
  824. (:tangle ;; take the latest -- always overwrite
  825. (setq tangle (or (list (cdr pair)) tangle)))
  826. (:noweb
  827. (setq noweb (e-merge '(("yes" "no"))
  828. noweb (split-string (or (cdr pair) "")))))
  829. (:cache
  830. (setq cache (e-merge '(("yes" "no"))
  831. cache (split-string (or (cdr pair) "")))))
  832. (:shebang ;; take the latest -- always overwrite
  833. (setq shebang (or (list (cdr pair)) shebang)))
  834. (:comments
  835. (setq comments (e-merge '(("yes" "no"))
  836. comments (split-string (or (cdr pair) "")))))
  837. (t ;; replace: this covers e.g. :session
  838. (setq params (cons pair (assq-delete-all (car pair) params))))))
  839. plist))
  840. plists))
  841. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  842. (while vars (setq params (cons (cons :var (pop vars)) params)))
  843. (cons (cons :comments (mapconcat 'identity comments " "))
  844. (cons (cons :shebang (mapconcat 'identity shebang " "))
  845. (cons (cons :cache (mapconcat 'identity cache " "))
  846. (cons (cons :noweb (mapconcat 'identity noweb " "))
  847. (cons (cons :tangle (mapconcat 'identity tangle " "))
  848. (cons (cons :exports (mapconcat 'identity exports " "))
  849. (cons (cons :results (mapconcat 'identity results " "))
  850. params)))))))))
  851. (defun org-babel-expand-noweb-references (&optional info parent-buffer)
  852. "This function expands Noweb style references in the body of
  853. the current source-code block. For example the following
  854. reference would be replaced with the body of the source-code
  855. block named 'example-block'.
  856. <<example-block>>
  857. Note that any text preceding the <<foo>> construct on a line will
  858. be interposed between the lines of the replacement text. So for
  859. example if <<foo>> is placed behind a comment, then the entire
  860. replacement text will also be commented.
  861. This function must be called from inside of the buffer containing
  862. the source-code block which holds BODY.
  863. In addition the following syntax can be used to insert the
  864. results of evaluating the source-code block named 'example-block'.
  865. <<example-block()>>
  866. Any optional arguments can be passed to example-block by placing
  867. the arguments inside the parenthesis following the convention
  868. defined by `org-babel-lob'. For example
  869. <<example-block(a=9)>>
  870. would set the value of argument \"a\" equal to \"9\". Note that
  871. these arguments are not evaluated in the current source-code
  872. block but are passed literally to the \"example-block\"."
  873. (let* ((parent-buffer (or parent-buffer (current-buffer)))
  874. (info (or info (org-babel-get-src-block-info)))
  875. (lang (first info))
  876. (body (second info))
  877. (new-body "") index source-name evaluate prefix)
  878. (flet ((nb-add (text)
  879. (setq new-body (concat new-body text))))
  880. (with-temp-buffer
  881. (insert body) (goto-char (point-min))
  882. (funcall (intern (concat (or (and (cdr (assoc lang org-src-lang-modes))
  883. (symbol-name
  884. (cdr (assoc lang org-src-lang-modes))))
  885. lang) "-mode")))
  886. (setq index (point))
  887. (while (and (re-search-forward "<<\\(.+?\\)>>" nil t))
  888. (save-match-data (setf source-name (match-string 1)))
  889. (save-match-data (setq evaluate (string-match "\(.*\)" source-name)))
  890. (save-match-data
  891. (setq prefix (buffer-substring (match-beginning 0)
  892. (save-excursion
  893. (move-beginning-of-line 1) (point)))))
  894. ;; add interval to new-body (removing noweb reference)
  895. (goto-char (match-beginning 0))
  896. (nb-add (buffer-substring index (point)))
  897. (goto-char (match-end 0))
  898. (setq index (point))
  899. (nb-add (save-excursion
  900. (set-buffer parent-buffer)
  901. (mapconcat ;; interpose `prefix' between every line
  902. #'identity
  903. (split-string
  904. (if evaluate
  905. (let ((raw (org-babel-ref-resolve-reference
  906. source-name nil)))
  907. (if (stringp raw) raw (format "%S" raw)))
  908. (let ((point (org-babel-find-named-block source-name)))
  909. (if point
  910. (save-excursion
  911. (goto-char point)
  912. (org-babel-trim (org-babel-expand-noweb-references
  913. (org-babel-get-src-block-info))))
  914. ;; optionally raise an error if named
  915. ;; source-block doesn't exist
  916. (if (member lang org-babel-noweb-error-langs)
  917. (error
  918. "<<%s>> could not be resolved (see `org-babel-noweb-error-langs')"
  919. source-name)
  920. "")))) "[\n\r]") (concat "\n" prefix)))))
  921. (nb-add (buffer-substring index (point-max)))))
  922. new-body))
  923. (defun org-babel-clean-text-properties (text)
  924. "Strip all properties from text return."
  925. (set-text-properties 0 (length text) nil text) text)
  926. (defun org-babel-strip-protective-commas (body)
  927. "Strip protective commas from bodies of source blocks."
  928. (replace-regexp-in-string "^,#" "#" body))
  929. (defun org-babel-read (cell)
  930. "Convert the string value of CELL to a number if appropriate.
  931. Otherwise if cell looks like lisp (meaning it starts with a
  932. \"(\" or a \"'\") then read it as lisp, otherwise return it
  933. unmodified as a string.
  934. This is taken almost directly from `org-read-prop'."
  935. (if (and (stringp cell) (not (equal cell "")))
  936. (or (org-babel-number-p cell)
  937. (if (or (equal "(" (substring cell 0 1))
  938. (equal "'" (substring cell 0 1)))
  939. (read cell)
  940. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  941. cell))
  942. (defun org-babel-number-p (string)
  943. "Return t if STRING represents a number"
  944. (if (and (string-match "^-?[[:digit:]]*\\.?[[:digit:]]*$" string)
  945. (= (match-end 0) (length string)))
  946. (string-to-number string)))
  947. (defun org-babel-import-elisp-from-file (file-name)
  948. "Read the results located at FILE-NAME into an elisp table. If
  949. the table is trivial, then return it as a scalar."
  950. (let (result)
  951. (with-temp-buffer
  952. (condition-case nil
  953. (progn
  954. (org-table-import file-name nil)
  955. (delete-file file-name)
  956. (setq result (mapcar (lambda (row)
  957. (mapcar #'org-babel-string-read row))
  958. (org-table-to-lisp))))
  959. (error nil)))
  960. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  961. (if (consp (car result))
  962. (if (null (cdr (car result)))
  963. (caar result)
  964. result)
  965. (car result))
  966. result)))
  967. (defun org-babel-string-read (cell)
  968. "Strip nested \"s from around strings in exported R values."
  969. (org-babel-read (or (and (stringp cell)
  970. (string-match "\\\"\\(.+\\)\\\"" cell)
  971. (match-string 1 cell))
  972. cell)))
  973. (defun org-babel-reverse-string (string)
  974. (apply 'string (reverse (string-to-list string))))
  975. (defun org-babel-chomp (string &optional regexp)
  976. "Remove any trailing space or carriage returns characters from
  977. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  978. overwritten by specifying a regexp as a second argument."
  979. (let ((regexp (or regexp "[ \f\t\n\r\v]")))
  980. (while (and (> (length string) 0) (string-match regexp (substring string -1)))
  981. (setq string (substring string 0 -1)))
  982. string))
  983. (defun org-babel-trim (string &optional regexp)
  984. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  985. (org-babel-chomp (org-babel-reverse-string
  986. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  987. (defun org-babel-tramp-handle-call-process-region
  988. (start end program &optional delete buffer display &rest args)
  989. "Use tramp to handle call-process-region.
  990. Fixes a bug in `tramp-handle-call-process-region'."
  991. (if (and (featurep 'tramp) (file-remote-p default-directory))
  992. (let ((tmpfile (tramp-compat-make-temp-file "")))
  993. (write-region start end tmpfile)
  994. (when delete (delete-region start end))
  995. (unwind-protect
  996. ;; (apply 'call-process program tmpfile buffer display args) ;; bug in tramp
  997. (apply 'process-file program tmpfile buffer display args)
  998. (delete-file tmpfile)))
  999. ;; call-process-region-original is the original emacs definition. It
  1000. ;; is in scope from the let binding in org-babel-execute-src-block
  1001. (apply call-process-region-original start end program delete buffer display args)))
  1002. (defun org-babel-maybe-remote-file (file)
  1003. (if (file-remote-p default-directory)
  1004. (let* ((vec (tramp-dissect-file-name default-directory))
  1005. (user (tramp-file-name-user vec))
  1006. (host (tramp-file-name-host vec)))
  1007. (concat "/" user (when user "@") host ":" file))
  1008. file))
  1009. (provide 'org-babel)
  1010. ;;; org-babel.el ends here