org-babel-haskell.el 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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-execute:haskell (body params)
  44. "Execute a block of Haskell code with org-babel."
  45. (message "executing haskell source code block")
  46. (let* ((processed-params (org-babel-process-params params))
  47. (session (first processed-params))
  48. (vars (second processed-params))
  49. (result-type (fourth processed-params))
  50. (full-body (concat
  51. (mapconcat
  52. (lambda (pair) (format "let %s = %s;" (car pair) (cdr pair)))
  53. vars "\n") "\n" body "\n"))
  54. (session (org-babel-prep-session:haskell session params))
  55. (raw (org-babel-comint-with-output session org-babel-haskell-eoe t
  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. (case result-type
  65. (output (mapconcat #'identity (reverse (cdr results)) "\n"))
  66. (value (org-babel-haskell-table-or-string (car results))))))
  67. (defun org-babel-haskell-read-string (string)
  68. "Strip \\\"s from around haskell string"
  69. (if (string-match "^\"\\([^\000]+\\)\"$" string)
  70. (match-string 1 string)
  71. string))
  72. (defun org-babel-haskell-initiate-session (&optional session params)
  73. "If there is not a current inferior-process-buffer in SESSION
  74. then create. Return the initialized session."
  75. ;; TODO: make it possible to have multiple sessions
  76. (run-haskell) (current-buffer))
  77. (defun org-babel-load-session:haskell (session body params)
  78. "Load BODY into SESSION."
  79. (save-window-excursion
  80. (let* ((buffer (org-babel-prep-session:haskell session params))
  81. (load-file (concat (make-temp-file "org-babel-haskell-load") ".hs")))
  82. (with-temp-buffer
  83. (insert body) (write-file load-file)
  84. (haskell-mode) (inferior-haskell-load-file))
  85. buffer)))
  86. (defun org-babel-prep-session:haskell (session params)
  87. "Prepare SESSION according to the header arguments specified in PARAMS."
  88. (save-window-excursion
  89. (org-babel-haskell-initiate-session session)
  90. (let* ((vars (org-babel-ref-variables params))
  91. (var-lines (mapconcat ;; define any variables
  92. (lambda (pair)
  93. (format "%s=%s"
  94. (car pair)
  95. (org-babel-ruby-var-to-ruby (cdr pair))))
  96. vars "\n"))
  97. (vars-file (concat (make-temp-file "org-babel-haskell-vars") ".hs")))
  98. (when vars
  99. (with-temp-buffer
  100. (insert var-lines) (write-file vars-file)
  101. (haskell-mode) (inferior-haskell-load-file)))
  102. (current-buffer))))
  103. (defun org-babel-haskell-table-or-string (results)
  104. "If the results look like a table, then convert them into an
  105. Emacs-lisp table, otherwise return the results as a string."
  106. (org-babel-read
  107. (if (and (stringp results) (string-match "^\\[.+\\]$" results))
  108. (org-babel-read
  109. (concat "'"
  110. (replace-regexp-in-string
  111. "\\[" "(" (replace-regexp-in-string
  112. "\\]" ")" (replace-regexp-in-string
  113. "," " " (replace-regexp-in-string
  114. "'" "\"" results))))))
  115. results)))
  116. (defun org-babel-haskell-export-to-lhs (&optional arg)
  117. "Export to a .lhs with all haskell code blocks escaped
  118. appropriately. When called with a prefix argument the resulting
  119. .lhs file will be exported to a .tex file. This function will
  120. create two new files, base-name.lhs and base-name.tex where
  121. base-name is the name of the current org-mode file.
  122. Note that all standard org-babel literate programming
  123. constructs (header arguments, no-web syntax etc...) are ignored."
  124. (interactive "P")
  125. (let* ((contents (buffer-string))
  126. (haskell-regexp
  127. (concat "^\\([ \t]*\\)#\\+begin_src[ \t]haskell*\\(.*\\)?[\r\n]"
  128. "\\([^\000]*?\\)[\r\n][ \t]*#\\+end_src.*"))
  129. (base-name (file-name-sans-extension (buffer-file-name)))
  130. (tmp-file (make-temp-file "ob-haskell"))
  131. (tmp-org-file (concat tmp-file ".org"))
  132. (tmp-tex-file (concat tmp-file ".tex"))
  133. (lhs-file (concat base-name ".lhs"))
  134. (tex-file (concat base-name ".tex"))
  135. (command (concat org-babel-haskell-lhs2tex-command " " lhs-file " > " tex-file))
  136. (preserve-indentp org-src-preserve-indentation)
  137. indentation)
  138. ;; escape haskell source-code blocks
  139. (with-temp-file tmp-org-file
  140. (insert contents)
  141. (goto-char (point-min))
  142. (while (re-search-forward haskell-regexp nil t)
  143. (save-match-data (setq indentation (length (match-string 1))))
  144. (replace-match (save-match-data
  145. (concat
  146. "#+begin_latex\n\\begin{code}\n"
  147. (if (or preserve-indentp
  148. (string-match "-i" (match-string 2)))
  149. (match-string 3)
  150. (org-remove-indentation (match-string 3)))
  151. "\n\\end{code}\n#+end_latex\n"))
  152. t t)
  153. (indent-code-rigidly (match-beginning 0) (match-end 0) indentation)))
  154. (save-excursion
  155. ;; export to latex w/org and save as .lhs
  156. (find-file tmp-org-file) (funcall 'org-export-as-latex nil)
  157. (kill-buffer)
  158. (delete-file tmp-org-file)
  159. (find-file tmp-tex-file)
  160. (goto-char (point-min)) (forward-line 2)
  161. (insert "%include polycode.fmt\n")
  162. ;; ensure all \begin/end{code} statements start at the first column
  163. (while (re-search-forward "^[ \t]+\\\\begin{code}[^\000]+\\\\end{code}" nil t)
  164. (replace-match (save-match-data (org-remove-indentation (match-string 0)))
  165. t t))
  166. (setq contents (buffer-string))
  167. (save-buffer) (kill-buffer))
  168. (delete-file tmp-tex-file)
  169. ;; save org exported latex to a .lhs file
  170. (with-temp-file lhs-file (insert contents))
  171. (if (not arg)
  172. (find-file lhs-file)
  173. ;; process .lhs file with lhs2tex
  174. (message "running %s" command) (shell-command command) (find-file tex-file))))
  175. (provide 'org-babel-haskell)
  176. ;;; org-babel-haskell.el ends here