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
|
|
|
|
2012-03-17 15:31:04 +00:00
|
|
|
;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2011-08-24 18:55:11 +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-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
|
|
|
|
|
|
|
;;; 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" ())
|
2010-11-18 13:09:46 +00:00
|
|
|
(declare-function org-babel-eval-wipe-error-buffer "ob-eval" ())
|
2012-01-23 17:33:12 +00:00
|
|
|
(add-to-list 'org-export-interblocks '(src org-babel-exp-non-block-elements))
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2011-01-27 20:33:35 +00:00
|
|
|
(org-export-blocks-add-block '(src org-babel-exp-src-block nil))
|
2010-06-13 01:32:23 +00:00
|
|
|
|
2010-07-08 17:28:47 +00:00
|
|
|
(defcustom org-export-babel-evaluate t
|
|
|
|
"Switch controlling code evaluation during export.
|
2010-09-26 10:39:43 +00:00
|
|
|
When set to nil no code will be evaluated as part of the export
|
2010-07-08 17:28:47 +00:00
|
|
|
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
|
|
|
|
2011-03-01 17:52:35 +00:00
|
|
|
(defmacro org-babel-exp-in-export-file (lang &rest body)
|
|
|
|
(declare (indent 1))
|
|
|
|
`(let* ((lang-headers (intern (concat "org-babel-default-header-args:" ,lang)))
|
2010-10-16 00:00:57 +00:00
|
|
|
(heading (nth 4 (ignore-errors (org-heading-components))))
|
2012-03-17 15:28:46 +00:00
|
|
|
(link (when org-current-export-file
|
|
|
|
(org-make-link-string
|
|
|
|
(if heading
|
|
|
|
(concat org-current-export-file "::" heading)
|
|
|
|
org-current-export-file))))
|
|
|
|
(export-buffer (current-buffer)) results)
|
|
|
|
(when link
|
2010-10-16 00:00:57 +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
|
2012-03-17 15:28:46 +00:00
|
|
|
(set-buffer (get-file-buffer org-current-export-file))
|
2010-10-16 00:00:57 +00:00
|
|
|
(save-restriction
|
2012-03-17 15:28:46 +00:00
|
|
|
(condition-case nil
|
|
|
|
(let ((org-link-search-inhibit-query t))
|
|
|
|
(org-open-link-from-string link))
|
|
|
|
(error (when heading
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward (regexp-quote heading) nil t))))
|
2010-10-16 00:00:57 +00:00
|
|
|
(setq results ,@body))
|
|
|
|
(set-buffer export-buffer)
|
|
|
|
results)))
|
Provide edebug specifications for macros
* org-macs.el (org-with-gensyms, org-called-interactively-p)
(with-silent-modifications, org-bound-and-true-p)
(org-unmodified, org-re, org-preserve-lc)
(org-without-partial-completion, org-with-point-at)
(org-no-warnings, org-if-unprotected, org-if-unprotected-1)
(org-if-unprotected-at, org-with-remote-undo)
(org-no-read-only, org-save-outline-visibility)
(org-with-wide-buffer, org-with-limited-levels)
(org-eval-in-environment): Provide edebug specifications.
* org-src.el (org-src-do-at-code-block): Dto.
* org-publish.el (org-publish-with-aux-preprocess-maybe): Dto.
* org-compat.el (org-xemacs-without-invisibility): Dto.
* org-clock.el (org-with-clock-position, org-with-clock): Dto.
* org-agenda.el (org-agenda-with-point-at-orig-entry)
(org-batch-agenda, org-batch-agenda-csv)
(org-batch-store-agenda-views): Dto.
* ob.el (org-babel-do-in-edit-buffer)
(org-babel-map-src-blocks, org-babel-map-inline-src-blocks): Dto.
* ob-tangle.el (org-babel-with-temp-filebuffer): Dto.
* ob-table.el (sbe): Dto.
* ob-exp.el (org-babel-exp-in-export-file): Dto.
* ob-comint.el (org-babel-comint-in-buffer)
(org-babel-comint-with-output): Dto.
2011-08-11 06:57:25 +00:00
|
|
|
(def-edebug-spec org-babel-exp-in-export-file (form body))
|
2010-10-16 00:00:57 +00:00
|
|
|
|
2011-01-27 20:33:35 +00:00
|
|
|
(defun org-babel-exp-src-block (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)
|
2011-06-23 02:12:14 +00:00
|
|
|
(unless noninteractive (message "org-babel-exp processing..."))
|
2010-06-17 16:29:38 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
2010-10-15 15:13:51 +00:00
|
|
|
(let* ((info (org-babel-get-src-block-info 'light))
|
2010-09-19 01:01:49 +00:00
|
|
|
(lang (nth 0 info))
|
2011-02-27 18:01:56 +00:00
|
|
|
(raw-params (nth 2 info)) hash)
|
2010-07-16 22:34:57 +00:00
|
|
|
;; bail if we couldn't get any info from the block
|
|
|
|
(when info
|
2011-02-27 18:01:56 +00:00
|
|
|
;; if we're actually going to need the parameters
|
|
|
|
(when (member (cdr (assoc :exports (nth 2 info))) '("both" "results"))
|
2011-03-01 17:52:35 +00:00
|
|
|
(org-babel-exp-in-export-file lang
|
|
|
|
(setf (nth 2 info)
|
|
|
|
(org-babel-process-params
|
|
|
|
(org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
|
|
|
(org-babel-params-from-properties lang)
|
|
|
|
(if (boundp lang-headers) (eval lang-headers) nil)
|
|
|
|
raw-params))))
|
2011-02-27 18:01:56 +00:00
|
|
|
(setf hash (org-babel-sha1-hash info)))
|
2010-07-16 22:34:57 +00:00
|
|
|
;; expand noweb references in the original file
|
|
|
|
(setf (nth 1 info)
|
2012-03-17 15:28:46 +00:00
|
|
|
(if (and (cdr (assoc :noweb (nth 2 info)))
|
|
|
|
(string= "yes" (cdr (assoc :noweb (nth 2 info)))))
|
|
|
|
(org-babel-expand-noweb-references
|
|
|
|
info (get-file-buffer org-current-export-file))
|
|
|
|
(nth 1 info)))
|
2011-02-27 18:01:56 +00:00
|
|
|
(org-babel-exp-do-export info 'block hash)))))
|
2009-04-26 20:29:59 +00:00
|
|
|
|
2012-01-23 17:33:12 +00:00
|
|
|
(defvar org-babel-default-lob-header-args)
|
|
|
|
(defun org-babel-exp-non-block-elements (start end)
|
|
|
|
"Process inline source and call lines between START and END for export."
|
2009-04-26 20:29:59 +00:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char start)
|
2012-01-23 17:33:12 +00:00
|
|
|
(unless (markerp end)
|
|
|
|
(let ((m (make-marker)))
|
|
|
|
(set-marker m end (current-buffer))
|
|
|
|
(setq end m)))
|
|
|
|
(let ((rx (concat "\\(" org-babel-inline-src-block-regexp
|
|
|
|
"\\|" org-babel-lob-one-liner-regexp "\\)")))
|
|
|
|
(while (and (< (point) (marker-position end))
|
|
|
|
(re-search-forward rx end t))
|
|
|
|
(if (save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(looking-at org-babel-inline-src-block-regexp))
|
|
|
|
(progn
|
|
|
|
(forward-char 1)
|
|
|
|
(let* ((info (save-match-data
|
|
|
|
(org-babel-parse-inline-src-block-match)))
|
|
|
|
(params (nth 2 info)))
|
|
|
|
(save-match-data
|
|
|
|
(goto-char (match-beginning 2))
|
|
|
|
(unless (org-babel-in-example-or-verbatim)
|
|
|
|
;; expand noweb references in the original file
|
|
|
|
(setf (nth 1 info)
|
|
|
|
(if (and (cdr (assoc :noweb params))
|
|
|
|
(string= "yes" (cdr (assoc :noweb params))))
|
|
|
|
(org-babel-expand-noweb-references
|
2012-03-17 15:28:46 +00:00
|
|
|
info (get-file-buffer org-current-export-file))
|
2012-01-23 17:33:12 +00:00
|
|
|
(nth 1 info)))
|
|
|
|
(let ((code-replacement (save-match-data
|
|
|
|
(org-babel-exp-do-export
|
|
|
|
info 'inline))))
|
|
|
|
(if code-replacement
|
2012-01-27 23:29:03 +00:00
|
|
|
(progn (replace-match code-replacement nil nil nil 1)
|
|
|
|
(delete-char 1))
|
2012-01-23 17:33:12 +00:00
|
|
|
(org-babel-examplize-region (match-beginning 1)
|
|
|
|
(match-end 1))
|
|
|
|
(forward-char 2)))))))
|
2011-08-21 20:23:27 +00:00
|
|
|
(unless (org-babel-in-example-or-verbatim)
|
2012-01-23 17:33:12 +00:00
|
|
|
(let* ((lob-info (org-babel-lob-get-info))
|
|
|
|
(inlinep (match-string 11))
|
|
|
|
(inline-start (match-end 11))
|
|
|
|
(inline-end (match-end 0))
|
2012-03-17 15:28:46 +00:00
|
|
|
(rep (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
|
|
|
|
org-babel-default-lob-header-args
|
|
|
|
(org-babel-params-from-properties)
|
|
|
|
(org-babel-parse-header-arguments
|
|
|
|
(org-babel-clean-text-properties
|
|
|
|
(concat ":var results="
|
|
|
|
(mapconcat #'identity
|
|
|
|
(butlast lob-info)
|
|
|
|
" ")))))
|
|
|
|
"" nil (car (last lob-info)))
|
|
|
|
'lob)))))
|
2012-01-23 17:33:12 +00:00
|
|
|
(if inlinep
|
|
|
|
(save-excursion
|
|
|
|
(goto-char inline-start)
|
|
|
|
(delete-region inline-start inline-end)
|
|
|
|
(insert rep))
|
|
|
|
(replace-match rep t t)))))))))
|
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."
|
2011-11-10 17:12:30 +00:00
|
|
|
(or (save-match-data
|
2011-06-28 17:14:58 +00:00
|
|
|
(save-excursion
|
2010-06-08 23:19:54 +00:00
|
|
|
(goto-char (point-at-bol))
|
|
|
|
(looking-at "[ \t]*:[ \t]")))
|
2011-06-28 17:14:58 +00:00
|
|
|
(org-in-verbatim-emphasis)
|
2011-11-09 02:42:59 +00:00
|
|
|
(org-in-block-p org-list-forbidden-blocks)
|
2011-07-30 07:14:38 +00:00
|
|
|
(org-between-regexps-p "^[ \t]*#\\+begin_src" "^[ \t]*#\\+end_src")))
|
2009-04-26 20:29:59 +00:00
|
|
|
|
2011-02-27 18:01:56 +00:00
|
|
|
(defun org-babel-exp-do-export (info type &optional hash)
|
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)))))
|
2011-03-15 13:12:25 +00:00
|
|
|
(when (not (and session (equal "none" session)))
|
2010-06-07 20:35:28 +00:00
|
|
|
(org-babel-exp-results info type 'silent))))
|
2011-01-27 20:33:35 +00:00
|
|
|
(clean () (unless (eq type 'inline) (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) "")
|
2011-05-19 13:37:33 +00:00
|
|
|
('code (silently) (clean) (org-babel-exp-code info))
|
2011-02-27 18:01:56 +00:00
|
|
|
('results (org-babel-exp-results info type nil hash) "")
|
2011-05-19 13:37:33 +00:00
|
|
|
('both (org-babel-exp-results info type nil hash)
|
|
|
|
(org-babel-exp-code info)))))
|
|
|
|
|
|
|
|
(defun org-babel-exp-code (info)
|
|
|
|
"Return the original code block formatted for export."
|
2011-05-19 17:05:41 +00:00
|
|
|
(org-fill-template
|
2012-03-17 15:28:46 +00:00
|
|
|
"#+BEGIN_SRC %lang%flags\n%body\n#+END_SRC"
|
2011-05-19 17:05:41 +00:00
|
|
|
`(("lang" . ,(nth 0 info))
|
|
|
|
("flags" . ,((lambda (f) (when f (concat " " f))) (nth 3 info)))
|
2012-03-17 15:28:46 +00:00
|
|
|
("body" . ,(nth 1 info)))))
|
2009-04-23 22:48:22 +00:00
|
|
|
|
2011-02-27 18:01:56 +00:00
|
|
|
(defun org-babel-exp-results (info type &optional silent hash)
|
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."
|
2011-02-27 18:01:56 +00:00
|
|
|
(when (and org-export-babel-evaluate
|
2011-07-18 23:08:37 +00:00
|
|
|
(not (and hash (equal hash (org-babel-current-result-hash)))))
|
2011-01-27 19:48:45 +00:00
|
|
|
(let ((lang (nth 0 info))
|
2012-03-17 15:28:46 +00:00
|
|
|
(body (nth 1 info)))
|
2011-01-27 19:48:45 +00:00
|
|
|
;; skip code blocks which we can't evaluate
|
|
|
|
(when (fboundp (intern (concat "org-babel-execute:" lang)))
|
|
|
|
(org-babel-eval-wipe-error-buffer)
|
|
|
|
(prog1 nil
|
|
|
|
(setf (nth 2 info)
|
2011-03-02 14:32:02 +00:00
|
|
|
(org-babel-exp-in-export-file lang
|
|
|
|
(org-babel-process-params
|
|
|
|
(org-babel-merge-params
|
|
|
|
(nth 2 info)
|
|
|
|
`((:results . ,(if silent "silent" "replace")))))))
|
2011-01-27 19:48:45 +00:00
|
|
|
(cond
|
2011-08-22 14:09:28 +00:00
|
|
|
((equal type 'block)
|
|
|
|
(org-babel-execute-src-block nil info))
|
|
|
|
((equal type 'inline)
|
|
|
|
;; position the point on the inline source block allowing
|
|
|
|
;; `org-babel-insert-result' to check that the block is
|
|
|
|
;; inline
|
|
|
|
(re-search-backward "[ \f\t\n\r\v]" nil t)
|
|
|
|
(re-search-forward org-babel-inline-src-block-regexp nil t)
|
|
|
|
(re-search-backward "src_" nil t)
|
2011-01-27 19:48:45 +00:00
|
|
|
(org-babel-execute-src-block nil info))
|
|
|
|
((equal type 'lob)
|
|
|
|
(save-excursion
|
|
|
|
(re-search-backward org-babel-lob-one-liner-regexp nil t)
|
|
|
|
(org-babel-execute-src-block nil info)))))))))
|
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
|
|
|
|
2011-08-15 18:04:38 +00:00
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-exp.el ends here
|