ob.el 60 KB

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