96 lines
3.5 KiB
EmacsLisp
96 lines
3.5 KiB
EmacsLisp
;;; ob-mathematica.el --- org-babel functions for Mathematica evaluation
|
|
|
|
;; Copyright (C) 2014, 2021 Yi Wang
|
|
|
|
;; Authors: Yi Wang
|
|
;; Keywords: literate programming, reproducible research
|
|
;; Homepage: https://github.com/tririver/ob-mathematica/
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; 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,
|
|
;; 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.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;; Org-Babel support for evaluating Mathematica source code.
|
|
|
|
;;; Code:
|
|
(require 'ob)
|
|
(require 'ob-ref)
|
|
(require 'ob-comint)
|
|
(require 'ob-eval)
|
|
|
|
(declare-function org-trim "org" (s &optional keep-lead))
|
|
|
|
;; Optionally require mma.el for font lock, etc
|
|
(require 'mma nil 'noerror)
|
|
(add-to-list 'org-src-lang-modes '("mathematica" . "mma"))
|
|
|
|
(defvar org-babel-tangle-lang-exts)
|
|
(add-to-list 'org-babel-tangle-lang-exts '("mathematica" . "m"))
|
|
|
|
(defvar org-babel-default-header-args:mathematica '())
|
|
|
|
(defvar org-babel-mathematica-command "MathematicaScript -script"
|
|
"Name of the command for executing Mathematica code.")
|
|
|
|
(defvar org-babel-mathematica-command-alt "math -noprompt"
|
|
"Name of the command for executing Mathematica code.")
|
|
|
|
(defun org-babel-expand-body:mathematica (body params)
|
|
"Expand BODY according to PARAMS, return the expanded body."
|
|
(let ((vars (org-babel--get-vars params)))
|
|
(concat
|
|
(mapconcat ;; define any variables
|
|
(lambda (pair)
|
|
(format "%s=%s;"
|
|
(car pair)
|
|
(org-babel-mathematica-var-to-mathematica (cdr pair))))
|
|
vars "\n") "\nPrint[\n" body "\n]\n")))
|
|
|
|
(defun org-babel-execute:mathematica (body params)
|
|
"Execute a block of Mathematica code with org-babel. This function is
|
|
called by `org-babel-execute-src-block'"
|
|
(let* ((result-params (cdr (assq :result-params params)))
|
|
(full-body (org-babel-expand-body:mathematica body params))
|
|
(tmp-script-file (org-babel-temp-file "mathematica-"))
|
|
(cmd org-babel-mathematica-command))
|
|
;; actually execute the source-code block
|
|
(with-temp-file tmp-script-file (insert full-body))
|
|
;; (with-temp-file "/tmp/dbg" (insert full-body))
|
|
((lambda (raw)
|
|
(if (or (member "code" result-params)
|
|
(member "pp" result-params)
|
|
(and (member "output" result-params)
|
|
(not (member "table" result-params))))
|
|
raw
|
|
(org-babel-script-escape (org-trim raw))))
|
|
(org-babel-eval (concat cmd " " tmp-script-file) ""))))
|
|
|
|
(defun org-babel-prep-session:mathematica (session params)
|
|
"This function does nothing so far"
|
|
(error "Currently no support for sessions"))
|
|
|
|
(defun org-babel-prep-session:mathematica (session body params)
|
|
"This function does nothing so far"
|
|
(error "Currently no support for sessions"))
|
|
|
|
(defun org-babel-mathematica-var-to-mathematica (var)
|
|
"Convert an elisp value to a Mathematica variable.
|
|
Convert an elisp value, VAR, into a string of Mathematica source code
|
|
specifying a variable of the same value."
|
|
(if (listp var)
|
|
(concat "{" (mapconcat #'org-babel-mathematica-var-to-mathematica var ", ") "}")
|
|
(format "%S" var)))
|
|
|
|
(provide 'ob-mathematica)
|