org-babel-exp.el 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. ;;; org-babel-exp.el --- Exportation of org-babel source blocks
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  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. (defun org-babel-exp-src-blocks (body &rest headers)
  31. "Process src block for export. Depending on the 'export'
  32. headers argument in replace the source code block with...
  33. both ---- display the code and the results
  34. code ---- the default, display the code inside the block but do
  35. not process
  36. results - just like none only the block is run on export ensuring
  37. that it's results are present in the org-mode buffer
  38. none ----- do not display either code or results upon export"
  39. (interactive)
  40. (unless headers (error "org-babel can't process a source block without knowing the source code"))
  41. (message "org-babel-exp processing...")
  42. (let* ((lang (car headers))
  43. (lang-headers (intern (concat "org-babel-default-header-args:" lang)))
  44. (params (org-babel-merge-params
  45. org-babel-default-header-args
  46. (if (boundp lang-headers) (eval lang-headers) nil)
  47. (org-babel-params-from-properties)
  48. (org-babel-parse-header-arguments
  49. (mapconcat #'identity (cdr headers) " ")))))
  50. (org-babel-exp-do-export lang body params 'block)))
  51. (defun org-babel-exp-inline-src-blocks (start end)
  52. "Process inline src blocks between START and END for export.
  53. See `org-babel-exp-src-blocks' for export options, currently the
  54. options and are taken from `org-babel-defualt-inline-header-args'."
  55. (interactive)
  56. (save-excursion
  57. (goto-char start)
  58. (while (and (< (point) end)
  59. (re-search-forward org-babel-inline-src-block-regexp end t))
  60. (let* ((info (save-match-data (org-babel-parse-inline-src-block-match)))
  61. (replacement (save-match-data
  62. (org-babel-exp-do-export
  63. (first info) (second info) (third info) 'inline))))
  64. (setq end (+ end (- (length replacement) (length (match-string 0)))))
  65. (replace-match replacement t t)))))
  66. (defun org-babel-exp-lob-one-liners (start end)
  67. "Process #+lob (Library of Babel) calls between START and END for export.
  68. See `org-babel-exp-src-blocks' for export options. Currently the
  69. options are taken from `org-babel-default-header-args'."
  70. (interactive)
  71. (let (replacement)
  72. (save-excursion
  73. (goto-char start)
  74. (while (and (< (point) end)
  75. (re-search-forward org-babel-lob-one-liner-regexp nil t))
  76. (setq replacement
  77. (save-match-data
  78. (org-babel-exp-do-export
  79. "emacs-lisp" "results"
  80. (org-babel-merge-params
  81. org-babel-default-header-args
  82. (org-babel-parse-header-arguments
  83. (org-babel-clean-text-properties
  84. (concat ":var results="
  85. (mapconcat #'identity (org-babel-lob-get-info) " ")))))
  86. 'lob)))
  87. (setq end (+ end (- (length replacement) (length (match-string 0)))))
  88. (replace-match replacement t t)))))
  89. (defun org-babel-exp-do-export (lang body params type)
  90. (case (intern (or (cdr (assoc :exports params)) "code"))
  91. ('none "")
  92. ('code (org-babel-exp-code body lang params type))
  93. ('results (org-babel-exp-results body lang params type))
  94. ('both (concat (org-babel-exp-code body lang params type)
  95. "\n\n"
  96. (org-babel-exp-results body lang params type)))))
  97. (defun org-babel-exp-code (body lang params type)
  98. (case type
  99. ('inline (format "=%s=" body))
  100. ('block (format "#+BEGIN_SRC %s\n%s%s\n#+END_SRC" lang body
  101. (if (string-match "\n$" body) "" "\n")))
  102. ('lob (save-excursion
  103. (re-search-backward org-babel-lob-one-liner-regexp)
  104. (format "#+BEGIN_SRC babel\n%s\n#+END_SRC" (first (org-babel-lob-get-info)))))))
  105. (defun org-babel-exp-results (body lang params type)
  106. (let ((params
  107. ;; lets ensure that we lookup references in the original file
  108. (mapcar (lambda (pair)
  109. (if (and (eq (car pair) :var)
  110. (string-match org-babel-ref-split-regexp (cdr pair)))
  111. `(:var . ,(concat (match-string 1 (cdr pair))
  112. "=" org-current-export-file
  113. ":" (match-string 2 (cdr pair))))
  114. pair)) params)))
  115. (case type
  116. ('inline
  117. (let ((raw (org-babel-execute-src-block
  118. nil (list lang body params) '((:results . "silent"))))
  119. (result-params (split-string (cdr (assoc :results params)))))
  120. (cond ;; respect the value of the :results header argument
  121. ((member "file" result-params)
  122. (org-babel-result-to-file raw))
  123. ((or (member "raw" result-params) (member "org" result-params))
  124. raw)
  125. ((member "code" result-params)
  126. (format "src_%s{%s}" lang raw))
  127. (t
  128. (if (and (stringp raw) (= 0 (length raw)))
  129. " =(no results)= " (format " =%S= " raw))))))
  130. ('block
  131. (save-excursion ;; org-exp-blocks places us at the end of the block
  132. (re-search-backward org-babel-src-block-regexp nil t)
  133. (org-babel-execute-src-block
  134. nil nil (org-babel-merge-params params '((:results . "replace")))) ""))
  135. ('lob
  136. (save-excursion
  137. (re-search-backward org-babel-lob-one-liner-regexp nil t)
  138. (org-babel-execute-src-block
  139. nil (list lang body (org-babel-merge-params params '((:results . "replace"))))) "")))))
  140. (provide 'org-babel-exp)
  141. ;;; org-babel-exp.el ends here