2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-dot.el --- Babel Functions for dot -*- lexical-binding: t; -*-
|
2009-07-25 01:39:48 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2009-2024 Free Software Foundation, Inc.
|
2009-07-25 01:39:48 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
2021-10-03 06:54:33 +00:00
|
|
|
;; Maintainer: Justin Abrahms <justin@abrah.ms>
|
2009-07-25 01:39:48 +00:00
|
|
|
;; Keywords: literate programming, reproducible research
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2009-07-25 01:39:48 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-07-25 01:39:48 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-07-25 01:39:48 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-07-25 01:39:48 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2009-07-25 01:39:48 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-07-25 01:39:48 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating dot source code.
|
|
|
|
;;
|
2021-03-21 18:55:14 +00:00
|
|
|
;; For information on dot see https://www.graphviz.org/
|
2009-07-25 01:39:48 +00:00
|
|
|
;;
|
|
|
|
;; This differs from most standard languages in that
|
|
|
|
;;
|
|
|
|
;; 1) there is no such thing as a "session" in dot
|
|
|
|
;;
|
|
|
|
;; 2) we are generally only going to return results of type "file"
|
|
|
|
;;
|
|
|
|
;; 3) we are adding the "file" and "cmdline" header arguments
|
|
|
|
;;
|
|
|
|
;; 4) there are no variables (at least for now)
|
|
|
|
|
|
|
|
;;; Code:
|
2022-08-04 13:53:05 +00:00
|
|
|
|
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2009-07-25 01:39:48 +00:00
|
|
|
|
2010-07-06 02:03:25 +00:00
|
|
|
(defvar org-babel-default-header-args:dot
|
|
|
|
'((:results . "file") (:exports . "results"))
|
2009-07-25 01:39:48 +00:00
|
|
|
"Default arguments to use when evaluating a dot source block.")
|
|
|
|
|
2010-10-16 03:35:45 +00:00
|
|
|
(defun org-babel-expand-body:dot (body params)
|
2010-07-14 23:39:19 +00:00
|
|
|
"Expand BODY according to PARAMS, return the expanded body."
|
2023-10-19 08:58:07 +00:00
|
|
|
(let ((vars (org-babel--get-vars params))
|
|
|
|
(prologue (cdr (assq :prologue params)))
|
|
|
|
(epilogue (cdr (assq :epilogue params))))
|
2010-07-14 23:39:19 +00:00
|
|
|
(mapc
|
|
|
|
(lambda (pair)
|
|
|
|
(let ((name (symbol-name (car pair)))
|
|
|
|
(value (cdr pair)))
|
|
|
|
(setq body
|
|
|
|
(replace-regexp-in-string
|
2015-09-17 23:08:20 +00:00
|
|
|
(concat "$" (regexp-quote name))
|
2010-07-14 23:39:19 +00:00
|
|
|
(if (stringp value) value (format "%S" value))
|
2014-03-27 12:35:31 +00:00
|
|
|
body
|
|
|
|
t
|
|
|
|
t))))
|
2010-07-14 23:39:19 +00:00
|
|
|
vars)
|
2023-10-19 08:58:07 +00:00
|
|
|
(concat
|
|
|
|
(and prologue (concat prologue "\n"))
|
|
|
|
body
|
|
|
|
(and epilogue (concat "\n" epilogue "\n")))))
|
2010-04-11 20:29:36 +00:00
|
|
|
|
2009-07-25 01:39:48 +00:00
|
|
|
(defun org-babel-execute:dot (body params)
|
2023-09-08 09:23:31 +00:00
|
|
|
"Execute Dot BODY with org-babel according to PARAMS.
|
2010-07-13 23:04:47 +00:00
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2016-09-22 17:45:15 +00:00
|
|
|
(let* ((out-file (cdr (or (assq :file params)
|
2012-09-28 17:06:17 +00:00
|
|
|
(error "You need to specify a :file parameter"))))
|
2016-09-22 17:45:15 +00:00
|
|
|
(cmdline (or (cdr (assq :cmdline params))
|
2010-09-21 17:50:54 +00:00
|
|
|
(format "-T%s" (file-name-extension out-file))))
|
2016-09-22 17:45:15 +00:00
|
|
|
(cmd (or (cdr (assq :cmd params)) "dot"))
|
2018-09-29 06:44:39 +00:00
|
|
|
(coding-system-for-read 'utf-8) ;use utf-8 with sub-processes
|
|
|
|
(coding-system-for-write 'utf-8)
|
2010-09-21 17:50:54 +00:00
|
|
|
(in-file (org-babel-temp-file "dot-")))
|
2010-07-14 23:39:19 +00:00
|
|
|
(with-temp-file in-file
|
2010-10-16 03:35:45 +00:00
|
|
|
(insert (org-babel-expand-body:dot body params)))
|
2010-09-22 20:40:14 +00:00
|
|
|
(org-babel-eval
|
|
|
|
(concat cmd
|
|
|
|
" " (org-babel-process-file-name in-file)
|
|
|
|
" " cmdline
|
|
|
|
" -o " (org-babel-process-file-name out-file)) "")
|
2010-12-21 10:21:28 +00:00
|
|
|
nil)) ;; signal that output has already been written to file
|
2009-07-25 01:39:48 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:dot (_session _params)
|
2010-07-13 23:04:47 +00:00
|
|
|
"Return an error because Dot does not support sessions."
|
2009-07-25 01:39:48 +00:00
|
|
|
(error "Dot does not support sessions"))
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-dot)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-dot.el ends here
|