ob-ref.el 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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: 0.01
  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. (defun org-babel-ref-variables (params)
  43. "Takes a parameter alist, and return an alist of variable
  44. names, and the emacs-lisp representation of the related value."
  45. (let ((assignments
  46. (delq nil (mapcar (lambda (pair) (if (eq (car pair) :var) (cdr pair))) params)))
  47. (others
  48. (delq nil (mapcar (lambda (pair) (unless (eq :var (car pair)) pair)) params))))
  49. (mapcar (lambda (assignment) (org-babel-ref-parse assignment)) assignments)))
  50. (defvar org-babel-ref-split-regexp
  51. "[ \f\t\n\r\v]*\\(.+?\\)[ \f\t\n\r\v]*=[ \f\t\n\r\v]*\\(.+\\)[ \f\t\n\r\v]*")
  52. (defun org-babel-ref-parse (assignment &optional params)
  53. "Parse a variable ASSIGNMENT in a header argument. If the
  54. right hand side of the assignment has a literal value return that
  55. value, otherwise interpret as a reference to an external resource
  56. and find it's value using `org-babel-ref-resolve-reference'.
  57. Return a list with two elements. The first element of the list
  58. will be the name of the variable, and the second will be an
  59. emacs-lisp representation of the value of the variable."
  60. (if (string-match org-babel-ref-split-regexp assignment)
  61. (let ((var (match-string 1 assignment))
  62. (ref (match-string 2 assignment)))
  63. (cons (intern var)
  64. ((lambda (val)
  65. (if (equal :ob-must-be-reference val)
  66. (org-babel-ref-resolve-reference ref params)
  67. val)) (org-babel-ref-literal ref))))))
  68. (defun org-babel-ref-literal (ref)
  69. "Determine if the right side of a header argument variable
  70. assignment is a literal value or is a reference to some external
  71. resource. REF should be a string of the right hand side of the
  72. assignment. If REF is literal then return it's value, otherwise
  73. return nil."
  74. (let ((out (org-babel-read ref)))
  75. (if (equal out ref)
  76. (if (string-match "^\".+\"$" ref)
  77. (read ref)
  78. :ob-must-be-reference)
  79. out)))
  80. (defvar org-babel-library-of-babel)
  81. (defun org-babel-ref-resolve-reference (ref &optional params)
  82. "Resolve the reference REF and return its value."
  83. (save-excursion
  84. (let ((case-fold-search t)
  85. type args new-refere new-referent result lob-info split-file split-ref
  86. index index-row index-col)
  87. ;; if ref is indexed grab the indices -- beware nested indicies
  88. (when (and (string-match "\\[\\(.+\\)\\]" ref)
  89. (let ((str (substring ref 0 (match-beginning 0))))
  90. (= (length (org-remove-if-not
  91. (lambda (el) (equal ?( el)) (string-to-list "((eric))")))
  92. (length (org-remove-if-not
  93. (lambda (el) (equal ?) el)) (string-to-list "((eric))"))))))
  94. (setq index (match-string 1 ref))
  95. (setq ref (substring ref 0 (match-beginning 0))))
  96. ;; assign any arguments to pass to source block
  97. (when (string-match "^\\(.+?\\)\(\\(.*\\)\)$" ref)
  98. (setq new-refere (match-string 1 ref))
  99. (setq new-referent (match-string 2 ref))
  100. ;; (message "new-refere=%S, new-referent=%S" new-refere new-referent) ;; debugging
  101. (when (> (length new-refere) 0)
  102. (if (> (length new-referent) 0)
  103. (setq args (mapcar (lambda (ref) (cons :var ref))
  104. (org-babel-ref-split-args new-referent))))
  105. ;; (message "args=%S" args) ;; debugging
  106. (setq ref new-refere)))
  107. (when (string-match "^\\(.+\\):\\(.+\\)$" ref)
  108. (setq split-file (match-string 1 ref))
  109. (setq split-ref (match-string 2 ref))
  110. (find-file split-file) (setq ref split-ref))
  111. (save-restriction
  112. (widen)
  113. (goto-char (point-min))
  114. (if (let ((result_regexp (concat "^[ \t]*#\\+\\(TBLNAME\\|RESNAME\\|RESULTS\\):[ \t]*"
  115. (regexp-quote ref) "[ \t]*$"))
  116. (regexp (concat org-babel-source-name-regexp
  117. (regexp-quote ref) "\\(\(.*\)\\)?" "[ \t]*$")))
  118. ;; goto ref in the current buffer
  119. (or (and (not args)
  120. (or (re-search-forward result_regexp nil t)
  121. (re-search-backward result_regexp nil t)))
  122. (re-search-forward regexp nil t)
  123. (re-search-backward regexp nil t)
  124. ;; check the Library of Babel
  125. (setq lob-info (cdr (assoc (intern ref) org-babel-library-of-babel)))))
  126. (unless lob-info (goto-char (match-beginning 0)))
  127. ;; ;; TODO: allow searching for names in other buffers
  128. ;; (setq id-loc (org-id-find ref 'marker)
  129. ;; buffer (marker-buffer id-loc)
  130. ;; loc (marker-position id-loc))
  131. ;; (move-marker id-loc nil)
  132. (progn (message (format "reference '%s' not found in this buffer" ref))
  133. (error (format "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. If INDEX is
  156. separated by ,s then each PORTION is assumed to index into the
  157. next deepest nesting or dimension. A valid PORTION can consist
  158. of either an integer index, or two integers separated by a : in
  159. which case the entire range is returned."
  160. (if (string-match "^,?\\([^,]+\\)" index)
  161. (let ((length (length lis))
  162. (portion (match-string 1 index))
  163. (remainder (substring index (match-end 0))))
  164. (flet ((wrap (num) (if (< num 0) (+ length num) num))
  165. (open (lis) (if (and (listp lis) (= (length lis) 1)) (car lis) lis)))
  166. (open
  167. (mapcar
  168. (lambda (sub-lis) (org-babel-ref-index-list remainder sub-lis))
  169. (if (string-match "\\(\\([-[:digit:]]+\\):\\([-[:digit:]]+\\)\\|\*\\)"
  170. portion)
  171. (mapcar (lambda (n) (nth n lis))
  172. (apply 'number-sequence
  173. (if (match-string 2 portion)
  174. (list
  175. (wrap (string-to-number (match-string 2 portion)))
  176. (wrap (string-to-number (match-string 3 portion))))
  177. (list (wrap 0) (wrap -1)))))
  178. (list (nth (wrap (string-to-number portion)) lis)))))))
  179. lis))
  180. (defun org-babel-ref-split-args (arg-string)
  181. "Split ARG-STRING into top-level arguments of balanced parenthesis."
  182. (let ((index 0) (depth 0) (buffer "") holder return)
  183. ;; crawl along string, splitting at any ","s which are on the top level
  184. (while (< index (length arg-string))
  185. (setq holder (substring arg-string index (+ 1 index)))
  186. (setq buffer (concat buffer holder))
  187. (setq index (+ 1 index))
  188. (cond
  189. ((string= holder ",")
  190. (when (= depth 0)
  191. (setq return (reverse (cons (substring buffer 0 -1) return)))
  192. (setq buffer "")))
  193. ((or (string= holder "(") (string= holder "[")) (setq depth (+ depth 1)))
  194. ((or (string= holder ")") (string= holder "]")) (setq depth (- depth 1)))))
  195. (mapcar #'org-babel-trim (reverse (cons buffer return)))))
  196. (defvar org-bracket-link-regexp)
  197. (defun org-babel-ref-at-ref-p ()
  198. "Return the type of reference located at point or nil if none
  199. of the supported reference types are found. Supported reference
  200. types are tables and source blocks."
  201. (cond ((org-at-table-p) 'table)
  202. ((looking-at "^[ \t]*#\\+BEGIN_SRC") 'source-block)
  203. ((looking-at org-bracket-link-regexp) 'file)
  204. ((looking-at org-babel-result-regexp) 'results-line)))
  205. (provide 'ob-ref)
  206. ;; arch-tag: ace4a4f4-ea38-4dac-8fe6-6f52fcc43b6d
  207. ;;; ob-ref.el ends here