-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvcl-mode.el
417 lines (384 loc) · 10.3 KB
/
vcl-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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
;;; vcl-mode.el --- Syntax highlighting for Varnish Command Language
;;;
;;; Copyright (c) 2008-2011 Redpill Linpro AS
;;; All rights reserved.
;;;
;;; Author: Stig Sandbeck Mathisen <[email protected]>
;;; Version: 0.1
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;; 1. Redistributions of source code must retain the above copyright
;;; notice, this list of conditions and the following disclaimer.
;;; 2. Redistributions in binary form must reproduce the above
;;; copyright notice, this list of conditions and the following
;;; disclaimer in the documentation and/or other materials provided
;;; with the distribution.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
;;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
;;; TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
;;; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR
;;; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
;;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
;;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
;;; USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
;;; AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
;;; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
;;; ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
;;; POSSIBILITY OF SUCH DAMAGE.
;;;
(defgroup vcl nil
"Customizations for vcl-mode"
:group 'data)
(defcustom vcl-indent-level 8
"*The level of indentation (number of space characters) in VCL-mode."
:type 'integer :group 'vcl)
(defcustom vcl-indent-tabs-mode nil
"*Allow tabs when indentation in vcl-mode if non-nil"
:type 'boolean :group 'vcl)
;; I just love standards, there are so many to choose from
(if (string-match "XEmacs\\|Lucid" emacs-version)
(require 'generic-mode)
(require 'generic))
;; Add a VCL major mode called "vcl-mode", based on generic-mode
;;;###autoload
(define-generic-mode 'vcl-mode
;; comments (defined in "vcl-mode-setup-function"
'("#")
;; keywords (defined under "others" instead)
nil
;; others
(list
;; Logic
(generic-make-keywords-list
(list
"else"
"elsif"
"elseif"
"if"
"remove"
"return"
"error"
"set"
"unset"
)
'font-lock-keyword-face)
;; Types
(generic-make-keywords-list
(list
"purge_url"
"regsub"
"regsuball"
"hash_data"
"synthetic"
"ban"
)
'font-lock-builtin-face)
;; VCL Functions
(generic-make-keywords-list
(list
"acl"
"backend"
"sub"
"vcl_deliver"
"vcl_discard"
"vcl_fetch"
"vcl_hash"
"vcl_hit"
"vcl_miss"
"vcl_pass"
"vcl_pipe"
"vcl_recv"
"vcl_timeout"
"vcl_error"
;; new as of varnish 4/5
"vcl_purge"
"vcl_synth"
"vcl_backend_fetch"
"vcl_backend_response"
"vcl_backend_error"
"vcl_init"
"vcl_fini"
)
'font-lock-function-name-face)
;; Actions
(generic-make-keywords-list
(list
"deliver"
"discard"
"error"
"miss"
"fetch"
"hash"
"keep"
"lookup"
"pass"
"pipe"
"hit_for_pass"
;; new as of varnish 4/5
"purge"
"synth"
"restart"
"abandon"
"retry"
"ok"
"fail"
)
'font-lock-function-name-face)
;; Variables
(generic-make-keywords-list
(list
"backend.host"
"backend.port"
"bereq.proto"
"bereq.request"
"bereq.url"
"client.ip"
"now"
"obj.cacheable"
"obj.lastuse"
"obj.proto"
"obj.response"
"obj.status"
"obj.ttl"
"obj.valid"
"req.backend"
"req.hash"
"req.grace"
"req.proto"
"req.request"
"req.url"
"resp.proto"
"resp.response"
"resp.status"
"beresp.ttl"
"beresp.saintmode"
"server.ip"
;; new as of varnish 4/5
;; hint: egrep ^[a-z] ./doc/sphinx/include/vcl_var.rs
"bereq"
"bereq.backend"
"bereq.between_bytes_timeout"
"bereq.connect_timeout"
"bereq.first_byte_timeout"
"bereq.method"
;; "bereq.proto"
"bereq.retries"
"bereq.uncacheable"
;; "bereq.url"
"bereq.xid"
"beresp"
"beresp.age"
"beresp.backend"
"beresp.backend.ip"
"beresp.backend.name"
"beresp.do_esi"
"beresp.do_gunzip"
"beresp.do_gzip"
"beresp.do_stream"
"beresp.grace"
;; "beresp.http."
"beresp.keep"
"beresp.proto"
"beresp.reason"
"beresp.status"
"beresp.storage_hint"
;; "beresp.ttl"
"beresp.uncacheable"
"beresp.was_304"
"client"
"client.identity"
;; "client.ip"
"local"
"local.ip"
;; "now"
"obj"
"obj.age"
"obj.grace"
"obj.hits"
;; "obj.http."
"obj.keep"
;; "obj.proto"
"obj.reason"
;; "obj.status"
"obj.ttl"
"obj.uncacheable"
"remote"
"remote.ip"
"req"
"req.backend_hint"
"req.can_gzip"
"req.esi"
"req.esi_level"
"req.hash_always_miss"
"req.hash_ignore_busy"
;; "req.http."
"req.method"
;; "req.proto"
"req.restarts"
"req.ttl"
;; "req.url"
"req.xid"
"req_top"
;; "req_top.http."
"req_top.method"
"req_top.proto"
"req_top.url"
"resp"
;; "resp.http."
"resp.is_streaming"
;; "resp.proto"
"resp.reason"
;; "resp.status"
"server"
"server.hostname"
"server.identity"
;; "server.ip"
)
'font-lock-variable-name-face)
;; More variables
'("\\(bereq\\|beresp\\|req\\|req_top\\|resp\\|obj\\)\.http\.[A-Za-z-]+\\|storage\.[A-Za-z0-9-]+\.\\(free_space\\|used_space\\|happy\\)" .
font-lock-variable-name-face))
;; Filenames to highlight
'("\\.vcl\\'")
(list 'vcl-mode-setup-function)
"Mode for Varnish Command Language")
;; A function to modify syntax, add a hook if needed, and setup
;; indentation.
(defun vcl-mode-setup-function ()
;; These are "part of words"
(modify-syntax-entry ?_ "w")
(modify-syntax-entry ?. "w")
;; C++-style comments
(modify-syntax-entry ?/ ". 124")
(modify-syntax-entry ?* ". 23b")
;; Perl-style comments
(modify-syntax-entry ?# "<")
(modify-syntax-entry ?\n ">")
;; long strings - handling as comments for now
(modify-syntax-entry ?{ ". 1")
(modify-syntax-entry ?\" "\". 23b")
(modify-syntax-entry ?} ". 4")
(run-hooks 'vcl-mode-hook)
(set (make-local-variable 'indent-line-function) 'vcl-indent-line)
(setq indent-tabs-mode vcl-indent-tabs-mode)
)
(defvar vcl-mode-hook nil)
(defun vcl-indent-line ()
"Indent the current VCL line according to syntax."
(interactive)
(indent-line-to
(max (vcl-calculate-indentation) 0)))
;; The function to calculate indentation level. This is a really
;; simple and naive function, and does not perform anything like a
;; syntax check.
(defun vcl-calculate-indentation ()
"Return the column to which the current line should be indented."
(interactive)
(save-excursion
(cond
;; Do not indent the first line.
((vcl-first-line-p) 0)
;; neither empty lines
((vcl-empty-line-p) 0)
;; Reduce indent level if we close a block on this line
((vcl-closing-tag-on-this-line-p)
(- (vcl-previous-line-indentation)
vcl-indent-level))
;; Increase indent level if a block opened on the previous line
((vcl-opening-tag-on-previous-line-p)
(+ (vcl-previous-line-indentation)
vcl-indent-level))
;; for comments, check for c-scroll-style block
((or (vcl-comment-p (point))
(progn
(save-excursion
(back-to-indentation)
(vcl-comment-p (point)))))
(+ (vcl-previous-line-indentation)
(if (vcl-c-block-comment-p) 1 0)))
;; indent to the level of the previous non-empty line
((or (vcl-previous-line-statement-end-p)
(vcl-empty-previous-line-p))
(vcl-previous-line-indentation))
;; line continuation
(t
(+ (vcl-previous-line-indentation)
(floor (/ vcl-indent-level 2)))))))
(defun vcl-opening-tag-on-previous-line-p ()
"Checks if we have an opening tag on the previous line."
(interactive)
(save-excursion
(beginning-of-line)
(skip-chars-backward " \t\n")
(beginning-of-line)
(if (and (looking-at ".*{[ \t]*$")
(not (vcl-comment-p (point))))
t)))
(defun vcl-previous-line-statement-end-p ()
"Checks if last line ended a statement"
(interactive)
(save-excursion
(beginning-of-line)
(skip-chars-backward " \t\n")
(beginning-of-line)
(looking-at "^[ \t]*\\(#\\|//\\)\\|.*\\(;\\|}C?\\|\*/\\)[ \t]*$")))
(defun vcl-closing-tag-on-this-line-p ()
"Checks if we have a closing tag on this line."
(interactive)
(save-excursion
(back-to-indentation)
(looking-at "}")))
(defun vcl-previous-line-indentation ()
"Return the indent level of the previous line."
(interactive)
(save-excursion
(beginning-of-line)
(skip-chars-backward " \t\n")
(back-to-indentation)
(- (current-column)
(mod (current-column)
vcl-indent-level))))
;; shamelessly copied from
;; http://emacs.stackexchange.com/questions/14269/how-to-detect-if-the-point-is-within-a-comment-area
(defun vcl-comment-p (pos)
(interactive)
(let ((fontfaces (get-text-property pos 'face)))
(when (not (listp fontfaces))
(setf fontfaces (list fontfaces)))
(delq nil
(mapcar #'(lambda (f)
;; learn this trick from flyspell
(or (eq f 'font-lock-comment-face)
(eq f 'font-lock-comment-delimiter-face)))
fontfaces))))
(defun vcl-c-block-comment-p ()
"Checks if we have a c-block line starting with *"
(interactive)
(save-excursion
(back-to-indentation)
(looking-at "\*")))
(defun vcl-empty-line-p ()
"Checks for empty line."
(interactive)
(save-excursion
(beginning-of-line)
(looking-at "^[ \t]*$")))
(defun vcl-empty-previous-line-p ()
"Checks for empty line."
(interactive)
(save-excursion
(beginning-of-line)
(skip-chars-backward "\n")
(beginning-of-line)
(looking-at "^[ \t]*$")))
(defun vcl-first-line-p ()
"Checks if we are on the first line."
(interactive)
(save-excursion
(beginning-of-line)
(eq (point) 1)))
(provide 'vcl-mode)
;;; vcl-mode.el ends here