org-babel.el 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. ;;; org-babel.el --- facilitating communication between programming languages and people
  2. ;; Copyright (C) 2009 Eric Schulte, Dan Davison
  3. ;; Author: Eric Schulte, Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program 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, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; See org-babel.org in the parent directory for more information
  24. ;;; Code:
  25. (require 'org)
  26. (defun org-babel-execute-src-block-maybe ()
  27. "Detect if this is context for a org-babel src-block and if so
  28. then run `org-babel-execute-src-block'."
  29. (interactive)
  30. (let ((info (org-babel-get-src-block-info)))
  31. (if info (progn (org-babel-execute-src-block current-prefix-arg info) t) nil)))
  32. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-execute-src-block-maybe)
  33. (defun org-babel-pop-to-session-maybe ()
  34. "Detect if this is context for a org-babel src-block and if so
  35. then run `org-babel-pop-to-session'."
  36. (interactive)
  37. (let ((info (org-babel-get-src-block-info)))
  38. (if info (progn (org-babel-pop-to-session current-prefix-arg info) t) nil)))
  39. (add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
  40. (defvar org-babel-default-header-args '((:session . "none") (:results . "replace"))
  41. "Default arguments to use when evaluating a source block.")
  42. (defvar org-babel-default-inline-header-args '((:results . "silent") (:exports . "code"))
  43. "Default arguments to use when evaluating an inline source block.")
  44. (defvar org-babel-src-block-regexp nil
  45. "Regexp used to test when inside of a org-babel src-block")
  46. (defvar org-babel-inline-src-block-regexp nil
  47. "Regexp used to test when on an inline org-babel src-block")
  48. (defun org-babel-named-src-block-regexp-for-name (name)
  49. "Regexp used to match named src block."
  50. (concat "#\\+srcname:[ \t]*" (regexp-quote name) "[ \t\n]*"
  51. org-babel-src-block-regexp))
  52. (defun org-babel-set-interpreters (var value)
  53. (set-default var value)
  54. (setq org-babel-src-block-regexp
  55. (concat "#\\+begin_src \\("
  56. (mapconcat 'regexp-quote value "\\|")
  57. "\\)[ \t]*"
  58. "\\([ \t]+\\([^\n]+\\)\\)?\n" ;; match header arguments
  59. "\\([^\000]+?\\)#\\+end_src"))
  60. (setq org-babel-inline-src-block-regexp
  61. (concat "src_\\("
  62. (mapconcat 'regexp-quote value "\\|")
  63. "\\)"
  64. "\\(\\|\\[\\(.*\\)\\]\\)"
  65. "{\\([^\n]+\\)}")))
  66. (defun org-babel-add-interpreter (interpreter)
  67. "Add INTERPRETER to `org-babel-interpreters' and update
  68. `org-babel-src-block-regexp' appropriately."
  69. (unless (member interpreter org-babel-interpreters)
  70. (setq org-babel-interpreters (cons interpreter org-babel-interpreters))
  71. ;; (add-to-list 'org-babel-session-defaults (cons interpreter (format "org-babel-%s" interpreter)))
  72. (org-babel-set-interpreters 'org-babel-interpreters org-babel-interpreters)))
  73. (defcustom org-babel-interpreters '()
  74. "Interpreters allows for evaluation tags.
  75. This is a list of program names (as strings) that can evaluate code and
  76. insert the output into an Org-mode buffer. Valid choices are
  77. R Evaluate R code
  78. emacs-lisp Evaluate Emacs Lisp code and display the result
  79. sh Pass command to the shell and display the result
  80. perl The perl interpreter
  81. python The python interpreter
  82. ruby The ruby interpreter
  83. The source block regexp `org-babel-src-block-regexp' is updated
  84. when a new interpreter is added to this list through the
  85. customize interface. To add interpreters to this variable from
  86. lisp code use the `org-babel-add-interpreter' function."
  87. :group 'org-babel
  88. :set 'org-babel-set-interpreters
  89. :type '(set :greedy t
  90. (const "R")
  91. (const "emacs-lisp")
  92. (const "sh")
  93. (const "perl")
  94. (const "python")
  95. (const "ruby")))
  96. ;;; functions
  97. (defun org-babel-pop-to-session (&optional arg info)
  98. "Pop to the session of the current source-code block. If
  99. called with a prefix argument then evaluate the header arguments
  100. for the source block before entering the session. Copy the body
  101. of the source block to the kill ring."
  102. (interactive)
  103. (let* ((info (or info (org-babel-get-src-block-info)))
  104. (lang (first info))
  105. (body (second info))
  106. (params (third info))
  107. (session (cdr (assoc :session params))))
  108. (unless (member lang org-babel-interpreters)
  109. (error "Language is not in `org-babel-interpreters': %s" lang))
  110. ;; copy body to the kill ring
  111. (with-temp-buffer (insert (org-babel-trim body)) (copy-region-as-kill (point-min) (point-max)))
  112. ;; if called with a prefix argument, then process header arguments
  113. (if arg (funcall (intern (concat "org-babel-prep-session:" lang)) session params))
  114. ;; just to the session using pop-to-buffer
  115. (pop-to-buffer (funcall (intern (format "org-babel-%s-initiate-session" lang)) session))
  116. (move-end-of-line 1)))
  117. (defun org-babel-execute-src-block (&optional arg info params)
  118. "Execute the current source code block, and dump the results
  119. into the buffer immediately following the block. Results are
  120. commented by `org-toggle-fixed-width-section'. With optional
  121. prefix don't dump results into buffer but rather return the
  122. results in raw elisp (this is useful for automated execution of a
  123. source block).
  124. Optionally supply a value for INFO in the form returned by
  125. `org-babel-get-src-block-info'.
  126. Optionally supply a value for PARAMS which will be merged with
  127. the header arguments specified at the source code block."
  128. (interactive)
  129. (let* ((info (or info (org-babel-get-src-block-info)))
  130. (lang (first info))
  131. (body (second info))
  132. (params (org-babel-merge-params
  133. (third info) (org-babel-get-src-block-function-args) params))
  134. (processed-params (org-babel-process-params params))
  135. (result-params (third processed-params))
  136. (result-type (fourth processed-params))
  137. (cmd (intern (concat "org-babel-execute:" lang)))
  138. result)
  139. ;; (message "params=%S" params) ;; debugging statement
  140. (unless (member lang org-babel-interpreters)
  141. (error "Language is not in `org-babel-interpreters': %s" lang))
  142. (when arg (setq result-params (cons "silent" result-params)))
  143. (setq result (multiple-value-bind (session vars result-params result-type) processed-params
  144. (funcall cmd body params)))
  145. (if (eq result-type 'value)
  146. (setq result (org-babel-process-result result result-params)))
  147. (org-babel-insert-result result result-params)
  148. (case result-type (output nil) (value result))))
  149. (defun org-babel-process-result (result result-params)
  150. "Process returned value for insertion in buffer.
  151. Currently, this function forces to table output if :results
  152. vector has been supplied.
  153. You can see below the various fragments of results-processing
  154. code that were present in the language-specific files. Out of
  155. those fragments, I've moved the org-babel-python-table-or-results
  156. and org-babel-import-elisp-from-file functionality into the
  157. org-babel-*-evaluate functions. I think those should only be used
  158. in the :results value case, as in the 'output case we are not
  159. concerned with creating elisp versions of results. "
  160. (if (and (member "vector" result-params) (not (listp result)))
  161. (list (list result))
  162. result))
  163. (defun org-babel-execute-buffer (&optional arg)
  164. "Replace EVAL snippets in the entire buffer."
  165. (interactive "P")
  166. (save-excursion
  167. (goto-char (point-min))
  168. (while (re-search-forward org-babel-src-block-regexp nil t)
  169. (goto-char (match-beginning 0))
  170. (org-babel-execute-src-block arg)
  171. (goto-char (match-end 0)))))
  172. (defun org-babel-execute-subtree (&optional arg)
  173. "Replace EVAL snippets in the entire subtree."
  174. (interactive "P")
  175. (save-excursion
  176. (org-narrow-to-subtree)
  177. (org-babel-execute-buffer)
  178. (widen)))
  179. (defun org-babel-get-src-block-name ()
  180. "Return the name of the current source block if one exists.
  181. This function is analogous to org-babel-lob-get-info. For both
  182. functions, after they are called, (match-string 1) matches the
  183. function name, and (match-string 2) matches the function
  184. arguments inside the parentheses. I think perhaps these functions
  185. should be renamed to bring out this similarity, perhaps involving
  186. the word 'call'."
  187. (let ((case-fold-search t)
  188. (head (org-babel-where-is-src-block-head)))
  189. (if head
  190. (save-excursion
  191. (goto-char head)
  192. (if (save-excursion
  193. (forward-line -1)
  194. (looking-at "#\\+srcname:[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+\\)\(\\(.*\\)\)"))
  195. (org-babel-clean-text-properties (match-string 1)))))))
  196. (defun org-babel-get-src-block-info ()
  197. "Return the information of the current source block as a list
  198. of the following form. (language body header-arguments-alist)"
  199. (let ((case-fold-search t) head)
  200. (if (setq head (org-babel-where-is-src-block-head))
  201. (save-excursion (goto-char head) (org-babel-parse-src-block-match))
  202. (if (save-excursion ;; inline source block
  203. (re-search-backward "[ \f\t\n\r\v]" nil t)
  204. (forward-char 1)
  205. (looking-at org-babel-inline-src-block-regexp))
  206. (org-babel-parse-inline-src-block-match)
  207. nil)))) ;; indicate that no source block was found
  208. (defun org-babel-get-src-block-function-args ()
  209. (when (org-babel-get-src-block-name)
  210. (mapcar (lambda (ref) (cons :var ref))
  211. (split-string (org-babel-clean-text-properties (match-string 2))
  212. ",[ \f\t\n\r\v]*"))))
  213. (defmacro org-babel-map-source-blocks (file &rest body)
  214. "Evaluate BODY forms on each source-block in FILE."
  215. (declare (indent 1))
  216. `(save-window-excursion
  217. (find-file ,file) (goto-char (point-min))
  218. (while (re-search-forward org-babel-src-block-regexp nil t)
  219. (goto-char (match-beginning 0))
  220. (save-match-data ,@body)
  221. (goto-char (match-end 0)))))
  222. (defun org-babel-parse-src-block-match ()
  223. (let* ((lang (org-babel-clean-text-properties (match-string 1)))
  224. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  225. (list lang
  226. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  227. (org-babel-merge-params
  228. org-babel-default-header-args
  229. (if (boundp lang-headers) (eval lang-headers) nil)
  230. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) "")))))))
  231. (defun org-babel-parse-inline-src-block-match ()
  232. (let* ((lang (org-babel-clean-text-properties (match-string 1)))
  233. (lang-headers (intern (concat "org-babel-default-header-args:" lang))))
  234. (list lang
  235. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  236. (org-babel-merge-params
  237. org-babel-default-inline-header-args
  238. (if (boundp lang-headers) (eval lang-headers) nil)
  239. (org-babel-parse-header-arguments (org-babel-clean-text-properties (or (match-string 3) "")))))))
  240. (defun org-babel-parse-header-arguments (arg-string)
  241. "Parse a string of header arguments returning an alist."
  242. (if (> (length arg-string) 0)
  243. (delq nil
  244. (mapcar
  245. (lambda (arg)
  246. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  247. (cons (intern (concat ":" (match-string 1 arg)))
  248. (org-babel-chomp (match-string 2 arg)))
  249. (cons (intern (concat ":" arg)) nil)))
  250. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  251. (defun org-babel-process-params (params)
  252. "Parse params and resolve references.
  253. Return a list (session vars result-params result-type). These are
  254. made available to the org-babel-execute:LANG functions via
  255. multiple-value-bind."
  256. (let* ((session (cdr (assoc :session params)))
  257. (vars (org-babel-ref-variables params))
  258. (result-params (split-string (or (cdr (assoc :results params)) "")))
  259. (result-type (cond ((member "output" result-params) 'output)
  260. ((member "value" result-params) 'value)
  261. (t 'value))))
  262. (list session vars result-params result-type)))
  263. (defun org-babel-where-is-src-block-head ()
  264. "Return the point at the beginning of the current source
  265. block. Specifically at the beginning of the #+BEGIN_SRC line.
  266. If the point is not on a source block then return nil."
  267. (let ((initial (point)) top bottom)
  268. (or
  269. (save-excursion ;; on a #+srcname: line
  270. (beginning-of-line 1)
  271. (and (looking-at "#\\+srcname") (forward-line 1)
  272. (looking-at org-babel-src-block-regexp)
  273. (point)))
  274. (save-excursion ;; on a #+begin_src line
  275. (beginning-of-line 1)
  276. (and (looking-at org-babel-src-block-regexp)
  277. (point)))
  278. (save-excursion ;; inside a src block
  279. (and
  280. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  281. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  282. (< top initial) (< initial bottom)
  283. (goto-char top) (looking-at org-babel-src-block-regexp)
  284. (point))))))
  285. (defun org-babel-goto-named-source-block (&optional name)
  286. "Go to a named source-code block."
  287. (interactive "ssource-block name: ")
  288. (let ((point (org-babel-find-named-block name)))
  289. (if point
  290. ;; taken from `org-open-at-point'
  291. (progn (goto-char point) (org-show-context))
  292. (message "source-code block '%s' not found in this buffer" name))))
  293. (defun org-babel-find-named-block (name)
  294. "Find a named source-code block.
  295. Return the location of the source block identified by
  296. #+srcname NAME, or nil if no such block exists. Set match data
  297. according to org-babel-named-src-block-regexp."
  298. (save-excursion
  299. (let ((case-fold-search t)
  300. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  301. (goto-char (point-min))
  302. (when (or (re-search-forward regexp nil t)
  303. (re-search-backward regexp nil t))
  304. (match-beginning 0)))))
  305. (defun org-babel-find-named-result (name)
  306. "Return the location of the result named NAME in the current
  307. buffer or nil if no such result exists."
  308. (save-excursion
  309. (goto-char (point-min))
  310. (when (re-search-forward (concat "#\\+resname:[ \t]*" (regexp-quote name)) nil t)
  311. (move-beginning-of-line 1) (point))))
  312. (defun org-babel-where-is-src-block-result ()
  313. "Return the point at the beginning of the result of the current
  314. source block. Specifically at the beginning of the #+RESNAME:
  315. line. If no result exists for this block then create a
  316. #+RESNAME: line following the source block."
  317. (save-excursion
  318. (let* ((on-lob-line (progn (beginning-of-line 1)
  319. (looking-at org-babel-lob-one-liner-regexp)))
  320. (name (if on-lob-line (org-babel-lob-get-info) (org-babel-get-src-block-name)))
  321. (head (unless on-lob-line (org-babel-where-is-src-block-head))) end)
  322. (when head (goto-char head))
  323. (or (and name (message name) (org-babel-find-named-result name))
  324. (and (or on-lob-line (re-search-forward "#\\+end_src" nil t))
  325. (progn (move-end-of-line 1)
  326. (if (eobp) (insert "\n") (forward-char 1))
  327. (setq end (point))
  328. (or (progn ;; either an unnamed #+resname: line already exists
  329. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  330. (move-beginning-of-line 1) (looking-at "#\\+resname:"))
  331. (progn ;; or we need to back up and make one ourselves
  332. (goto-char end) (open-line 2) (forward-char 1)
  333. (insert (concat "#+resname:" (if name (concat " " name))))
  334. (move-beginning-of-line 1) t)))
  335. (point))))))
  336. (defun org-babel-insert-result (result &optional insert)
  337. "Insert RESULT into the current buffer after the end of the
  338. current source block. With optional argument INSERT controls
  339. insertion of results in the org-mode file. INSERT can take the
  340. following values...
  341. t ------ the default option, simply insert the results after the
  342. source block
  343. replace - insert results after the source block replacing any
  344. previously inserted results
  345. silent -- no results are inserted"
  346. (if (stringp result)
  347. (progn
  348. (setq result (org-babel-clean-text-properties result))
  349. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  350. (unless (listp result) (setq result (format "%S" result))))
  351. (if (and insert (member "replace" insert) (not (member "silent" insert)))
  352. (org-babel-remove-result))
  353. (if (= (length result) 0)
  354. (if (member "value" result-params)
  355. (message "No result returned by source block")
  356. (message "Source block produced no output"))
  357. (if (and insert (member "silent" insert))
  358. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  359. (when (and (stringp result) ;; ensure results end in a newline
  360. (not (or (string-equal (substring result -1) "\n")
  361. (string-equal (substring result -1) "\r"))))
  362. (setq result (concat result "\n")))
  363. (save-excursion
  364. (let ((existing-result (org-babel-where-is-src-block-result)))
  365. (when existing-result (goto-char existing-result) (forward-line 1)))
  366. (if (stringp result) ;; assume the result is a table if it's not a string
  367. (if (member "file" insert)
  368. (insert result)
  369. (org-babel-examplize-region (point) (progn (insert result) (point))))
  370. (progn
  371. (insert
  372. (concat (orgtbl-to-orgtbl
  373. (if (consp (car result)) result (list result))
  374. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  375. (forward-line -1)
  376. (org-cycle))))
  377. (message "finished"))))
  378. (defun org-babel-result-to-org-string (result)
  379. "Return RESULT as a string in org-mode format. This function
  380. relies on `org-babel-insert-result'."
  381. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  382. (defun org-babel-remove-result ()
  383. "Remove the result of the current source block."
  384. (interactive)
  385. (save-excursion
  386. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  387. (delete-region (point) (org-babel-result-end))))
  388. (defun org-babel-result-end ()
  389. "Return the point at the end of the current set of results"
  390. (save-excursion
  391. (if (org-at-table-p)
  392. (org-table-end)
  393. (while (if (looking-at "\\(: \\|\\[\\[\\)")
  394. (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  395. (forward-line 1)) t))
  396. (forward-line 1))
  397. (forward-line -1)
  398. (point))))
  399. (defun org-babel-result-to-file (result)
  400. "Return an `org-mode' link with the path being the value or
  401. RESULT, and the display being the `file-name-nondirectory' if
  402. non-nil."
  403. (let ((name (file-name-nondirectory result)))
  404. (concat "[[file:" result (if name (concat "][" name "]]") "]]"))))
  405. (defun org-babel-examplize-region (beg end)
  406. "Comment out region using the ': ' org example quote."
  407. (interactive "*r")
  408. (let ((size (abs (- (line-number-at-pos end)
  409. (line-number-at-pos beg)))))
  410. (if (= size 0)
  411. (let ((result (buffer-substring beg end)))
  412. (delete-region beg end)
  413. (insert (concat ": " result)))
  414. (save-excursion
  415. (goto-char beg)
  416. (dotimes (n size)
  417. (move-beginning-of-line 1) (insert ": ") (forward-line 1))))))
  418. (defun org-babel-merge-params (&rest plists)
  419. "Combine all parameter association lists in PLISTS. Later
  420. elements of PLISTS override the values of previous element. This
  421. takes into account some special considerations for certain
  422. parameters when merging lists."
  423. (let (params results vars var ref)
  424. (flet ((e-merge (exclusive-groups &rest result-params)
  425. (let (output)
  426. (mapc (lambda (new-params)
  427. (mapc (lambda (new-param)
  428. (mapc (lambda (exclusive-group)
  429. (when (member new-param exclusive-group)
  430. (mapcar (lambda (excluded-param)
  431. (setq output (delete excluded-param output)))
  432. exclusive-group)))
  433. exclusive-groups)
  434. (setq output (org-uniquify (cons new-param output))))
  435. new-params))
  436. result-params)
  437. output)))
  438. (mapc (lambda (plist)
  439. (mapc (lambda (pair)
  440. (case (car pair)
  441. (:var
  442. ;; we want only one specification per variable
  443. (when (string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=[ \t]*\\([^\f\n\r\v]+\\)$" (cdr pair))
  444. ;; TODO: When is this not true?
  445. (setq var (intern (match-string 1 (cdr pair)))
  446. ref (match-string 2 (cdr pair))
  447. vars (cons (cons var ref) (assq-delete-all var vars)))))
  448. (:results
  449. ;; maintain list of unique :results specifications
  450. (setq results (e-merge '(("file" "vector" "scalar")
  451. ("replace" "silent"))
  452. results (split-string (cdr pair)))))
  453. (t
  454. ;; replace: this covers e.g. :session
  455. (setq params (cons pair (assq-delete-all (car pair) params))))))
  456. plist))
  457. plists))
  458. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  459. (while vars (setq params (cons (cons :var (pop vars)) params)))
  460. (cons (cons :results (mapconcat 'identity results " ")) params)))
  461. (defun org-babel-clean-text-properties (text)
  462. "Strip all properties from text return."
  463. (set-text-properties 0 (length text) nil text) text)
  464. (defun org-babel-strip-protective-commas (body)
  465. "Strip protective commas from bodies of source blocks."
  466. (replace-regexp-in-string "^,#" "#" body))
  467. (defun org-babel-read (cell)
  468. "Convert the string value of CELL to a number if appropriate.
  469. Otherwise if cell looks like lisp (meaning it starts with a
  470. \"(\" or a \"'\") then read it as lisp, otherwise return it
  471. unmodified as a string.
  472. This is taken almost directly from `org-read-prop'."
  473. (if (and (stringp cell) (not (equal cell "")))
  474. (or (org-babel-number-p cell)
  475. (if (or (equal "(" (substring cell 0 1))
  476. (equal "'" (substring cell 0 1)))
  477. (read cell)
  478. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  479. cell))
  480. (defun org-babel-number-p (string)
  481. "Return t if STRING represents a number"
  482. (if (string-match "^[[:digit:]]*\\.?[[:digit:]]*$" string)
  483. (string-to-number string)))
  484. (defun org-babel-import-elisp-from-file (file-name)
  485. "Read the results located at FILE-NAME into an elisp table. If
  486. the table is trivial, then return it as a scalar."
  487. (let (result)
  488. (with-temp-buffer
  489. (condition-case nil
  490. (progn
  491. (org-table-import file-name nil)
  492. (delete-file file-name)
  493. (setq result (mapcar (lambda (row)
  494. (mapcar #'org-babel-string-read row))
  495. (org-table-to-lisp))))
  496. (error nil))
  497. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  498. (if (consp (car result))
  499. (if (null (cdr (car result)))
  500. (caar result)
  501. result)
  502. (car result))
  503. result))))
  504. (defun org-babel-string-read (cell)
  505. "Strip nested \"s from around strings in exported R values."
  506. (org-babel-read (or (and (stringp cell)
  507. (string-match "\\\"\\(.+\\)\\\"" cell)
  508. (match-string 1 cell))
  509. cell)))
  510. (defun org-babel-reverse-string (string)
  511. (apply 'string (reverse (string-to-list string))))
  512. (defun org-babel-chomp (string &optional regexp)
  513. "Remove any trailing space or carriage returns characters from
  514. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  515. overwritten by specifying a regexp as a second argument."
  516. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  517. (setq string (substring string 0 -1)))
  518. string)
  519. (defun org-babel-trim (string &optional regexp)
  520. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  521. (org-babel-chomp (org-babel-reverse-string
  522. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  523. (provide 'org-babel)
  524. ;;; org-babel.el ends here