Merge branch 'develop'

This commit is contained in:
Carlo Sciolla 2019-08-21 16:41:38 +02:00
commit f7e3af35e8
No known key found for this signature in database
GPG Key ID: BA5D71E6F3C580C1
5 changed files with 113 additions and 19 deletions

View File

@ -97,6 +97,7 @@ As of `v1.3.0` support is added for switching execution mode. The following two
- `jar` (default) to run PlantUML as a local JAR file. This is the traditional system used by `plantuml-mode` - `jar` (default) to run PlantUML as a local JAR file. This is the traditional system used by `plantuml-mode`
- `server` (experimental) to let an instance of [`plantuml-server`](https://github.com/plantuml/plantuml-server) render the preview - `server` (experimental) to let an instance of [`plantuml-server`](https://github.com/plantuml/plantuml-server) render the preview
- `executable` to run PlantUML as a local executable file. This is useful if your package manager provides a executable for PlantUML.
You can customize `plantuml-default-exec-mode` or run `plantuml-set-exec-mode` from a `plantuml-mode` buffer to switch modes. You can customize `plantuml-default-exec-mode` or run `plantuml-set-exec-mode` from a `plantuml-mode` buffer to switch modes.
@ -138,11 +139,20 @@ the textual mode and see if the output is valid SVG.
## Development ## Development
Development happens mostly on the `develop` branch, which is released on MELPA at every commit. The `master` branch is used to generate tags which are then released to [MELPA
stable](https://stable.melpa.org).
In order to contribute to `plantuml-mode` make sure to: In order to contribute to `plantuml-mode` make sure to:
- agree with the [GPLv3+ licencing terms](#License) as they are mandated by Emacs - agree with the [GPLv3+ licencing terms](#License) as they are mandated by Emacs
- install [`cask`](https://github.com/cask/cask) - install [`cask`](https://github.com/cask/cask)
- always test your code and run the full test suite with `cask exec ert-runner` (or just by `make`) - always test your code and run the full test suite with `cask exec ert-runner` (or just by `make`)
- ensure you always target `develop` in your pull requests
For collaborators who have merge access to the repo:
- make sure [`set-version.sh`](./blob/develop/bin/set-version.sh) is run as part of your [`pre-commit` git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)
- always merge PRs on the command line
- when releasing a new stable version, add the proper entry in the changelog within `plantuml-mode.el` to ensure the right version is set for `plantuml-mode-version`
# Credits # Credits

33
bin/set-version.sh Executable file
View File

@ -0,0 +1,33 @@
#!/bin/bash
# Retrieves the version from the changelog in plantuml-mode.el
function grab_version(){
grep ';; version' plantuml-mode.el | \
head -n1 | \
cut -f3 -d' ' | \
tr -d ','
}
# Updates the version in-place
function update_version(){
NEW_VERSION="${1}"
sed -i -E "s/plantuml-mode-version \"[0-9\.]+\"/plantuml-mode-version \"${1}\"/" plantuml-mode.el
}
case "$(git rev-parse --abbrev-ref HEAD)" in
'master')
VERSION="$(grab_version)"
update_version "${VERSION}"
git add plantuml-mode.el
;;
'develop')
VERSION="$(TZ='UTC' date '+%Y%m%d.%-H%M')" # MELPA style
update_version "${VERSION}"
git add plantuml-mode.el
;;
*)
## do nothing
;;
esac

View File

@ -84,9 +84,15 @@
:type 'string :type 'string
:group 'plantuml) :group 'plantuml)
(defcustom plantuml-executable-path
"plantuml"
"The location of the PlantUML executable."
:type 'string
:group 'plantuml)
(defvar plantuml-mode-hook nil "Standard hook for plantuml-mode.") (defvar plantuml-mode-hook nil "Standard hook for plantuml-mode.")
(defconst plantuml-mode-version "1.3.1" "The plantuml-mode version string.") (defconst plantuml-mode-version "20190821.1234" "The plantuml-mode version string.")
(defvar plantuml-mode-debug-enabled nil) (defvar plantuml-mode-debug-enabled nil)
@ -103,7 +109,7 @@
:type 'string :type 'string
:group 'plantuml) :group 'plantuml)
(defcustom plantuml-java-args (list "-Djava.awt.headless=true" "-jar") (defcustom plantuml-java-args (list "-Djava.awt.headless=true" "-jar" "--illegal-access=deny")
"The parameters passed to `plantuml-java-command' when executing PlantUML." "The parameters passed to `plantuml-java-command' when executing PlantUML."
:type '(repeat string) :type '(repeat string)
:group 'plantuml) :group 'plantuml)
@ -118,12 +124,17 @@
:type 'string :type 'string
:group 'plantuml) :group 'plantuml)
(defcustom plantuml-executable-args (list "-headless")
"The parameters passed to plantuml executable when executing PlantUML."
:type '(repeat string)
:group 'plantuml)
(defcustom plantuml-default-exec-mode 'server (defcustom plantuml-default-exec-mode 'server
"Default execution mode for PlantUML. Valid values are: "Default execution mode for PlantUML. Valid values are:
- `jar': run PlantUML as a JAR file (requires a local install of the PlantUML JAR file, see `plantuml-jar-path'" - `jar': run PlantUML as a JAR file (requires a local install of the PlantUML JAR file, see `plantuml-jar-path'"
:type 'symbol :type 'symbol
:group 'plantuml :group 'plantuml
:options '(jar server)) :options '(jar server executable))
(defcustom plantuml-suppress-deprecation-warning t (defcustom plantuml-suppress-deprecation-warning t
"To silence the deprecation warning when `puml-mode' is found upon loading." "To silence the deprecation warning when `puml-mode' is found upon loading."
@ -159,13 +170,13 @@
(defvar plantuml-kwdList nil "The plantuml keywords.") (defvar plantuml-kwdList nil "The plantuml keywords.")
;; PlantUML execution mode ;; PlantUML execution mode
(defvar-local plantuml-exec-mode plantuml-default-exec-mode (defvar-local plantuml-exec-mode nil
"The Plantuml execution mode. See `plantuml-default-exec-mode' for acceptable values.") "The Plantuml execution mode override. See `plantuml-default-exec-mode' for acceptable values.")
(defun plantuml-set-exec-mode (mode) (defun plantuml-set-exec-mode (mode)
"Set the execution mode MODE for PlantUML." "Set the execution mode MODE for PlantUML."
(interactive (let* ((completion-ignore-case t) (interactive (let* ((completion-ignore-case t)
(supported-modes '("jar" "server"))) (supported-modes '("jar" "server" "executable")))
(list (completing-read (format "Exec mode [%s]: " plantuml-exec-mode) (list (completing-read (format "Exec mode [%s]: " plantuml-exec-mode)
supported-modes supported-modes
nil nil
@ -173,10 +184,15 @@
nil nil
nil nil
plantuml-exec-mode)))) plantuml-exec-mode))))
(if (member mode '("jar" "server")) (if (member mode '("jar" "server" "executable"))
(setq plantuml-exec-mode (intern mode)) (setq plantuml-exec-mode (intern mode))
(error (concat "Unsupported mode:" mode)))) (error (concat "Unsupported mode:" mode))))
(defun plantuml-get-exec-mode ()
"Retrieves the currently active PlantUML exec mode."
(or plantuml-exec-mode
plantuml-default-exec-mode))
(defun plantuml-enable-debug () (defun plantuml-enable-debug ()
"Enables debug messages into the *PLANTUML Messages* buffer." "Enables debug messages into the *PLANTUML Messages* buffer."
(interactive) (interactive)
@ -214,9 +230,9 @@
(strs (xml-get-children doc 'str)) (strs (xml-get-children doc 'str))
(version (->> strs (version (->> strs
(--filter (string-equal "v" (xml-get-attribute it 'name))) (--filter (string-equal "v" (xml-get-attribute it 'name)))
(first) (car)
(xml-node-children) (xml-node-children)
(first)))) (car))))
(message (concat "Downloading PlantUML v" version " into " plantuml-jar-path)) (message (concat "Downloading PlantUML v" version " into " plantuml-jar-path))
(url-copy-file (format "https://search.maven.org/remotecontent?filepath=net/sourceforge/plantuml/plantuml/%s/plantuml-%s.jar" version version) plantuml-jar-path t) (url-copy-file (format "https://search.maven.org/remotecontent?filepath=net/sourceforge/plantuml/plantuml/%s/plantuml-%s.jar" version version) plantuml-jar-path t)
(kill-buffer))) (kill-buffer)))
@ -239,11 +255,19 @@
(with-current-buffer buf (with-current-buffer buf
(url-insert-file-contents lang-url)))) (url-insert-file-contents lang-url))))
(defun plantuml-executable-get-language (buf)
"Retrieve the language specification from the PlantUML executable and paste it into BUF."
(with-current-buffer buf
(let ((cmd-args (append (list plantuml-executable-path nil t nil) (list "-language"))))
(apply 'call-process cmd-args)
(goto-char (point-min)))))
(defun plantuml-get-language (mode buf) (defun plantuml-get-language (mode buf)
"Retrieve the language spec using the preferred PlantUML execution mode MODE. Paste the result into BUF." "Retrieve the language spec using the preferred PlantUML execution mode MODE. Paste the result into BUF."
(let ((get-fn (pcase mode (let ((get-fn (pcase mode
('jar #'plantuml-jar-get-language) ('jar #'plantuml-jar-get-language)
('server #'plantuml-server-get-language)))) ('server #'plantuml-server-get-language)
('executable #'plantuml-executable-get-language))))
(if get-fn (if get-fn
(funcall get-fn buf) (funcall get-fn buf)
(error "Unsupported execution mode %s" mode)))) (error "Unsupported execution mode %s" mode))))
@ -340,6 +364,14 @@ Note that output type `txt' is promoted to `utxt' for better rendering."
,@plantuml-jar-args ,@plantuml-jar-args
"-p"))) "-p")))
(defun plantuml-executable-start-process (buf)
"Run PlantUML as an Emacs process and puts the output into the given buffer (as BUF)."
(apply #'start-process
"PLANTUML" buf plantuml-executable-path
`(,@plantuml-executable-args
,(plantuml-jar-output-type-opt plantuml-output-type)
"-p")))
(defun plantuml-update-preview-buffer (prefix buf) (defun plantuml-update-preview-buffer (prefix buf)
"Show the preview in the preview buffer BUF. "Show the preview in the preview buffer BUF.
Window is selected according to PREFIX: Window is selected according to PREFIX:
@ -379,7 +411,7 @@ Put the result into buffer BUF and place it according to PREFIX:
- 4 (when prefixing the command with C-u) -> new window - 4 (when prefixing the command with C-u) -> new window
- 16 (when prefixing the command with C-u C-u) -> new frame. - 16 (when prefixing the command with C-u C-u) -> new frame.
- else -> new buffer" - else -> new buffer"
(let* ((url-request-location (concat plantuml-server-url "/" plantuml-output-type "/-base64-" (base64-encode-string string)))) (let* ((url-request-location (concat plantuml-server-url "/" plantuml-output-type "/-base64-" (base64-encode-string string t))))
(save-current-buffer (save-current-buffer
(save-match-data (save-match-data
(url-retrieve url-request-location (url-retrieve url-request-location
@ -393,6 +425,22 @@ Put the result into buffer BUF and place it according to PREFIX:
(copy-to-buffer buf (point-min) (point-max)) (copy-to-buffer buf (point-min) (point-max))
(plantuml-update-preview-buffer prefix buf))))))) (plantuml-update-preview-buffer prefix buf)))))))
(defun plantuml-executable-preview-string (prefix string buf)
"Preview the diagram from STRING by running the PlantUML JAR.
Put the result into buffer BUF. Window is selected according to PREFIX:
- 4 (when prefixing the command with C-u) -> new window
- 16 (when prefixing the command with C-u C-u) -> new frame.
- else -> new buffer"
(let* ((process-connection-type nil)
(ps (plantuml-executable-start-process buf)))
(process-send-string ps string)
(process-send-eof ps)
(set-process-sentinel ps
(lambda (_ps event)
(unless (equal event "finished\n")
(error "PLANTUML Preview failed: %s" event))
(plantuml-update-preview-buffer prefix buf)))))
(defun plantuml-exec-mode-preview-string (prefix mode string buf) (defun plantuml-exec-mode-preview-string (prefix mode string buf)
"Preview the diagram from STRING using the execution mode MODE. "Preview the diagram from STRING using the execution mode MODE.
Put the result into buffer BUF, selecting the window according to PREFIX: Put the result into buffer BUF, selecting the window according to PREFIX:
@ -401,7 +449,8 @@ Put the result into buffer BUF, selecting the window according to PREFIX:
- else -> new buffer" - else -> new buffer"
(let ((preview-fn (pcase mode (let ((preview-fn (pcase mode
('jar #'plantuml-jar-preview-string) ('jar #'plantuml-jar-preview-string)
('server #'plantuml-server-preview-string)))) ('server #'plantuml-server-preview-string)
('executable #'plantuml-executable-preview-string))))
(if preview-fn (if preview-fn
(funcall preview-fn prefix string buf) (funcall preview-fn prefix string buf)
(error "Unsupported execution mode %s" mode)))) (error "Unsupported execution mode %s" mode))))
@ -418,7 +467,7 @@ to choose where to display it."
(buf (get-buffer-create plantuml-preview-buffer)) (buf (get-buffer-create plantuml-preview-buffer))
(coding-system-for-read (and imagep 'binary)) (coding-system-for-read (and imagep 'binary))
(coding-system-for-write (and imagep 'binary))) (coding-system-for-write (and imagep 'binary)))
(plantuml-exec-mode-preview-string prefix plantuml-exec-mode string buf))) (plantuml-exec-mode-preview-string prefix (plantuml-get-exec-mode) string buf)))
(defun plantuml-preview-buffer (prefix) (defun plantuml-preview-buffer (prefix)
"Preview diagram from the PlantUML sources in the current buffer. "Preview diagram from the PlantUML sources in the current buffer.
@ -467,8 +516,8 @@ Uses prefix (as PREFIX) to choose where to display it:
(plantuml-preview-buffer prefix))) (plantuml-preview-buffer prefix)))
(defun plantuml-init-once (&optional mode) (defun plantuml-init-once (&optional mode)
"Ensure initialization only happens once. Use exec mode MODE to load the language details, which defaults to `plantuml-exec-mode'." "Ensure initialization only happens once. Use exec mode MODE to load the language details or by first querying `plantuml-get-exec-mode'."
(let ((mode (or mode plantuml-exec-mode))) (let ((mode (or mode (plantuml-get-exec-mode))))
(unless plantuml-kwdList (unless plantuml-kwdList
(plantuml-init mode) (plantuml-init mode)
(defvar plantuml-types-regexp (concat "^\\s *\\(" (regexp-opt plantuml-types 'words) "\\|\\<\\(note\\s +over\\|note\\s +\\(left\\|right\\|bottom\\|top\\)\\s +\\(of\\)?\\)\\>\\|\\<\\(\\(left\\|center\\|right\\)\\s +\\(header\\|footer\\)\\)\\>\\)")) (defvar plantuml-types-regexp (concat "^\\s *\\(" (regexp-opt plantuml-types 'words) "\\|\\<\\(note\\s +over\\|note\\s +\\(left\\|right\\|bottom\\|top\\)\\s +\\(of\\)?\\)\\>\\|\\<\\(\\(left\\|center\\|right\\)\\s +\\(header\\|footer\\)\\)\\>\\)"))
@ -621,8 +670,8 @@ Shortcuts Command Name
(if (and plantuml-suppress-deprecation-warning (if (and plantuml-suppress-deprecation-warning
(featurep 'puml-mode)) (featurep 'puml-mode))
(display-warning :warning (display-warning :warning
"`puml-mode' is now deprecated and no longer updated, but it's still present in your system.\ "`puml-mode' is now deprecated and no longer updated, but it's still present in your system. \
You should move your configuration to use `plantuml-mode'. See https://github.com/sytac/plantuml-mode. \ You should move your configuration to use `plantuml-mode'. \
See more at https://github.com/skuro/puml-mode/issues/26"))) See more at https://github.com/skuro/puml-mode/issues/26")))
(add-hook 'plantuml-mode-hook 'plantuml-deprecation-warning) (add-hook 'plantuml-mode-hook 'plantuml-deprecation-warning)

View File

@ -20,6 +20,8 @@
(should (equal 'server plantuml-exec-mode)) (should (equal 'server plantuml-exec-mode))
(plantuml-set-exec-mode "jar") (plantuml-set-exec-mode "jar")
(should (equal 'jar plantuml-exec-mode)) (should (equal 'jar plantuml-exec-mode))
(plantuml-set-exec-mode "executable")
(should (equal 'executable plantuml-exec-mode))
(setq plantuml-exec-mode orig-mode))) (setq plantuml-exec-mode orig-mode)))

View File

@ -10,13 +10,13 @@
(ert-deftest custom-jar-location () (ert-deftest custom-jar-location ()
(setq-local plantuml-jar-path "~/.plantuml/plantuml.jar") (setq-local plantuml-jar-path "~/.plantuml/plantuml.jar")
(should (equal `("-Djava.awt.headless=true" "-jar" (should (equal `("-Djava.awt.headless=true" "-jar" "--illegal-access=deny"
,(expand-file-name "~/.plantuml/plantuml.jar") ,(expand-file-name "~/.plantuml/plantuml.jar")
"-charset" "UTF-8") "-charset" "UTF-8")
(plantuml-jar-render-command))) (plantuml-jar-render-command)))
(setq-local plantuml-jar-path "/path/with spaces/plantuml.jar") (setq-local plantuml-jar-path "/path/with spaces/plantuml.jar")
(should (equal `("-Djava.awt.headless=true" "-jar" "/path/with spaces/plantuml.jar" "-charset" "UTF-8") (should (equal `("-Djava.awt.headless=true" "-jar" "--illegal-access=deny" "/path/with spaces/plantuml.jar" "-charset" "UTF-8")
(plantuml-jar-render-command)))) (plantuml-jar-render-command))))
(provide 'plantuml-mode-custom-jar-location-test) (provide 'plantuml-mode-custom-jar-location-test)