ob-gnuplot.el 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. ;;; ob-gnuplot.el --- org-babel functions for gnuplot 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 gnuplot source code.
  20. ;;
  21. ;; This differs from most standard languages in that
  22. ;;
  23. ;; 1) we are generally only going to return results of type "file"
  24. ;;
  25. ;; 2) we are adding the "file" and "cmdline" header arguments
  26. ;;; Requirements:
  27. ;; - gnuplot :: http://www.gnuplot.info/
  28. ;;
  29. ;; - gnuplot-mode :: http://cars9.uchicago.edu/~ravel/software/gnuplot-mode.html
  30. ;;; Code:
  31. (require 'ob)
  32. (require 'gnuplot)
  33. (defvar org-babel-default-header-args:gnuplot
  34. '((:results . "file") (:exports . "results") (:session . nil))
  35. "Default arguments to use when evaluating a gnuplot source block.")
  36. (defvar org-babel-gnuplot-timestamp-fmt nil)
  37. (defun org-babel-gnuplot-process-vars (params)
  38. "Extract variables from PARAMS and process the variables
  39. dumping all vectors into files and returning an association list
  40. of variable names and the related value to be used in the gnuplot
  41. code."
  42. (mapcar
  43. (lambda (pair)
  44. (cons
  45. (car pair) ;; variable name
  46. (if (listp (cdr pair)) ;; variable value
  47. (org-babel-gnuplot-table-to-data
  48. (cdr pair) (make-temp-file "org-babel-gnuplot") params)
  49. (cdr pair))))
  50. (org-babel-ref-variables params)))
  51. (defun org-babel-expand-body:gnuplot (body params &optional processed-params)
  52. "Expand BODY according to PARAMS, return the expanded body."
  53. (save-window-excursion
  54. (let* ((vars (org-babel-gnuplot-process-vars params))
  55. (out-file (cdr (assoc :file params)))
  56. (term (or (cdr (assoc :term params))
  57. (when out-file (file-name-extension out-file))))
  58. (cmdline (cdr (assoc :cmdline params)))
  59. (title (plist-get params :title))
  60. (lines (plist-get params :line))
  61. (sets (plist-get params :set))
  62. (x-labels (plist-get params :xlabels))
  63. (y-labels (plist-get params :ylabels))
  64. (timefmt (plist-get params :timefmt))
  65. (time-ind (or (plist-get params :timeind)
  66. (when timefmt 1)))
  67. output)
  68. (flet ((add-to-body (text)
  69. (setq body (concat text "\n" body))))
  70. ;; append header argument settings to body
  71. (when title (add-to-body (format "set title '%s'" title))) ;; title
  72. (when lines (mapc (lambda (el) (add-to-body el)) lines)) ;; line
  73. (when sets
  74. (mapc (lambda (el) (add-to-body (format "set %s" el))) sets))
  75. (when x-labels
  76. (add-to-body
  77. (format "set xtics (%s)"
  78. (mapconcat (lambda (pair)
  79. (format "\"%s\" %d" (cdr pair) (car pair)))
  80. x-labels ", "))))
  81. (when y-labels
  82. (add-to-body
  83. (format "set ytics (%s)"
  84. (mapconcat (lambda (pair)
  85. (format "\"%s\" %d" (cdr pair) (car pair)))
  86. y-labels ", "))))
  87. (when time-ind
  88. (add-to-body "set xdata time")
  89. (add-to-body (concat "set timefmt \""
  90. (or timefmt
  91. "%Y-%m-%d-%H:%M:%S") "\"")))
  92. (when out-file (add-to-body (format "set output \"%s\"" out-file)))
  93. (when term (add-to-body (format "set term %s" term)))
  94. ;; insert variables into code body: this should happen last
  95. ;; placing the variables at the *top* of the code in case their
  96. ;; values are used later
  97. (add-to-body (mapconcat
  98. (lambda (pair) (format "%s = \"%s\"" (car pair) (cdr pair)))
  99. vars "\n"))
  100. ;; replace any variable names preceded by '$' with the actual
  101. ;; value of the variable
  102. (mapc (lambda (pair)
  103. (setq body (replace-regexp-in-string
  104. (format "\\$%s" (car pair)) (cdr pair) body)))
  105. vars))
  106. body)))
  107. (defun org-babel-execute:gnuplot (body params)
  108. "Execute a block of Gnuplot code with org-babel. This function is
  109. called by `org-babel-execute-src-block'."
  110. (message "executing Gnuplot source code block")
  111. (let ((session (cdr (assoc :session params)))
  112. (result-type (cdr (assoc :results params)))
  113. (out-file (cdr (assoc :file params)))
  114. (body (org-babel-expand-body:gnuplot body params)))
  115. (save-window-excursion
  116. ;; evaluate the code body with gnuplot
  117. (if (string= session "none")
  118. (let ((script-file (make-temp-file "org-babel-gnuplot-script")))
  119. (with-temp-file script-file
  120. (insert (concat body "\n")))
  121. (message "gnuplot \"%s\"" script-file)
  122. (setq output
  123. (shell-command-to-string (format "gnuplot \"%s\"" script-file)))
  124. (message output))
  125. (with-temp-buffer
  126. (insert (concat body "\n"))
  127. (gnuplot-mode)
  128. (gnuplot-send-buffer-to-gnuplot)))
  129. (if (member "output" (split-string result-type))
  130. output
  131. out-file))))
  132. (defun org-babel-prep-session:gnuplot (session params)
  133. "Prepare SESSION according to the header arguments specified in PARAMS."
  134. (let* ((session (org-babel-gnuplot-initiate-session session))
  135. (vars (org-babel-ref-variables params))
  136. (var-lines (mapcar
  137. (lambda (pair) (format "%s = \"%s\"" (car pair) (cdr pair)))
  138. vars)))
  139. (message "%S" session)
  140. (org-babel-comint-in-buffer session
  141. (mapc (lambda (var-line)
  142. (insert var-line) (comint-send-input nil t)
  143. (org-babel-comint-wait-for-output session)
  144. (sit-for .1) (goto-char (point-max))) var-lines))
  145. session))
  146. (defun org-babel-load-session:gnuplot (session body params)
  147. "Load BODY into SESSION."
  148. (save-window-excursion
  149. (let ((buffer (org-babel-prep-session:gnuplot session params)))
  150. (with-current-buffer buffer
  151. (goto-char (process-mark (get-buffer-process (current-buffer))))
  152. (insert (org-babel-chomp body)))
  153. buffer)))
  154. (defun org-babel-gnuplot-initiate-session (&optional session params)
  155. "If there is not a current inferior-process-buffer in SESSION
  156. then create one. Return the initialized session. The current
  157. `gnuplot-mode' doesn't provide support for multiple sessions."
  158. (unless (string= session "none")
  159. (save-window-excursion (gnuplot-send-string-to-gnuplot "" "line")
  160. gnuplot-buffer)))
  161. (defun org-babel-gnuplot-quote-timestamp-field (s)
  162. "Convert field S from timestamp to Unix time and export to gnuplot."
  163. (format-time-string org-babel-gnuplot-timestamp-fmt (org-time-string-to-time s)))
  164. (defun org-babel-gnuplot-quote-tsv-field (s)
  165. "Quote field S for export to gnuplot."
  166. (unless (stringp s)
  167. (setq s (format "%s" s)))
  168. (if (string-match org-table-number-regexp s) s
  169. (if (string-match org-ts-regexp3 s)
  170. (org-babel-gnuplot-quote-timestamp-field s)
  171. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\""))))
  172. (defun org-babel-gnuplot-table-to-data (table data-file params)
  173. "Export TABLE to DATA-FILE in a format readable by gnuplot.
  174. Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
  175. (with-temp-file data-file
  176. (make-local-variable 'org-babel-gnuplot-timestamp-fmt)
  177. (setq org-babel-gnuplot-timestamp-fmt (or
  178. (plist-get params :timefmt)
  179. "%Y-%m-%d-%H:%M:%S"))
  180. (insert (orgtbl-to-generic
  181. table
  182. (org-combine-plists
  183. '(:sep "\t" :fmt org-babel-gnuplot-quote-tsv-field)
  184. params))))
  185. data-file)
  186. (provide 'ob-gnuplot)
  187. ;; arch-tag: 50490ace-a9e1-4b29-a6e5-0db9f16c610b
  188. ;;; ob-gnuplot.el ends here