ob-haskell.el 8.5 KB

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