2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-exp.el --- Exportation of org-babel source blocks
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2009-10-29 23:03:43 +00:00
|
|
|
;; Author: Eric Schulte, Dan Davison
|
2009-04-23 22:48:22 +00:00
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
2010-07-19 06:33:24 +00:00
|
|
|
;; Version: 7.01trans
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-04-23 22:48:22 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:20:39 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-04-23 22:48:22 +00:00
|
|
|
;; 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.
|
2010-06-25 16:20:39 +00:00
|
|
|
|
2009-04-23 22:48:22 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:20:39 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-04-23 22:48:22 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
;; See the online documentation for more information
|
|
|
|
;;
|
|
|
|
;; http://orgmode.org/worg/org-contrib/babel/
|
2009-04-23 22:48:22 +00:00
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2009-04-26 20:29:59 +00:00
|
|
|
(require 'org-exp-blocks)
|
2010-06-13 01:32:23 +00:00
|
|
|
(eval-when-compile
|
|
|
|
(require 'cl))
|
|
|
|
|
2010-06-15 01:22:41 +00:00
|
|
|
(defvar obe-marker nil)
|
|
|
|
(defvar org-current-export-file)
|
|
|
|
(defvar org-babel-lob-one-liner-regexp)
|
|
|
|
(defvar org-babel-ref-split-regexp)
|
|
|
|
(declare-function org-babel-lob-get-info "ob-lob" ())
|
|
|
|
(declare-function org-babel-ref-literal "ob-ref" (ref))
|
|
|
|
|
2009-05-24 20:38:01 +00:00
|
|
|
(add-to-list 'org-export-interblocks '(src org-babel-exp-inline-src-blocks))
|
2009-10-24 16:39:05 +00:00
|
|
|
(add-to-list 'org-export-interblocks '(lob org-babel-exp-lob-one-liners))
|
2010-06-15 23:21:22 +00:00
|
|
|
(add-hook 'org-export-blocks-postblock-hook 'org-exp-res/src-name-cleanup)
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-13 01:32:23 +00:00
|
|
|
(org-export-blocks-add-block '(src org-babel-exp-src-blocks nil))
|
|
|
|
|
2010-07-08 17:28:47 +00:00
|
|
|
(defcustom org-export-babel-evaluate t
|
|
|
|
"Switch controlling code evaluation during export.
|
|
|
|
When set to nil no code will be exported as part of the export
|
|
|
|
process."
|
|
|
|
:group 'org-babel
|
|
|
|
:type 'boolean)
|
2010-07-08 22:11:38 +00:00
|
|
|
(put 'org-export-babel-evaluate 'safe-local-variable (lambda (x) (eq x nil)))
|
2010-07-08 17:28:47 +00:00
|
|
|
|
2009-11-01 01:22:38 +00:00
|
|
|
(defvar org-babel-function-def-export-keyword "function"
|
2010-07-13 23:04:47 +00:00
|
|
|
"The keyword to substitute for the source name line on export.
|
|
|
|
When exporting a source block function, this keyword will
|
2009-11-18 18:31:24 +00:00
|
|
|
appear in the exported version in the place of source name
|
|
|
|
line. A source block is considered to be a source block function
|
|
|
|
if the source name is present and is followed by a parenthesized
|
|
|
|
argument list. The parentheses may be empty or contain
|
|
|
|
whitespace. An example is the following which generates n random
|
2010-07-06 06:51:23 +00:00
|
|
|
\(uniform) numbers.
|
2009-11-01 01:22:38 +00:00
|
|
|
|
2009-11-18 18:31:24 +00:00
|
|
|
#+source: rand(n)
|
2009-11-01 01:22:38 +00:00
|
|
|
#+begin_src R
|
|
|
|
runif(n)
|
2010-07-06 07:12:50 +00:00
|
|
|
#+end_src")
|
2009-11-01 01:22:38 +00:00
|
|
|
|
|
|
|
(defvar org-babel-function-def-export-indent 4
|
2010-07-13 23:04:47 +00:00
|
|
|
"Number of characters to indent a source block on export.
|
|
|
|
When exporting a source block function, the block contents will
|
|
|
|
be indented by this many characters. See
|
2009-11-01 01:22:38 +00:00
|
|
|
`org-babel-function-def-export-name' for the definition of a
|
|
|
|
source block function.")
|
|
|
|
|
2009-05-24 20:38:01 +00:00
|
|
|
(defun org-babel-exp-src-blocks (body &rest headers)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Process source block for export.
|
|
|
|
Depending on the 'export' headers argument in replace the source
|
|
|
|
code block with...
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2009-08-17 18:19:25 +00:00
|
|
|
both ---- display the code and the results
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2009-08-17 18:19:25 +00:00
|
|
|
code ---- the default, display the code inside the block but do
|
|
|
|
not process
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2009-09-01 21:42:14 +00:00
|
|
|
results - just like none only the block is run on export ensuring
|
|
|
|
that it's results are present in the org-mode buffer
|
2009-04-23 22:48:22 +00:00
|
|
|
|
|
|
|
none ----- do not display either code or results upon export"
|
|
|
|
(interactive)
|
2009-08-17 18:19:25 +00:00
|
|
|
(message "org-babel-exp processing...")
|
2010-06-17 16:29:38 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
2010-09-19 01:01:49 +00:00
|
|
|
(let* ((raw-header (match-string 3))
|
|
|
|
(info (org-babel-get-src-block-info))
|
|
|
|
(lang (nth 0 info))
|
|
|
|
(lang-headers
|
|
|
|
(intern (concat "org-babel-default-header-args:" lang)))
|
|
|
|
(raw-params
|
|
|
|
(org-babel-parse-header-arguments
|
|
|
|
(org-babel-clean-text-properties
|
|
|
|
(mapconcat #'identity (cdr (split-string raw-header)) " "))))
|
|
|
|
(link (org-make-link-string
|
|
|
|
(concat
|
|
|
|
org-current-export-file
|
|
|
|
"::"
|
|
|
|
(nth 4 (ignore-errors (org-heading-components))))))
|
|
|
|
(export-buffer (current-buffer)))
|
2010-07-16 22:34:57 +00:00
|
|
|
;; bail if we couldn't get any info from the block
|
|
|
|
(when info
|
2010-09-19 01:01:49 +00:00
|
|
|
;; resolve parameters in the original file so that headline
|
|
|
|
;; and file-wide parameters are included
|
|
|
|
;; attempt to go to the same heading in the original file
|
|
|
|
(set-buffer (get-file-buffer org-current-export-file))
|
|
|
|
(save-restriction
|
|
|
|
(org-open-link-from-string link)
|
|
|
|
(setf (nth 2 info)
|
|
|
|
(org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
|
|
|
(org-babel-params-from-buffer)
|
|
|
|
(org-babel-params-from-properties lang)
|
|
|
|
(if (boundp lang-headers) (eval lang-headers) nil)
|
|
|
|
raw-params)))
|
|
|
|
(set-buffer export-buffer)
|
2010-07-16 22:34:57 +00:00
|
|
|
;; expand noweb references in the original file
|
|
|
|
(setf (nth 1 info)
|
2010-09-19 01:01:49 +00:00
|
|
|
(if (and (cdr (assoc :noweb (nth 2 info)))
|
|
|
|
(string= "yes" (cdr (assoc :noweb (nth 2 info)))))
|
2010-07-16 22:34:57 +00:00
|
|
|
(org-babel-expand-noweb-references
|
|
|
|
info (get-file-buffer org-current-export-file))
|
|
|
|
(nth 1 info))))
|
2010-06-17 16:29:38 +00:00
|
|
|
(org-babel-exp-do-export info 'block))))
|
2009-04-26 20:29:59 +00:00
|
|
|
|
2009-05-24 20:38:01 +00:00
|
|
|
(defun org-babel-exp-inline-src-blocks (start end)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Process inline source blocks between START and END for export.
|
2009-05-24 20:38:01 +00:00
|
|
|
See `org-babel-exp-src-blocks' for export options, currently the
|
2010-07-04 19:16:02 +00:00
|
|
|
options and are taken from `org-babel-default-inline-header-args'."
|
2009-04-26 20:29:59 +00:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start)
|
2009-10-22 03:12:58 +00:00
|
|
|
(while (and (< (point) end)
|
|
|
|
(re-search-forward org-babel-inline-src-block-regexp end t))
|
2010-06-08 23:27:44 +00:00
|
|
|
(let* ((info (save-match-data (org-babel-parse-inline-src-block-match)))
|
2010-06-13 01:26:08 +00:00
|
|
|
(params (nth 2 info))
|
2010-06-08 23:27:44 +00:00
|
|
|
(replacement
|
|
|
|
(save-match-data
|
|
|
|
(if (org-babel-in-example-or-verbatim)
|
|
|
|
(buffer-substring (match-beginning 0) (match-end 0))
|
2010-06-08 23:19:54 +00:00
|
|
|
;; expand noweb references in the original file
|
2010-06-13 01:26:08 +00:00
|
|
|
(setf (nth 1 info)
|
2010-06-08 23:19:54 +00:00
|
|
|
(if (and (cdr (assoc :noweb params))
|
|
|
|
(string= "yes" (cdr (assoc :noweb params))))
|
|
|
|
(org-babel-expand-noweb-references
|
|
|
|
info (get-file-buffer org-current-export-file))
|
2010-06-13 01:26:08 +00:00
|
|
|
(nth 1 info)))
|
2010-06-08 23:27:44 +00:00
|
|
|
(org-babel-exp-do-export info 'inline)))))
|
|
|
|
(setq end (+ end (- (length replacement) (length (match-string 1)))))
|
|
|
|
(replace-match replacement t t nil 1)))))
|
2010-06-08 23:19:54 +00:00
|
|
|
|
2010-06-15 23:21:22 +00:00
|
|
|
(defun org-exp-res/src-name-cleanup ()
|
2010-07-13 23:04:47 +00:00
|
|
|
"Clean up #+results and #+srcname lines for export.
|
|
|
|
This function should only be called after all block processing
|
|
|
|
has taken place."
|
2010-06-15 23:21:22 +00:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
2010-06-17 04:01:13 +00:00
|
|
|
(while (org-re-search-forward-unprotected
|
2010-06-15 23:21:22 +00:00
|
|
|
(concat
|
2010-07-12 04:35:58 +00:00
|
|
|
"\\("org-babel-src-name-regexp"\\|"org-babel-result-regexp"\\)")
|
2010-06-15 23:21:22 +00:00
|
|
|
nil t)
|
|
|
|
(delete-region
|
|
|
|
(progn (beginning-of-line) (point))
|
2010-06-16 17:16:22 +00:00
|
|
|
(progn (end-of-line) (+ 1 (point)))))))
|
2010-06-15 23:21:22 +00:00
|
|
|
|
2010-06-08 23:19:54 +00:00
|
|
|
(defun org-babel-in-example-or-verbatim ()
|
2010-07-13 23:04:47 +00:00
|
|
|
"Return true if point is in example or verbatim code.
|
|
|
|
Example and verbatim code include escaped portions of
|
|
|
|
an org-mode buffer code that should be treated as normal
|
2010-06-08 23:19:54 +00:00
|
|
|
org-mode text."
|
|
|
|
(or (org-in-indented-comment-line)
|
|
|
|
(save-excursion
|
|
|
|
(save-match-data
|
|
|
|
(goto-char (point-at-bol))
|
|
|
|
(looking-at "[ \t]*:[ \t]")))
|
|
|
|
(org-in-regexps-block-p "^[ \t]*#\\+begin_src" "^[ \t]*#\\+end_src")))
|
2009-04-26 20:29:59 +00:00
|
|
|
|
2009-10-24 16:39:05 +00:00
|
|
|
(defun org-babel-exp-lob-one-liners (start end)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Process Library of Babel calls between START and END for export.
|
2009-10-24 16:39:05 +00:00
|
|
|
See `org-babel-exp-src-blocks' for export options. Currently the
|
|
|
|
options are taken from `org-babel-default-header-args'."
|
|
|
|
(interactive)
|
|
|
|
(let (replacement)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start)
|
|
|
|
(while (and (< (point) end)
|
|
|
|
(re-search-forward org-babel-lob-one-liner-regexp nil t))
|
|
|
|
(setq replacement
|
2010-06-11 17:16:56 +00:00
|
|
|
(let ((lob-info (org-babel-lob-get-info)))
|
|
|
|
(save-match-data
|
|
|
|
(org-babel-exp-do-export
|
|
|
|
(list "emacs-lisp" "results"
|
|
|
|
(org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
2010-08-19 13:30:40 +00:00
|
|
|
(org-babel-params-from-buffer)
|
|
|
|
(org-babel-params-from-properties)
|
2010-06-11 17:16:56 +00:00
|
|
|
(org-babel-parse-header-arguments
|
|
|
|
(org-babel-clean-text-properties
|
|
|
|
(concat ":var results="
|
|
|
|
(mapconcat #'identity
|
|
|
|
(butlast lob-info) " ")))))
|
|
|
|
(car (last lob-info)))
|
|
|
|
'lob))))
|
2009-10-24 16:39:05 +00:00
|
|
|
(setq end (+ end (- (length replacement) (length (match-string 0)))))
|
|
|
|
(replace-match replacement t t)))))
|
|
|
|
|
2009-10-31 16:20:41 +00:00
|
|
|
(defun org-babel-exp-do-export (info type)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Return a string with the exported content of a code block.
|
|
|
|
The function respects the value of the :exports header argument."
|
2010-06-13 01:26:08 +00:00
|
|
|
(flet ((silently () (let ((session (cdr (assoc :session (nth 2 info)))))
|
2010-06-07 21:08:06 +00:00
|
|
|
(when (and session
|
2010-08-26 23:14:43 +00:00
|
|
|
(not (equal "none" session)))
|
2010-06-07 20:35:28 +00:00
|
|
|
(org-babel-exp-results info type 'silent))))
|
2010-06-07 20:20:22 +00:00
|
|
|
(clean () (org-babel-remove-result info)))
|
2010-06-13 01:26:08 +00:00
|
|
|
(case (intern (or (cdr (assoc :exports (nth 2 info))) "code"))
|
2010-06-07 20:20:22 +00:00
|
|
|
('none (silently) (clean) "")
|
|
|
|
('code (silently) (clean) (org-babel-exp-code info type))
|
2010-06-07 02:13:14 +00:00
|
|
|
('results (org-babel-exp-results info type))
|
|
|
|
('both (concat (org-babel-exp-code info type)
|
|
|
|
"\n\n"
|
|
|
|
(org-babel-exp-results info type))))))
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-13 01:50:05 +00:00
|
|
|
(defvar backend)
|
2009-10-31 16:20:41 +00:00
|
|
|
(defun org-babel-exp-code (info type)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Prepare and return code in the current code block for export.
|
|
|
|
Code is prepared in a manner suitable for exportat by
|
|
|
|
org-mode. This function is called by `org-babel-exp-do-export'.
|
|
|
|
The code block is not evaluated."
|
2010-06-13 01:26:08 +00:00
|
|
|
(let ((lang (nth 0 info))
|
|
|
|
(body (nth 1 info))
|
|
|
|
(switches (nth 3 info))
|
|
|
|
(name (nth 4 info))
|
2010-06-01 22:40:06 +00:00
|
|
|
(args (mapcar
|
|
|
|
#'cdr
|
2010-06-13 01:32:23 +00:00
|
|
|
(org-remove-if-not (lambda (el) (eq :var (car el))) (nth 2 info)))))
|
2009-10-24 16:39:05 +00:00
|
|
|
(case type
|
2010-02-10 20:34:00 +00:00
|
|
|
('inline (format "=%s=" body))
|
2009-11-01 01:22:38 +00:00
|
|
|
('block
|
2010-06-17 16:29:38 +00:00
|
|
|
(let ((str
|
2010-06-01 22:40:06 +00:00
|
|
|
(format "#+BEGIN_SRC %s %s\n%s%s#+END_SRC\n" lang switches body
|
|
|
|
(if (and body (string-match "\n$" body))
|
|
|
|
"" "\n"))))
|
2010-06-17 16:29:38 +00:00
|
|
|
(when name
|
2010-06-01 22:40:06 +00:00
|
|
|
(add-text-properties
|
|
|
|
0 (length str)
|
|
|
|
(list 'org-caption
|
|
|
|
(format "%s(%s)"
|
|
|
|
name
|
|
|
|
(mapconcat #'identity args ", ")))
|
|
|
|
str))
|
|
|
|
str))
|
2010-02-10 20:34:00 +00:00
|
|
|
('lob
|
|
|
|
(let ((call-line (and (string-match "results=" (car args))
|
2010-06-17 16:29:38 +00:00
|
|
|
(substring (car args) (match-end 0)))))
|
|
|
|
(cond
|
|
|
|
((eq backend 'html)
|
|
|
|
(format "\n#+HTML: <label class=\"org-src-name\">%s</label>\n"
|
2010-06-01 22:40:06 +00:00
|
|
|
call-line))
|
2010-06-17 16:29:38 +00:00
|
|
|
((format ": %s\n" call-line))))))))
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2010-06-07 02:13:14 +00:00
|
|
|
(defun org-babel-exp-results (info type &optional silent)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Evaluate and return the results of the current code block for export.
|
|
|
|
Results are prepared in a manner suitable for export by org-mode.
|
|
|
|
This function is called by `org-babel-exp-do-export'. The code
|
|
|
|
block will be evaluated. Optional argument SILENT can be used to
|
|
|
|
inhibit insertion of results into the buffer."
|
2010-07-08 17:28:47 +00:00
|
|
|
(if org-export-babel-evaluate
|
|
|
|
(let ((lang (nth 0 info))
|
|
|
|
(body (nth 1 info))
|
|
|
|
(params
|
|
|
|
;; lets ensure that we lookup references in the original file
|
|
|
|
(mapcar
|
|
|
|
(lambda (pair)
|
|
|
|
(if (and org-current-export-file
|
|
|
|
(eq (car pair) :var)
|
|
|
|
(string-match org-babel-ref-split-regexp (cdr pair))
|
|
|
|
(equal :ob-must-be-reference
|
|
|
|
(org-babel-ref-literal
|
|
|
|
(match-string 2 (cdr pair)))))
|
|
|
|
`(:var . ,(concat (match-string 1 (cdr pair))
|
|
|
|
"=" org-current-export-file
|
|
|
|
":" (match-string 2 (cdr pair))))
|
|
|
|
pair))
|
|
|
|
(nth 2 info))))
|
|
|
|
;; skip code blocks which we can't evaluate
|
|
|
|
(if (fboundp (intern (concat "org-babel-execute:" lang)))
|
|
|
|
(case type
|
|
|
|
('inline
|
|
|
|
(let ((raw (org-babel-execute-src-block
|
|
|
|
nil info '((:results . "silent"))))
|
|
|
|
(result-params (split-string
|
|
|
|
(cdr (assoc :results params)))))
|
|
|
|
(unless silent
|
|
|
|
(cond ;; respect the value of the :results header argument
|
|
|
|
((member "file" result-params)
|
|
|
|
(org-babel-result-to-file raw))
|
|
|
|
((or (member "raw" result-params)
|
|
|
|
(member "org" result-params))
|
|
|
|
(format "%s" raw))
|
|
|
|
((member "code" result-params)
|
|
|
|
(format "src_%s{%s}" lang raw))
|
|
|
|
(t
|
|
|
|
(if (stringp raw)
|
|
|
|
(if (= 0 (length raw)) "=(no results)="
|
|
|
|
(format "%s" raw))
|
|
|
|
(format "%S" raw)))))))
|
|
|
|
('block
|
|
|
|
(org-babel-execute-src-block
|
|
|
|
nil info (org-babel-merge-params
|
|
|
|
params
|
|
|
|
`((:results . ,(if silent "silent" "replace")))))
|
|
|
|
"")
|
|
|
|
('lob
|
|
|
|
(save-excursion
|
|
|
|
(re-search-backward org-babel-lob-one-liner-regexp nil t)
|
|
|
|
(org-babel-execute-src-block
|
|
|
|
nil info (org-babel-merge-params
|
|
|
|
params
|
|
|
|
`((:results . ,(if silent "silent" "replace")))))
|
|
|
|
"")))
|
|
|
|
""))
|
|
|
|
""))
|
2009-09-12 18:14:09 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-exp)
|
2010-06-25 16:20:39 +00:00
|
|
|
|
|
|
|
;; arch-tag: 523abf4c-76d1-44ed-9f27-e3bddf34bf0f
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-exp.el ends here
|