ob-octave.el 8.8 KB

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