org-babel.el 49 KB

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