ob-python.el 10 KB

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