ob-octave.el 8.8 KB

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