Radio targets cannot beging or end with whitespace
[org-mode.git] / lisp / ob-ocaml.el
blob7f0e2984c2209fb2b6e28a6ec4372ef9737602dc
1 ;;; ob-ocaml.el --- org-babel functions for ocaml evaluation
3 ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Org-Babel support for evaluating ocaml source code. This one will
27 ;; be sort of tricky because ocaml programs must be compiled before
28 ;; they can be run, but ocaml code can also be run through an
29 ;; interactive interpreter.
31 ;; For now lets only allow evaluation using the ocaml interpreter.
33 ;;; Requirements:
35 ;; - tuareg-mode :: http://www-rocq.inria.fr/~acohen/tuareg/
37 ;;; Code:
38 (require 'ob)
39 (require 'comint)
40 (eval-when-compile (require 'cl))
42 (declare-function tuareg-run-caml "ext:tuareg" ())
43 (declare-function tuareg-run-ocaml "ext:tuareg" ())
44 (declare-function tuareg-interactive-send-input "ext:tuareg" ())
46 (defvar org-babel-tangle-lang-exts)
47 (add-to-list 'org-babel-tangle-lang-exts '("ocaml" . "ml"))
49 (defvar org-babel-default-header-args:ocaml '())
51 (defvar org-babel-ocaml-eoe-indicator "\"org-babel-ocaml-eoe\";;")
52 (defvar org-babel-ocaml-eoe-output "org-babel-ocaml-eoe")
54 (defcustom org-babel-ocaml-command "ocaml"
55 "Name of the command for executing Ocaml code."
56 :version "24.4"
57 :package-version '(Org . "8.0")
58 :group 'org-babel
59 :type 'string)
61 (defun org-babel-execute:ocaml (body params)
62 "Execute a block of Ocaml code with Babel."
63 (let* ((vars (mapcar #'cdr (org-babel-get-header params :var)))
64 (full-body (org-babel-expand-body:generic
65 body params
66 (org-babel-variable-assignments:ocaml params)))
67 (session (org-babel-prep-session:ocaml
68 (cdr (assoc :session params)) params))
69 (raw (org-babel-comint-with-output
70 (session org-babel-ocaml-eoe-output t full-body)
71 (insert
72 (concat
73 (org-babel-chomp full-body)";;\n"org-babel-ocaml-eoe-indicator))
74 (tuareg-interactive-send-input)))
75 (clean
76 (car (let ((re (regexp-quote org-babel-ocaml-eoe-output)) out)
77 (delq nil (mapcar (lambda (line)
78 (if out
79 (progn (setq out nil) line)
80 (when (string-match re line)
81 (progn (setq out t) nil))))
82 (mapcar #'org-babel-trim (reverse raw)))))))
83 (raw (org-babel-trim clean))
84 (result-params (cdr (assoc :result-params params)))
85 (parsed
86 (string-match
87 "\\(\\(.*\n\\)*\\)[^:\n]+ : \\([^=\n]+\\) =\\(\n\\| \\)\\(.+\\)$"
88 raw))
89 (output (match-string 1 raw))
90 (type (match-string 3 raw))
91 (value (match-string 5 raw)))
92 (org-babel-reassemble-table
93 (org-babel-result-cond result-params
94 (cond
95 ((member "verbatim" result-params) raw)
96 ((member "output" result-params) output)
97 (t raw))
98 (if (and value type)
99 (org-babel-ocaml-parse-output value type)
100 raw))
101 (org-babel-pick-name
102 (cdr (assoc :colname-names params)) (cdr (assoc :colnames params)))
103 (org-babel-pick-name
104 (cdr (assoc :rowname-names params)) (cdr (assoc :rownames params))))))
106 (defvar tuareg-interactive-buffer-name)
107 (defun org-babel-prep-session:ocaml (session params)
108 "Prepare SESSION according to the header arguments in PARAMS."
109 (require 'tuareg)
110 (let ((tuareg-interactive-buffer-name (if (and (not (string= session "none"))
111 (not (string= session "default"))
112 (stringp session))
113 session
114 tuareg-interactive-buffer-name)))
115 (save-window-excursion (if (fboundp 'tuareg-run-process-if-needed)
116 (tuareg-run-process-if-needed org-babel-ocaml-command)
117 (tuareg-run-caml)))
118 (get-buffer tuareg-interactive-buffer-name)))
120 (defun org-babel-variable-assignments:ocaml (params)
121 "Return list of ocaml statements assigning the block's variables."
122 (mapcar
123 (lambda (pair) (format "let %s = %s;;" (car pair)
124 (org-babel-ocaml-elisp-to-ocaml (cdr pair))))
125 (mapcar #'cdr (org-babel-get-header params :var))))
127 (defun org-babel-ocaml-elisp-to-ocaml (val)
128 "Return a string of ocaml code which evaluates to VAL."
129 (if (listp val)
130 (concat "[|" (mapconcat #'org-babel-ocaml-elisp-to-ocaml val "; ") "|]")
131 (format "%S" val)))
133 (defun org-babel-ocaml-parse-output (value type)
134 "Parse VALUE of type TYPE.
135 VALUE and TYPE are string output from an ocaml process."
136 (cond
137 ((string= "string" type)
138 (org-babel-read value))
139 ((or (string= "int" type)
140 (string= "float" type))
141 (string-to-number value))
142 ((string-match "list" type)
143 (org-babel-ocaml-read-list value))
144 ((string-match "array" type)
145 (org-babel-ocaml-read-array value))
146 (t (message "don't recognize type %s" type) value)))
148 (defun org-babel-ocaml-read-list (results)
149 "Convert RESULTS into an elisp table or string.
150 If the results look like a table, then convert them into an
151 Emacs-lisp table, otherwise return the results as a string."
152 (org-babel-script-escape (replace-regexp-in-string ";" "," results)))
154 (defun org-babel-ocaml-read-array (results)
155 "Convert RESULTS into an elisp table or string.
156 If the results look like a table, then convert them into an
157 Emacs-lisp table, otherwise return the results as a string."
158 (org-babel-script-escape
159 (replace-regexp-in-string
160 "\\[|" "[" (replace-regexp-in-string
161 "|\\]" "]" (replace-regexp-in-string
162 "; " "," results)))))
164 (provide 'ob-ocaml)
168 ;;; ob-ocaml.el ends here