org-babel-haskell.el 8.5 KB

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