Update copyright years.
[org-mode.git] / lisp / ob-picolisp.el
blobb240138fbb540791a509c37e9ce552cb88e2c243
1 ;;; ob-picolisp.el --- org-babel functions for picolisp evaluation
3 ;; Copyright (C) 2010-2014 Free Software Foundation, Inc.
5 ;; Authors: Thorsten Jolitz
6 ;; Eric Schulte
7 ;; Keywords: literate programming, reproducible research
8 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; This library enables the use of PicoLisp in the multi-language
28 ;; programming framework Org-Babel. PicoLisp is a minimal yet
29 ;; fascinating lisp dialect and a highly productive application
30 ;; framework for web-based client-server applications on top of
31 ;; object-oriented databases. A good way to learn PicoLisp is to first
32 ;; read Paul Grahams essay "The hundred year language"
33 ;; (http://www.paulgraham.com/hundred.html) and then study the various
34 ;; documents and essays published in the PicoLisp wiki
35 ;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
36 ;; GNU/Linux Distributions, and can be downloaded here:
37 ;; http://software-lab.de/down.html. It ships with a picolisp-mode and
38 ;; a inferior-picolisp-mode for Emacs (to be found in the /lib/el/
39 ;; directory).
41 ;; Although it might seem more natural to use Emacs Lisp for most
42 ;; Lisp-based programming tasks inside Org-Mode, an Emacs library
43 ;; written in Emacs Lisp, PicoLisp has at least two outstanding
44 ;; features that make it a valuable addition to Org-Babel:
46 ;; PicoLisp _is_ an object-oriented database with a Prolog-based query
47 ;; language implemented in PicoLisp (Pilog). Database objects are
48 ;; first-class members of the language.
50 ;; PicoLisp is an extremely productive framework for the development
51 ;; of interactive web-applications (on top of a database).
53 ;;; Requirements:
55 ;;; Code:
56 (require 'ob)
57 (require 'comint)
58 (eval-when-compile (require 'cl))
60 (declare-function run-picolisp "ext:inferior-picolisp" (cmd))
61 (defvar org-babel-tangle-lang-exts) ;; Autoloaded
63 ;; optionally define a file extension for this language
64 (add-to-list 'org-babel-tangle-lang-exts '("picolisp" . "l"))
66 ;;; interferes with settings in org-babel buffer?
67 ;; optionally declare default header arguments for this language
68 ;; (defvar org-babel-default-header-args:picolisp
69 ;; '((:colnames . "no"))
70 ;; "Default arguments for evaluating a picolisp source block.")
72 (defvar org-babel-picolisp-eoe "org-babel-picolisp-eoe"
73 "String to indicate that evaluation has completed.")
75 (defcustom org-babel-picolisp-cmd "pil"
76 "Name of command used to evaluate picolisp blocks."
77 :group 'org-babel
78 :version "24.1"
79 :type 'string)
81 (defun org-babel-expand-body:picolisp (body params)
82 "Expand BODY according to PARAMS, return the expanded body."
83 (let ((vars (mapcar #'cdr (org-babel-get-header params :var)))
84 (result-params (cdr (assoc :result-params params)))
85 (print-level nil) (print-length nil))
86 (if (> (length vars) 0)
87 (concat "(prog (let ("
88 (mapconcat
89 (lambda (var)
90 (format "%S '%S)"
91 (print (car var))
92 (print (cdr var))))
93 vars "\n ")
94 " \n" body ") )")
95 body)))
97 (defun org-babel-execute:picolisp (body params)
98 "Execute a block of Picolisp code with org-babel. This function is
99 called by `org-babel-execute-src-block'"
100 (message "executing Picolisp source code block")
101 (let* (
102 ;; Name of the session or "none".
103 (session-name (cdr (assoc :session params)))
104 ;; Set the session if the session variable is non-nil.
105 (session (org-babel-picolisp-initiate-session session-name))
106 ;; Either OUTPUT or VALUE which should behave as described above.
107 (result-type (cdr (assoc :result-type params)))
108 (result-params (cdr (assoc :result-params params)))
109 ;; Expand the body with `org-babel-expand-body:picolisp'.
110 (full-body (org-babel-expand-body:picolisp body params))
111 ;; Wrap body appropriately for the type of evaluation and results.
112 (wrapped-body
113 (cond
114 ((or (member "code" result-params)
115 (member "pp" result-params))
116 (format "(pretty (out \"/dev/null\" %s))" full-body))
117 ((and (member "value" result-params) (not session))
118 (format "(print (out \"/dev/null\" %s))" full-body))
119 ((member "value" result-params)
120 (format "(out \"/dev/null\" %s)" full-body))
121 (t full-body)))
122 (result
123 (if (not (string= session-name "none"))
124 ;; Session based evaluation.
125 (mapconcat ;; <- joins the list back into a single string
126 #'identity
127 (butlast ;; <- remove the org-babel-picolisp-eoe line
128 (delq nil
129 (mapcar
130 (lambda (line)
131 (org-babel-chomp ;; Remove trailing newlines.
132 (when (> (length line) 0) ;; Remove empty lines.
133 (cond
134 ;; Remove leading "-> " from return values.
135 ((and (>= (length line) 3)
136 (string= "-> " (substring line 0 3)))
137 (substring line 3))
138 ;; Remove trailing "-> <<return-value>>" on the
139 ;; last line of output.
140 ((and (member "output" result-params)
141 (string-match-p "->" line))
142 (substring line 0 (string-match "->" line)))
143 (t line)
145 ;;(if (and (>= (length line) 3);Remove leading "<-"
146 ;; (string= "-> " (substring line 0 3)))
147 ;; (substring line 3)
148 ;; line)
150 ;; Returns a list of the output of each evaluated exp.
151 (org-babel-comint-with-output
152 (session org-babel-picolisp-eoe)
153 (insert wrapped-body) (comint-send-input)
154 (insert "'" org-babel-picolisp-eoe)
155 (comint-send-input)))))
156 "\n")
157 ;; external evaluation
158 (let ((script-file (org-babel-temp-file "picolisp-script-")))
159 (with-temp-file script-file
160 (insert (concat wrapped-body "(bye)")))
161 (org-babel-eval
162 (format "%s %s"
163 org-babel-picolisp-cmd
164 (org-babel-process-file-name script-file))
165 "")))))
166 (org-babel-result-cond result-params
167 result
168 (read result))))
170 (defun org-babel-picolisp-initiate-session (&optional session-name)
171 "If there is not a current inferior-process-buffer in SESSION
172 then create. Return the initialized session."
173 (unless (string= session-name "none")
174 (require 'inferior-picolisp)
175 ;; provide a reasonable default session name
176 (let ((session (or session-name "*inferior-picolisp*")))
177 ;; check if we already have a live session by this name
178 (if (org-babel-comint-buffer-livep session)
179 (get-buffer session)
180 (save-window-excursion
181 (run-picolisp org-babel-picolisp-cmd)
182 (rename-buffer session-name)
183 (current-buffer))))))
185 (provide 'ob-picolisp)
189 ;;; ob-picolisp.el ends here