ob.el 65 KB

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