org-babel-tangle.el 9.3 KB

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