ob-clojure.el 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. ;;; ob-clojure.el --- org-babel functions for clojure evaluation
  2. ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
  3. ;; Author: Joel Boehland, Eric Schulte, Oleh Krehel
  4. ;;
  5. ;; Keywords: literate programming, reproducible research
  6. ;; Homepage: http://orgmode.org
  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. ;; Support for evaluating clojure code
  20. ;; Requirements:
  21. ;; - clojure (at least 1.2.0)
  22. ;; - clojure-mode
  23. ;; - either cider or SLIME
  24. ;; For Cider, see https://github.com/clojure-emacs/cider
  25. ;; For SLIME, the best way to install these components is by following
  26. ;; the directions as set out by Phil Hagelberg (Technomancy) on the
  27. ;; web page: http://technomancy.us/126
  28. ;;; Code:
  29. (require 'ob)
  30. (eval-when-compile
  31. (require 'cl))
  32. (declare-function nrepl-dict-get "ext:nrepl-client" (dict key))
  33. (declare-function nrepl-sync-request:eval "ext:nrepl-client" (input &optional ns session))
  34. (declare-function slime-eval "ext:slime" (sexp &optional package))
  35. (defvar org-babel-tangle-lang-exts)
  36. (add-to-list 'org-babel-tangle-lang-exts '("clojure" . "clj"))
  37. (defvar org-babel-default-header-args:clojure '())
  38. (defvar org-babel-header-args:clojure '((package . :any)))
  39. (defcustom org-babel-clojure-backend
  40. (cond ((featurep 'cider) 'cider)
  41. (t 'slime))
  42. "Backend used to evaluate Clojure code blocks."
  43. :group 'org-babel
  44. :type '(choice
  45. (const :tag "cider" cider)
  46. (const :tag "SLIME" slime)))
  47. (defun org-babel-expand-body:clojure (body params)
  48. "Expand BODY according to PARAMS, return the expanded body."
  49. (let* ((vars (mapcar #'cdr (org-babel-get-header params :var)))
  50. (result-params (cdr (assoc :result-params params)))
  51. (print-level nil) (print-length nil)
  52. (body (org-babel-trim
  53. (if (> (length vars) 0)
  54. (concat "(let ["
  55. (mapconcat
  56. (lambda (var)
  57. (format "%S (quote %S)" (car var) (cdr var)))
  58. vars "\n ")
  59. "]\n" body ")")
  60. body))))
  61. (if (or (member "code" result-params)
  62. (member "pp" result-params))
  63. (format "(clojure.pprint/pprint (do %s))" body)
  64. body)))
  65. (defun org-babel-execute:clojure (body params)
  66. "Execute a block of Clojure code with Babel."
  67. (let ((expanded (org-babel-expand-body:clojure body params))
  68. result)
  69. (case org-babel-clojure-backend
  70. (cider
  71. (require 'cider)
  72. (let ((result-params (cdr (assoc :result-params params))))
  73. (setq result
  74. (nrepl-dict-get
  75. (nrepl-sync-request:eval expanded)
  76. (if (or (member "output" result-params)
  77. (member "pp" result-params))
  78. "out"
  79. "value")))))
  80. (slime
  81. (require 'slime)
  82. (with-temp-buffer
  83. (insert expanded)
  84. (setq result
  85. (slime-eval
  86. `(swank:eval-and-grab-output
  87. ,(buffer-substring-no-properties (point-min) (point-max)))
  88. (cdr (assoc :package params)))))))
  89. (org-babel-result-cond (cdr (assoc :result-params params))
  90. result
  91. (condition-case nil (org-babel-script-escape result)
  92. (error result)))))
  93. (provide 'ob-clojure)
  94. ;;; ob-clojure.el ends here