org-html.el (org-html-handle-links): Fix bug in setting the attribute for link with...
[org-mode.git] / lisp / ob-lisp.el
blob4ff9718553bd174da73c2cff37f8b7babb9685ee
1 ;;; ob-lisp.el --- org-babel functions for common lisp evaluation
3 ;; Copyright (C) 2009-2013 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 ((lambda (result)
79 (if (member "output" (cdr (assoc :result-params params)))
80 (car result)
81 (condition-case nil
82 (read (org-babel-lisp-vector-to-list (cadr result)))
83 (error (cadr result)))))
84 (with-temp-buffer
85 (insert (org-babel-expand-body:lisp body params))
86 (slime-eval `(swank:eval-and-grab-output
87 ,(let ((dir (if (assoc :dir params)
88 (cdr (assoc :dir params))
89 default-directory)))
90 (format
91 (if dir (format org-babel-lisp-dir-fmt dir) "(progn %s)")
92 (buffer-substring-no-properties
93 (point-min) (point-max)))))
94 (cdr (assoc :package params)))))
95 (org-babel-pick-name (cdr (assoc :colname-names params))
96 (cdr (assoc :colnames params)))
97 (org-babel-pick-name (cdr (assoc :rowname-names params))
98 (cdr (assoc :rownames params)))))
100 (defun org-babel-lisp-vector-to-list (results)
101 ;; TODO: better would be to replace #(...) with [...]
102 (replace-regexp-in-string "#(" "(" results))
104 (provide 'ob-lisp)
108 ;;; ob-lisp.el ends here