ob-haskell.el 8.6 KB

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