Merge branch 'maint'
[org-mode/org-tableheadings.git] / lisp / ob-picolisp.el
blob8ee4235836f0c243c4b6eef164ab342a30e129bd
1 ;;; ob-picolisp.el --- Babel Functions for Picolisp -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2010-2016 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 (org-babel--get-vars params))
84 (print-level nil)
85 (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-params (cdr (assoc :result-params params)))
108 ;; Expand the body with `org-babel-expand-body:picolisp'.
109 (full-body (org-babel-expand-body:picolisp body params))
110 ;; Wrap body appropriately for the type of evaluation and results.
111 (wrapped-body
112 (cond
113 ((or (member "code" result-params)
114 (member "pp" result-params))
115 (format "(pretty (out \"/dev/null\" %s))" full-body))
116 ((and (member "value" result-params) (not session))
117 (format "(print (out \"/dev/null\" %s))" full-body))
118 ((member "value" result-params)
119 (format "(out \"/dev/null\" %s)" full-body))
120 (t full-body)))
121 (result
122 (if (not (string= session-name "none"))
123 ;; Session based evaluation.
124 (mapconcat ;; <- joins the list back into a single string
125 #'identity
126 (butlast ;; <- remove the org-babel-picolisp-eoe line
127 (delq nil
128 (mapcar
129 (lambda (line)
130 (org-babel-chomp ;; Remove trailing newlines.
131 (when (> (length line) 0) ;; Remove empty lines.
132 (cond
133 ;; Remove leading "-> " from return values.
134 ((and (>= (length line) 3)
135 (string= "-> " (substring line 0 3)))
136 (substring line 3))
137 ;; Remove trailing "-> <<return-value>>" on the
138 ;; last line of output.
139 ((and (member "output" result-params)
140 (string-match-p "->" line))
141 (substring line 0 (string-match "->" line)))
142 (t line)
144 ;;(if (and (>= (length line) 3);Remove leading "<-"
145 ;; (string= "-> " (substring line 0 3)))
146 ;; (substring line 3)
147 ;; line)
149 ;; Returns a list of the output of each evaluated exp.
150 (org-babel-comint-with-output
151 (session org-babel-picolisp-eoe)
152 (insert wrapped-body) (comint-send-input)
153 (insert "'" org-babel-picolisp-eoe)
154 (comint-send-input)))))
155 "\n")
156 ;; external evaluation
157 (let ((script-file (org-babel-temp-file "picolisp-script-")))
158 (with-temp-file script-file
159 (insert (concat wrapped-body "(bye)")))
160 (org-babel-eval
161 (format "%s %s"
162 org-babel-picolisp-cmd
163 (org-babel-process-file-name script-file))
164 "")))))
165 (org-babel-result-cond result-params
166 result
167 (read result))))
169 (defun org-babel-picolisp-initiate-session (&optional session-name)
170 "If there is not a current inferior-process-buffer in SESSION
171 then create. Return the initialized session."
172 (unless (string= session-name "none")
173 (require 'inferior-picolisp)
174 ;; provide a reasonable default session name
175 (let ((session (or session-name "*inferior-picolisp*")))
176 ;; check if we already have a live session by this name
177 (if (org-babel-comint-buffer-livep session)
178 (get-buffer session)
179 (save-window-excursion
180 (run-picolisp org-babel-picolisp-cmd)
181 (rename-buffer session-name)
182 (current-buffer))))))
184 (provide 'ob-picolisp)
188 ;;; ob-picolisp.el ends here