org-babel-clojure.el 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. ;;; org-babel-clojure.el --- org-babel functions for clojure evaluation
  2. ;; Copyright (C) 2009 Joel Boehland
  3. ;; Author: Joel Boehland
  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 clojure code
  24. ;;; Requirements:
  25. ;;; A working clojure install. This also implies a working java executable
  26. ;;; clojure-mode
  27. ;;; slime
  28. ;;; swank-clojure
  29. ;;; By far, the best way to install these components is by following
  30. ;;; the directions as set out by Phil Hagelberg (Technomancy) on the
  31. ;;; web page: http://technomancy.us/126
  32. ;;; Code:
  33. (require 'org-babel)
  34. (require 'cl)
  35. (require 'slime)
  36. (require 'swank-clojure)
  37. (org-babel-add-interpreter "clojure")
  38. (add-to-list 'org-babel-tangle-langs '("clojure" "clj"))
  39. (defvar org-babel-clojure-wrapper-method
  40. "
  41. (defn spit
  42. [f content]
  43. (with-open [#^java.io.PrintWriter w
  44. (java.io.PrintWriter.
  45. (java.io.BufferedWriter.
  46. (java.io.OutputStreamWriter.
  47. (java.io.FileOutputStream.
  48. (java.io.File. f)))))]
  49. (.print w content)))
  50. (defn main
  51. []
  52. %s)
  53. (spit \"%s\" (str (main)))") ;;" <-- syntax highlighting is messed without this double quote
  54. ;;taken mostly from clojure-test-mode.el
  55. (defun org-babel-clojure-clojure-slime-eval (string &optional handler)
  56. (slime-eval-async `(swank:eval-and-grab-output ,string)
  57. (or handler #'identity)))
  58. (defun org-babel-clojure-slime-eval-sync (string)
  59. (slime-eval `(swank:eval-and-grab-output ,string)))
  60. ;;taken from swank-clojure.el
  61. (defun org-babel-clojure-babel-clojure-cmd ()
  62. "Create the command to start clojure according to current settings."
  63. (if (and (not swank-clojure-binary) (not swank-clojure-jar-path))
  64. (error "You must specifiy either a `swank-clojure-binary' or a `swank-clojure-jar-path'")
  65. (if swank-clojure-binary
  66. (if (listp swank-clojure-binary)
  67. swank-clojure-binary
  68. (list swank-clojure-binary))
  69. (delete-if
  70. 'null
  71. (append
  72. (list swank-clojure-java-path)
  73. swank-clojure-extra-vm-args
  74. (list
  75. (when swank-clojure-library-paths
  76. (concat "-Djava.library.path="
  77. (swank-clojure-concat-paths swank-clojure-library-paths)))
  78. "-classpath"
  79. (swank-clojure-concat-paths
  80. (append (list swank-clojure-jar-path
  81. (concat swank-clojure-path "src/main/clojure/"))
  82. swank-clojure-extra-classpaths))
  83. "clojure.main"))))))
  84. (defun org-babel-clojure-table-or-string (results)
  85. "If the results look like a table, then convert them into an
  86. Emacs-lisp table, otherwise return the results as a string."
  87. (org-babel-read
  88. (if (string-match "^\\[.+\\]$" results)
  89. (org-babel-read
  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. (defun org-babel-clojure-var-to-clojure (var)
  97. "Convert an elisp var into a string of clojure source code
  98. specifying a var of the same value."
  99. (if (listp var)
  100. (format "'%s" var)
  101. (format "%s" var)))
  102. (defun org-babel-clojure-build-full-form (body vars)
  103. "Construct a clojure let form with vars as the let vars"
  104. (let ((vars-forms (mapconcat ;; define any variables
  105. (lambda (pair)
  106. (format "%s %s" (car pair) (org-babel-clojure-var-to-clojure (cdr pair))))
  107. vars "\n ")))
  108. (format "(let [%s]\n %s)" vars-forms (org-babel-trim body))))
  109. (defun org-babel-prep-session:clojure (session params)
  110. "Prepare SESSION according to the header arguments specified in PARAMS."
  111. (let* ((session-buf (org-babel-clojure-initiate-session session))
  112. (vars (org-babel-ref-variables params))
  113. (var-lines (mapcar ;; define any top level session variables
  114. (lambda (pair)
  115. (format "(def %s %s)\n" (car pair) (org-babel-clojure-var-to-clojure (cdr pair))))
  116. vars)))
  117. session-buf))
  118. (defun org-babel-clojure-initiate-session (&optional session)
  119. "If there is not a current inferior-process-buffer in SESSION
  120. then create. Return the initialized session."
  121. (unless (string= session "none")
  122. (if (comint-check-proc "*inferior-lisp*")
  123. (get-buffer "*inferior-lisp*")
  124. (let ((session-buffer (save-window-excursion (slime 'clojure) (current-buffer))))
  125. (sit-for 5)
  126. (if (slime-connected-p)
  127. session-buffer
  128. (error "Couldn't create slime clojure *inferior lisp* process"))))))
  129. (defun org-babel-clojure-evaluate-external-process (buffer body &optional result-type)
  130. "Evaluate the body in an external process."
  131. (save-window-excursion
  132. (case result-type
  133. (output
  134. (with-temp-buffer
  135. (insert body)
  136. (shell-command-on-region
  137. (point-min) (point-max)
  138. (format "%s - " (mapconcat #'identity (org-babel-clojure-babel-clojure-cmd) " "))
  139. 'replace)
  140. (buffer-string)))
  141. (value
  142. (let ((tmp-src-file (make-temp-file "clojure_babel_input_"))
  143. (tmp-results-file (make-temp-file "clojure_babel_results_")))
  144. (with-temp-file tmp-src-file
  145. (insert (format org-babel-clojure-wrapper-method body tmp-results-file tmp-results-file)))
  146. (shell-command
  147. (format "%s %s" (mapconcat #'identity (org-babel-clojure-babel-clojure-cmd) " ")
  148. tmp-src-file))
  149. (org-babel-clojure-table-or-string
  150. (with-temp-buffer (insert-file-contents tmp-results-file) (buffer-string))))))))
  151. (defun org-babel-clojure-evaluate-session (buffer body &optional result-type)
  152. "Evaluate the body in the context of a clojure session"
  153. (let ((raw nil)
  154. (results nil))
  155. (setq raw (org-babel-clojure-slime-eval-sync body))
  156. (setq results (reverse (mapcar #'org-babel-trim raw)))
  157. (case result-type
  158. (output (mapconcat #'identity (reverse (cdr results)) "\n"))
  159. (value (org-babel-clojure-table-or-string (car results))))))
  160. (defun org-babel-clojure-evaluate (buffer body &optional result-type)
  161. "Pass BODY to the Clojure process in BUFFER. If RESULT-TYPE equals
  162. 'output then return a list of the outputs of the statements in
  163. BODY, if RESULT-TYPE equals 'value then return the value of the
  164. last statement in BODY, as elisp."
  165. (if session
  166. (org-babel-clojure-evaluate-session buffer body result-type)
  167. (org-babel-clojure-evaluate-external-process buffer body result-type)))
  168. (defun org-babel-execute:clojure (body params)
  169. "Execute a block of Clojure code with org-babel."
  170. (let* ((processed-params (org-babel-process-params params))
  171. (vars (second processed-params))
  172. (body (org-babel-clojure-build-full-form body vars))
  173. (session (org-babel-clojure-initiate-session (first processed-params))))
  174. (org-babel-clojure-evaluate session body (fourth processed-params))))
  175. (provide 'org-babel-clojure)