litorgy-R.el 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. ;;; litorgy-R.el --- litorgy functions for R code evaluation
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research, R, statistics
  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. ;; Litorgy support for evaluating R code
  24. ;;; Code:
  25. (require 'litorgy)
  26. (litorgy-add-interpreter "R")
  27. (defvar litorgy-R-func-name "litorgy_R_main"
  28. "This is the main function which wraps each R source code
  29. block.")
  30. (defun litorgy-execute:R (body params)
  31. "Execute a block of R code with litorgy. This function is
  32. called by `litorgy-execute-src-block'."
  33. (message "executing R source code block...")
  34. (save-window-excursion
  35. (let ((vars (litorgy-ref-variables params))
  36. results)
  37. (litorgy-R-initiate-R-buffer)
  38. (mapc (lambda (pair) (litorgy-R-assign-elisp (car pair) (cdr pair))) vars)
  39. (litorgy-R-input-command
  40. (format "%s <- function ()\n{\n%s\n}" litorgy-R-func-name body))
  41. (litorgy-R-to-elisp litorgy-R-func-name))))
  42. (defun litorgy-R-quote-tsv-field (s)
  43. "Quote field S for export to R."
  44. (if (stringp s)
  45. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
  46. (format "%S" s)))
  47. (defun litorgy-R-assign-elisp (name value)
  48. "Read the elisp VALUE into a variable named NAME in the current
  49. R process in `litorgy-R-buffer'."
  50. (unless litorgy-R-buffer (error "No active R buffer"))
  51. (litorgy-R-input-command
  52. (if (listp value)
  53. (let ((transition-file (make-temp-file "litorgy-R-import")))
  54. ;; ensure VALUE has an orgtbl structure (depth of at least 2)
  55. (unless (listp (car value)) (setq value (list value)))
  56. (with-temp-file transition-file
  57. (insert (orgtbl-to-tsv value '(:fmt litorgy-R-quote-tsv-field)))
  58. (insert "\n"))
  59. (format "%s <- read.table(\"%s\", sep=\"\\t\", as.is=TRUE)" name transition-file))
  60. (format "%s <- %s" name (litorgy-R-quote-tsv-field value)))))
  61. (defun litorgy-R-to-elisp (func-name)
  62. "Return the result of calling the function named FUNC-NAME in
  63. `litorgy-R-buffer' as Emacs lisp."
  64. (let ((tmp-file (make-temp-file "litorgy-R")) result)
  65. (litorgy-R-input-command
  66. (format "write.table(%s(), \"%s\", , ,\"\\t\", ,\"nil\", , FALSE, FALSE)" func-name tmp-file))
  67. (with-temp-buffer
  68. (message "before condition")
  69. (condition-case nil
  70. (progn
  71. (org-table-import tmp-file nil)
  72. (delete-file tmp-file)
  73. (setq result (mapcar (lambda (row)
  74. (mapcar #'litorgy-R-read row))
  75. (org-table-to-lisp))))
  76. (error nil))
  77. (message "after condition")
  78. (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
  79. (if (consp (car result))
  80. (if (null (cdr (car result)))
  81. (caar result)
  82. result)
  83. (car result))
  84. result))))
  85. (defun litorgy-R-read (cell)
  86. "Strip nested \"s from around strings in exported R values."
  87. (litorgy-read (or (and (stringp cell)
  88. (string-match "\\\"\\(.+\\)\\\"" cell)
  89. (match-string 1 cell))
  90. cell)))
  91. ;; functions for evaluation of R code
  92. (defvar litorgy-R-buffer nil
  93. "Holds the buffer for the current R process")
  94. (defun litorgy-R-initiate-R-buffer ()
  95. "If there is not a current R process then create one."
  96. ;; DED: Ideally I think we should use ESS mechanisms for this sort
  97. ;; of thing. See ess-force-buffer-current.
  98. (unless (and (buffer-live-p litorgy-R-buffer) (get-buffer litorgy-R-buffer))
  99. (save-excursion
  100. (R)
  101. (setf litorgy-R-buffer (current-buffer))
  102. (litorgy-R-wait-for-output)
  103. (litorgy-R-input-command ""))))
  104. (defun litorgy-R-command-to-string (command)
  105. "Send a command to R, and return the results as a string."
  106. (litorgy-R-input-command command)
  107. (litorgy-R-last-output))
  108. (defun litorgy-R-input-command (command)
  109. "Pass COMMAND to the R process running in `litorgy-R-buffer'."
  110. (save-excursion
  111. (save-match-data
  112. (set-buffer litorgy-R-buffer)
  113. (goto-char (process-mark (get-buffer-process (current-buffer))))
  114. (insert command)
  115. (comint-send-input)
  116. (litorgy-R-wait-for-output))))
  117. (defun litorgy-R-wait-for-output ()
  118. "Wait until output arrives"
  119. (save-excursion
  120. (save-match-data
  121. (set-buffer litorgy-R-buffer)
  122. (while (progn
  123. (goto-char comint-last-input-end)
  124. (not (re-search-forward comint-prompt-regexp nil t)))
  125. (accept-process-output (get-buffer-process (current-buffer)))))))
  126. (defun litorgy-R-last-output ()
  127. "Return the last R output as a string"
  128. (save-excursion
  129. (save-match-data
  130. (set-buffer litorgy-R-buffer)
  131. (goto-char (process-mark (get-buffer-process (current-buffer))))
  132. (forward-line 0)
  133. (let ((raw (buffer-substring comint-last-input-end (- (point) 1)))
  134. output output-flag)
  135. (mapconcat
  136. (lambda (el)
  137. (if (stringp el)
  138. (format "%s" el)
  139. (format "%S" el)))
  140. (delq nil
  141. (mapcar
  142. (lambda (line)
  143. (unless (string-match "^>" line)
  144. (and (string-match "\\[[[:digit:]]+\\] *\\(.*\\)$" line)
  145. (match-string 1 line))))
  146. ;; drop first, because it's the last line of input
  147. (cdr (split-string raw "[\n\r]")))) "\n")))))
  148. (provide 'litorgy-R)
  149. ;;; litorgy-R.el ends here