org-babel.el 64 KB

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