2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-plantuml.el --- Babel Functions for Plantuml -*- lexical-binding: t; -*-
|
2010-08-26 15:10:03 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2010-2024 Free Software Foundation, Inc.
|
2010-08-26 15:36:08 +00:00
|
|
|
|
2010-08-26 15:10:03 +00:00
|
|
|
;; Author: Zhang Weize
|
2010-08-26 15:36:08 +00:00
|
|
|
;; Keywords: literate programming, reproducible research
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2010-08-26 15:36:08 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; 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,
|
|
|
|
;; 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.
|
|
|
|
|
|
|
|
;; 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/>.
|
2010-08-26 15:10:03 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating plantuml script.
|
|
|
|
;;
|
|
|
|
;; Inspired by Ian Yang's org-export-blocks-format-plantuml
|
2020-10-01 13:24:21 +00:00
|
|
|
;; https://www.emacswiki.org/emacs/org-export-blocks-format-plantuml.el
|
2010-08-26 15:10:03 +00:00
|
|
|
|
2010-08-26 15:36:08 +00:00
|
|
|
;;; Requirements:
|
|
|
|
|
2022-10-15 09:17:51 +00:00
|
|
|
;; plantuml | https://plantuml.com/
|
2019-11-08 09:25:49 +00:00
|
|
|
;; plantuml.jar | `org-plantuml-jar-path' should point to the jar file (when exec mode is `jar')
|
2010-08-26 15:36:08 +00:00
|
|
|
|
2010-08-26 15:10:03 +00:00
|
|
|
;;; Code:
|
2022-08-04 13:53:05 +00:00
|
|
|
|
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2010-08-26 15:10:03 +00:00
|
|
|
(require 'ob)
|
|
|
|
|
|
|
|
(defvar org-babel-default-header-args:plantuml
|
|
|
|
'((:results . "file") (:exports . "results"))
|
|
|
|
"Default arguments for evaluating a plantuml source block.")
|
|
|
|
|
2013-11-14 13:05:18 +00:00
|
|
|
(defcustom org-plantuml-jar-path ""
|
2010-08-26 15:36:08 +00:00
|
|
|
"Path to the plantuml.jar file."
|
|
|
|
:group 'org-babel
|
2012-04-03 11:43:36 +00:00
|
|
|
:version "24.1"
|
2010-08-26 15:36:08 +00:00
|
|
|
:type 'string)
|
|
|
|
|
2019-11-08 09:25:49 +00:00
|
|
|
(defcustom org-plantuml-exec-mode 'jar
|
|
|
|
"Method to use for PlantUML diagram generation.
|
|
|
|
`jar' means to use java together with the JAR.
|
|
|
|
The JAR can be configured via `org-plantuml-jar-path'.
|
|
|
|
|
|
|
|
`plantuml' means to use the PlantUML executable.
|
|
|
|
The executable can be configured via `org-plantuml-executable-path'.
|
2023-11-10 10:06:36 +00:00
|
|
|
You can also configure extra arguments via `org-plantuml-args'."
|
2019-11-08 09:25:49 +00:00
|
|
|
:group 'org-babel
|
|
|
|
:package-version '(Org . "9.4")
|
|
|
|
:type 'symbol
|
|
|
|
:options '(jar plantuml))
|
|
|
|
|
|
|
|
(defcustom org-plantuml-executable-path "plantuml"
|
|
|
|
"File name of the PlantUML executable."
|
|
|
|
:group 'org-babel
|
|
|
|
:package-version '(Org . "9.4")
|
|
|
|
:type 'string)
|
|
|
|
|
2022-01-15 06:14:36 +00:00
|
|
|
(defcustom org-plantuml-args (list "-headless")
|
|
|
|
"The arguments passed to plantuml when executing PlantUML."
|
2019-11-08 09:25:49 +00:00
|
|
|
:group 'org-babel
|
|
|
|
:package-version '(Org . "9.4")
|
|
|
|
:type '(repeat string))
|
|
|
|
|
2021-05-01 08:58:25 +00:00
|
|
|
(defcustom org-babel-plantuml-svg-text-to-path nil
|
|
|
|
"When non-nil, export text in SVG images to paths using Inkscape."
|
|
|
|
:group 'org-babel
|
|
|
|
:package-version '(Org . "9.5")
|
|
|
|
:type 'boolean)
|
|
|
|
|
2016-12-10 04:43:32 +00:00
|
|
|
(defun org-babel-variable-assignments:plantuml (params)
|
|
|
|
"Return a list of PlantUML statements assigning the block's variables.
|
|
|
|
PARAMS is a property list of source block parameters, which may
|
|
|
|
contain multiple entries for the key `:var'. `:var' entries in PARAMS
|
|
|
|
are expected to be scalar variables."
|
|
|
|
(mapcar
|
|
|
|
(lambda (pair)
|
2021-09-29 07:22:47 +00:00
|
|
|
(format "!define %s %s"
|
|
|
|
(car pair)
|
|
|
|
(replace-regexp-in-string "\"" "" (cdr pair))))
|
2016-12-10 04:43:32 +00:00
|
|
|
(org-babel--get-vars params)))
|
|
|
|
|
|
|
|
(defun org-babel-plantuml-make-body (body params)
|
|
|
|
"Return PlantUML input string.
|
2019-08-17 12:26:26 +00:00
|
|
|
|
2016-12-10 04:43:32 +00:00
|
|
|
BODY is the content of the source block and PARAMS is a property list
|
|
|
|
of source block parameters. This function relies on the
|
|
|
|
`org-babel-expand-body:generic' function to extract `:var' entries
|
|
|
|
from PARAMS and on the `org-babel-variable-assignments:plantuml'
|
2019-08-17 12:26:26 +00:00
|
|
|
function to convert variables to PlantUML assignments.
|
|
|
|
|
|
|
|
If BODY does not contain @startXXX ... @endXXX clauses, @startuml
|
|
|
|
... @enduml will be added."
|
2019-12-04 17:45:18 +00:00
|
|
|
(let ((full-body
|
|
|
|
(org-babel-expand-body:generic
|
|
|
|
body params (org-babel-variable-assignments:plantuml params))))
|
|
|
|
(if (string-prefix-p "@start" body t) full-body
|
|
|
|
(format "@startuml\n%s\n@enduml" full-body))))
|
2016-12-10 04:43:32 +00:00
|
|
|
|
2010-08-26 15:10:03 +00:00
|
|
|
(defun org-babel-execute:plantuml (body params)
|
|
|
|
"Execute a block of plantuml code with org-babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2022-08-05 20:18:13 +00:00
|
|
|
(let* ((do-export (member "file" (cdr (assq :result-params params))))
|
|
|
|
(out-file (if do-export
|
|
|
|
(or (cdr (assq :file params))
|
2024-07-07 12:27:14 +00:00
|
|
|
(error "No :file provided but :results set to file. For plain text output, set :results to verbatim"))
|
2022-08-05 20:18:13 +00:00
|
|
|
(org-babel-temp-file "plantuml-" ".txt")))
|
2016-09-22 17:45:15 +00:00
|
|
|
(cmdline (cdr (assq :cmdline params)))
|
2010-08-26 15:36:08 +00:00
|
|
|
(in-file (org-babel-temp-file "plantuml-"))
|
2016-09-22 17:45:15 +00:00
|
|
|
(java (or (cdr (assq :java params)) ""))
|
2019-11-08 09:25:49 +00:00
|
|
|
(executable (cond ((eq org-plantuml-exec-mode 'plantuml) org-plantuml-executable-path)
|
|
|
|
(t "java")))
|
2022-01-15 06:14:36 +00:00
|
|
|
(executable-args (cond ((eq org-plantuml-exec-mode 'plantuml) org-plantuml-args)
|
2019-11-08 09:25:49 +00:00
|
|
|
((string= "" org-plantuml-jar-path)
|
|
|
|
(error "`org-plantuml-jar-path' is not set"))
|
|
|
|
((not (file-exists-p org-plantuml-jar-path))
|
|
|
|
(error "Could not find plantuml.jar at %s" org-plantuml-jar-path))
|
2022-01-15 06:14:36 +00:00
|
|
|
(t `(,java
|
|
|
|
"-jar"
|
|
|
|
,(shell-quote-argument (expand-file-name org-plantuml-jar-path))
|
|
|
|
,@org-plantuml-args))))
|
2016-12-10 04:43:32 +00:00
|
|
|
(full-body (org-babel-plantuml-make-body body params))
|
2019-11-08 09:25:49 +00:00
|
|
|
(cmd (mapconcat #'identity
|
|
|
|
(append
|
|
|
|
(list executable)
|
|
|
|
executable-args
|
|
|
|
(pcase (file-name-extension out-file)
|
|
|
|
("png" '("-tpng"))
|
|
|
|
("svg" '("-tsvg"))
|
|
|
|
("eps" '("-teps"))
|
|
|
|
("pdf" '("-tpdf"))
|
|
|
|
("tex" '("-tlatex"))
|
2023-10-20 11:52:25 +00:00
|
|
|
("tikz" '("-tlatex:nopreamble"))
|
2019-11-08 09:25:49 +00:00
|
|
|
("vdx" '("-tvdx"))
|
|
|
|
("xmi" '("-txmi"))
|
|
|
|
("scxml" '("-tscxml"))
|
|
|
|
("html" '("-thtml"))
|
|
|
|
("txt" '("-ttxt"))
|
|
|
|
("utxt" '("-utxt")))
|
|
|
|
(list
|
|
|
|
"-p"
|
|
|
|
cmdline
|
|
|
|
"<"
|
|
|
|
(org-babel-process-file-name in-file)
|
|
|
|
">"
|
|
|
|
(org-babel-process-file-name out-file)))
|
|
|
|
" ")))
|
2016-12-10 04:43:32 +00:00
|
|
|
(with-temp-file in-file (insert full-body))
|
2010-08-26 15:36:08 +00:00
|
|
|
(message "%s" cmd) (org-babel-eval cmd "")
|
2021-05-01 08:58:25 +00:00
|
|
|
(if (and (string= (file-name-extension out-file) "svg")
|
|
|
|
org-babel-plantuml-svg-text-to-path)
|
|
|
|
(org-babel-eval (format "inkscape %s -T -l %s" out-file out-file) ""))
|
2022-08-05 20:18:13 +00:00
|
|
|
(unless do-export (with-temp-buffer
|
|
|
|
(insert-file-contents out-file)
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point-min) (point-max))))))
|
2010-08-26 15:10:03 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:plantuml (_session _params)
|
2010-08-26 15:10:03 +00:00
|
|
|
"Return an error because plantuml does not support sessions."
|
|
|
|
(error "Plantuml does not support sessions"))
|
|
|
|
|
|
|
|
(provide 'ob-plantuml)
|
|
|
|
|
|
|
|
;;; ob-plantuml.el ends here
|