2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-clojure.el --- org-babel functions for clojure evaluation
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2010-11-25 03:03:17 +00:00
|
|
|
;; Author: Joel Boehland, Eric Schulte
|
2009-11-09 21:17:34 +00:00
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
2011-07-06 19:06:03 +00:00
|
|
|
;; Version: 7.6
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-11-09 21:17:34 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00: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 21:17:34 +00: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 16:32:35 +00:00
|
|
|
|
2009-11-09 21:17:34 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:32:35 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2009-11-09 21:17:34 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2010-11-25 03:03:17 +00:00
|
|
|
;;; support for evaluating clojure code, relies on slime for all eval
|
2009-11-09 21:17:34 +00:00
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
2010-11-29 03:58:34 +00:00
|
|
|
;;; - clojure (at least 1.2.0)
|
2010-11-25 03:03:17 +00:00
|
|
|
;;; - clojure-mode
|
|
|
|
;;; - slime
|
|
|
|
;;; - swank-clojure
|
2009-11-09 21:17:34 +00: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 23:02:42 +00:00
|
|
|
(require 'ob)
|
2010-07-03 02:21:31 +00:00
|
|
|
|
2010-07-04 15:24:08 +00:00
|
|
|
(declare-function slime-eval "ext:slime" (sexp &optional package))
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2011-06-21 22:34:41 +00:00
|
|
|
(defvar org-babel-tangle-lang-exts)
|
2010-06-17 17:21:14 +00:00
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("clojure" . "clj"))
|
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:clojure '())
|
2010-12-08 04:08:31 +00:00
|
|
|
(defvar org-babel-header-arg-names:clojure '(package))
|
2010-06-25 17:12:54 +00:00
|
|
|
|
2010-10-16 03:35:45 +00:00
|
|
|
(defun org-babel-expand-body:clojure (body params)
|
2010-06-12 00:12:15 +00:00
|
|
|
"Expand BODY according to PARAMS, return the expanded body."
|
2010-11-25 03:03:17 +00:00
|
|
|
(let* ((vars (mapcar #'cdr (org-babel-get-header params :var)))
|
2010-11-27 15:19:53 +00:00
|
|
|
(result-params (cdr (assoc :result-params params)))
|
2010-11-26 22:49:24 +00: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))))
|
|
|
|
(if (or (member "code" result-params)
|
|
|
|
(member "pp" result-params))
|
2011-04-29 14:26:01 +00:00
|
|
|
(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)
|
2010-11-26 22:49:24 +00:00
|
|
|
body)))
|
2010-04-11 20:29:24 +00:00
|
|
|
|
2009-11-09 21:17:34 +00:00
|
|
|
(defun org-babel-execute:clojure (body params)
|
2010-11-25 03:03:17 +00:00
|
|
|
"Execute a block of Clojure code with Babel."
|
2010-07-03 02:21:31 +00:00
|
|
|
(require 'slime) (require 'swank-clojure)
|
2010-11-25 03:03:17 +00:00
|
|
|
(with-temp-buffer
|
|
|
|
(insert (org-babel-expand-body:clojure body params))
|
2011-07-10 15:19:16 +00:00
|
|
|
((lambda (result) (condition-case nil (org-babel-script-escape result)
|
2011-06-21 22:45:10 +00:00
|
|
|
(error result)))
|
2010-11-25 03:03:17 +00:00
|
|
|
(slime-eval
|
|
|
|
`(swank:interactive-eval-region
|
2011-04-28 18:21:17 +00:00
|
|
|
,(buffer-substring-no-properties (point-min) (point-max)))
|
2010-11-25 03:03:17 +00:00
|
|
|
(cdr (assoc :package params))))))
|
2009-11-09 21:17:34 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-clojure)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
|
|
|
;; arch-tag: a43b33f2-653e-46b1-ac56-2805cf05b7d1
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-clojure.el ends here
|