ob-ocaml.el 5.3 KB

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