ob-ref.el 9.7 KB

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