2010-06-25 16:20:39 +00:00
|
|
|
;;; ob-lob.el --- functions supporting the Library of Babel
|
2009-06-13 00:26:28 +00:00
|
|
|
|
2014-01-04 17:56:11 +00:00
|
|
|
;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
|
2009-06-13 00:26:28 +00:00
|
|
|
|
2012-04-01 22:53:28 +00:00
|
|
|
;; Authors: Eric Schulte
|
|
|
|
;; Dan Davison
|
2009-06-13 00:26:28 +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-06-13 00:26:28 +00:00
|
|
|
|
2010-06-25 16:20:39 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-06-13 00:26:28 +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-06-13 00:26:28 +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-06-13 00:26:28 +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-06-13 00:26:28 +00:00
|
|
|
|
|
|
|
;;; Code:
|
2011-06-27 00:13:14 +00:00
|
|
|
(eval-when-compile
|
|
|
|
(require 'cl))
|
2012-12-11 23:58:16 +00:00
|
|
|
(require 'ob-core)
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob-table)
|
2009-06-14 14:54:55 +00:00
|
|
|
|
2011-11-15 15:38:41 +00:00
|
|
|
(declare-function org-babel-in-example-or-verbatim "ob-exp" nil)
|
|
|
|
|
2009-06-14 21:10:04 +00:00
|
|
|
(defvar org-babel-library-of-babel nil
|
2010-07-13 23:20:08 +00:00
|
|
|
"Library of source-code blocks.
|
|
|
|
This is an association list. Populate the library by adding
|
|
|
|
files to `org-babel-lob-files'.")
|
2009-06-14 21:10:04 +00:00
|
|
|
|
2013-05-09 13:19:02 +00:00
|
|
|
(defcustom org-babel-lob-files nil
|
2010-07-13 23:20:08 +00:00
|
|
|
"Files used to populate the `org-babel-library-of-babel'.
|
|
|
|
To add files to this list use the `org-babel-lob-ingest' command."
|
2009-06-14 21:10:04 +00:00
|
|
|
:group 'org-babel
|
2012-03-19 20:38:12 +00:00
|
|
|
:version "24.1"
|
2014-01-03 16:15:34 +00:00
|
|
|
:type '(repeat file))
|
2009-06-14 21:10:04 +00:00
|
|
|
|
2011-06-24 20:53:25 +00:00
|
|
|
(defvar org-babel-default-lob-header-args '((:exports . "results"))
|
|
|
|
"Default header arguments to use when exporting #+lob/call lines.")
|
|
|
|
|
2009-06-14 21:10:04 +00:00
|
|
|
(defun org-babel-lob-ingest (&optional file)
|
2014-01-03 16:15:34 +00:00
|
|
|
"Add all named source blocks defined in FILE to `org-babel-library-of-babel'."
|
2011-01-31 19:33:09 +00:00
|
|
|
(interactive "fFile: ")
|
2010-10-12 10:52:29 +00:00
|
|
|
(let ((lob-ingest-count 0))
|
|
|
|
(org-babel-map-src-blocks file
|
2010-10-15 15:13:51 +00:00
|
|
|
(let* ((info (org-babel-get-src-block-info 'light))
|
2010-10-12 10:52:29 +00:00
|
|
|
(source-name (nth 4 info)))
|
|
|
|
(when source-name
|
|
|
|
(setq source-name (intern source-name)
|
|
|
|
org-babel-library-of-babel
|
|
|
|
(cons (cons source-name info)
|
|
|
|
(assq-delete-all source-name org-babel-library-of-babel))
|
|
|
|
lob-ingest-count (1+ lob-ingest-count)))))
|
|
|
|
(message "%d src block%s added to Library of Babel"
|
2010-10-16 00:42:26 +00:00
|
|
|
lob-ingest-count (if (> lob-ingest-count 1) "s" ""))
|
|
|
|
lob-ingest-count))
|
2009-06-14 21:10:04 +00:00
|
|
|
|
2011-06-24 21:44:28 +00:00
|
|
|
(defconst org-babel-block-lob-one-liner-regexp
|
2010-07-20 18:40:57 +00:00
|
|
|
(concat
|
2012-03-01 20:04:15 +00:00
|
|
|
"^\\([ \t]*?\\)#\\+call:[ \t]+\\([^\(\)\n]+?\\)\\(\\[\\(.*\\)\\]\\|\\(\\)\\)"
|
|
|
|
"\(\\([^\n]*?\\)\)\\(\\[.+\\]\\|\\)[ \t]*\\(\\([^\n]*\\)\\)?")
|
2011-06-24 21:44:28 +00:00
|
|
|
"Regexp to match non-inline calls to predefined source block functions.")
|
|
|
|
|
|
|
|
(defconst org-babel-inline-lob-one-liner-regexp
|
|
|
|
(concat
|
2013-12-16 15:04:59 +00:00
|
|
|
"\\([^\n]*?\\)call_\\([^\(\)[:space:]\n]+?\\)\\(\\[\\(.*?\\)\\]\\|\\(\\)\\)"
|
|
|
|
"\(\\(.*?\\)\)\\(\\[\\(.*?\\)\\]\\)?")
|
2011-06-24 21:44:28 +00:00
|
|
|
"Regexp to match inline calls to predefined source block functions.")
|
|
|
|
|
|
|
|
(defconst org-babel-lob-one-liner-regexp
|
|
|
|
(concat "\\(" org-babel-block-lob-one-liner-regexp
|
|
|
|
"\\|" org-babel-inline-lob-one-liner-regexp "\\)")
|
2010-07-13 23:20:08 +00:00
|
|
|
"Regexp to match calls to predefined source block functions.")
|
2009-06-14 21:10:04 +00:00
|
|
|
|
2011-08-01 21:45:58 +00:00
|
|
|
;; functions for executing lob one-liners
|
2011-11-09 21:35:04 +00:00
|
|
|
|
2010-06-23 18:24:33 +00:00
|
|
|
;;;###autoload
|
2009-06-14 14:54:55 +00:00
|
|
|
(defun org-babel-lob-execute-maybe ()
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a Library of Babel source block, if appropriate.
|
|
|
|
Detect if this is context for a Library Of Babel source block and
|
|
|
|
if so then run the appropriate source block from the Library."
|
2009-06-14 14:54:55 +00:00
|
|
|
(interactive)
|
|
|
|
(let ((info (org-babel-lob-get-info)))
|
2011-11-09 02:42:59 +00:00
|
|
|
(if (and (nth 0 info) (not (org-babel-in-example-or-verbatim)))
|
|
|
|
(progn (org-babel-lob-execute info) t)
|
|
|
|
nil)))
|
2009-06-14 14:54:55 +00:00
|
|
|
|
2010-06-23 18:24:33 +00:00
|
|
|
;;;###autoload
|
2009-06-14 14:54:55 +00:00
|
|
|
(defun org-babel-lob-get-info ()
|
2010-08-19 13:31:19 +00:00
|
|
|
"Return a Library of Babel function call as a string."
|
2012-08-09 14:13:18 +00:00
|
|
|
(let ((case-fold-search t)
|
|
|
|
(nonempty (lambda (a b)
|
|
|
|
(let ((it (match-string a)))
|
|
|
|
(if (= (length it) 0) (match-string b) it)))))
|
|
|
|
(save-excursion
|
|
|
|
(beginning-of-line 1)
|
|
|
|
(when (looking-at org-babel-lob-one-liner-regexp)
|
|
|
|
(append
|
2012-08-15 07:39:24 +00:00
|
|
|
(mapcar #'org-no-properties
|
2012-08-09 14:13:18 +00:00
|
|
|
(list
|
|
|
|
(format "%s%s(%s)%s"
|
|
|
|
(funcall nonempty 3 12)
|
|
|
|
(if (not (= 0 (length (funcall nonempty 5 14))))
|
|
|
|
(concat "[" (funcall nonempty 5 14) "]") "")
|
|
|
|
(or (funcall nonempty 7 16) "")
|
|
|
|
(or (funcall nonempty 8 19) ""))
|
|
|
|
(funcall nonempty 9 18)))
|
|
|
|
(list (length (if (= (length (match-string 12)) 0)
|
2013-06-30 23:46:32 +00:00
|
|
|
(match-string 2) (match-string 11)))
|
|
|
|
(save-excursion
|
|
|
|
(forward-line -1)
|
|
|
|
(and (looking-at (concat org-babel-src-name-regexp
|
|
|
|
"\\([^\n]*\\)$"))
|
|
|
|
(org-no-properties (match-string 1))))))))))
|
2012-03-19 20:38:12 +00:00
|
|
|
|
2013-04-10 22:53:24 +00:00
|
|
|
(defvar org-babel-default-header-args:emacs-lisp) ; Defined in ob-emacs-lisp.el
|
2009-06-14 14:54:55 +00:00
|
|
|
(defun org-babel-lob-execute (info)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Execute the lob call specified by INFO."
|
2013-06-30 23:46:32 +00:00
|
|
|
(let* ((mkinfo (lambda (p)
|
|
|
|
(list "emacs-lisp" "results" p nil
|
|
|
|
(nth 3 info) ;; name
|
|
|
|
(nth 2 info))))
|
2013-06-20 15:53:56 +00:00
|
|
|
(pre-params (apply #'org-babel-merge-params
|
|
|
|
org-babel-default-header-args
|
|
|
|
org-babel-default-header-args:emacs-lisp
|
|
|
|
(append
|
|
|
|
(org-babel-params-from-properties)
|
|
|
|
(list
|
|
|
|
(org-babel-parse-header-arguments
|
|
|
|
(org-no-properties
|
|
|
|
(concat
|
|
|
|
":var results="
|
2013-06-30 23:46:32 +00:00
|
|
|
(mapconcat #'identity (butlast info 2)
|
2013-06-20 15:53:56 +00:00
|
|
|
" "))))))))
|
2012-08-09 14:13:18 +00:00
|
|
|
(pre-info (funcall mkinfo pre-params))
|
2013-02-27 09:24:04 +00:00
|
|
|
(cache-p (and (cdr (assoc :cache pre-params))
|
|
|
|
(string= "yes" (cdr (assoc :cache pre-params)))))
|
2014-01-18 20:14:25 +00:00
|
|
|
(new-hash (when cache-p
|
|
|
|
(org-babel-sha1-hash
|
|
|
|
;; Do *not* pre-process params for call line
|
|
|
|
;; hash evaluation, since for a call line :var
|
|
|
|
;; extension *is* execution.
|
2014-01-25 07:53:33 +00:00
|
|
|
(let* ((params (nth 2 pre-info))
|
|
|
|
(sha1-nth2 (list
|
|
|
|
(cons
|
|
|
|
(cons :c-var (cdr (assoc :var params)))
|
|
|
|
(assq-delete-all :var (copy-tree params)))))
|
|
|
|
(sha1-info (copy-tree pre-info)))
|
|
|
|
(prog1 sha1-info
|
|
|
|
(setcar (cddr sha1-info) sha1-nth2))))))
|
2014-01-18 20:36:07 +00:00
|
|
|
(old-hash (when cache-p (org-babel-current-result-hash pre-info)))
|
2013-06-08 19:19:38 +00:00
|
|
|
(org-babel-current-src-block-location (point-marker)))
|
2013-02-27 09:24:04 +00:00
|
|
|
(if (and cache-p (equal new-hash old-hash))
|
2014-01-18 20:36:07 +00:00
|
|
|
(save-excursion (goto-char (org-babel-where-is-src-block-result
|
|
|
|
nil pre-info))
|
2012-08-09 14:13:18 +00:00
|
|
|
(forward-line 1)
|
|
|
|
(message "%S" (org-babel-read-result)))
|
2013-04-10 18:28:31 +00:00
|
|
|
(prog1 (let* ((proc-params (org-babel-process-params pre-params))
|
|
|
|
org-confirm-babel-evaluate)
|
|
|
|
(org-babel-execute-src-block nil (funcall mkinfo proc-params)))
|
2012-08-09 14:13:18 +00:00
|
|
|
;; update the hash
|
2014-01-18 20:36:07 +00:00
|
|
|
(when new-hash
|
|
|
|
(org-babel-set-current-result-hash new-hash pre-info))))))
|
2009-06-14 14:54:55 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-lob)
|
2010-06-25 16:20:39 +00:00
|
|
|
|
2012-10-02 06:50:46 +00:00
|
|
|
;; Local variables:
|
|
|
|
;; generated-autoload-file: "org-loaddefs.el"
|
|
|
|
;; End:
|
2010-06-25 16:20:39 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-lob.el ends here
|