org: fix commit 0911edfac8
[org-mode.git] / lisp / ob-ref.el
blobed480100aa7f0098135ec3c9eb0139012f3293a7
1 ;;; ob-ref.el --- org-babel functions for referencing external data
3 ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 ;; Authors: Eric Schulte
6 ;; Dan Davison
7 ;; Keywords: literate programming, reproducible research
8 ;; 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/>.
25 ;;; Commentary:
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
33 ;; will be assigned
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
41 ;; same file would be
43 ;; #+NAME: sandbox
44 ;; | 1 | 2 | 3 |
45 ;; | 4 | org-babel | 6 |
47 ;; #+begin_src emacs-lisp :var table=sandbox
48 ;; (message table)
49 ;; #+end_src
51 ;;; Code:
52 (require 'ob-core)
53 (eval-when-compile
54 (require 'cl))
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-at-item-p "org-list" ())
60 (declare-function org-narrow-to-subtree "org" ())
61 (declare-function org-id-find-id-in-file "org-id" (id file &optional markerp))
62 (declare-function org-id-find-id-file "org-id" (id))
63 (declare-function org-show-context "org" (&optional key))
64 (declare-function org-pop-to-buffer-same-window
65 "org-compat" (&optional buffer-or-name norecord label))
66 (declare-function org-babel-lob-execute "ob-lob" (info))
67 (declare-function org-babel-lob-get-info "ob-lob" nil)
69 (defvar org-babel-ref-split-regexp
70 "[ \f\t\n\r\v]*\\(.+?\\)[ \f\t\n\r\v]*=[ \f\t\n\r\v]*\\(.+\\)[ \f\t\n\r\v]*")
72 (defvar org-babel-update-intermediate nil
73 "Update the in-buffer results of code blocks executed to resolve references.")
75 (defun org-babel-ref-parse (assignment)
76 "Parse a variable ASSIGNMENT in a header argument.
77 If the right hand side of the assignment has a literal value
78 return that value, otherwise interpret as a reference to an
79 external resource and find its value using
80 `org-babel-ref-resolve'. Return a list with two elements. The
81 first element of the list will be the name of the variable, and
82 the second will be an emacs-lisp representation of the value of
83 the variable."
84 (when (string-match org-babel-ref-split-regexp assignment)
85 (let ((var (match-string 1 assignment))
86 (ref (match-string 2 assignment)))
87 (cons (intern var)
88 (let ((out (save-excursion
89 (when org-babel-current-src-block-location
90 (goto-char (if (markerp org-babel-current-src-block-location)
91 (marker-position org-babel-current-src-block-location)
92 org-babel-current-src-block-location)))
93 (org-babel-read ref))))
94 (if (equal out ref)
95 (if (string-match "^\".*\"$" ref)
96 (read ref)
97 (org-babel-ref-resolve ref))
98 out))))))
100 (defun org-babel-ref-goto-headline-id (id)
101 (goto-char (point-min))
102 (let ((rx (regexp-quote id)))
103 (or (re-search-forward
104 (concat "^[ \t]*:CUSTOM_ID:[ \t]+" rx "[ \t]*$") nil t)
105 (let* ((file (org-id-find-id-file id))
106 (m (when file (org-id-find-id-in-file id file 'marker))))
107 (when (and file m)
108 (message "file:%S" file)
109 (org-pop-to-buffer-same-window (marker-buffer m))
110 (goto-char m)
111 (move-marker m nil)
112 (org-show-context)
113 t)))))
115 (defun org-babel-ref-headline-body ()
116 (save-restriction
117 (org-narrow-to-subtree)
118 (buffer-substring
119 (save-excursion (goto-char (point-min))
120 (forward-line 1)
121 (when (looking-at "[ \t]*:PROPERTIES:")
122 (re-search-forward ":END:" nil)
123 (forward-char))
124 (point))
125 (point-max))))
127 (defvar org-babel-lob-one-liner-regexp)
128 (defvar org-babel-library-of-babel)
129 (defun org-babel-ref-resolve (ref)
130 "Resolve the reference REF and return its value."
131 (save-window-excursion
132 (save-excursion
133 (let ((case-fold-search t)
134 type args new-refere new-header-args new-referent result
135 lob-info split-file split-ref index index-row index-col id)
136 ;; if ref is indexed grab the indices -- beware nested indices
137 (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref)
138 (let ((str (substring ref 0 (match-beginning 0))))
139 (= (org-count ?( str) (org-count ?) str))))
140 (setq index (match-string 1 ref))
141 (setq ref (substring ref 0 (match-beginning 0))))
142 ;; assign any arguments to pass to source block
143 (when (string-match
144 "^\\(.+?\\)\\(\\[\\(.*\\)\\]\\|\\(\\)\\)\(\\(.*\\)\)$" ref)
145 (setq new-refere (match-string 1 ref))
146 (setq new-header-args (match-string 3 ref))
147 (setq new-referent (match-string 5 ref))
148 (when (> (length new-refere) 0)
149 (when (> (length new-referent) 0)
150 (setq args (mapcar (lambda (ref) (cons :var ref))
151 (org-babel-ref-split-args new-referent))))
152 (when (> (length new-header-args) 0)
153 (setq args (append (org-babel-parse-header-arguments
154 new-header-args) args)))
155 (setq ref new-refere)))
156 (when (string-match "^\\(.+\\):\\(.+\\)$" ref)
157 (setq split-file (match-string 1 ref))
158 (setq split-ref (match-string 2 ref))
159 (find-file split-file) (setq ref split-ref))
160 (save-restriction
161 (widen)
162 (goto-char (point-min))
163 (if (let ((src-rx (org-babel-named-src-block-regexp-for-name ref))
164 (res-rx (org-babel-named-data-regexp-for-name ref)))
165 ;; goto ref in the current buffer
167 ;; check for code blocks
168 (re-search-forward src-rx nil t)
169 ;; check for named data
170 (re-search-forward res-rx nil t)
171 ;; check for local or global headlines by id
172 (setq id (org-babel-ref-goto-headline-id ref))
173 ;; check the Library of Babel
174 (setq lob-info (cdr (assoc (intern ref)
175 org-babel-library-of-babel)))))
176 (unless (or lob-info id) (goto-char (match-beginning 0)))
177 ;; ;; TODO: allow searching for names in other buffers
178 ;; (setq id-loc (org-id-find ref 'marker)
179 ;; buffer (marker-buffer id-loc)
180 ;; loc (marker-position id-loc))
181 ;; (move-marker id-loc nil)
182 (error "Reference '%s' not found in this buffer" ref))
183 (cond
184 (lob-info (setq type 'lob))
185 (id (setq type 'id))
186 ((and (looking-at org-babel-src-name-regexp)
187 (save-excursion
188 (forward-line 1)
189 (or (looking-at org-babel-src-block-regexp)
190 (looking-at org-babel-multi-line-header-regexp))))
191 (setq type 'source-block))
192 ((and (looking-at org-babel-src-name-regexp)
193 (save-excursion
194 (forward-line 1)
195 (looking-at org-babel-lob-one-liner-regexp)))
196 (setq type 'call-line))
197 (t (while (not (setq type (org-babel-ref-at-ref-p)))
198 (forward-line 1)
199 (beginning-of-line)
200 (if (or (= (point) (point-min)) (= (point) (point-max)))
201 (error "Reference not found")))))
202 (let ((params (append args '((:results . "silent")))))
203 (setq result
204 (case type
205 (results-line (org-babel-read-result))
206 (table (org-babel-read-table))
207 (list (org-babel-read-list))
208 (file (org-babel-read-link))
209 (source-block (org-babel-execute-src-block
210 nil nil (if org-babel-update-intermediate
211 nil params)))
212 (call-line (save-excursion
213 (forward-line 1)
214 (org-babel-lob-execute
215 (org-babel-lob-get-info))))
216 (lob (org-babel-execute-src-block
217 nil lob-info params))
218 (id (org-babel-ref-headline-body)))))
219 (if (symbolp result)
220 (format "%S" result)
221 (if (and index (listp result))
222 (org-babel-ref-index-list index result)
223 result)))))))
225 (defun org-babel-ref-index-list (index lis)
226 "Return the subset of LIS indexed by INDEX.
228 Indices are 0 based and negative indices count from the end of
229 LIS, so 0 references the first element of LIS and -1 references
230 the last. If INDEX is separated by \",\"s then each \"portion\"
231 is assumed to index into the next deepest nesting or dimension.
233 A valid \"portion\" can consist of either an integer index, two
234 integers separated by a \":\" in which case the entire range is
235 returned, or an empty string or \"*\" both of which are
236 interpreted to mean the entire range and as such are equivalent
237 to \"0:-1\"."
238 (if (and (> (length index) 0) (string-match "^\\([^,]*\\),?" index))
239 (let* ((ind-re "\\(\\([-[:digit:]]+\\):\\([-[:digit:]]+\\)\\|\*\\)")
240 (lgth (length lis))
241 (portion (match-string 1 index))
242 (remainder (substring index (match-end 0)))
243 (wrap (lambda (num) (if (< num 0) (+ lgth num) num)))
244 (open (lambda (ls) (if (and (listp ls) (= (length ls) 1)) (car ls) ls))))
245 (funcall
246 open
247 (mapcar
248 (lambda (sub-lis)
249 (if (listp sub-lis)
250 (org-babel-ref-index-list remainder sub-lis)
251 sub-lis))
252 (if (or (= 0 (length portion)) (string-match ind-re portion))
253 (mapcar
254 (lambda (n) (nth n lis))
255 (apply 'org-number-sequence
256 (if (and (> (length portion) 0) (match-string 2 portion))
257 (list
258 (funcall wrap (string-to-number (match-string 2 portion)))
259 (funcall wrap (string-to-number (match-string 3 portion))))
260 (list (funcall wrap 0) (funcall wrap -1)))))
261 (list (nth (funcall wrap (string-to-number portion)) lis))))))
262 lis))
264 (defun org-babel-ref-split-args (arg-string)
265 "Split ARG-STRING into top-level arguments of balanced parenthesis."
266 (mapcar #'org-babel-trim (org-babel-balanced-split arg-string 44)))
268 (defvar org-bracket-link-regexp)
269 (defun org-babel-ref-at-ref-p ()
270 "Return the type of reference located at point.
271 Return nil if none of the supported reference types are found.
272 Supported reference types are tables and source blocks."
273 (cond ((org-at-table-p) 'table)
274 ((org-at-item-p) 'list)
275 ((looking-at "^[ \t]*#\\+BEGIN_SRC") 'source-block)
276 ((looking-at org-bracket-link-regexp) 'file)
277 ((looking-at org-babel-result-regexp) 'results-line)))
279 (provide 'ob-ref)
283 ;;; ob-ref.el ends here