ob-ocaml.el 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ;;; ob-ocaml.el --- org-babel functions for ocaml evaluation
  2. ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Org-Babel support for evaluating ocaml source code. This one will
  20. ;; be sort of tricky because ocaml programs must be compiled before
  21. ;; they can be run, but ocaml code can also be run through an
  22. ;; interactive interpreter.
  23. ;;
  24. ;; For now lets only allow evaluation using the ocaml interpreter.
  25. ;;; Requirements:
  26. ;; - tuareg-mode :: http://www-rocq.inria.fr/~acohen/tuareg/
  27. ;;; Code:
  28. (require 'ob)
  29. (require 'tuareg)
  30. (add-to-list 'org-babel-tangle-lang-exts '("ocaml" . "ml"))
  31. (defvar org-babel-ocaml-eoe-indicator "\"org-babel-ocaml-eoe\";;")
  32. (defvar org-babel-ocaml-eoe-output "org-babel-ocaml-eoe")
  33. (defun org-babel-expand-body:ocaml (body params &optional processed-params)
  34. "Expand BODY according to PARAMS, return the expanded body."
  35. (let ((vars (second (or processed-params (org-babel-process-params params)))))
  36. (concat
  37. (mapconcat
  38. (lambda (pair) (format "let %s = %s;" (car pair) (cdr pair)))
  39. vars "\n") "\n" body "\n")))
  40. (defun org-babel-execute:ocaml (body params)
  41. "Execute a block of Ocaml code with org-babel."
  42. (message "executing ocaml source code block")
  43. (let* ((processed-params (org-babel-process-params params))
  44. (vars (second processed-params))
  45. (full-body (org-babel-expand-body:ocaml body params processed-params))
  46. (session (org-babel-prep-session:ocaml session params))
  47. (raw (org-babel-comint-with-output
  48. (session org-babel-ocaml-eoe-output t full-body)
  49. (insert (concat (org-babel-chomp full-body) " ;;"))
  50. (comint-send-input nil t)
  51. (insert org-babel-ocaml-eoe-indicator)
  52. (comint-send-input nil t))))
  53. (org-babel-reassemble-table
  54. (org-babel-ocaml-parse-output (org-babel-trim (car raw)))
  55. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  56. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))))
  57. (defun org-babel-prep-session:ocaml (session params)
  58. "Prepare SESSION according to the header arguments specified in PARAMS."
  59. (let ((tuareg-interactive-buffer-name (if (and (not (string= session "none"))
  60. (not (string= session "default"))
  61. (stringp session))
  62. session
  63. tuareg-interactive-buffer-name)))
  64. (save-window-excursion (tuareg-run-caml)
  65. (get-buffer tuareg-interactive-buffer-name))))
  66. (defun org-babel-ocaml-parse-output (output)
  67. "Parse OUTPUT where OUTPUT is string output from an ocaml
  68. process."
  69. (let ((regexp "%s = \\(.+\\)$"))
  70. (cond
  71. ((string-match (format regexp "string") output)
  72. (org-babel-read (match-string 1 output)))
  73. ((or (string-match (format regexp "int") output)
  74. (string-match (format regexp "float") output))
  75. (string-to-number (match-string 1 output)))
  76. ((string-match (format regexp "list") output)
  77. (org-babel-ocaml-read-list (match-string 1 output)))
  78. ((string-match (format regexp "array") output)
  79. (org-babel-ocaml-read-array (match-string 1 output)))
  80. (t (message "don't recognize type of %s" output) output))))
  81. (defun org-babel-ocaml-read-list (results)
  82. "If the results look like a table, then convert them into an
  83. Emacs-lisp table, otherwise return the results as a string."
  84. (org-babel-read
  85. (if (and (stringp results) (string-match "^\\[.+\\]$" results))
  86. (org-babel-read
  87. (replace-regexp-in-string
  88. "\\[" "(" (replace-regexp-in-string
  89. "\\]" ")" (replace-regexp-in-string
  90. "; " " " (replace-regexp-in-string
  91. "'" "\"" results)))))
  92. results)))
  93. (defun org-babel-ocaml-read-array (results)
  94. "If the results look like a table, then convert them into an
  95. Emacs-lisp table, otherwise return the results as a string."
  96. (org-babel-read
  97. (if (and (stringp results) (string-match "^\\[.+\\]$" results))
  98. (org-babel-read
  99. (replace-regexp-in-string
  100. "\\[|" "(" (replace-regexp-in-string
  101. "|\\]" ")" (replace-regexp-in-string
  102. "; " " " (replace-regexp-in-string
  103. "'" "\"" results)))))
  104. results)))
  105. (provide 'ob-ocaml)
  106. ;; arch-tag: 2e815f4d-365e-4d69-b1df-dd17fdd7b7b7
  107. ;;; ob-ocaml.el ends here