org-babel-exp.el 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. ;;; org-babel-exp.el --- Exportation of org-babel source blocks
  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. ;; for more information see the comments in org-babel.el
  24. ;;; Code:
  25. (require 'org-babel)
  26. (require 'org-exp-blocks)
  27. (org-export-blocks-add-block '(src org-babel-exp-src-blocks nil))
  28. (add-to-list 'org-export-interblocks '(src org-babel-exp-inline-src-blocks))
  29. (add-to-list 'org-export-interblocks '(lob org-babel-exp-lob-one-liners))
  30. (defvar org-babel-function-def-export-keyword "function"
  31. "When exporting a source block function, this keyword will
  32. appear in the exported version in the place of source name
  33. line. A source block is considered to be a source block function
  34. if the source name is present and is followed by a parenthesized
  35. argument list. The parentheses may be empty or contain
  36. whitespace. An example is the following which generates n random
  37. (uniform) numbers.
  38. #+source: rand(n)
  39. #+begin_src R
  40. runif(n)
  41. #+end_src
  42. ")
  43. (defvar org-babel-function-def-export-indent 4
  44. "When exporting a source block function, the block contents
  45. will be indented by this many characters. See
  46. `org-babel-function-def-export-name' for the definition of a
  47. source block function.")
  48. (defun org-babel-exp-src-blocks (body &rest headers)
  49. "Process src block for export. Depending on the 'export'
  50. headers argument in replace the source code block with...
  51. both ---- display the code and the results
  52. code ---- the default, display the code inside the block but do
  53. not process
  54. results - just like none only the block is run on export ensuring
  55. that it's results are present in the org-mode buffer
  56. none ----- do not display either code or results upon export"
  57. (interactive)
  58. (message "org-babel-exp processing...")
  59. (or (and (re-search-backward org-babel-src-block-regexp nil t)
  60. (org-babel-exp-do-export (org-babel-get-src-block-info) 'block))
  61. (and (re-search-backward org-block-regexp nil t)
  62. (match-string 0))
  63. (error "Unmatched block [bug in `org-babel-exp-src-blocks'].")))
  64. (defun org-babel-exp-inline-src-blocks (start end)
  65. "Process inline src blocks between START and END for export.
  66. See `org-babel-exp-src-blocks' for export options, currently the
  67. options and are taken from `org-babel-defualt-inline-header-args'."
  68. (interactive)
  69. (save-excursion
  70. (goto-char start)
  71. (while (and (< (point) end)
  72. (re-search-forward org-babel-inline-src-block-regexp end t))
  73. (let* ((info (save-match-data (org-babel-parse-inline-src-block-match)))
  74. (replacement (save-match-data
  75. (org-babel-exp-do-export info 'inline))))
  76. (setq end (+ end (- (length replacement) (length (match-string 1)))))
  77. (replace-match replacement t t nil 1)))))
  78. (defun org-babel-exp-lob-one-liners (start end)
  79. "Process #+lob (Library of Babel) calls between START and END for export.
  80. See `org-babel-exp-src-blocks' for export options. Currently the
  81. options are taken from `org-babel-default-header-args'."
  82. (interactive)
  83. (let (replacement)
  84. (save-excursion
  85. (goto-char start)
  86. (while (and (< (point) end)
  87. (re-search-forward org-babel-lob-one-liner-regexp nil t))
  88. (setq replacement
  89. (save-match-data
  90. (org-babel-exp-do-export
  91. (list "emacs-lisp" "results"
  92. (org-babel-merge-params
  93. org-babel-default-header-args
  94. (org-babel-parse-header-arguments
  95. (org-babel-clean-text-properties
  96. (concat ":var results="
  97. (mapconcat #'identity (org-babel-lob-get-info) " "))))))
  98. 'lob)))
  99. (setq end (+ end (- (length replacement) (length (match-string 0)))))
  100. (replace-match replacement t t)))))
  101. (defun org-babel-exp-do-export (info type)
  102. (case (intern (or (cdr (assoc :exports (third info))) "code"))
  103. ('none "")
  104. ('code (org-babel-exp-code info type))
  105. ('results (org-babel-exp-results info type))
  106. ('both (concat (org-babel-exp-code info type)
  107. "\n\n"
  108. (org-babel-exp-results info type)))))
  109. (defun org-babel-exp-code (info type)
  110. (let ((lang (first info))
  111. (body (second info))
  112. (switches (fourth info))
  113. (name (fifth info))
  114. (args (sixth info))
  115. (function-def-line ""))
  116. (case type
  117. ('inline (format "=%s=" (second info)))
  118. ('block
  119. (when args
  120. (unless (string-match "-i\\>" switches)
  121. (setq switches (concat switches " -i")))
  122. (setq body (with-temp-buffer
  123. (insert body)
  124. (indent-code-rigidly (point-min) (point-max) org-babel-function-def-export-indent)
  125. (buffer-string)))
  126. (setq args (mapconcat #'identity
  127. (delq nil (mapcar (lambda (el) (and (length (cdr el)) (cdr el))) args))
  128. ", "))
  129. (setq function-def-line
  130. (format "#+BEGIN_SRC org-babel-lob\n%s %s(%s):\n#+END_SRC\n"
  131. org-babel-function-def-export-keyword name args)))
  132. (concat function-def-line
  133. (format "#+BEGIN_SRC %s %s\n%s%s#+END_SRC" lang switches body
  134. (if (string-match "\n$" body) "" "\n"))))
  135. ('lob (save-excursion
  136. (re-search-backward org-babel-lob-one-liner-regexp)
  137. (format "#+BEGIN_SRC org-babel-lob\n%s\n#+END_SRC"
  138. (first (org-babel-lob-get-info))))))))
  139. (defun org-babel-exp-results (info type)
  140. (let ((lang (first info))
  141. (body (second info))
  142. (params
  143. ;; lets ensure that we lookup references in the original file
  144. (mapcar (lambda (pair)
  145. (if (and org-current-export-file
  146. (eq (car pair) :var)
  147. (string-match org-babel-ref-split-regexp (cdr pair)))
  148. `(:var . ,(concat (match-string 1 (cdr pair))
  149. "=" org-current-export-file
  150. ":" (match-string 2 (cdr pair))))
  151. pair))
  152. (third info))))
  153. (case type
  154. ('inline
  155. (let ((raw (org-babel-execute-src-block
  156. nil info '((:results . "silent"))))
  157. (result-params (split-string (cdr (assoc :results params)))))
  158. (cond ;; respect the value of the :results header argument
  159. ((member "file" result-params)
  160. (org-babel-result-to-file raw))
  161. ((or (member "raw" result-params) (member "org" result-params))
  162. raw)
  163. ((member "code" result-params)
  164. (format "src_%s{%s}" lang raw))
  165. (t
  166. (if (stringp raw)
  167. (if (= 0 (length raw)) "=(no results)="
  168. (format "=%s=" raw))
  169. (format "=%S=" raw))))))
  170. ('block
  171. (org-babel-execute-src-block
  172. nil nil (org-babel-merge-params params '((:results . "replace"))))
  173. "")
  174. ('lob
  175. (save-excursion
  176. (re-search-backward org-babel-lob-one-liner-regexp nil t)
  177. (org-babel-execute-src-block
  178. nil (list lang body (org-babel-merge-params params '((:results . "replace"))))) "")))))
  179. (provide 'org-babel-exp)
  180. ;;; org-babel-exp.el ends here