org-babel.el 65 KB

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