org-babel-haskell.el 7.8 KB

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