org-babel-gnuplot.el 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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-execute:gnuplot (body params)
  57. "Execute a block of Gnuplot code with org-babel. This function is
  58. called by `org-babel-execute-src-block' via multiple-value-bind."
  59. (message "executing Gnuplot source code block")
  60. (save-window-excursion
  61. (let* ((vars (org-babel-gnuplot-process-vars params))
  62. (out-file (cdr (assoc :file params)))
  63. (term (or (cdr (assoc :term params))
  64. (when out-file (file-name-extension out-file))))
  65. (cmdline (cdr (assoc :cmdline params)))
  66. (in-file (make-temp-file "org-babel-ditaa"))
  67. (title (plist-get params :title))
  68. (lines (plist-get params :line))
  69. (sets (plist-get params :set))
  70. (x-labels (plist-get params :xlabels))
  71. (y-labels (plist-get params :ylabels))
  72. (timefmt (plist-get params :timefmt))
  73. (time-ind (or (plist-get params :timeind)
  74. (when timefmt 1))))
  75. (flet ((add-to-body (text)
  76. (setq body (concat text "\n" body))))
  77. ;; append header argument settings to body
  78. (when title (add-to-body (format "set title '%s'" title))) ;; title
  79. (when lines (mapc (lambda (el) (add-to-body el)) lines)) ;; line
  80. (when sets
  81. (mapc (lambda (el) (add-to-body (format "set %s" el))) sets))
  82. (when x-labels
  83. (add-to-body
  84. (format "set xtics (%s)"
  85. (mapconcat (lambda (pair)
  86. (format "\"%s\" %d" (cdr pair) (car pair)))
  87. x-labels ", "))))
  88. (when y-labels
  89. (add-to-body
  90. (format "set ytics (%s)"
  91. (mapconcat (lambda (pair)
  92. (format "\"%s\" %d" (cdr pair) (car pair)))
  93. y-labels ", "))))
  94. (when time-ind
  95. (add-to-body "set xdata time")
  96. (add-to-body (concat "set timefmt \""
  97. (or timefmt
  98. "%Y-%m-%d-%H:%M:%S") "\"")))
  99. (when out-file (add-to-body (format "set output \"%s\"" out-file)))
  100. (when term (add-to-body (format "set term %s" term)))
  101. ;; insert variables into code body: this should happen last
  102. ;; placing the variables at the *top* of the code in case their
  103. ;; values are used later
  104. (add-to-body (mapconcat
  105. (lambda (pair) (format "%s = \"%s\"" (car pair) (cdr pair)))
  106. vars "\n"))
  107. ;; evaluate the code body with gnuplot
  108. (if (string= session "none")
  109. (let ((script-file (make-temp-file "org-babel-gnuplot-script")))
  110. (with-temp-file script-file
  111. (insert (concat body "\n")))
  112. (message "gnuplot \"%s\"" script-file)
  113. (message (shell-command-to-string (format "gnuplot \"%s\"" script-file))))
  114. (with-temp-buffer
  115. (insert (concat body "\n"))
  116. (gnuplot-mode)
  117. (gnuplot-send-buffer-to-gnuplot)))
  118. out-file))))
  119. (defun org-babel-prep-session:gnuplot (session params)
  120. "Prepare SESSION according to the header arguments specified in PARAMS."
  121. (let* ((session (org-babel-gnuplot-initiate-session session))
  122. (vars (org-babel-ref-variables params))
  123. (var-lines (mapconc
  124. (lambda (pair) (format "%s = \"%s\"" (car pair) (cdr pair)))
  125. vars)))
  126. (org-babel-comint-in-buffer session
  127. (mapc (lambda (var-line)
  128. (insert var-line) (comint-send-input nil t)
  129. (org-babel-comint-wait-for-output session)
  130. (sit-for .1) (goto-char (point-max))) var-lines))))
  131. (defun org-babel-gnuplot-initiate-session (&optional session)
  132. "If there is not a current inferior-process-buffer in SESSION
  133. then create. Return the initialized session. The current
  134. `gnuplot-mode' doesn't provide support for multiple sessions."
  135. (unless (string= session "none")
  136. (save-window-excursion (gnuplot-send-string-to-gnuplot "" "line")
  137. (current-buffer))))
  138. (defun org-babel-gnuplot-quote-timestamp-field (s)
  139. "Convert field S from timestamp to Unix time and export to gnuplot."
  140. (format-time-string org-babel-gnuplot-timestamp-fmt (org-time-string-to-time s)))
  141. (defun org-babel-gnuplot-quote-tsv-field (s)
  142. "Quote field S for export to gnuplot."
  143. (unless (stringp s)
  144. (setq s (format "%s" s)))
  145. (if (string-match org-table-number-regexp s) s
  146. (if (string-match org-ts-regexp3 s)
  147. (org-babel-gnuplot-quote-timestamp-field s)
  148. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\""))))
  149. (defun org-babel-gnuplot-table-to-data (table data-file params)
  150. "Export TABLE to DATA-FILE in a format readable by gnuplot.
  151. Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
  152. (with-temp-file data-file
  153. (make-local-variable 'org-babel-gnuplot-timestamp-fmt)
  154. (setq org-babel-gnuplot-timestamp-fmt (or
  155. (plist-get params :timefmt)
  156. "%Y-%m-%d-%H:%M:%S"))
  157. (insert (orgtbl-to-generic
  158. table
  159. (org-combine-plists
  160. '(:sep "\t" :fmt org-babel-gnuplot-quote-tsv-field)
  161. params))))
  162. data-file)
  163. (provide 'org-babel-gnuplot)
  164. ;;; org-babel-gnuplot.el ends here