-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathob-phpstan.el
68 lines (54 loc) · 2.32 KB
/
ob-phpstan.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
;;; ob-phpstan.el --- Babel Functions for PHPStan -*- lexical-binding: t; -*-
;; Copyright (C) 2023 Takeo Obara
;; Author: Takeo Obara <[email protected]>
;; Version: 0.0.1
;; Package-Requires: ((emacs "28") (org "9"))
;; Homepage: https://github.com/emacs-php/ob-phpstan
;; Keywords: tools, org, literate programming, reproducible research, php
;; License: GPL-3.0-or-later
;; This program 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.
;; This program 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
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Static analyze a block of PHP code with org-babel using PHPStan.
;;; Code:
(require 'org)
(require 'ob)
(defgroup ob-phpstan nil
"org-mode blocks for PHPStan."
:group 'org)
(defcustom org-babel-phpstan-command "phpstan"
"The command to execute babel body code."
:group 'ob-phpstan
:type 'string)
(defcustom org-babel-phpstan-level 5
"Set phpstan level."
:group 'ob-phpstan
:type 'number)
;;;###autoload
(defun org-babel-execute:phpstan (body params)
"Static analyze a block of PHP code with org-babel using PHPStan.
This function is called by `org-babel-execute-src-block'."
(let ((tmp-file (org-babel-temp-file "phpstan-" ".php"))
(body (if (string-prefix-p "<" body)
body
(concat "<?php " body)))
(level (or (cdr (assoc :level params)) org-babel-phpstan-level)))
(with-temp-file tmp-file (insert (org-babel-expand-body:generic body params)))
(org-babel-eval (format "%s analyze %s --level %s --no-progress"
org-babel-phpstan-command
(org-babel-process-file-name tmp-file)
level)
"")))
;;;###autoload
(eval-after-load "org"
'(add-to-list 'org-src-lang-modes '("phpstan" . phpstan)))
(provide 'ob-phpstan)
;;; ob-phpstan.el ends here