Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / org / ob-maxima.el
blob836cdcb8dc114d068f709fa705cb1643a7e3b47a
1 ;;; ob-maxima.el --- org-babel functions for maxima evaluation
3 ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 ;; Author: Eric S Fraga
6 ;; Eric Schulte
7 ;; Keywords: literate programming, reproducible research, maxima
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 ;; Org-Babel support for evaluating maxima entries.
29 ;; This differs from most standard languages in that
31 ;; 1) there is no such thing as a "session" in maxima
33 ;; 2) we are adding the "cmdline" header argument
35 ;;; Code:
36 (require 'ob)
38 (defvar org-babel-tangle-lang-exts)
39 (add-to-list 'org-babel-tangle-lang-exts '("maxima" . "max"))
41 (defvar org-babel-default-header-args:maxima '())
43 (defcustom org-babel-maxima-command
44 (if (boundp 'maxima-command) maxima-command "maxima")
45 "Command used to call maxima on the shell."
46 :group 'org-babel)
48 (defun org-babel-maxima-expand (body params)
49 "Expand a block of Maxima code according to its header arguments."
50 (let ((vars (mapcar #'cdr (org-babel-get-header params :var))))
51 (mapconcat 'identity
52 (list
53 ;; graphic output
54 (let ((graphic-file (org-babel-maxima-graphical-output-file params)))
55 (if graphic-file
56 (format
57 "set_plot_option ([gnuplot_term, png]); set_plot_option ([gnuplot_out_file, %S]);"
58 graphic-file)
59 ""))
60 ;; variables
61 (mapconcat 'org-babel-maxima-var-to-maxima vars "\n")
62 ;; body
63 body
64 "gnuplot_close ()$")
65 "\n")))
67 (defun org-babel-execute:maxima (body params)
68 "Execute a block of Maxima entries with org-babel.
69 This function is called by `org-babel-execute-src-block'."
70 (message "executing Maxima source code block")
71 (let ((result-params (split-string (or (cdr (assoc :results params)) "")))
72 (result
73 (let* ((cmdline (or (cdr (assoc :cmdline params)) ""))
74 (in-file (org-babel-temp-file "maxima-" ".max"))
75 (cmd (format "%s --very-quiet -r 'batchload(%S)$' %s"
76 org-babel-maxima-command in-file cmdline)))
77 (with-temp-file in-file (insert (org-babel-maxima-expand body params)))
78 (message cmd)
79 ;; " | grep -v batch | grep -v 'replaced' | sed '/^$/d' "
80 (let ((raw (org-babel-eval cmd "")))
81 (mapconcat
82 #'identity
83 (delq nil
84 (mapcar (lambda (line)
85 (unless (or (string-match "batch" line)
86 (string-match "^rat: replaced .*$" line)
87 (string-match "^;;; Loading #P" line)
88 (= 0 (length line)))
89 line))
90 (split-string raw "[\r\n]"))) "\n")))))
91 (if (org-babel-maxima-graphical-output-file params)
92 nil
93 (org-babel-result-cond result-params
94 result
95 (let ((tmp-file (org-babel-temp-file "maxima-res-")))
96 (with-temp-file tmp-file (insert result))
97 (org-babel-import-elisp-from-file tmp-file))))))
100 (defun org-babel-prep-session:maxima (session params)
101 (error "Maxima does not support sessions"))
103 (defun org-babel-maxima-var-to-maxima (pair)
104 "Convert an elisp val into a string of maxima code specifying a var
105 of the same value."
106 (let ((var (car pair))
107 (val (cdr pair)))
108 (when (symbolp val)
109 (setq val (symbol-name val))
110 (when (= (length val) 1)
111 (setq val (string-to-char val))))
112 (format "%S: %s$" var
113 (org-babel-maxima-elisp-to-maxima val))))
115 (defun org-babel-maxima-graphical-output-file (params)
116 "Name of file to which maxima should send graphical output."
117 (and (member "graphics" (cdr (assq :result-params params)))
118 (cdr (assq :file params))))
120 (defun org-babel-maxima-elisp-to-maxima (val)
121 "Return a string of maxima code which evaluates to VAL."
122 (if (listp val)
123 (concat "[" (mapconcat #'org-babel-maxima-elisp-to-maxima val ", ") "]")
124 (format "%s" val)))
127 (provide 'ob-maxima)
131 ;;; ob-maxima.el ends here