2010-06-11 19:02:42 -04:00
|
|
|
;;; ob-clojure.el --- org-babel functions for clojure evaluation
|
2009-11-09 16:17:34 -05:00
|
|
|
|
2013-01-08 09:04:32 -05:00
|
|
|
;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
|
2009-11-09 16:17:34 -05:00
|
|
|
|
2011-08-24 14:55:11 -04:00
|
|
|
;; Author: Joel Boehland
|
|
|
|
;; Eric Schulte
|
2009-11-09 16:17:34 -05:00
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2010-06-25 12:32:35 -04:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-11-09 16:17:34 -05:00
|
|
|
|
2010-06-25 12:32:35 -04:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-11-09 16:17:34 -05:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 12:32:35 -04:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-11-09 16:17:34 -05:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 12:32:35 -04:00
|
|
|
|
2009-11-09 16:17:34 -05:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 12:32:35 -04:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-11-09 16:17:34 -05:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2010-11-24 22:03:17 -05:00
|
|
|
;;; support for evaluating clojure code, relies on slime for all eval
|
2009-11-09 16:17:34 -05:00
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
2010-11-28 22:58:34 -05:00
|
|
|
;;; - clojure (at least 1.2.0)
|
2010-11-24 22:03:17 -05:00
|
|
|
;;; - clojure-mode
|
|
|
|
;;; - slime
|
2009-11-09 16:17:34 -05:00
|
|
|
|
|
|
|
;;; By far, the best way to install these components is by following
|
|
|
|
;;; the directions as set out by Phil Hagelberg (Technomancy) on the
|
|
|
|
;;; web page: http://technomancy.us/126
|
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 19:02:42 -04:00
|
|
|
(require 'ob)
|
2010-07-02 22:21:31 -04:00
|
|
|
|
2010-07-04 11:24:08 -04:00
|
|
|
(declare-function slime-eval "ext:slime" (sexp &optional package))
|
2009-11-09 16:17:34 -05:00
|
|
|
|
2011-06-21 18:34:41 -04:00
|
|
|
(defvar org-babel-tangle-lang-exts)
|
2010-06-17 13:21:14 -04:00
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("clojure" . "clj"))
|
|
|
|
|
2010-06-25 13:12:54 -04:00
|
|
|
(defvar org-babel-default-header-args:clojure '())
|
2012-04-10 19:03:37 -04:00
|
|
|
(defvar org-babel-header-args:clojure '((package . :any)))
|
2010-06-25 13:12:54 -04:00
|
|
|
|
2010-10-15 23:35:45 -04:00
|
|
|
(defun org-babel-expand-body:clojure (body params)
|
2010-06-11 20:12:15 -04:00
|
|
|
"Expand BODY according to PARAMS, return the expanded body."
|
2010-11-24 22:03:17 -05:00
|
|
|
(let* ((vars (mapcar #'cdr (org-babel-get-header params :var)))
|
2010-11-27 10:19:53 -05:00
|
|
|
(result-params (cdr (assoc :result-params params)))
|
2010-11-26 17:49:24 -05:00
|
|
|
(print-level nil) (print-length nil)
|
|
|
|
(body (org-babel-trim
|
|
|
|
(if (> (length vars) 0)
|
|
|
|
(concat "(let ["
|
|
|
|
(mapconcat
|
|
|
|
(lambda (var)
|
|
|
|
(format "%S (quote %S)" (car var) (cdr var)))
|
|
|
|
vars "\n ")
|
|
|
|
"]\n" body ")")
|
|
|
|
body))))
|
2011-07-16 09:07:23 -04:00
|
|
|
(cond ((or (member "code" result-params) (member "pp" result-params))
|
|
|
|
(format (concat "(let [org-mode-print-catcher (java.io.StringWriter.)] "
|
|
|
|
"(clojure.pprint/with-pprint-dispatch clojure.pprint/%s-dispatch "
|
|
|
|
"(clojure.pprint/pprint (do %s) org-mode-print-catcher) "
|
|
|
|
"(str org-mode-print-catcher)))")
|
|
|
|
(if (member "code" result-params) "code" "simple") body))
|
|
|
|
;; if (:results output), collect printed output
|
|
|
|
((member "output" result-params)
|
|
|
|
(format "(clojure.core/with-out-str %s)" body))
|
|
|
|
(t body))))
|
2010-04-11 16:29:24 -04:00
|
|
|
|
2009-11-09 16:17:34 -05:00
|
|
|
(defun org-babel-execute:clojure (body params)
|
2010-11-24 22:03:17 -05:00
|
|
|
"Execute a block of Clojure code with Babel."
|
2012-01-13 15:07:54 -05:00
|
|
|
(require 'slime)
|
2010-11-24 22:03:17 -05:00
|
|
|
(with-temp-buffer
|
|
|
|
(insert (org-babel-expand-body:clojure body params))
|
2011-07-10 11:38:37 -04:00
|
|
|
((lambda (result)
|
|
|
|
(let ((result-params (cdr (assoc :result-params params))))
|
|
|
|
(if (or (member "scalar" result-params)
|
|
|
|
(member "verbatim" result-params))
|
|
|
|
result
|
|
|
|
(condition-case nil (org-babel-script-escape result)
|
|
|
|
(error result)))))
|
2010-11-24 22:03:17 -05:00
|
|
|
(slime-eval
|
2012-01-13 15:07:54 -05:00
|
|
|
`(swank:eval-and-grab-output
|
2011-07-10 11:38:37 -04:00
|
|
|
,(buffer-substring-no-properties (point-min) (point-max)))
|
2010-11-24 22:03:17 -05:00
|
|
|
(cdr (assoc :package params))))))
|
2009-11-09 16:17:34 -05:00
|
|
|
|
2010-06-11 19:02:42 -04:00
|
|
|
(provide 'ob-clojure)
|
2010-06-25 12:32:35 -04:00
|
|
|
|
2011-08-15 14:04:38 -04:00
|
|
|
|
2010-06-25 12:32:35 -04:00
|
|
|
|
2010-06-11 19:02:42 -04:00
|
|
|
;;; ob-clojure.el ends here
|