1 ;;; ob-ocaml.el --- org-babel functions for ocaml evaluation
3 ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; 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/>.
27 ;; Org-Babel support for evaluating ocaml source code. This one will
28 ;; be sort of tricky because ocaml programs must be compiled before
29 ;; they can be run, but ocaml code can also be run through an
30 ;; interactive interpreter.
32 ;; For now lets only allow evaluation using the ocaml interpreter.
36 ;; - tuareg-mode :: http://www-rocq.inria.fr/~acohen/tuareg/
42 (eval-when-compile (require 'cl
))
44 (declare-function tuareg-run-caml
"ext:tuareg" ())
45 (declare-function tuareg-interactive-send-input
"ext:tuareg" ())
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 (defun org-babel-expand-body:ocaml
(body params
&optional processed-params
)
55 "Expand BODY according to PARAMS, return the expanded body."
56 (let ((vars (nth 1 (or processed-params
(org-babel-process-params params
)))))
59 (lambda (pair) (format "let %s = %s;;" (car pair
)
60 (org-babel-ocaml-elisp-to-ocaml (cdr pair
))))
61 vars
"\n") "\n" body
"\n")))
63 (defun org-babel-execute:ocaml
(body params
)
64 "Execute a block of Ocaml code with Babel."
65 (let* ((processed-params (org-babel-process-params params
))
66 (vars (nth 1 processed-params
))
67 (full-body (org-babel-expand-body:ocaml body params processed-params
))
68 (session (org-babel-prep-session:ocaml
69 (cdr (assoc :session params
)) params
))
70 (raw (org-babel-comint-with-output
71 (session org-babel-ocaml-eoe-output t full-body
)
74 (org-babel-chomp full-body
)"\n"org-babel-ocaml-eoe-indicator
))
75 (tuareg-interactive-send-input)))
77 (car (let ((re (regexp-quote org-babel-ocaml-eoe-output
)) out
)
78 (delq nil
(mapcar (lambda (line)
80 (progn (setq out nil
) line
)
81 (when (string-match re line
)
82 (progn (setq out t
) nil
))))
83 (mapcar #'org-babel-trim
(reverse raw
))))))))
84 (org-babel-reassemble-table
85 (org-babel-ocaml-parse-output (org-babel-trim clean
))
87 (nth 4 processed-params
) (cdr (assoc :colnames params
)))
89 (nth 5 processed-params
) (cdr (assoc :rownames params
))))))
91 (defvar tuareg-interactive-buffer-name
)
92 (defun org-babel-prep-session:ocaml
(session params
)
93 "Prepare SESSION according to the header arguments in PARAMS."
95 (let ((tuareg-interactive-buffer-name (if (and (not (string= session
"none"))
96 (not (string= session
"default"))
99 tuareg-interactive-buffer-name
)))
100 (save-window-excursion (tuareg-run-caml)
101 (get-buffer tuareg-interactive-buffer-name
))))
103 (defun org-babel-ocaml-elisp-to-ocaml (val)
104 "Return a string of ocaml code which evaluates to VAL."
106 (concat "[|" (mapconcat #'org-babel-ocaml-elisp-to-ocaml val
"; ") "|]")
109 (defun org-babel-ocaml-parse-output (output)
111 OUTPUT is string output from an ocaml process."
112 (let ((regexp "%s = \\(.+\\)$"))
114 ((string-match (format regexp
"string") output
)
115 (org-babel-read (match-string 1 output
)))
116 ((or (string-match (format regexp
"int") output
)
117 (string-match (format regexp
"float") output
))
118 (string-to-number (match-string 1 output
)))
119 ((string-match (format regexp
"list") output
)
120 (org-babel-ocaml-read-list (match-string 1 output
)))
121 ((string-match (format regexp
"array") output
)
122 (org-babel-ocaml-read-array (match-string 1 output
)))
123 (t (message "don't recognize type of %s" output
) output
))))
125 (defun org-babel-ocaml-read-list (results)
126 "Convert RESULTS into an elisp table or string.
127 If the results look like a table, then convert them into an
128 Emacs-lisp table, otherwise return the results as a string."
130 (if (and (stringp results
) (string-match "^\\[.+\\]$" results
))
132 (replace-regexp-in-string
133 "\\[" "(" (replace-regexp-in-string
134 "\\]" ")" (replace-regexp-in-string
135 "; " " " (replace-regexp-in-string
136 "'" "\"" results
)))))
139 (defun org-babel-ocaml-read-array (results)
140 "Convert RESULTS into an elisp table or string.
141 If the results look like a table, then convert them into an
142 Emacs-lisp table, otherwise return the results as a string."
144 (if (and (stringp results
) (string-match "^\\[.+\\]$" results
))
147 "'" (replace-regexp-in-string
148 "\\[|" "(" (replace-regexp-in-string
149 "|\\]" ")" (replace-regexp-in-string
150 "; " " " (replace-regexp-in-string
151 "'" "\"" results
))))))
156 ;; arch-tag: 2e815f4d-365e-4d69-b1df-dd17fdd7b7b7
158 ;;; ob-ocaml.el ends here