1 ;;; ob-gnuplot.el --- Babel Functions for Gnuplot -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: https://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 ;; Org-Babel support for evaluating gnuplot source code.
28 ;; This differs from most standard languages in that
30 ;; 1) we are generally only going to return results of type "file"
32 ;; 2) we are adding the "file" and "cmdline" header arguments
36 ;; - gnuplot :: http://www.gnuplot.info/
38 ;; - gnuplot-mode :: http://cars9.uchicago.edu/~ravel/software/gnuplot-mode.html
43 (declare-function org-time-string-to-time
"org" (s))
44 (declare-function org-combine-plists
"org" (&rest plists
))
45 (declare-function orgtbl-to-generic
"org-table" (table params
))
46 (declare-function gnuplot-mode
"ext:gnuplot-mode" ())
47 (declare-function gnuplot-send-string-to-gnuplot
"ext:gnuplot-mode" (str txt
))
48 (declare-function gnuplot-send-buffer-to-gnuplot
"ext:gnuplot-mode" ())
50 (defvar org-babel-default-header-args
:gnuplot
51 '((:results .
"file") (:exports .
"results") (:session . nil
))
52 "Default arguments to use when evaluating a gnuplot source block.")
54 (defvar org-babel-header-args
:gnuplot
64 "Gnuplot specific header args.")
66 (defvar org-babel-gnuplot-timestamp-fmt nil
) ; Dynamically scoped.
68 (defvar *org-babel-gnuplot-missing
* nil
)
70 (defcustom *org-babel-gnuplot-terms
*
71 '((eps .
"postscript eps"))
72 "List of file extensions and the associated gnuplot terminal."
74 :type
'(repeat (cons (symbol :tag
"File extension")
75 (string :tag
"Gnuplot terminal"))))
77 (defun org-babel-gnuplot-process-vars (params)
78 "Extract variables from PARAMS and process the variables.
79 Dumps all vectors into files and returns an association list
80 of variable names and the related value to be used in the gnuplot
82 (let ((*org-babel-gnuplot-missing
* (cdr (assq :missing params
))))
86 (car pair
) ;; variable name
87 (let* ((val (cdr pair
)) ;; variable value
90 (org-babel-gnuplot-table-to-data
91 (let* ((first (car val
))
92 (tablep (or (listp first
) (symbolp first
))))
93 (if tablep val
(mapcar 'list val
)))
94 (org-babel-temp-file "gnuplot-") params
)
96 (org-babel--get-vars params
))))
98 (defun org-babel-expand-body:gnuplot
(body params
)
99 "Expand BODY according to PARAMS, return the expanded body."
100 (save-window-excursion
101 (let* ((vars (org-babel-gnuplot-process-vars params
))
102 (out-file (cdr (assq :file params
)))
103 (prologue (cdr (assq :prologue params
)))
104 (epilogue (cdr (assq :epilogue params
)))
105 (term (or (cdr (assq :term params
))
107 (let ((ext (file-name-extension out-file
)))
108 (or (cdr (assoc (intern (downcase ext
))
109 *org-babel-gnuplot-terms
*))
111 (title (cdr (assq :title params
)))
112 (lines (cdr (assq :line params
)))
113 (sets (cdr (assq :set params
)))
114 (x-labels (cdr (assq :xlabels params
)))
115 (y-labels (cdr (assq :ylabels params
)))
116 (timefmt (cdr (assq :timefmt params
)))
117 (time-ind (or (cdr (assq :timeind params
))
119 (directory (and (buffer-file-name)
120 (file-name-directory (buffer-file-name))))
121 (add-to-body (lambda (text) (setq body
(concat text
"\n" body
)))))
122 ;; append header argument settings to body
123 (when title
(funcall add-to-body
(format "set title '%s'" title
)))
124 (when lines
(mapc (lambda (el) (funcall add-to-body el
)) lines
))
126 (mapc (lambda (el) (funcall add-to-body
(format "set %s" el
))) sets
))
129 (format "set xtics (%s)"
130 (mapconcat (lambda (pair)
132 (cdr pair
) (car pair
)))
136 (format "set ytics (%s)"
137 (mapconcat (lambda (pair)
139 (cdr pair
) (car pair
)))
142 (funcall add-to-body
"set xdata time")
143 (funcall add-to-body
(concat "set timefmt \""
145 "%Y-%m-%d-%H:%M:%S") "\"")))
147 ;; set the terminal at the top of the block
148 (funcall add-to-body
(format "set output \"%s\"" out-file
))
149 ;; and close the terminal at the bottom of the block
150 (setq body
(concat body
"\nset output\n")))
151 (when term
(funcall add-to-body
(format "set term %s" term
)))
152 ;; insert variables into code body: this should happen last
153 ;; placing the variables at the *top* of the code in case their
154 ;; values are used later
156 (mapconcat #'identity
157 (org-babel-variable-assignments:gnuplot params
)
159 ;; replace any variable names preceded by '$' with the actual
160 ;; value of the variable
162 (setq body
(replace-regexp-in-string
163 (format "\\$%s" (car pair
)) (cdr pair
) body
)))
165 (when prologue
(funcall add-to-body prologue
))
166 (when epilogue
(setq body
(concat body
"\n" epilogue
)))
167 ;; Setting the directory needs to be done first so that
168 ;; subsequent 'output' directive goes to the right place.
169 (when directory
(funcall add-to-body
(format "cd '%s'" directory
))))
172 (defun org-babel-execute:gnuplot
(body params
)
173 "Execute a block of Gnuplot code.
174 This function is called by `org-babel-execute-src-block'."
176 (let ((session (cdr (assq :session params
)))
177 (result-type (cdr (assq :results params
)))
178 (body (org-babel-expand-body:gnuplot body params
))
180 (save-window-excursion
181 ;; evaluate the code body with gnuplot
182 (if (string= session
"none")
183 (let ((script-file (org-babel-temp-file "gnuplot-script-")))
184 (with-temp-file script-file
185 (insert (concat body
"\n")))
186 (message "gnuplot \"%s\"" script-file
)
188 (shell-command-to-string
191 (org-babel-process-file-name
193 (if (member system-type
'(cygwin windows-nt ms-dos
))
195 (message "%s" output
))
197 (insert (concat body
"\n"))
199 (gnuplot-send-buffer-to-gnuplot)))
200 (if (member "output" (split-string result-type
))
202 nil
)))) ;; signal that output has already been written to file
204 (defun org-babel-prep-session:gnuplot
(session params
)
205 "Prepare SESSION according to the header arguments in PARAMS."
206 (let* ((session (org-babel-gnuplot-initiate-session session
))
207 (var-lines (org-babel-variable-assignments:gnuplot params
)))
208 (message "%S" session
)
209 (org-babel-comint-in-buffer session
210 (dolist (var-line var-lines
)
212 (comint-send-input nil t
)
213 (org-babel-comint-wait-for-output session
)
215 (goto-char (point-max))))
218 (defun org-babel-load-session:gnuplot
(session body params
)
219 "Load BODY into SESSION."
220 (save-window-excursion
221 (let ((buffer (org-babel-prep-session:gnuplot session params
)))
222 (with-current-buffer buffer
223 (goto-char (process-mark (get-buffer-process (current-buffer))))
224 (insert (org-babel-chomp body
)))
227 (defun org-babel-variable-assignments:gnuplot
(params)
228 "Return list of gnuplot statements assigning the block's variables."
230 (lambda (pair) (format "%s = \"%s\"" (car pair
) (cdr pair
)))
231 (org-babel-gnuplot-process-vars params
)))
233 (defvar gnuplot-buffer
)
234 (defun org-babel-gnuplot-initiate-session (&optional session _params
)
235 "Initiate a gnuplot session.
236 If there is not a current inferior-process-buffer in SESSION
237 then create one. Return the initialized session. The current
238 `gnuplot-mode' doesn't provide support for multiple sessions."
240 (unless (string= session
"none")
241 (save-window-excursion
242 (gnuplot-send-string-to-gnuplot "" "line")
245 (defun org-babel-gnuplot-quote-timestamp-field (s)
246 "Convert S from timestamp to Unix time and export to gnuplot."
247 (format-time-string org-babel-gnuplot-timestamp-fmt
248 (org-time-string-to-time s
)))
250 (defvar org-table-number-regexp
)
251 (defvar org-ts-regexp3
)
252 (defun org-babel-gnuplot-quote-tsv-field (s)
253 "Quote S for export to gnuplot."
255 (setq s
(format "%s" s
)))
256 (if (string-match org-table-number-regexp s
) s
257 (if (string-match org-ts-regexp3 s
)
258 (org-babel-gnuplot-quote-timestamp-field s
)
259 (if (zerop (length s
))
260 (or *org-babel-gnuplot-missing
* s
)
261 (if (string-match "[ \"]" s
)
262 (concat "\"" (mapconcat 'identity
(split-string s
"\"") "\"\"")
266 (defun org-babel-gnuplot-table-to-data (table data-file params
)
267 "Export TABLE to DATA-FILE in a format readable by gnuplot.
268 Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
269 (with-temp-file data-file
270 (insert (let ((org-babel-gnuplot-timestamp-fmt
271 (or (plist-get params
:timefmt
) "%Y-%m-%d-%H:%M:%S")))
275 '(:sep
"\t" :fmt org-babel-gnuplot-quote-tsv-field
)
279 (provide 'ob-gnuplot
)
283 ;;; ob-gnuplot.el ends here