-
Notifications
You must be signed in to change notification settings - Fork 17
/
hcl-mode.el
227 lines (185 loc) · 7.33 KB
/
hcl-mode.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
;;; hcl-mode.el --- Major mode for Hashicorp -*- lexical-binding: t -*-
;; Copyright (C) 2017 by Syohei YOSHIDA
;; Author: Syohei YOSHIDA <[email protected]>
;; URL: https://github.com/syohex/emacs-hcl-mode
;; Version: 0.03
;; Package-Requires: ((emacs "24.3"))
;; 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 <http://www.gnu.org/licenses/>.
;;; Commentary:
;; hcl-mode provides a major-mode of hcl file.
;;; Code:
(require 'cl-lib)
(require 'rx)
(defgroup hcl nil
"Major mode of Hashicorp Configuration Language."
:group 'languages)
(defcustom hcl-indent-level 2
"The tab width to use when indenting."
:type 'integer)
(defconst hcl--block-regexp
"^\\s-*[^{]+{")
;; String Interpolation(This regexp is taken from ruby-mode)
(defconst hcl--string-interpolation-regexp
"\\${[^}\n\\\\]*\\(?:\\\\.[^}\n\\\\]*\\)*}")
(defconst hcl--assignment-regexp
"\\s-*\\([[:word:]]+\\)\\s-*=\\(?:[^>=]\\)")
(defconst hcl--map-regexp
"\\s-*\\([[:word:]]+\\)\\s-*{")
(defconst hcl--boolean-regexp
(concat "\\(?:^\\|[^.]\\)"
(regexp-opt '("true" "false" "on" "off" "yes" "no")
'words)))
(defvar hcl-font-lock-keywords
`((,hcl--assignment-regexp 1 font-lock-variable-name-face)
(,hcl--boolean-regexp . font-lock-constant-face)
(,hcl--map-regexp 1 font-lock-type-face)
(,hcl--string-interpolation-regexp 0 font-lock-variable-name-face t)))
(defsubst hcl--paren-level ()
(car (syntax-ppss)))
(defsubst hcl--in-string-or-comment-p ()
(nth 8 (syntax-ppss)))
(defun hcl--block-indentation ()
(let ((curline (line-number-at-pos)))
(save-excursion
(condition-case nil
(progn
(backward-up-list)
(unless (= curline (line-number-at-pos))
(current-indentation)))
(scan-error nil)))))
(defun hcl--previous-indentation ()
(save-excursion
(forward-line -1)
(let (finish)
(while (not finish)
(cond ((bobp) (setq finish t))
((hcl--in-string-or-comment-p) (forward-line -1))
(t
(let ((line (buffer-substring-no-properties
(line-beginning-position) (line-end-position))))
(if (not (string-match-p "\\`\\s-*\\'" line))
(setq finish t)
(forward-line -1))))))
(current-indentation))))
(defun hcl-indent-line ()
"Indent current line as Hcl configuration."
(interactive)
(let* ((curpoint (point))
(pos (- (point-max) curpoint)))
(back-to-indentation)
(if (hcl--in-string-or-comment-p)
(goto-char curpoint)
(let ((block-indentation (hcl--block-indentation)))
(delete-region (line-beginning-position) (point))
(if block-indentation
(if (looking-at "[]}]")
(indent-to block-indentation)
(indent-to (+ block-indentation hcl-indent-level)))
(indent-to (hcl--previous-indentation)))
(when (> (- (point-max) pos) (point))
(goto-char (- (point-max) pos)))))))
(defun hcl-beginning-of-defun (&optional count)
(interactive "p")
(setq count (or count 1))
(let ((match 0)
finish)
(while (and (not finish)
(re-search-backward hcl--block-regexp nil t))
(unless (hcl--in-string-or-comment-p)
(cl-incf match)
(when (= match count)
(setq finish t))))))
(defun hcl-end-of-defun (&optional count)
(interactive "p")
(let ((paren-level (hcl--paren-level)))
(when (or (and (looking-at-p "}") (= paren-level 1))
(= paren-level 0))
(re-search-forward hcl--block-regexp nil t)))
(dotimes (_i count)
(when (looking-at-p hcl--block-regexp)
(goto-char (line-end-position)))
(hcl-beginning-of-defun 1)
(skip-chars-forward "^{")
(forward-char 1)
(let ((orig-level (hcl--paren-level)))
(while (>= (hcl--paren-level) orig-level)
(skip-chars-forward "^}")
(forward-line +1)))))
(eval-and-compile
(defconst hcl--here-doc-beg-re
"[^<]<<-?\\s-*\\\\?\\(\\(?:['\"][^'\"]+['\"]\\|\\sw\\|[-/~._]\\)+\\)\\(\n\\)"))
(defun hcl--syntax-propertize-heredoc (end)
(let ((ppss (syntax-ppss)))
(when (eq t (nth 3 ppss))
(let ((key (get-text-property (nth 8 ppss) 'hcl-here-doc-marker))
(case-fold-search nil))
(when (re-search-forward
(concat "^\\(?:[ \t]*\\)" (regexp-quote key) "\\(\n\\)")
end 'move)
(let ((eol (match-beginning 1)))
(put-text-property eol (1+ eol)
'syntax-table (string-to-syntax "|"))))))))
(defun hcl--font-lock-open-heredoc (start string eol)
(unless (or (memq (char-before start) '(?< ?>))
(save-excursion
(goto-char start)
(hcl--in-string-or-comment-p)))
(let ((str (replace-regexp-in-string "['\"]" "" string))
(ppss (save-excursion (syntax-ppss eol))))
(put-text-property eol (1+ eol) 'hcl-here-doc-marker str)
(prog1 (string-to-syntax "|")
(goto-char (+ 2 start))))))
(defun hcl--syntax-propertize-function (start end)
(goto-char start)
(hcl--syntax-propertize-heredoc end)
(funcall
(syntax-propertize-rules
(hcl--here-doc-beg-re
(2 (hcl--font-lock-open-heredoc
(match-beginning 0) (match-string 1) (match-beginning 2))))
("\\s|" (0 (prog1 nil (hcl--syntax-propertize-heredoc end)))))
(point) end))
(defvar hcl-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-M-a") 'hcl-beginning-of-defun)
(define-key map (kbd "C-M-e") 'hcl-end-of-defun)
map)
"Keymap for Hcl major mode.")
;;;###autoload
(define-derived-mode hcl-mode prog-mode "HCL"
"Major mode for editing hcl configuration file"
(setq font-lock-defaults '((hcl-font-lock-keywords)))
(modify-syntax-entry ?_ "w" hcl-mode-syntax-table)
;;; Comments
;; Single line comment
(modify-syntax-entry ?# "< b" hcl-mode-syntax-table)
(modify-syntax-entry ?\n "> b" hcl-mode-syntax-table)
;; multiple line comment(/* ... */) taken from `go-mode'
(modify-syntax-entry ?/ ". 124b" hcl-mode-syntax-table)
(modify-syntax-entry ?* ". 23" hcl-mode-syntax-table)
(setq-local comment-start "#")
(setq-local comment-use-syntax t)
(setq-local comment-start-skip "\\(//+\\|/\\*+\\)\\s *")
;; indentation
(make-local-variable 'hcl-indent-level)
(setq-local indent-line-function 'hcl-indent-line)
(setq-local beginning-of-defun-function #'hcl-beginning-of-defun)
(setq-local end-of-defun-function #'hcl-end-of-defun)
(setq-local syntax-propertize-function #'hcl--syntax-propertize-function)
;; electric-mode
(setq-local electric-indent-chars (append "{}[]" electric-indent-chars)))
;;;###autoload
(progn
(add-to-list 'auto-mode-alist '("\\.hcl\\'" . hcl-mode))
(add-to-list 'auto-mode-alist '("\\.nomad\\'" . hcl-mode)))
(provide 'hcl-mode)
;;; hcl-mode.el ends here