org-babel-gnuplot.el 8.5 KB

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