1 ;;; ob-ref.el --- org-babel functions for referencing external data
3 ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte, Dan Davison
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Functions for referencing data from the header arguments of a
28 ;; org-babel block. The syntax of such a reference should be
30 ;; #+VAR: variable-name=file:resource-id
32 ;; - variable-name :: the name of the variable to which the value
35 ;; - file :: path to the file containing the resource, or omitted if
36 ;; resource is in the current file
38 ;; - resource-id :: the id or name of the resource
40 ;; So an example of a simple src block referencing table data in the
45 ;; | 4 | org-babel | 6 |
47 ;; #+begin_src emacs-lisp :var table=sandbox
56 (declare-function org-remove-if-not
"org" (predicate seq
))
57 (declare-function org-at-table-p
"org" (&optional table-type
))
58 (declare-function org-count
"org" (CL-ITEM CL-SEQ
))
59 (declare-function org-in-item-p
"org-list" ())
61 (defvar org-babel-ref-split-regexp
62 "[ \f\t\n\r\v]*\\(.+?\\)[ \f\t\n\r\v]*=[ \f\t\n\r\v]*\\(.+\\)[ \f\t\n\r\v]*")
64 (defun org-babel-ref-parse (assignment)
65 "Parse a variable ASSIGNMENT in a header argument.
66 If the right hand side of the assignment has a literal value
67 return that value, otherwise interpret as a reference to an
68 external resource and find it's value using
69 `org-babel-ref-resolve'. Return a list with two elements. The
70 first element of the list will be the name of the variable, and
71 the second will be an emacs-lisp representation of the value of
73 (when (string-match org-babel-ref-split-regexp assignment
)
74 (let ((var (match-string 1 assignment
))
75 (ref (match-string 2 assignment
)))
77 (let ((out (org-babel-read ref
)))
79 (if (string-match "^\".*\"$" ref
)
81 (org-babel-ref-resolve ref
))
84 (defvar org-babel-library-of-babel
)
85 (defun org-babel-ref-resolve (ref)
86 "Resolve the reference REF and return its value."
87 (save-window-excursion
89 (let ((case-fold-search t
)
90 type args new-refere new-header-args new-referent result
91 lob-info split-file split-ref index index-row index-col
)
92 ;; if ref is indexed grab the indices -- beware nested indices
93 (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref
)
94 (let ((str (substring ref
0 (match-beginning 0))))
95 (= (org-count ?
( str
) (org-count ?
) str
))))
96 (setq index
(match-string 1 ref
))
97 (setq ref
(substring ref
0 (match-beginning 0))))
98 ;; assign any arguments to pass to source block
100 "^\\(.+?\\)\\(\\[\\(.*\\)\\]\\|\\(\\)\\)\(\\(.*\\)\)$" ref
)
101 (setq new-refere
(match-string 1 ref
))
102 (setq new-header-args
(match-string 3 ref
))
103 (setq new-referent
(match-string 5 ref
))
104 (when (> (length new-refere
) 0)
105 (when (> (length new-referent
) 0)
106 (setq args
(mapcar (lambda (ref) (cons :var ref
))
107 (org-babel-ref-split-args new-referent
))))
108 (when (> (length new-header-args
) 0)
109 (setq args
(append (org-babel-parse-header-arguments new-header-args
)
111 (setq ref new-refere
)))
112 (when (string-match "^\\(.+\\):\\(.+\\)$" ref
)
113 (setq split-file
(match-string 1 ref
))
114 (setq split-ref
(match-string 2 ref
))
115 (find-file split-file
) (setq ref split-ref
))
118 (goto-char (point-min))
119 (if (let ((result_regexp (concat "^[ \t]*#\\+\\(TBLNAME\\|RESNAME"
120 "\\|RESULTS\\):[ \t]*"
121 (regexp-quote ref
) "[ \t]*$"))
122 (regexp (concat org-babel-src-name-regexp
123 (regexp-quote ref
) "\\(\(.*\)\\)?" "[ \t]*$")))
124 ;; goto ref in the current buffer
126 (or (re-search-forward result_regexp nil t
)
127 (re-search-backward result_regexp nil t
)))
128 (re-search-forward regexp nil t
)
129 (re-search-backward regexp nil t
)
130 ;; check the Library of Babel
131 (setq lob-info
(cdr (assoc (intern ref
)
132 org-babel-library-of-babel
)))))
133 (unless lob-info
(goto-char (match-beginning 0)))
134 ;; ;; TODO: allow searching for names in other buffers
135 ;; (setq id-loc (org-id-find ref 'marker)
136 ;; buffer (marker-buffer id-loc)
137 ;; loc (marker-position id-loc))
138 ;; (move-marker id-loc nil)
139 (error "reference '%s' not found in this buffer" ref
))
142 (while (not (setq type
(org-babel-ref-at-ref-p)))
145 (if (or (= (point) (point-min)) (= (point) (point-max)))
146 (error "reference not found"))))
147 (let ((params (append args
'((:results .
"silent")))))
150 ('results-line
(org-babel-read-result))
151 ('table
(org-babel-read-table))
152 ('list
(org-babel-read-list))
153 ('file
(org-babel-read-link))
154 ('source-block
(org-babel-execute-src-block nil nil params
))
155 ('lob
(org-babel-execute-src-block nil lob-info params
)))))
158 (if (and index
(listp result
))
159 (org-babel-ref-index-list index result
)
162 (defun org-babel-ref-index-list (index lis
)
163 "Return the subset of LIS indexed by INDEX.
165 Indices are 0 based and negative indices count from the end of
166 LIS, so 0 references the first element of LIS and -1 references
167 the last. If INDEX is separated by \",\"s then each \"portion\"
168 is assumed to index into the next deepest nesting or dimension.
170 A valid \"portion\" can consist of either an integer index, two
171 integers separated by a \":\" in which case the entire range is
172 returned, or an empty string or \"*\" both of which are
173 interpreted to mean the entire range and as such are equivalent
175 (if (and (> (length index
) 0) (string-match "^\\([^,]*\\),?" index
))
176 (let ((ind-re "\\(\\([-[:digit:]]+\\):\\([-[:digit:]]+\\)\\|\*\\)")
177 (length (length lis
))
178 (portion (match-string 1 index
))
179 (remainder (substring index
(match-end 0))))
180 (flet ((wrap (num) (if (< num
0) (+ length num
) num
))
181 (open (ls) (if (and (listp ls
) (= (length ls
) 1)) (car ls
) ls
)))
184 (lambda (sub-lis) (org-babel-ref-index-list remainder sub-lis
))
185 (if (or (= 0 (length portion
)) (string-match ind-re portion
))
187 (lambda (n) (nth n lis
))
188 (apply 'org-number-sequence
189 (if (and (> (length portion
) 0) (match-string 2 portion
))
191 (wrap (string-to-number (match-string 2 portion
)))
192 (wrap (string-to-number (match-string 3 portion
))))
193 (list (wrap 0) (wrap -
1)))))
194 (list (nth (wrap (string-to-number portion
)) lis
)))))))
197 (defun org-babel-ref-split-args (arg-string)
198 "Split ARG-STRING into top-level arguments of balanced parenthesis."
199 (let ((index 0) (depth 0) (buffer "") holder return
)
200 ;; crawl along string, splitting at any ","s which are on the top level
201 (while (< index
(length arg-string
))
202 (setq holder
(substring arg-string index
(+ 1 index
)))
203 (setq buffer
(concat buffer holder
))
204 (setq index
(+ 1 index
))
206 ((string= holder
",")
208 (setq return
(reverse (cons (substring buffer
0 -
1) return
)))
210 ((or (string= holder
"(") (string= holder
"[")) (setq depth
(+ depth
1)))
211 ((or (string= holder
")") (string= holder
"]")) (setq depth
(- depth
1)))))
212 (mapcar #'org-babel-trim
(reverse (cons buffer return
)))))
214 (defvar org-bracket-link-regexp
)
215 (defun org-babel-ref-at-ref-p ()
216 "Return the type of reference located at point.
217 Return nil if none of the supported reference types are found.
218 Supported reference types are tables and source blocks."
219 (cond ((org-at-table-p) 'table
)
220 ((org-in-item-p) 'list
)
221 ((looking-at "^[ \t]*#\\+BEGIN_SRC") 'source-block
)
222 ((looking-at org-bracket-link-regexp
) 'file
)
223 ((looking-at org-babel-result-regexp
) 'results-line
)))
227 ;; arch-tag: ace4a4f4-ea38-4dac-8fe6-6f52fcc43b6d
229 ;;; ob-ref.el ends here