ob-octave.el 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. ;;; ob-octave.el --- org-babel functions for octave and matlab evaluation
  2. ;; Copyright (C) 2010 Free Software Foundation, Inc.
  3. ;; Author: 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. ;;; Requirements:
  20. ;; octave
  21. ;; octave-mode.el and octave-inf.el come with GNU emacs
  22. ;;; Code:
  23. (require 'ob)
  24. (require 'octave-inf)
  25. (defvar org-babel-octave-shell-command "octave -q"
  26. "Shell command to use to run octave as an external process.")
  27. (defun org-babel-expand-body:octave (body params &optional processed-params)
  28. "Expand BODY according to PARAMS, return the expanded body."
  29. (let ((vars (second (or processed-params (org-babel-process-params params)))))
  30. (concat
  31. ;; prepend code to define all arguments passed to the code block
  32. ;; (may not be appropriate for all languages)
  33. (mapconcat
  34. (lambda (pair)
  35. (format "%s=%s"
  36. (car pair)
  37. (org-babel-octave-var-to-octave (cdr pair))))
  38. vars "\n") "\n" body "\n")))
  39. (defun org-babel-execute:octave (body params &optional matlabp)
  40. "Execute a block of octave code with org-babel."
  41. (message (format "executing %s source code block" (if matlabp "matlab" "octave")))
  42. (let* ((processed-params (org-babel-process-params params))
  43. ;; set the session if the session variable is non-nil
  44. (session (funcall (intern (format "org-babel-%s-initiate-session" lang))
  45. (first processed-params) params))
  46. (vars (second processed-params))
  47. (result-params (third processed-params))
  48. (result-type (fourth processed-params))
  49. (out-file (cdr (assoc :file params)))
  50. (augmented-body (org-babel-expand-body:octave body params processed-params))
  51. (result (org-babel-octave-evaluate session augmented-body result-type matlabp)))
  52. (or out-file
  53. (org-babel-reassemble-table
  54. result
  55. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  56. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params)))))))
  57. (defun org-babel-octave-var-to-octave (var)
  58. "Convert an emacs-lisp variable into an octave variable.
  59. Converts an emacs-lisp variable into a string of octave code
  60. specifying a variable of the same value."
  61. (if (listp var)
  62. (concat "[" (mapconcat #'org-babel-octave-var-to-octave var ", ") "]")
  63. (format "%S" var)))
  64. (defun org-babel-prep-session:octave (session params &optional matlabp)
  65. "Prepare SESSION according to the header arguments specified in PARAMS."
  66. (let* ((session (org-babel-octave-initiate-session session params matlabp))
  67. (vars (org-babel-ref-variables params))
  68. (var-lines (mapcar
  69. (lambda (pair)
  70. (format "%s=%s"
  71. (car pair)
  72. (org-babel-octave-var-to-octave (cdr pair))))
  73. vars)))
  74. (org-babel-comint-in-buffer session
  75. (mapc (lambda (var)
  76. (end-of-line 1) (insert var) (comint-send-input nil t)
  77. (org-babel-comint-wait-for-output session)) var-lines))
  78. session))
  79. (defun org-babel-octave-initiate-session (&optional session params matlabp)
  80. "Create an octave inferior process buffer. If there is not a
  81. current inferior-process-buffer in SESSION then create. Return
  82. the initialized session."
  83. (unless (string= session "none")
  84. (let ((session (or session (if matlabp "*Inferior Matlab*" "*Inferior Octave*"))))
  85. (if (org-babel-comint-buffer-livep session) session
  86. (save-window-excursion
  87. (if matlabp (unless org-babel-matlab-with-emacs-link (matlab-shell))
  88. (run-octave))
  89. (rename-buffer (if (bufferp session) (buffer-name session)
  90. (if (stringp session) session (buffer-name)))) (current-buffer))))))
  91. (defvar org-babel-octave-wrapper-method
  92. "%s
  93. if ischar(ans), fid = fopen('%s', 'w'); fprintf(fid, '%%s\\n', ans); fclose(fid);
  94. else, save -ascii %s ans
  95. end")
  96. (defvar org-babel-octave-eoe-indicator "\'org_babel_eoe\'")
  97. (defvar org-babel-octave-eoe-output "ans = org_babel_eoe")
  98. (defun org-babel-octave-evaluate (session body result-type lang)
  99. "Pass BODY to the octave process in SESSION. If RESULT-TYPE
  100. equals 'output then return the outputs of the statements in BODY,
  101. if RESULT-TYPE equals 'value then return the value of the last
  102. statement in BODY, as elisp."
  103. (if session
  104. (org-babel-octave-evaluate-session session body result-type matlabp)
  105. (org-babel-octave-evaluate-external-process body result-type matlabp)))
  106. (defun org-babel-octave-evaluate-external-process (body result-type matlabp)
  107. "Evaluate BODY in an external octave process."
  108. (let ((cmd (if matlabp org-babel-matlab-shell-command org-babel-octave-shell-command)))
  109. (save-excursion
  110. (case result-type
  111. (output
  112. (with-temp-buffer
  113. (insert body)
  114. (org-babel-shell-command-on-region (point-min) (point-max) cmd 'current-buffer 'replace)
  115. (buffer-string)))
  116. (value
  117. (let* ((tmp-file (make-temp-file "org-babel-results-")) exit-code
  118. (stderr
  119. (with-temp-buffer
  120. (insert (format org-babel-octave-wrapper-method body tmp-file tmp-file))
  121. (setq exit-code (org-babel-shell-command-on-region
  122. (point-min) (point-max) cmd nil 'replace (current-buffer)))
  123. (buffer-string))))
  124. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  125. (org-babel-octave-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))))))))
  126. (defun org-babel-octave-evaluate-session (session body result-type &optional matlabp)
  127. "Evaluate BODY in SESSION."
  128. (let* ((tmp-file (make-temp-file "org-babel-results-"))
  129. (wait-file (make-temp-file "org-babel-matlab-emacs-link-wait-signal-"))
  130. (full-body
  131. (case result-type
  132. (output
  133. (mapconcat
  134. #'org-babel-chomp
  135. (list body org-babel-octave-eoe-indicator) "\n"))
  136. (value
  137. (if (and matlabp org-babel-matlab-with-emacs-link)
  138. (concat
  139. (format org-babel-matlab-emacs-link-wrapper-method
  140. body tmp-file tmp-file wait-file) "\n")
  141. (mapconcat
  142. #'org-babel-chomp
  143. (list (format org-babel-octave-wrapper-method body tmp-file tmp-file)
  144. org-babel-octave-eoe-indicator) "\n")))))
  145. (raw (if (and matlabp org-babel-matlab-with-emacs-link)
  146. (save-window-excursion
  147. (with-temp-buffer
  148. (insert full-body)
  149. (write-region "" 'ignored wait-file nil nil nil 'excl)
  150. (matlab-shell-run-region (point-min) (point-max))
  151. (message "Waiting for Matlab Emacs Link")
  152. (while (file-exists-p wait-file) (sit-for 0.01))
  153. "")) ;; matlab-shell-run-region doesn't seem to
  154. ;; make *matlab* buffer contents easily
  155. ;; available, so :results output currently
  156. ;; won't work
  157. (org-babel-comint-with-output
  158. (session
  159. (if matlabp
  160. org-babel-octave-eoe-indicator
  161. org-babel-octave-eoe-output)
  162. t full-body)
  163. (insert full-body) (comint-send-input nil t)))) results)
  164. (case result-type
  165. (value
  166. (org-babel-octave-import-elisp-from-file (org-babel-maybe-remote-file tmp-file)))
  167. (output
  168. (progn
  169. (setq results
  170. (if matlabp
  171. (cdr (reverse (delq "" (mapcar #'org-babel-octave-read-string
  172. (mapcar #'org-babel-trim raw)))))
  173. (cdr (member org-babel-octave-eoe-output
  174. (reverse (mapcar #'org-babel-octave-read-string
  175. (mapcar #'org-babel-trim raw)))))))
  176. (mapconcat #'identity (reverse results) "\n"))))))
  177. (defun org-babel-octave-import-elisp-from-file (file-name)
  178. "Import data from FILE-NAME. This removes initial blank and
  179. comment lines and then calls `org-babel-import-elisp-from-file'."
  180. (let ((temp-file (make-temp-file "org-babel-results-")) beg end)
  181. (with-temp-file temp-file
  182. (insert-file-contents file-name)
  183. (re-search-forward "^[ \t]*[^# \t]" nil t)
  184. (if (< (setq beg (point-min))
  185. (setq end (point-at-bol)))
  186. (delete-region beg end)))
  187. (org-babel-import-elisp-from-file temp-file)))
  188. (defun org-babel-octave-read-string (string)
  189. "Strip \\\"s from around octave string"
  190. (if (string-match "^\"\\([^\000]+\\)\"$" string)
  191. (match-string 1 string)
  192. string))
  193. (provide 'ob-octave)
  194. ;; arch-tag: d8e5f68b-ba13-440a-a495-b653e989e704
  195. ;;; ob-octave.el ends here