ob-python.el 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. ;;; ob-python.el --- org-babel functions for python evaluation
  2. ;; Copyright (C) 2009, 2010 Free Software Foundation
  3. ;; Author: Eric Schulte, 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. ;; Org-Babel support for evaluating python source code.
  20. ;;; Code:
  21. (require 'ob)
  22. (require 'ob-tangle)
  23. (require 'ob-comint)
  24. (require (if (featurep 'xemacs) 'python-mode 'python))
  25. (add-to-list 'org-babel-tangle-lang-exts '("python" . "py"))
  26. (defun org-babel-expand-body:python (body params &optional processed-params)
  27. "Expand BODY according to PARAMS, return the expanded body."
  28. (concat
  29. (mapconcat ;; define any variables
  30. (lambda (pair)
  31. (format "%s=%s"
  32. (car pair)
  33. (org-babel-python-var-to-python (cdr pair))))
  34. (second (or processed-params (org-babel-process-params params))) "\n")
  35. "\n" (org-babel-trim body) "\n"))
  36. (defun org-babel-execute:python (body params)
  37. "Execute a block of Python code with org-babel. This function is
  38. called by `org-babel-execute-src-block'."
  39. (message "executing Python source code block")
  40. (let* ((processed-params (org-babel-process-params params))
  41. (session (org-babel-python-initiate-session (first processed-params)))
  42. (result-params (third processed-params))
  43. (result-type (fourth processed-params))
  44. (full-body (org-babel-expand-body:python
  45. body params processed-params)) ;; then the source block body
  46. (result (org-babel-python-evaluate session full-body result-type)))
  47. (or (cdr (assoc :file params))
  48. (org-babel-reassemble-table
  49. result
  50. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  51. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params)))))))
  52. (defun org-babel-prep-session:python (session params)
  53. "Prepare SESSION according to the header arguments specified in PARAMS."
  54. (let* ((session (org-babel-python-initiate-session session))
  55. (vars (org-babel-ref-variables params))
  56. (var-lines (mapcar ;; define any variables
  57. (lambda (pair)
  58. (format "%s=%s"
  59. (car pair)
  60. (org-babel-python-var-to-python (cdr pair))))
  61. vars)))
  62. (org-babel-comint-in-buffer session
  63. (mapc (lambda (var)
  64. (end-of-line 1) (insert var) (comint-send-input)
  65. (org-babel-comint-wait-for-output session)) var-lines))
  66. session))
  67. (defun org-babel-load-session:python (session body params)
  68. "Load BODY into SESSION."
  69. (save-window-excursion
  70. (let ((buffer (org-babel-prep-session:python session params)))
  71. (with-current-buffer buffer
  72. (goto-char (process-mark (get-buffer-process (current-buffer))))
  73. (insert (org-babel-chomp body)))
  74. buffer)))
  75. ;; helper functions
  76. (defun org-babel-python-var-to-python (var)
  77. "Convert an elisp var into a string of python source code
  78. specifying a var of the same value."
  79. (if (listp var)
  80. (concat "[" (mapconcat #'org-babel-python-var-to-python var ", ") "]")
  81. (format "%S" var)))
  82. (defun org-babel-python-table-or-string (results)
  83. "If the results look like a list or tuple, then convert them into an
  84. Emacs-lisp table, otherwise return the results as a string."
  85. (org-babel-read
  86. (if (or (string-match "^\\[.+\\]$" results)
  87. (string-match "^(.+)$" results))
  88. (org-babel-read
  89. (concat "'"
  90. (replace-regexp-in-string
  91. "\\[" "(" (replace-regexp-in-string
  92. "\\]" ")" (replace-regexp-in-string
  93. ", " " " (replace-regexp-in-string
  94. "'" "\"" results))))))
  95. results)))
  96. (defvar org-babel-python-buffers '(:default . nil))
  97. (defun org-babel-python-session-buffer (session)
  98. "Return the buffer associated with SESSION."
  99. (cdr (assoc session org-babel-python-buffers)))
  100. (defun org-babel-python-initiate-session-by-key (&optional session)
  101. "If there is not a current inferior-process-buffer in SESSION
  102. then create. Return the initialized session."
  103. (save-window-excursion
  104. (let* ((session (if session (intern session) :default))
  105. (python-buffer (org-babel-python-session-buffer session)))
  106. (cond
  107. ((fboundp 'run-python) ; python.el
  108. (run-python))
  109. ((fboundp 'py-shell) ; python-mode.el
  110. ;; `py-shell' creates a buffer whose name is the value of
  111. ;; `py-which-bufname' with '*'s at the beginning and end
  112. (let* ((bufname (if python-buffer
  113. (replace-regexp-in-string "^\\*\\([^*]+\\)\\*$" "\\1" python-buffer) ; zap surrounding *
  114. (concat "Python-" (symbol-name session))))
  115. (py-which-bufname bufname)) ; avoid making a mess with buffer-local
  116. (py-shell)
  117. (setq python-buffer (concat "*" bufname "*"))))
  118. (t
  119. (error "No function available for running an inferior python.")))
  120. (setq org-babel-python-buffers (cons (cons session python-buffer)
  121. (assq-delete-all session org-babel-python-buffers)))
  122. session)))
  123. (defun org-babel-python-initiate-session (&optional session params)
  124. "Create a session named SESSION according to PARAMS."
  125. (unless (string= session "none")
  126. (org-babel-python-session-buffer (org-babel-python-initiate-session-by-key session))))
  127. (defvar org-babel-python-last-value-eval "_"
  128. "When evaluated by Python this returns the return value of the last statement.")
  129. (defvar org-babel-python-pp-last-value-eval
  130. '("results = _"
  131. "import pprint"
  132. "org_babel_pp = pprint.PrettyPrinter()"
  133. "org_babel_pp.pprint(results)")
  134. "When evaluated by Python this pretty prints the value of the last statement.")
  135. (defvar org-babel-python-eoe-indicator "'org_babel_python_eoe'"
  136. "Used to indicate that evaluation is has completed.")
  137. (defvar org-babel-python-wrapper-method
  138. "
  139. def main():
  140. %s
  141. open('%s', 'w').write( str(main()) )")
  142. (defvar org-babel-python-pp-wrapper-method
  143. "
  144. import pprint
  145. def main():
  146. %s
  147. open('%s', 'w').write( pprint.pformat(main()) )")
  148. (defun org-babel-python-evaluate (buffer body &optional result-type)
  149. "Pass BODY to the Python process in BUFFER. If RESULT-TYPE equals
  150. 'output then return a list of the outputs of the statements in
  151. BODY, if RESULT-TYPE equals 'value then return the value of the
  152. last statement in BODY, as elisp."
  153. (if (not session)
  154. ;; external process evaluation
  155. (save-excursion
  156. (case result-type
  157. (output
  158. (with-temp-buffer
  159. (insert body)
  160. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  161. (org-babel-shell-command-on-region (point-min) (point-max) "python" 'current-buffer 'replace)
  162. (buffer-string)))
  163. (value
  164. (let* ((tmp-file (make-temp-file "org-babel-python-results-")) exit-code
  165. (stderr
  166. (with-temp-buffer
  167. (insert
  168. (format
  169. (if (member "pp" result-params)
  170. org-babel-python-pp-wrapper-method
  171. org-babel-python-wrapper-method)
  172. (mapconcat
  173. (lambda (line) (format "\t%s" line))
  174. (split-string
  175. (org-remove-indentation (org-babel-trim body)) "[\r\n]") "\n")
  176. tmp-file))
  177. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  178. (setq exit-code (org-babel-shell-command-on-region
  179. (point-min) (point-max) "python" nil 'replace (current-buffer)))
  180. (buffer-string))))
  181. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  182. (let ((raw (with-temp-buffer
  183. (insert-file-contents (org-babel-maybe-remote-file tmp-file))
  184. (buffer-string))))
  185. (if (or (member "code" result-params) (member "pp" result-params))
  186. raw
  187. (org-babel-python-table-or-string raw)))))))
  188. ;; comint session evaluation
  189. (org-babel-comint-in-buffer buffer
  190. (let* ((raw (org-babel-comint-with-output
  191. (buffer org-babel-python-eoe-indicator t full-body)
  192. ;; for some reason python is fussy, and likes enters after every input
  193. (let ((comint-process-echoes nil))
  194. (mapc (lambda (statement) (insert statement) (comint-send-input))
  195. (split-string (org-babel-trim body) "[\r\n]+"))
  196. (comint-send-input) (comint-send-input)
  197. (if (member "pp" result-params)
  198. (mapc (lambda (statement) (insert statement) (comint-send-input))
  199. org-babel-python-pp-last-value-eval)
  200. (insert org-babel-python-last-value-eval))
  201. (comint-send-input) (comint-send-input)
  202. (insert org-babel-python-eoe-indicator)
  203. (comint-send-input))))
  204. (raw (apply #'append ; split further
  205. (mapcar #'(lambda (r)
  206. (split-string r "[\r\n]+"))
  207. raw)))
  208. (results (delete org-babel-python-eoe-indicator
  209. (cdr (member org-babel-python-eoe-indicator
  210. (mapcar #'org-babel-trim raw))))))
  211. (unless (or (member "code" result-params) (member "pp" result-params))
  212. (setq results (mapcar #'org-babel-python-read-string results)))
  213. (case result-type
  214. (output (org-babel-trim (mapconcat #'identity (reverse (cdr results)) "\n")))
  215. (value
  216. (if (or (member "code" result-params) (member "pp" result-params))
  217. (car results)
  218. (org-babel-python-table-or-string (org-babel-trim (car results))))))))))
  219. (defun org-babel-python-read-string (string)
  220. "Strip 's from around python string"
  221. (if (string-match "^'\\([^\000]+\\)'$" string)
  222. (match-string 1 string)
  223. string))
  224. (provide 'ob-python)
  225. ;; arch-tag: f19b6c3d-dfcb-4a1a-9ce0-45ade1ebc212
  226. ;;; ob-python.el ends here