org-babel-octave.el 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. ;;; org-babel-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 'org-babel)
  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-execute:octave (body params &optional matlabp)
  34. "Execute a block of octave code with org-babel."
  35. (message (format "executing %s source code block" (if matlabp "matlab" "octave")))
  36. (let* ((processed-params (org-babel-process-params params))
  37. ;; set the session if the session variable is non-nil
  38. (session (funcall (intern (format "org-babel-%s-initiate-session" lang))
  39. (first processed-params) params))
  40. (vars (second processed-params))
  41. (result-params (third processed-params))
  42. (result-type (fourth processed-params))
  43. (out-file (cdr (assoc :file params)))
  44. (augmented-body (concat
  45. ;; prepend code to define all arguments passed to the code block
  46. ;; (may not be appropriate for all languages)
  47. (mapconcat
  48. (lambda (pair)
  49. (format "%s=%s"
  50. (car pair)
  51. (org-babel-octave-var-to-octave (cdr pair))))
  52. vars "\n") "\n" body "\n"))
  53. (result (org-babel-octave-evaluate session augmented-body result-type matlabp)))
  54. (or out-file result)))
  55. (defun org-babel-octave-var-to-octave (var)
  56. "Convert an emacs-lisp variable into an octave variable.
  57. Converts an emacs-lisp variable into a string of octave code
  58. specifying a variable of the same value."
  59. (if (listp var)
  60. (concat "[" (mapconcat #'org-babel-octave-var-to-octave var ", ") "]")
  61. (format "%S" var)))
  62. (defun org-babel-prep-session:octave (session params &optional matlabp)
  63. "Prepare SESSION according to the header arguments specified in PARAMS."
  64. (let* ((session (org-babel-octave-initiate-session session params matlabp))
  65. (vars (org-babel-ref-variables params))
  66. (var-lines (mapcar
  67. (lambda (pair)
  68. (format "%s=%s"
  69. (car pair)
  70. (org-babel-octave-var-to-octave (cdr pair))))
  71. vars)))
  72. (org-babel-comint-in-buffer session
  73. (mapc (lambda (var)
  74. (move-end-of-line 1) (insert var) (comint-send-input nil t)
  75. (org-babel-comint-wait-for-output session)) var-lines))
  76. session))
  77. (defun org-babel-octave-initiate-session (&optional session params matlabp)
  78. "Create octave inferior process buffer.
  79. If there is not a current inferior-process-buffer in SESSION
  80. then create. Return the initialized session."
  81. (unless (string= session "none")
  82. (let ((session (or session (if matlabp "*Inferior Matlab*" "*Inferior Octave*"))))
  83. (if (org-babel-comint-buffer-livep session) session
  84. (save-window-excursion
  85. (if matlabp (matlab-shell) (run-octave))
  86. (rename-buffer (if (bufferp session) (buffer-name session)
  87. (if (stringp session) session (buffer-name)))) (current-buffer))))))
  88. (defvar org-babel-octave-wrapper-method
  89. "%s
  90. save -text %s ans")
  91. (defvar org-babel-octave-eoe-indicator "\'org_babel_eoe\'")
  92. (defvar org-babel-octave-eoe-output "ans = org_babel_eoe")
  93. (defun org-babel-octave-evaluate (session body result-type lang)
  94. "Pass BODY to the octave process.
  95. If RESULT-TYPE equals 'output then return the outputs of the
  96. statements in BODY, if RESULT-TYPE equals 'value then return the
  97. value of the last statement in BODY, as elisp."
  98. (if session
  99. (org-babel-octave-evaluate-session session body result-type matlabp)
  100. (org-babel-octave-evaluate-external-process body result-type matlabp)))
  101. (defun org-babel-octave-evaluate-external-process (body result-type matlabp)
  102. (let ((cmd (if matlabp org-babel-matlab-shell-command org-babel-octave-shell-command)))
  103. (save-excursion
  104. (case result-type
  105. (output
  106. (with-temp-buffer
  107. (insert body)
  108. (org-babel-shell-command-on-region (point-min) (point-max) cmd 'current-buffer 'replace)
  109. (buffer-string)))
  110. (value
  111. (let* ((tmp-file (make-temp-file "org-babel-results-")) exit-code
  112. (stderr
  113. (with-temp-buffer
  114. (insert (format (if matlabp org-babel-matlab-wrapper-method org-babel-octave-wrapper-method)
  115. body tmp-file))
  116. (setq exit-code (org-babel-shell-command-on-region
  117. (point-min) (point-max) cmd nil 'replace (current-buffer)))
  118. (buffer-string))))
  119. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  120. (org-babel-octave-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))))))))
  121. (defun org-babel-octave-evaluate-session (session body result-type &optional matlabp)
  122. (let* ((tmp-file (make-temp-file "org-babel-results-"))
  123. (full-body
  124. (case result-type
  125. (output
  126. (mapconcat
  127. #'org-babel-chomp
  128. (list body org-babel-octave-eoe-indicator) "\n"))
  129. (value
  130. (mapconcat
  131. #'org-babel-chomp
  132. (list (format (if matlabp org-babel-matlab-wrapper-method org-babel-octave-wrapper-method)
  133. body tmp-file) org-babel-octave-eoe-indicator) "\n"))))
  134. (raw (org-babel-comint-with-output session
  135. (if matlabp org-babel-octave-eoe-indicator org-babel-octave-eoe-output) t
  136. (insert full-body) (comint-send-input nil t))) results)
  137. (case result-type
  138. (value
  139. (org-babel-octave-import-elisp-from-file (org-babel-maybe-remote-file tmp-file)))
  140. (output
  141. (progn
  142. (setq results
  143. (if matlabp
  144. (cdr (reverse (delq "" (mapcar #'org-babel-octave-read-string
  145. (mapcar #'org-babel-trim raw)))))
  146. (cdr (member org-babel-octave-eoe-output
  147. (reverse (mapcar #'org-babel-octave-read-string
  148. (mapcar #'org-babel-trim raw)))))))
  149. (mapconcat #'identity (reverse results) "\n"))))))
  150. (defun org-babel-octave-import-elisp-from-file (file-name)
  151. "Import data written to file by octave.
  152. This removes initial blank and comment lines and then calls
  153. `org-babel-import-elisp-from-file'."
  154. (let ((temp-file (make-temp-file "org-babel-results-")))
  155. (with-temp-file temp-file
  156. (insert-file-contents file-name)
  157. (re-search-forward "^[ \t]*[^# \t]" nil t)
  158. (delete-region (point-min) (point-at-bol)))
  159. (org-babel-import-elisp-from-file temp-file)))
  160. (defun org-babel-octave-read-string (string)
  161. "Strip \\\"s from around octave string"
  162. (if (string-match "^\"\\([^\000]+\\)\"$" string)
  163. (match-string 1 string)
  164. string))
  165. (provide 'org-babel-octave)
  166. ;;; org-babel-octave.el ends here