org-babel-tangle.el 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. ;;; org-babel-tangle.el --- Extract source code from org-mode files
  2. ;; Copyright (C) 2009 Dan Davison, Eric Schulte
  3. ;; Author: Dan Davison, 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. "Association list matching source-block languages. The car of
  28. each element should be a string indicating the source block
  29. language, and the cdr should be a list containing the extension
  30. and shebang(#!) line to use when writing out the language to
  31. file.")
  32. (defun org-babel-tangle ()
  33. "Extract the bodies of all source code blocks form the current
  34. file into their own source-specific files."
  35. (interactive)
  36. (save-excursion
  37. (let ((base-name (file-name-sans-extension (buffer-file-name)))
  38. blocks)
  39. ;; blocks will be two nested association lists, first grouped by
  40. ;; language, then by session, the contents of the second a-list
  41. ;; will be source-code blocks
  42. (org-babel-map-source-blocks (buffer-file-name)
  43. (let* ((link (progn (call-interactively 'org-store-link)
  44. (org-babel-clean-text-properties (car (pop org-stored-links)))))
  45. (source-name (intern (org-babel-get-src-block-name)))
  46. (info (org-babel-get-src-block-info))
  47. (lang (first info))
  48. (body (second info))
  49. (params (third info))
  50. (spec (list link source-name params body))
  51. (session (cdr (assoc :session params)))
  52. by-lang by-session)
  53. ;; add the spec for this block to blocks under it's lang and session
  54. (setq by-lang (org-babel-alist-pop lang blocks))
  55. (setq by-session (org-babel-alist-pop session by-lang))
  56. (setq blocks (cons ;; by-language
  57. (cons lang (cons ;; by-session
  58. (cons session (cons spec by-session)) by-lang))
  59. blocks))))
  60. ;; blocks should contain all source-blocks organized by language
  61. ;; and session
  62. (mapc ;; for every language create a file
  63. (lambda (by-lang)
  64. (let* ((lang (car by-lang))
  65. (lang-f (intern (concat lang "-mode")))
  66. (lang-specs (cdr (assoc lang org-babel-tangle-langs)))
  67. (ext (first lang-specs))
  68. (she-bang (second lang-specs))
  69. (by-session (cdr by-lang)))
  70. (flet ((to-file (filename specs)
  71. (with-temp-file filename
  72. (funcall lang-f)
  73. (when she-bang (insert she-bang))
  74. (comment-region (point) (progn (insert "generated by org-babel-tangle") (point)))
  75. (mapc #'org-babel-spec-to-string specs))))
  76. ;; if there are multiple sessions then break out by session
  77. (if (> (length by-session) 1)
  78. (mapc (lambda (session-pair)
  79. (to-file (format "%s-%s.%s" base-name (car session-pair) ext) (cdr session-pair)))
  80. by-session)
  81. (to-file (format "%s.%s" base-name ext) (cdr (car by-session)))))))
  82. blocks))))
  83. (defun org-babel-spec-to-string (spec)
  84. "Insert the source-code specified by SPEC into the current
  85. source code file. This function uses `comment-region' which
  86. assumes that the appropriate major-mode is set. SPEC has the
  87. form
  88. (link source-name params body)"
  89. (flet ((insert-comment (text)
  90. (comment-region (point) (progn (insert text) (point)))))
  91. (let ((link (first spec))
  92. (source-name (second spec))
  93. (body (fourth spec)))
  94. (insert "\n\n")
  95. (insert-comment (format "[[%s][%s]]" (org-link-escape link) source-name))
  96. (insert (format "\n%s\n" (org-babel-chomp body)))
  97. (insert-comment (format "%s ends here" source-name))
  98. (insert "\n"))))
  99. (provide 'org-babel-tangle)
  100. ;;; org-babel-tangle.el ends here