ob-haskell.el 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. ;;; ob-haskell.el --- org-babel functions for haskell evaluation
  2. ;; Copyright (C) 2009-2012 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 haskell source code. This one will
  19. ;; be sort of tricky because haskell programs must be compiled before
  20. ;; they can be run, but haskell code can also be run through an
  21. ;; interactive interpreter.
  22. ;;
  23. ;; For now lets only allow evaluation using the haskell interpreter.
  24. ;;; Requirements:
  25. ;; - haskell-mode :: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode
  26. ;;
  27. ;; - inf-haskell :: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode
  28. ;;
  29. ;; - (optionally) lhs2tex :: http://people.cs.uu.nl/andres/lhs2tex/
  30. ;;; Code:
  31. (require 'ob)
  32. (require 'ob-comint)
  33. (require 'comint)
  34. (eval-when-compile (require 'cl))
  35. (declare-function org-remove-indentation "org" (code &optional n))
  36. (declare-function haskell-mode "ext:haskell-mode" ())
  37. (declare-function run-haskell "ext:inf-haskell" (&optional arg))
  38. (declare-function inferior-haskell-load-file
  39. "ext:inf-haskell" (&optional reload))
  40. (defvar org-babel-tangle-lang-exts)
  41. (add-to-list 'org-babel-tangle-lang-exts '("haskell" . "hs"))
  42. (defvar org-babel-default-header-args:haskell '())
  43. (defvar org-babel-haskell-lhs2tex-command "lhs2tex")
  44. (defvar org-babel-haskell-eoe "\"org-babel-haskell-eoe\"")
  45. (defun org-babel-execute:haskell (body params)
  46. "Execute a block of Haskell code."
  47. (let* ((session (cdr (assoc :session params)))
  48. (vars (mapcar #'cdr (org-babel-get-header params :var)))
  49. (result-type (cdr (assoc :result-type params)))
  50. (full-body (org-babel-expand-body:generic
  51. body params
  52. (org-babel-variable-assignments:haskell params)))
  53. (session (org-babel-haskell-initiate-session session params))
  54. (raw (org-babel-comint-with-output
  55. (session org-babel-haskell-eoe t full-body)
  56. (insert (org-babel-trim full-body))
  57. (comint-send-input nil t)
  58. (insert org-babel-haskell-eoe)
  59. (comint-send-input nil t)))
  60. (results (mapcar
  61. #'org-babel-haskell-read-string
  62. (cdr (member org-babel-haskell-eoe
  63. (reverse (mapcar #'org-babel-trim raw)))))))
  64. (org-babel-reassemble-table
  65. (cond
  66. ((equal result-type 'output)
  67. (mapconcat #'identity (reverse (cdr results)) "\n"))
  68. ((equal result-type 'value)
  69. (org-babel-haskell-table-or-string (car results))))
  70. (org-babel-pick-name (cdr (assoc :colname-names params))
  71. (cdr (assoc :colname-names params)))
  72. (org-babel-pick-name (cdr (assoc :rowname-names params))
  73. (cdr (assoc :rowname-names params))))))
  74. (defun org-babel-haskell-read-string (string)
  75. "Strip \\\"s from around a haskell string."
  76. (if (string-match "^\"\\([^\000]+\\)\"$" string)
  77. (match-string 1 string)
  78. string))
  79. (defun org-babel-haskell-initiate-session (&optional session params)
  80. "Initiate a haskell session.
  81. If there is not a current inferior-process-buffer in SESSION
  82. then create one. Return the initialized session."
  83. (require 'inf-haskell)
  84. (or (get-buffer "*haskell*")
  85. (save-window-excursion (run-haskell) (sleep-for 0.25) (current-buffer))))
  86. (defun org-babel-load-session:haskell (session body params)
  87. "Load BODY into SESSION."
  88. (save-window-excursion
  89. (let* ((buffer (org-babel-prep-session:haskell session params))
  90. (load-file (concat (org-babel-temp-file "haskell-load-") ".hs")))
  91. (with-temp-buffer
  92. (insert body) (write-file load-file)
  93. (haskell-mode) (inferior-haskell-load-file))
  94. buffer)))
  95. (defun org-babel-prep-session:haskell (session params)
  96. "Prepare SESSION according to the header arguments in PARAMS."
  97. (save-window-excursion
  98. (let ((buffer (org-babel-haskell-initiate-session session)))
  99. (org-babel-comint-in-buffer buffer
  100. (mapc (lambda (line)
  101. (insert line)
  102. (comint-send-input nil t))
  103. (org-babel-variable-assignments:haskell params)))
  104. (current-buffer))))
  105. (defun org-babel-variable-assignments:haskell (params)
  106. "Return list of haskell statements assigning the block's variables"
  107. (mapcar (lambda (pair)
  108. (format "let %s = %s"
  109. (car pair)
  110. (org-babel-haskell-var-to-haskell (cdr pair))))
  111. (mapcar #'cdr (org-babel-get-header params :var))))
  112. (defun org-babel-haskell-table-or-string (results)
  113. "Convert RESULTS to an Emacs-lisp table or string.
  114. If RESULTS look like a table, then convert them into an
  115. Emacs-lisp table, otherwise return the results as a string."
  116. (org-babel-script-escape results))
  117. (defun org-babel-haskell-var-to-haskell (var)
  118. "Convert an elisp value VAR into a haskell variable.
  119. The elisp VAR is converted to a string of haskell source code
  120. specifying a variable of the same value."
  121. (if (listp var)
  122. (concat "[" (mapconcat #'org-babel-haskell-var-to-haskell var ", ") "]")
  123. (format "%S" var)))
  124. (defvar org-src-preserve-indentation)
  125. (defun org-babel-haskell-export-to-lhs (&optional arg)
  126. "Export to a .lhs file with all haskell code blocks escaped.
  127. When called with a prefix argument the resulting
  128. .lhs file will be exported to a .tex file. This function will
  129. create two new files, base-name.lhs and base-name.tex where
  130. base-name is the name of the current org-mode file.
  131. Note that all standard Babel literate programming
  132. constructs (header arguments, no-web syntax etc...) are ignored."
  133. (interactive "P")
  134. (let* ((contents (buffer-string))
  135. (haskell-regexp
  136. (concat "^\\([ \t]*\\)#\\+begin_src[ \t]haskell*\\(.*\\)?[\r\n]"
  137. "\\([^\000]*?\\)[\r\n][ \t]*#\\+end_src.*"))
  138. (base-name (file-name-sans-extension (buffer-file-name)))
  139. (tmp-file (org-babel-temp-file "haskell-"))
  140. (tmp-org-file (concat tmp-file ".org"))
  141. (tmp-tex-file (concat tmp-file ".tex"))
  142. (lhs-file (concat base-name ".lhs"))
  143. (tex-file (concat base-name ".tex"))
  144. (command (concat org-babel-haskell-lhs2tex-command
  145. " " (org-babel-process-file-name lhs-file)
  146. " > " (org-babel-process-file-name tex-file)))
  147. (preserve-indentp org-src-preserve-indentation)
  148. indentation)
  149. ;; escape haskell source-code blocks
  150. (with-temp-file tmp-org-file
  151. (insert contents)
  152. (goto-char (point-min))
  153. (while (re-search-forward haskell-regexp nil t)
  154. (save-match-data (setq indentation (length (match-string 1))))
  155. (replace-match (save-match-data
  156. (concat
  157. "#+begin_latex\n\\begin{code}\n"
  158. (if (or preserve-indentp
  159. (string-match "-i" (match-string 2)))
  160. (match-string 3)
  161. (org-remove-indentation (match-string 3)))
  162. "\n\\end{code}\n#+end_latex\n"))
  163. t t)
  164. (indent-code-rigidly (match-beginning 0) (match-end 0) indentation)))
  165. (save-excursion
  166. ;; export to latex w/org and save as .lhs
  167. (find-file tmp-org-file) (funcall 'org-export-as-latex nil)
  168. (kill-buffer nil)
  169. (delete-file tmp-org-file)
  170. (find-file tmp-tex-file)
  171. (goto-char (point-min)) (forward-line 2)
  172. (insert "%include polycode.fmt\n")
  173. ;; ensure all \begin/end{code} statements start at the first column
  174. (while (re-search-forward "^[ \t]+\\\\begin{code}[^\000]+\\\\end{code}" nil t)
  175. (replace-match (save-match-data (org-remove-indentation (match-string 0)))
  176. t t))
  177. (setq contents (buffer-string))
  178. (save-buffer) (kill-buffer nil))
  179. (delete-file tmp-tex-file)
  180. ;; save org exported latex to a .lhs file
  181. (with-temp-file lhs-file (insert contents))
  182. (if (not arg)
  183. (find-file lhs-file)
  184. ;; process .lhs file with lhs2tex
  185. (message "running %s" command) (shell-command command) (find-file tex-file))))
  186. (provide 'ob-haskell)
  187. ;;; ob-haskell.el ends here