ob-ocaml.el 6.1 KB

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