2009-06-15 01:30:29 +00:00
|
|
|
;;; org-babel-tangle.el --- Extract source code from org-mode files
|
|
|
|
|
|
|
|
;; Copyright (C) 2009 Dan Davison, Eric Schulte
|
|
|
|
|
|
|
|
;; Author: Dan Davison, Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
;; Version: 0.01
|
|
|
|
|
|
|
|
;;; License:
|
|
|
|
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
;; any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Extract the code from source blocks out into raw source-code files.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(require 'org-babel)
|
|
|
|
|
2009-06-15 22:25:46 +00:00
|
|
|
(defvar org-babel-tangle-langs nil
|
|
|
|
"Association list matching source-block languages. The car of
|
|
|
|
each element should be a string indicating the source block
|
|
|
|
language, and the cdr should be a list containing the extension
|
2009-08-04 19:23:23 +00:00
|
|
|
shebang(#!) line to use when writing out the language to file,
|
|
|
|
and an optional flag indicating that the language is not
|
|
|
|
commentable.")
|
2009-06-15 22:25:46 +00:00
|
|
|
|
2009-07-15 01:29:28 +00:00
|
|
|
(defun org-babel-load-file (file)
|
2009-07-15 01:37:47 +00:00
|
|
|
"Load the contents of the Emacs Lisp source code blocks in the
|
|
|
|
org-mode formatted FILE. This function will first export the
|
|
|
|
source code using `org-babel-tangle' and then load the resulting
|
|
|
|
file using `load-file'."
|
2009-07-15 03:16:51 +00:00
|
|
|
(flet ((age (file)
|
|
|
|
(time-to-seconds
|
|
|
|
(time-subtract (current-time)
|
|
|
|
(sixth (file-attributes file))))))
|
2009-07-30 14:57:26 +00:00
|
|
|
(let* ((base-name (file-name-sans-extension file))
|
|
|
|
(exported-file (concat base-name ".el")))
|
|
|
|
;; tangle if the org-mode file is newer than the elisp file
|
|
|
|
(unless (and (file-exists-p exported-file) (> (age file) (age exported-file)))
|
|
|
|
(org-babel-tangle-file file base-name "emacs-lisp"))
|
|
|
|
(load-file exported-file)
|
|
|
|
(message "loaded %s" exported-file))))
|
|
|
|
|
|
|
|
(defun org-babel-tangle-file (file &optional target-file lang)
|
|
|
|
"Extract the bodies of all source code blocks in FILE with
|
|
|
|
`org-babel-tangle'. Optional argument TARGET-FILE can be used to
|
|
|
|
specify a default export file for all source blocks. Optional
|
|
|
|
argument LANG can be used to limit the exported source code
|
|
|
|
blocks by language."
|
2009-10-20 14:17:42 +00:00
|
|
|
(interactive "fFile to tangle: \nP")
|
2009-07-30 14:57:26 +00:00
|
|
|
(save-window-excursion (find-file file) (org-babel-tangle target-file lang)))
|
2009-07-15 01:26:15 +00:00
|
|
|
|
2009-07-30 14:57:26 +00:00
|
|
|
(defun org-babel-tangle (&optional target-file lang)
|
2009-07-01 23:16:30 +00:00
|
|
|
"Extract the bodies of all source code blocks from the current
|
2009-07-15 01:26:15 +00:00
|
|
|
file into their own source-specific files. Optional argument
|
2009-07-30 14:57:26 +00:00
|
|
|
TARGET-FILE can be used to specify a default export file for all
|
|
|
|
source blocks. Optional argument LANG can be used to limit the
|
|
|
|
exported source code blocks by language."
|
2009-06-15 22:35:11 +00:00
|
|
|
(interactive)
|
2009-06-27 18:58:13 +00:00
|
|
|
(save-excursion
|
2009-07-31 02:14:35 +00:00
|
|
|
(let ((block-counter 0)
|
2009-07-15 01:37:47 +00:00
|
|
|
path-collector)
|
2009-07-31 22:53:02 +00:00
|
|
|
(mapc ;; map over all languages
|
2009-06-27 18:58:13 +00:00
|
|
|
(lambda (by-lang)
|
|
|
|
(let* ((lang (car by-lang))
|
2009-07-30 14:57:26 +00:00
|
|
|
(specs (cdr by-lang))
|
2009-08-17 03:14:22 +00:00
|
|
|
(lang-f (intern (concat
|
2009-08-25 14:34:49 +00:00
|
|
|
(or (and (cdr (assoc lang org-src-lang-modes))
|
|
|
|
(symbol-name
|
|
|
|
(cdr (assoc lang org-src-lang-modes))))
|
2009-08-17 03:14:22 +00:00
|
|
|
lang)
|
|
|
|
"-mode")))
|
2009-06-27 18:58:13 +00:00
|
|
|
(lang-specs (cdr (assoc lang org-babel-tangle-langs)))
|
|
|
|
(ext (first lang-specs))
|
2009-08-04 19:23:23 +00:00
|
|
|
(she-bang (second lang-specs))
|
|
|
|
(commentable (not (third lang-specs))))
|
2009-07-30 14:57:26 +00:00
|
|
|
(mapc
|
|
|
|
(lambda (spec)
|
2009-07-31 02:14:35 +00:00
|
|
|
(let* ((tangle (cdr (assoc :tangle (third spec))))
|
|
|
|
(base-name (or (cond
|
|
|
|
((string= "yes" tangle)
|
|
|
|
(file-name-sans-extension (buffer-file-name)))
|
|
|
|
((string= "no" tangle) nil)
|
|
|
|
((> (length tangle) 0) tangle))
|
2009-07-30 14:57:26 +00:00
|
|
|
target-file))
|
|
|
|
(file-name (when base-name
|
2009-08-18 23:22:16 +00:00
|
|
|
(if (string= base-name
|
|
|
|
(file-name-sans-extension base-name))
|
|
|
|
(concat base-name "." ext) base-name))))
|
2009-07-31 02:14:35 +00:00
|
|
|
;; ;; debugging
|
|
|
|
;; (message "tangle=%S base-name=%S file-name=%S"
|
|
|
|
;; tangle base-name file-name)
|
2009-07-30 14:57:26 +00:00
|
|
|
(when file-name
|
|
|
|
;; delete any old versions of file
|
2009-07-31 02:02:18 +00:00
|
|
|
(when (and (file-exists-p file-name)
|
|
|
|
(not (member file-name path-collector)))
|
2009-07-30 14:57:26 +00:00
|
|
|
(delete-file file-name))
|
|
|
|
;; drop source-block to file
|
|
|
|
(with-temp-buffer
|
|
|
|
(funcall lang-f)
|
|
|
|
(when she-bang (insert (concat she-bang "\n")))
|
2009-08-04 19:23:23 +00:00
|
|
|
(when commentable
|
|
|
|
(comment-region
|
2009-08-17 03:14:22 +00:00
|
|
|
(point) (progn (insert "generated by org-babel-tangle") (point)))
|
|
|
|
(move-end-of-line nil))
|
2009-07-30 14:57:26 +00:00
|
|
|
(org-babel-spec-to-string spec)
|
|
|
|
(append-to-file nil nil file-name))
|
2009-07-31 02:14:35 +00:00
|
|
|
;; update counter
|
|
|
|
(setq block-counter (+ 1 block-counter))
|
2009-07-30 14:57:26 +00:00
|
|
|
(add-to-list 'path-collector file-name))))
|
|
|
|
specs)))
|
2009-07-23 00:30:30 +00:00
|
|
|
(org-babel-tangle-collect-blocks lang))
|
2009-09-02 19:20:20 +00:00
|
|
|
(message "tangled %d code block%s" block-counter
|
|
|
|
(if (= block-counter 1) "" "s"))
|
2009-07-15 01:37:47 +00:00
|
|
|
path-collector)))
|
2009-06-26 18:43:50 +00:00
|
|
|
|
2009-08-20 22:32:57 +00:00
|
|
|
(defun org-babel-tangle-clean ()
|
|
|
|
"Call this function inside of a source-code file generated by
|
|
|
|
`org-babel-tangle' to remove all comments inserted automatically
|
|
|
|
by `org-babel-tangle'. Warning, this comment removes any lines
|
|
|
|
containing constructs which resemble org-mode file links or noweb
|
|
|
|
references."
|
|
|
|
(interactive)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (or (re-search-forward "\\[\\[file:.*\\]\\[.*\\]\\]" nil t)
|
|
|
|
(re-search-forward "<<[^[:space:]]*>>" nil t))
|
|
|
|
(delete-region (save-excursion (move-beginning-of-line 1) (point))
|
|
|
|
(save-excursion (move-end-of-line 1) (forward-char 1) (point)))))
|
|
|
|
|
2009-07-23 00:30:30 +00:00
|
|
|
(defun org-babel-tangle-collect-blocks (&optional lang)
|
2009-06-28 00:25:01 +00:00
|
|
|
"Collect all source blocks in the current org-mode file.
|
2009-07-30 14:57:26 +00:00
|
|
|
Return an association list of source-code block specifications of
|
|
|
|
the form used by `org-babel-spec-to-string' grouped by language.
|
2009-07-15 01:26:15 +00:00
|
|
|
Optional argument LANG can be used to limit the collected source
|
|
|
|
code blocks by language."
|
2009-06-28 00:25:01 +00:00
|
|
|
(let ((block-counter 0) blocks)
|
|
|
|
(org-babel-map-source-blocks (buffer-file-name)
|
|
|
|
(setq block-counter (+ 1 block-counter))
|
|
|
|
(let* ((link (progn (call-interactively 'org-store-link)
|
|
|
|
(org-babel-clean-text-properties (car (pop org-stored-links)))))
|
|
|
|
(source-name (intern (or (org-babel-get-src-block-name)
|
|
|
|
(format "block-%d" block-counter))))
|
|
|
|
(info (org-babel-get-src-block-info))
|
2009-07-15 01:26:15 +00:00
|
|
|
(src-lang (first info))
|
2009-07-31 23:01:40 +00:00
|
|
|
(body (org-babel-expand-noweb-references info))
|
2009-06-28 00:25:01 +00:00
|
|
|
(params (third info))
|
2009-08-04 19:23:23 +00:00
|
|
|
(spec (list link source-name params body (third (cdr (assoc src-lang org-babel-tangle-langs)))))
|
2009-07-30 14:57:26 +00:00
|
|
|
by-lang)
|
2009-07-23 00:30:30 +00:00
|
|
|
(unless (string= (cdr (assoc :tangle params)) "no") ;; maybe skip
|
|
|
|
(unless (and lang (not (string= lang src-lang))) ;; maybe limit by language
|
2009-07-30 14:57:26 +00:00
|
|
|
;; add the spec for this block to blocks under it's language
|
2009-07-23 00:30:30 +00:00
|
|
|
(setq by-lang (cdr (assoc src-lang blocks)))
|
|
|
|
(setq blocks (delq (assoc src-lang blocks) blocks))
|
2009-07-30 14:57:26 +00:00
|
|
|
(setq blocks (cons (cons src-lang (cons spec by-lang)) blocks))))))
|
2009-08-03 17:00:42 +00:00
|
|
|
;; ensure blocks in the correct order
|
|
|
|
(setq blocks
|
|
|
|
(mapcar (lambda (by-lang) (cons (car by-lang) (reverse (cdr by-lang)))) blocks))
|
2009-07-30 14:57:26 +00:00
|
|
|
;; blocks should contain all source-blocks organized by language
|
2009-08-04 19:23:23 +00:00
|
|
|
;; (message "blocks=%S" blocks) ;; debugging
|
2009-06-28 00:25:01 +00:00
|
|
|
blocks))
|
|
|
|
|
2009-06-26 03:17:21 +00:00
|
|
|
(defun org-babel-spec-to-string (spec)
|
2009-06-27 18:58:13 +00:00
|
|
|
"Insert the source-code specified by SPEC into the current
|
|
|
|
source code file. This function uses `comment-region' which
|
|
|
|
assumes that the appropriate major-mode is set. SPEC has the
|
|
|
|
form
|
2009-06-26 19:12:23 +00:00
|
|
|
|
|
|
|
(link source-name params body)"
|
|
|
|
(flet ((insert-comment (text)
|
2009-08-04 19:23:23 +00:00
|
|
|
(when commentable
|
2009-08-17 03:14:22 +00:00
|
|
|
(comment-region (point) (progn (insert text) (point)))
|
|
|
|
(move-end-of-line nil))))
|
2009-06-27 18:58:13 +00:00
|
|
|
(let ((link (first spec))
|
|
|
|
(source-name (second spec))
|
2009-08-04 19:23:23 +00:00
|
|
|
(body (fourth spec))
|
|
|
|
(commentable (not (fifth spec))))
|
2009-06-27 18:58:13 +00:00
|
|
|
(insert "\n\n")
|
|
|
|
(insert-comment (format "[[%s][%s]]" (org-link-escape link) source-name))
|
|
|
|
(insert (format "\n%s\n" (org-babel-chomp body)))
|
|
|
|
(insert-comment (format "%s ends here" source-name))
|
|
|
|
(insert "\n"))))
|
2009-06-15 22:35:11 +00:00
|
|
|
|
2009-06-15 01:30:29 +00:00
|
|
|
(provide 'org-babel-tangle)
|
|
|
|
;;; org-babel-tangle.el ends here
|