Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / org / ob-lisp.el
blob6bddd614a48cb76fb68c1f08a838dbb31cd3a3bb
1 ;;; ob-lisp.el --- org-babel functions for common lisp evaluation
3 ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 ;; Authors: Joel Boehland
6 ;; Eric Schulte
7 ;; David T. O'Toole <dto@gnu.org>
8 ;; Keywords: literate programming, reproducible research
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;;; support for evaluating common lisp code, relies on slime for all eval
30 ;;; Requirements:
32 ;; Requires SLIME (Superior Lisp Interaction Mode for Emacs.)
33 ;; See http://common-lisp.net/project/slime/
35 ;;; Code:
36 (require 'ob)
38 (declare-function slime-eval "ext:slime" (sexp &optional package))
40 (defvar org-babel-tangle-lang-exts)
41 (add-to-list 'org-babel-tangle-lang-exts '("lisp" . "lisp"))
43 (defvar org-babel-default-header-args:lisp '())
44 (defvar org-babel-header-args:lisp '((package . :any)))
46 (defcustom org-babel-lisp-dir-fmt
47 "(let ((*default-pathname-defaults* #P%S)) %%s)"
48 "Format string used to wrap code bodies to set the current directory.
49 For example a value of \"(progn ;; %s\\n %%s)\" would ignore the
50 current directory string."
51 :group 'org-babel
52 :version "24.1"
53 :type 'string)
55 (defun org-babel-expand-body:lisp (body params)
56 "Expand BODY according to PARAMS, return the expanded body."
57 (let* ((vars (mapcar #'cdr (org-babel-get-header params :var)))
58 (result-params (cdr (assoc :result-params params)))
59 (print-level nil) (print-length nil)
60 (body (org-babel-trim
61 (if (> (length vars) 0)
62 (concat "(let ("
63 (mapconcat
64 (lambda (var)
65 (format "(%S (quote %S))" (car var) (cdr var)))
66 vars "\n ")
67 ")\n" body ")")
68 body))))
69 (if (or (member "code" result-params)
70 (member "pp" result-params))
71 (format "(pprint %s)" body)
72 body)))
74 (defun org-babel-execute:lisp (body params)
75 "Execute a block of Common Lisp code with Babel."
76 (require 'slime)
77 (org-babel-reassemble-table
78 (let ((result
79 (with-temp-buffer
80 (insert (org-babel-expand-body:lisp body params))
81 (slime-eval `(swank:eval-and-grab-output
82 ,(let ((dir (if (assoc :dir params)
83 (cdr (assoc :dir params))
84 default-directory)))
85 (format
86 (if dir (format org-babel-lisp-dir-fmt dir)
87 "(progn %s)")
88 (buffer-substring-no-properties
89 (point-min) (point-max)))))
90 (cdr (assoc :package params))))))
91 (org-babel-result-cond (cdr (assoc :result-params params))
92 (car result)
93 (condition-case nil
94 (read (org-babel-lisp-vector-to-list (cadr result)))
95 (error (cadr result)))))
96 (org-babel-pick-name (cdr (assoc :colname-names params))
97 (cdr (assoc :colnames params)))
98 (org-babel-pick-name (cdr (assoc :rowname-names params))
99 (cdr (assoc :rownames params)))))
101 (defun org-babel-lisp-vector-to-list (results)
102 ;; TODO: better would be to replace #(...) with [...]
103 (replace-regexp-in-string "#(" "(" results))
105 (provide 'ob-lisp)
109 ;;; ob-lisp.el ends here