org-babel.el 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  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 . "results"))
  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. (result-params (split-string (or (cdr (assoc :results params)) "")))
  135. (result-type (cond ((member "output" result-params) 'output)
  136. ((member "value" result-params) 'value)
  137. (t 'value)))
  138. (cmd (intern (concat "org-babel-execute:" lang)))
  139. result)
  140. ;; (message (format "params=%S" params)) ;; debugging
  141. (unless (member lang org-babel-interpreters)
  142. (error "Language is not in `org-babel-interpreters': %s" lang))
  143. (when arg (setq result-params (cons "silent" result-params)))
  144. (setq result (org-babel-process-result (funcall cmd body params) result-type))
  145. (org-babel-insert-result result result-params)
  146. (case result-type (output nil) (value result))))
  147. (defun org-babel-process-result (result result-type)
  148. "This doesn't do anything currently.
  149. You can see below the various fragments of results-processing
  150. code that were present in the language-specific files. Out of
  151. those fragments, I've moved the
  152. org-babel-python-table-or-results and
  153. org-babel-import-elisp-from-file functionality into the
  154. org-babel-*-evaluate functions. I think those should only be
  155. used in the :results value case, as in the 'output case we are
  156. not concerned with creating elisp versions of results.
  157. The rest of the functionality below, concerned with vectorising
  158. or scalarising results is commented out, has not yet been
  159. replaced, and may need to be reinstated in this function. "
  160. result)
  161. ;; ;; ruby
  162. ;; (if (member "scalar" result-params)
  163. ;; results
  164. ;; (case result-type ;; process results based on the result-type
  165. ;; ('output (let ((tmp-file (make-temp-file "org-babel-ruby")))
  166. ;; (with-temp-file tmp-file (insert results))
  167. ;; (org-babel-import-elisp-from-file tmp-file)))
  168. ;; ('value (org-babel-ruby-table-or-results results))))))
  169. ;; python
  170. ;; (if (member "scalar" result-params)
  171. ;; results
  172. ;; (setq result (case result-type ;; process results based on the result-type
  173. ;; ('output (let ((tmp-file (make-temp-file "org-babel-python")))
  174. ;; (with-temp-file tmp-file (insert results))
  175. ;; (org-babel-import-elisp-from-file tmp-file)))
  176. ;; ('value (org-babel-python-table-or-results results))))
  177. ;; (if (and (member "vector" results) (not (listp results)))
  178. ;; (list (list results))
  179. ;; results))))
  180. ;; ;; sh
  181. ;; (if (member "scalar" result-params)
  182. ;; results
  183. ;; (setq results (let ((tmp-file (make-temp-file "org-babel-shell")))
  184. ;; (with-temp-file tmp-file (insert results))
  185. ;; (org-babel-import-elisp-from-file tmp-file)))
  186. ;; (if (and (member "vector" results) (not (listp results)))
  187. ;; (list (list results))
  188. ;; results))))
  189. ;; ;; R
  190. ;; (setq results (if (member "scalar" result-params)
  191. ;; results
  192. ;; (let ((tmp-file (make-temp-file "org-babel-R")))
  193. ;; (with-temp-file tmp-file (insert results))
  194. ;; (org-babel-import-elisp-from-file tmp-file))))
  195. ;; (if (and (member "vector" result-params) (not (listp results)))
  196. ;; (list (list results))
  197. ;; results))))
  198. ;; ;; rest of org-babel-execute-src-block
  199. ;; ;; possibly force result into a vector
  200. ;; (if (and (not (listp result)) (cdr (assoc :results params))
  201. ;; (member "vector" (split-string (cdr (assoc :results params)))))
  202. ;; (setq result (list result)))
  203. ;; result))
  204. (defun org-babel-eval-buffer (&optional arg)
  205. "Replace EVAL snippets in the entire buffer."
  206. (interactive "P")
  207. (save-excursion
  208. (goto-char (point-min))
  209. (while (re-search-forward org-babel-regexp nil t)
  210. (org-babel-eval-src-block arg))))
  211. (defun org-babel-eval-subtree (&optional arg)
  212. "Replace EVAL snippets in the entire subtree."
  213. (interactive "P")
  214. (save-excursion
  215. (org-narrow-to-subtree)
  216. (org-babel-eval-buffer)
  217. (widen)))
  218. (defun org-babel-get-src-block-name ()
  219. "Return the name of the current source block if one exists.
  220. This function is analogous to org-babel-lob-get-info. For both
  221. functions, after they are called, (match-string 1) matches the
  222. function name, and (match-string 2) matches the function
  223. arguments inside the parentheses. I think perhaps these functions
  224. should be renamed to bring out this similarity, perhaps involving
  225. the word 'call'."
  226. (let ((case-fold-search t)
  227. (head (org-babel-where-is-src-block-head)))
  228. (if head
  229. (save-excursion
  230. (goto-char head)
  231. (if (save-excursion
  232. (forward-line -1)
  233. (looking-at "#\\+srcname:[ \f\t\n\r\v]*\\([^ \f\t\n\r\v]+\\)\(\\(.*\\)\)"))
  234. (org-babel-clean-text-properties (match-string 1)))))))
  235. (defun org-babel-get-src-block-info ()
  236. "Return the information of the current source block as a list
  237. of the following form. (language body header-arguments-alist)"
  238. (let ((case-fold-search t) head)
  239. (if (setq head (org-babel-where-is-src-block-head))
  240. (save-excursion (goto-char head) (org-babel-parse-src-block-match))
  241. (if (save-excursion ;; inline source block
  242. (re-search-backward "[ \f\t\n\r\v]" nil t)
  243. (forward-char 1)
  244. (looking-at org-babel-inline-src-block-regexp))
  245. (org-babel-parse-inline-src-block-match)
  246. nil)))) ;; indicate that no source block was found
  247. (defun org-babel-get-src-block-function-args ()
  248. (when (org-babel-get-src-block-name)
  249. (mapcar (lambda (ref) (cons :var ref))
  250. (split-string (org-babel-clean-text-properties (match-string 2))
  251. ",[ \f\t\n\r\v]*"))))
  252. (defmacro org-babel-map-source-blocks (file &rest body)
  253. "Evaluate BODY forms on each source-block in FILE."
  254. (declare (indent 1))
  255. `(save-window-excursion
  256. (find-file ,file) (goto-char (point-min))
  257. (while (re-search-forward org-babel-src-block-regexp nil t)
  258. (goto-char (match-beginning 0))
  259. (save-match-data ,@body)
  260. (goto-char (match-end 0)))))
  261. (defun org-babel-parse-src-block-match ()
  262. (list (org-babel-clean-text-properties (match-string 1))
  263. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  264. (org-babel-merge-params org-babel-default-header-args
  265. (org-babel-parse-header-arguments
  266. (org-babel-clean-text-properties (or (match-string 3) ""))))))
  267. (defun org-babel-parse-inline-src-block-match ()
  268. (list (org-babel-clean-text-properties (match-string 1))
  269. (org-babel-strip-protective-commas (org-babel-clean-text-properties (match-string 4)))
  270. (org-combine-plists org-babel-default-inline-header-args
  271. (org-babel-parse-header-arguments
  272. (org-babel-clean-text-properties (or (match-string 3) ""))))))
  273. (defun org-babel-parse-header-arguments (arg-string)
  274. "Parse a string of header arguments returning an alist."
  275. (if (> (length arg-string) 0)
  276. (delq nil
  277. (mapcar
  278. (lambda (arg)
  279. (if (string-match "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)" arg)
  280. (cons (intern (concat ":" (match-string 1 arg)))
  281. (org-babel-chomp (match-string 2 arg)))
  282. (cons (intern (concat ":" arg)) nil)))
  283. (split-string (concat " " arg-string) "[ \f\t\n\r\v]+:" t)))))
  284. (defun org-babel-where-is-src-block-head ()
  285. "Return the point at the beginning of the current source
  286. block. Specifically at the beginning of the #+BEGIN_SRC line.
  287. If the point is not on a source block then return nil."
  288. (let ((initial (point)) top bottom)
  289. (or
  290. (save-excursion ;; on a #+srcname: line
  291. (beginning-of-line 1)
  292. (and (looking-at "#\\+srcname") (forward-line 1)
  293. (looking-at org-babel-src-block-regexp)
  294. (point)))
  295. (save-excursion ;; on a #+begin_src line
  296. (beginning-of-line 1)
  297. (and (looking-at org-babel-src-block-regexp)
  298. (point)))
  299. (save-excursion ;; inside a src block
  300. (and
  301. (re-search-backward "#\\+begin_src" nil t) (setq top (point))
  302. (re-search-forward "#\\+end_src" nil t) (setq bottom (point))
  303. (< top initial) (< initial bottom)
  304. (goto-char top) (looking-at org-babel-src-block-regexp)
  305. (point))))))
  306. (defun org-babel-goto-named-source-block (&optional name)
  307. "Go to a named source-code block."
  308. (interactive "ssource-block name: ")
  309. (let ((point (org-babel-find-named-block name)))
  310. (if point
  311. ;; taken from `org-open-at-point'
  312. (progn (goto-char point) (org-show-context))
  313. (message "source-code block '%s' not found in this buffer" name))))
  314. (defun org-babel-find-named-block (name)
  315. "Find a named source-code block.
  316. Return the location of the source block identified by
  317. #+srcname NAME, or nil if no such block exists. Set match data
  318. according to org-babel-named-src-block-regexp."
  319. (save-excursion
  320. (let ((case-fold-search t)
  321. (regexp (org-babel-named-src-block-regexp-for-name name)) msg)
  322. (goto-char (point-min))
  323. (when (or (re-search-forward regexp nil t)
  324. (re-search-backward regexp nil t))
  325. (match-beginning 0)))))
  326. (defun org-babel-find-named-result (name)
  327. "Return the location of the result named NAME in the current
  328. buffer or nil if no such result exists."
  329. (save-excursion
  330. (goto-char (point-min))
  331. (when (re-search-forward (concat "#\\+resname:[ \t]*" (regexp-quote name)) nil t)
  332. (move-beginning-of-line 1) (point))))
  333. (defun org-babel-where-is-src-block-result ()
  334. "Return the point at the beginning of the result of the current
  335. source block. Specifically at the beginning of the #+RESNAME:
  336. line. If no result exists for this block then create a
  337. #+RESNAME: line following the source block."
  338. (save-excursion
  339. (let* ((on-lob-line (progn (beginning-of-line 1)
  340. (looking-at org-babel-lob-one-liner-regexp)))
  341. (name (if on-lob-line (org-babel-lob-get-info) (org-babel-get-src-block-name)))
  342. end head)
  343. (unless on-lob-line (goto-char (org-babel-where-is-src-block-head)))
  344. (or (and name (message name) (org-babel-find-named-result name))
  345. (and (or on-lob-line (re-search-forward "#\\+end_src" nil t))
  346. (progn (move-end-of-line 1)
  347. (if (eobp) (insert "\n") (forward-char 1))
  348. (setq end (point))
  349. (or (progn ;; either an unnamed #+resname: line already exists
  350. (re-search-forward "[^ \f\t\n\r\v]" nil t)
  351. (move-beginning-of-line 1) (looking-at "#\\+resname:"))
  352. (progn ;; or we need to back up and make one ourselves
  353. (goto-char end) (open-line 2) (forward-char 1)
  354. (insert (concat "#+resname:" (if name (concat " " name))))
  355. (move-beginning-of-line 1) t)))
  356. (point))))))
  357. (defun org-babel-insert-result (result &optional insert)
  358. "Insert RESULT into the current buffer after the end of the
  359. current source block. With optional argument INSERT controls
  360. insertion of results in the org-mode file. INSERT can take the
  361. following values...
  362. t ------ the default options, simply insert the results after the
  363. source block
  364. replace - insert results after the source block replacing any
  365. previously inserted results
  366. silent -- no results are inserted"
  367. (if (stringp result)
  368. (progn
  369. (setq result (org-babel-clean-text-properties result))
  370. (if (member "file" insert) (setq result (org-babel-result-to-file result))))
  371. (unless (listp result) (setq result (format "%S" result))))
  372. (if (and insert (member "replace" insert)) (org-babel-remove-result))
  373. (if (= (length result) 0)
  374. (message "no result returned by source block")
  375. (if (and insert (member "silent" insert))
  376. (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result))) result)
  377. (when (and (stringp result) ;; ensure results end in a newline
  378. (not (or (string-equal (substring result -1) "\n")
  379. (string-equal (substring result -1) "\r"))))
  380. (setq result (concat result "\n")))
  381. (save-excursion
  382. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  383. (if (stringp result) ;; assume the result is a table if it's not a string
  384. (if (member "file" insert)
  385. (insert result)
  386. (org-babel-examplize-region (point) (progn (insert result) (point))))
  387. (progn
  388. (insert
  389. (concat (orgtbl-to-orgtbl
  390. (if (consp (car result)) result (list result))
  391. '(:fmt (lambda (cell) (format "%S" cell)))) "\n"))
  392. (forward-line -1)
  393. (org-cycle))))
  394. (message "finished"))))
  395. (defun org-babel-result-to-org-string (result)
  396. "Return RESULT as a string in org-mode format. This function
  397. relies on `org-babel-insert-result'."
  398. (with-temp-buffer (org-babel-insert-result result) (buffer-string)))
  399. (defun org-babel-remove-result ()
  400. "Remove the result of the current source block."
  401. (interactive)
  402. (save-excursion
  403. (goto-char (org-babel-where-is-src-block-result)) (forward-line 1)
  404. (delete-region (point) (org-babel-result-end))))
  405. (defun org-babel-result-end ()
  406. "Return the point at the end of the current set of results"
  407. (save-excursion
  408. (if (org-at-table-p)
  409. (org-table-end)
  410. (while (if (looking-at "\\(: \\|\\[\\[\\)")
  411. (progn (while (looking-at "\\(: \\|\\[\\[\\)")
  412. (forward-line 1)) t))
  413. (forward-line 1))
  414. (forward-line -1)
  415. (point))))
  416. (defun org-babel-result-to-file (result)
  417. "Return an `org-mode' link with the path being the value or
  418. RESULT, and the display being the `file-name-nondirectory' if
  419. non-nil."
  420. (let ((name (file-name-nondirectory result)))
  421. (concat "[[" result (if name (concat "][" name "]]") "]]"))))
  422. (defun org-babel-examplize-region (beg end)
  423. "Comment out region using the ': ' org example quote."
  424. (interactive "*r")
  425. (let ((size (abs (- (line-number-at-pos end)
  426. (line-number-at-pos beg)))))
  427. (if (= size 0)
  428. (let ((result (buffer-substring beg end)))
  429. (delete-region beg end)
  430. (insert (concat ": " result)))
  431. (save-excursion
  432. (goto-char beg)
  433. (dotimes (n size)
  434. (move-beginning-of-line 1) (insert ": ") (forward-line 1))))))
  435. (defun org-babel-merge-params (&rest plists)
  436. "Combine all parameter association lists in PLISTS. Later
  437. elements of PLISTS override the values of previous element. This
  438. takes into account some special considerations for certain
  439. parameters when merging lists."
  440. (let (params results vars var ref)
  441. (mapc (lambda (plist)
  442. (mapc (lambda (pair)
  443. (case (car pair)
  444. (:var
  445. ;; we want only one specification per variable
  446. (when (string-match "\\([^= \f\t\n\r\v]+\\)=\\([^ \f\t\n\r\v]+\\)" (cdr pair))
  447. ;; TODO: When is this not true? Can there be whitespace around the '='?
  448. (setq var (intern (match-string 1 (cdr pair)))
  449. ref (match-string 2 (cdr pair))
  450. vars (cons (cons var ref) (assq-delete-all var vars)))))
  451. (:results
  452. ;; maintain list of unique :results specifications
  453. (setq results (org-uniquify (append (split-string (cdr pair)) results))))
  454. (t
  455. ;; replace: this covers e.g. :session
  456. (setq params (cons pair (assq-delete-all (car pair) params))))))
  457. plist))
  458. plists)
  459. (setq vars (mapcar (lambda (pair) (format "%s=%s" (car pair) (cdr pair))) vars))
  460. (while vars (setq params (cons (cons :var (pop vars)) params)))
  461. (cons (cons :results (mapconcat 'identity results " ")) params)))
  462. (defun org-babel-clean-text-properties (text)
  463. "Strip all properties from text return."
  464. (set-text-properties 0 (length text) nil text) text)
  465. (defun org-babel-strip-protective-commas (body)
  466. "Strip protective commas from bodies of source blocks."
  467. (replace-regexp-in-string "^,#" "#" body))
  468. (defun org-babel-read (cell)
  469. "Convert the string value of CELL to a number if appropriate.
  470. Otherwise if cell looks like lisp (meaning it starts with a
  471. \"(\" or a \"'\") then read it as lisp, otherwise return it
  472. unmodified as a string.
  473. This is taken almost directly from `org-read-prop'."
  474. (if (and (stringp cell) (not (equal cell "")))
  475. (or (org-babel-number-p cell)
  476. (if (or (equal "(" (substring cell 0 1))
  477. (equal "'" (substring cell 0 1)))
  478. (read cell)
  479. (progn (set-text-properties 0 (length cell) nil cell) cell)))
  480. cell))
  481. (defun org-babel-number-p (string)
  482. "Return t if STRING represents a number"
  483. (if (string-match "^[[:digit:]]*\\.?[[:digit:]]*$" string)
  484. (string-to-number string)))
  485. (defun org-babel-import-elisp-from-file (file-name)
  486. "Read the results located at FILE-NAME into an elisp table. If
  487. the table is trivial, then return it as a scalar."
  488. (let (result)
  489. (with-temp-buffer
  490. (condition-case nil
  491. (progn
  492. (org-table-import file-name nil)
  493. (delete-file file-name)
  494. (setq result (mapcar (lambda (row)
  495. (mapcar #'org-babel-string-read row))
  496. (org-table-to-lisp))))
  497. (error nil))
  498. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  499. (if (consp (car result))
  500. (if (null (cdr (car result)))
  501. (caar result)
  502. result)
  503. (car result))
  504. result))))
  505. (defun org-babel-string-read (cell)
  506. "Strip nested \"s from around strings in exported R values."
  507. (org-babel-read (or (and (stringp cell)
  508. (string-match "\\\"\\(.+\\)\\\"" cell)
  509. (match-string 1 cell))
  510. cell)))
  511. (defun org-babel-reverse-string (string)
  512. (apply 'string (reverse (string-to-list string))))
  513. (defun org-babel-chomp (string &optional regexp)
  514. "Remove any trailing space or carriage returns characters from
  515. STRING. Default regexp used is \"[ \f\t\n\r\v]\" but can be
  516. overwritten by specifying a regexp as a second argument."
  517. (while (and (> (length string) 0) (string-match "[ \f\t\n\r\v]" (substring string -1)))
  518. (setq string (substring string 0 -1)))
  519. string)
  520. (defun org-babel-trim (string &optional regexp)
  521. "Like `org-babel-chomp' only it runs on both the front and back of the string"
  522. (org-babel-chomp (org-babel-reverse-string
  523. (org-babel-chomp (org-babel-reverse-string string) regexp)) regexp))
  524. (provide 'org-babel)
  525. ;;; org-babel.el ends here