2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-maxima.el --- Babel Functions for Maxima -*- lexical-binding: t; -*-
|
2011-03-14 21:20:05 +00:00
|
|
|
|
2022-01-01 20:10:55 +00:00
|
|
|
;; Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
2011-03-14 21:20:05 +00:00
|
|
|
|
2011-08-13 08:11:39 +00:00
|
|
|
;; Author: Eric S Fraga
|
2012-04-01 22:53:28 +00:00
|
|
|
;; Eric Schulte
|
2011-03-14 21:20:05 +00:00
|
|
|
;; Keywords: literate programming, reproducible research, maxima
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2011-03-14 21:20:05 +00:00
|
|
|
|
2011-08-13 08:11:39 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2011-03-14 21:20:05 +00:00
|
|
|
|
2011-08-13 08:11:39 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2011-03-14 21:20:05 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2011-08-13 08:11:39 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2011-03-14 21:20:05 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2011-08-13 08:11:39 +00:00
|
|
|
|
2011-03-14 21:20:05 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2011-03-14 21:20:05 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating maxima entries.
|
|
|
|
;;
|
|
|
|
;; This differs from most standard languages in that
|
|
|
|
;; 1) there is no such thing as a "session" in maxima
|
2011-11-08 20:36:25 +00:00
|
|
|
;; 2) we are adding the "cmdline" header argument
|
2011-03-14 21:20:05 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(require 'ob)
|
|
|
|
|
2011-11-08 20:36:25 +00:00
|
|
|
(defvar org-babel-tangle-lang-exts)
|
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("maxima" . "max"))
|
|
|
|
|
2011-03-14 21:20:05 +00:00
|
|
|
(defvar org-babel-default-header-args:maxima '())
|
|
|
|
|
2012-03-26 11:45:40 +00:00
|
|
|
(defcustom org-babel-maxima-command
|
|
|
|
(if (boundp 'maxima-command) maxima-command "maxima")
|
2012-03-30 20:36:52 +00:00
|
|
|
"Command used to call maxima on the shell."
|
2013-12-30 09:13:57 +00:00
|
|
|
:group 'org-babel
|
|
|
|
:type 'string)
|
2012-03-26 11:45:40 +00:00
|
|
|
|
2011-03-14 21:20:05 +00:00
|
|
|
(defun org-babel-maxima-expand (body params)
|
|
|
|
"Expand a block of Maxima code according to its header arguments."
|
2017-01-05 15:03:05 +00:00
|
|
|
(let ((vars (org-babel--get-vars params))
|
|
|
|
(epilogue (cdr (assq :epilogue params)))
|
|
|
|
(prologue (cdr (assq :prologue params))))
|
2012-08-11 17:10:44 +00:00
|
|
|
(mapconcat 'identity
|
|
|
|
(list
|
2017-01-05 15:03:05 +00:00
|
|
|
;; Any code from the specified prologue at the start.
|
|
|
|
prologue
|
2012-08-11 17:10:44 +00:00
|
|
|
;; graphic output
|
2014-05-16 03:26:30 +00:00
|
|
|
(let ((graphic-file (ignore-errors (org-babel-graphical-output-file params))))
|
2012-08-11 17:10:44 +00:00
|
|
|
(if graphic-file
|
|
|
|
(format
|
|
|
|
"set_plot_option ([gnuplot_term, png]); set_plot_option ([gnuplot_out_file, %S]);"
|
|
|
|
graphic-file)
|
|
|
|
""))
|
|
|
|
;; variables
|
|
|
|
(mapconcat 'org-babel-maxima-var-to-maxima vars "\n")
|
|
|
|
;; body
|
|
|
|
body
|
2017-01-05 15:03:05 +00:00
|
|
|
;; Any code from the specified epilogue at the end.
|
|
|
|
epilogue
|
2012-08-11 17:10:44 +00:00
|
|
|
"gnuplot_close ()$")
|
|
|
|
"\n")))
|
2011-03-14 21:20:05 +00:00
|
|
|
|
|
|
|
(defun org-babel-execute:maxima (body params)
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
"Execute a block of Maxima entries with org-babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2011-03-14 21:20:05 +00:00
|
|
|
(message "executing Maxima source code block")
|
2016-09-22 17:45:15 +00:00
|
|
|
(let ((result-params (split-string (or (cdr (assq :results params)) "")))
|
2012-01-05 17:31:30 +00:00
|
|
|
(result
|
2016-09-22 17:45:15 +00:00
|
|
|
(let* ((cmdline (or (cdr (assq :cmdline params)) ""))
|
2011-11-08 20:36:25 +00:00
|
|
|
(in-file (org-babel-temp-file "maxima-" ".max"))
|
2012-03-26 11:45:40 +00:00
|
|
|
(cmd (format "%s --very-quiet -r 'batchload(%S)$' %s"
|
|
|
|
org-babel-maxima-command in-file cmdline)))
|
2011-11-08 20:36:25 +00:00
|
|
|
(with-temp-file in-file (insert (org-babel-maxima-expand body params)))
|
|
|
|
(message cmd)
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
;; " | grep -v batch | grep -v 'replaced' | sed '/^$/d' "
|
|
|
|
(let ((raw (org-babel-eval cmd "")))
|
|
|
|
(mapconcat
|
|
|
|
#'identity
|
|
|
|
(delq nil
|
|
|
|
(mapcar (lambda (line)
|
|
|
|
(unless (or (string-match "batch" line)
|
|
|
|
(string-match "^rat: replaced .*$" line)
|
|
|
|
(string-match "^;;; Loading #P" line)
|
|
|
|
(= 0 (length line)))
|
|
|
|
line))
|
|
|
|
(split-string raw "[\r\n]"))) "\n")))))
|
2014-05-16 03:26:30 +00:00
|
|
|
(if (ignore-errors (org-babel-graphical-output-file params))
|
2011-11-08 20:36:25 +00:00
|
|
|
nil
|
2012-11-19 01:02:09 +00:00
|
|
|
(org-babel-result-cond result-params
|
|
|
|
result
|
2011-10-02 01:37:14 +00:00
|
|
|
(let ((tmp-file (org-babel-temp-file "maxima-res-")))
|
|
|
|
(with-temp-file tmp-file (insert result))
|
|
|
|
(org-babel-import-elisp-from-file tmp-file))))))
|
2011-11-08 20:36:25 +00:00
|
|
|
|
2011-03-14 21:20:05 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:maxima (_session _params)
|
2011-03-14 21:20:05 +00:00
|
|
|
(error "Maxima does not support sessions"))
|
|
|
|
|
2011-11-08 20:36:25 +00:00
|
|
|
(defun org-babel-maxima-var-to-maxima (pair)
|
|
|
|
"Convert an elisp val into a string of maxima code specifying a var
|
|
|
|
of the same value."
|
|
|
|
(let ((var (car pair))
|
|
|
|
(val (cdr pair)))
|
|
|
|
(when (symbolp val)
|
|
|
|
(setq val (symbol-name val))
|
|
|
|
(when (= (length val) 1)
|
|
|
|
(setq val (string-to-char val))))
|
2012-08-11 17:10:44 +00:00
|
|
|
(format "%S: %s$" var
|
|
|
|
(org-babel-maxima-elisp-to-maxima val))))
|
2011-11-08 20:36:25 +00:00
|
|
|
|
|
|
|
(defun org-babel-maxima-elisp-to-maxima (val)
|
|
|
|
"Return a string of maxima code which evaluates to VAL."
|
|
|
|
(if (listp val)
|
|
|
|
(concat "[" (mapconcat #'org-babel-maxima-elisp-to-maxima val ", ") "]")
|
|
|
|
(format "%s" val)))
|
|
|
|
|
2011-03-14 21:20:05 +00:00
|
|
|
(provide 'ob-maxima)
|
|
|
|
|
2011-07-21 17:11:33 +00:00
|
|
|
;;; ob-maxima.el ends here
|