org-babel-tangle.el 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. ;;; org-babel-tangle.el --- Extract source code from org-mode files
  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. ;; Extract the code from source blocks out into raw source-code files.
  24. ;;; Code:
  25. (require 'org-babel)
  26. (defvar org-babel-tangle-langs nil
  27. "List of languages supported by `org-babel-tangle'. The first
  28. element of each language's list is a string indicating the name
  29. of the language, the second element should be the file extension
  30. of the language, an optional third element the shebang(#!) line
  31. to use when writing out the language to file, and an optional
  32. fourth element is a flag which when true indicates that the
  33. language does not support comments.")
  34. (defun org-babel-load-file (file)
  35. "Load the contents of the Emacs Lisp source code blocks in the
  36. org-mode formatted FILE. This function will first export the
  37. source code using `org-babel-tangle' and then load the resulting
  38. file using `load-file'."
  39. (flet ((age (file)
  40. (time-to-seconds
  41. (time-subtract (current-time)
  42. (sixth (or (file-attributes (file-truename file))
  43. (file-attributes file)))))))
  44. (let* ((base-name (file-name-sans-extension file))
  45. (exported-file (concat base-name ".el")))
  46. ;; tangle if the org-mode file is newer than the elisp file
  47. (unless (and (file-exists-p exported-file) (> (age file) (age exported-file)))
  48. (org-babel-tangle-file file exported-file "emacs-lisp"))
  49. (load-file exported-file)
  50. (message "loaded %s" exported-file))))
  51. (defun org-babel-tangle-file (file &optional target-file lang)
  52. "Extract the bodies of all source code blocks in FILE with
  53. `org-babel-tangle'. Optional argument TARGET-FILE can be used to
  54. specify a default export file for all source blocks. Optional
  55. argument LANG can be used to limit the exported source code
  56. blocks by language."
  57. (interactive "fFile to tangle: \nP")
  58. (save-window-excursion (find-file file) (org-babel-tangle target-file lang)))
  59. (defun org-babel-tangle (&optional target-file lang)
  60. "Extract the bodies of all source code blocks from the current
  61. file into their own source-specific files. Optional argument
  62. TARGET-FILE can be used to specify a default export file for all
  63. source blocks. Optional argument LANG can be used to limit the
  64. exported source code blocks by language."
  65. (interactive)
  66. (save-buffer)
  67. (save-excursion
  68. (let ((block-counter 0)
  69. path-collector)
  70. (mapc ;; map over all languages
  71. (lambda (by-lang)
  72. (let* ((lang (car by-lang))
  73. (specs (cdr by-lang))
  74. (lang-f (intern (concat
  75. (or (and (cdr (assoc lang org-src-lang-modes))
  76. (symbol-name
  77. (cdr (assoc lang org-src-lang-modes))))
  78. lang)
  79. "-mode")))
  80. (lang-specs (cdr (assoc lang org-babel-tangle-langs)))
  81. (ext (first lang-specs))
  82. (she-bang (second lang-specs))
  83. (commentable (and (fboundp lang-f) (not (third lang-specs))))
  84. she-banged)
  85. (mapc
  86. (lambda (spec)
  87. (flet ((get-spec (name)
  88. (cdr (assoc name (third spec)))))
  89. (let* ((tangle (get-spec :tangle))
  90. (she-bang (if (> (length (get-spec :shebang)) 0)
  91. (get-spec :shebang)
  92. she-bang))
  93. (base-name (or (cond
  94. ((string= "yes" tangle)
  95. (file-name-sans-extension (buffer-file-name)))
  96. ((string= "no" tangle) nil)
  97. ((> (length tangle) 0) tangle))
  98. target-file))
  99. (file-name (when base-name
  100. ;; decide if we want to add ext to base-name
  101. (if (and ext (string= "yes" tangle))
  102. (concat base-name "." ext) base-name))))
  103. ;; ;; debugging
  104. ;; (message
  105. ;; "tangle=%S base-name=%S file-name=%S she-bang=%S commentable=%s"
  106. ;; tangle base-name file-name she-bang commentable)
  107. (when file-name
  108. ;; delete any old versions of file
  109. (when (and (file-exists-p file-name)
  110. (not (member file-name path-collector)))
  111. (delete-file file-name))
  112. ;; drop source-block to file
  113. (with-temp-buffer
  114. (if (fboundp lang-f) (funcall lang-f))
  115. (when (and she-bang (not (member file-name she-banged)))
  116. (insert (concat she-bang "\n"))
  117. (setq she-banged (cons file-name she-banged)))
  118. (org-babel-spec-to-string spec)
  119. ;; We avoid append-to-file as it does not work with tramp.
  120. (let ((content (buffer-string)))
  121. (with-temp-buffer
  122. (if (file-exists-p file-name)
  123. (insert-file-contents file-name))
  124. (goto-char (point-max))
  125. (insert content)
  126. (write-region nil nil file-name))))
  127. ;; update counter
  128. (setq block-counter (+ 1 block-counter))
  129. (add-to-list 'path-collector file-name)))))
  130. specs)))
  131. (org-babel-tangle-collect-blocks lang))
  132. (message "tangled %d code block%s" block-counter
  133. (if (= block-counter 1) "" "s"))
  134. path-collector)))
  135. (defun org-babel-tangle-clean ()
  136. "Call this function inside of a source-code file generated by
  137. `org-babel-tangle' to remove all comments inserted automatically
  138. by `org-babel-tangle'. Warning, this comment removes any lines
  139. containing constructs which resemble org-mode file links or noweb
  140. references."
  141. (interactive)
  142. (goto-char (point-min))
  143. (while (or (re-search-forward "\\[\\[file:.*\\]\\[.*\\]\\]" nil t)
  144. (re-search-forward "<<[^[:space:]]*>>" nil t))
  145. (delete-region (save-excursion (move-beginning-of-line 1) (point))
  146. (save-excursion (move-end-of-line 1) (forward-char 1) (point)))))
  147. (defun org-babel-tangle-collect-blocks (&optional lang)
  148. "Collect all source blocks in the current org-mode file.
  149. Return an association list of source-code block specifications of
  150. the form used by `org-babel-spec-to-string' grouped by language.
  151. Optional argument LANG can be used to limit the collected source
  152. code blocks by language."
  153. (let ((block-counter 0) blocks)
  154. (org-babel-map-source-blocks (buffer-file-name)
  155. (setq block-counter (+ 1 block-counter))
  156. (let* ((link (progn (call-interactively 'org-store-link)
  157. (org-babel-clean-text-properties (car (pop org-stored-links)))))
  158. (info (org-babel-get-src-block-info))
  159. (source-name (intern (or (fifth info)
  160. (format "block-%d" block-counter))))
  161. (src-lang (first info))
  162. (params (third info))
  163. (body (if (equal "no" (cdr (assoc :noweb params)))
  164. (second info)
  165. (org-babel-expand-noweb-references info)))
  166. (spec (list link source-name params body (third (cdr (assoc src-lang org-babel-tangle-langs)))))
  167. by-lang)
  168. (unless (string= (cdr (assoc :tangle params)) "no") ;; maybe skip
  169. (unless (and lang (not (string= lang src-lang))) ;; maybe limit by language
  170. ;; add the spec for this block to blocks under it's language
  171. (setq by-lang (cdr (assoc src-lang blocks)))
  172. (setq blocks (delq (assoc src-lang blocks) blocks))
  173. (setq blocks (cons (cons src-lang (cons spec by-lang)) blocks))))))
  174. ;; ensure blocks in the correct order
  175. (setq blocks
  176. (mapcar (lambda (by-lang) (cons (car by-lang) (reverse (cdr by-lang)))) blocks))
  177. ;; blocks should contain all source-blocks organized by language
  178. ;; (message "blocks=%S" blocks) ;; debugging
  179. blocks))
  180. (defun org-babel-spec-to-string (spec)
  181. "Insert the source-code specified by SPEC into the current
  182. source code file. This function uses `comment-region' which
  183. assumes that the appropriate major-mode is set. SPEC has the
  184. form
  185. (link source-name params body)"
  186. (flet ((insert-comment (text)
  187. (when commentable
  188. (insert "\n")
  189. (comment-region (point) (progn (insert text) (point)))
  190. (move-end-of-line nil)
  191. (insert "\n"))))
  192. (let ((link (first spec))
  193. (source-name (second spec))
  194. (body (fourth spec))
  195. (commentable (not (if (> (length (cdr (assoc :comments (third spec)))) 0)
  196. (string= (cdr (assoc :comments (third spec))) "no")
  197. (fifth spec)))))
  198. (insert-comment (format "[[%s][%s]]" (org-link-escape link) source-name))
  199. (insert (format "%s" (org-babel-chomp body)))
  200. (insert-comment (format "%s ends here" source-name)))))
  201. (provide 'org-babel-tangle)
  202. ;;; org-babel-tangle.el ends here