1 ;;; cfengine.el --- mode for editing Cfengine files
3 ;; Copyright (C) 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Maintainer: Ted Zlatanov <tzz@lifelogs.com>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Provides support for editing GNU Cfengine files, including
28 ;; font-locking, Imenu and indentation, but with no special keybindings.
30 ;; By default, CFEngine 3.x syntax is used.
32 ;; You can set it up so either `cfengine2-mode' (2.x and earlier) or
33 ;; `cfengine3-mode' (3.x) will be picked, depending on the buffer
36 ;; (add-to-list 'auto-mode-alist '("\\.cf\\'" . cfengine-auto-mode))
38 ;; OR you can choose to always use a specific version, if you prefer
41 ;; (add-to-list 'auto-mode-alist '("\\.cf\\'" . cfengine3-mode))
42 ;; (add-to-list 'auto-mode-alist '("^cf\\." . cfengine2-mode))
43 ;; (add-to-list 'auto-mode-alist '("^cfagent.conf\\'" . cfengine2-mode))
45 ;; It's *highly* recommended that you enable the eldoc minor mode:
47 ;; (add-hook 'cfengine3-mode-hook 'eldoc-mode)
49 ;; This is not the same as the mode written by Rolf Ebert
50 ;; <ebert@waporo.muc.de>, distributed with cfengine-2.0.5. It does
51 ;; better fontification and indentation, inter alia.
55 (autoload 'json-read
"json")
58 "Editing CFEngine files."
61 (defcustom cfengine-indent
2
62 "Size of a CFEngine indentation step in columns."
66 (defcustom cfengine-cf-promises
67 (or (executable-find "cf-promises")
68 (executable-find "/var/cfengine/bin/cf-promises")
69 (executable-find "/usr/bin/cf-promises")
70 (executable-find "/usr/sbin/cf-promises")
71 (executable-find "/usr/local/bin/cf-promises")
72 (executable-find "/usr/local/sbin/cf-promises")
73 (executable-find "~/bin/cf-promises")
74 (executable-find "~/sbin/cf-promises"))
75 "The location of the cf-promises executable.
76 Used for syntax discovery and checking. Set to nil to disable
77 the `compile-command' override. In that case, the ElDoc support
78 will use a fallback syntax definition."
81 :type
'(choice file
(const nil
)))
83 (defcustom cfengine-parameters-indent
'(promise pname
0)
84 "Indentation of CFEngine3 promise parameters (hanging indent).
86 For example, say you have this code:
93 promiseparameter => ...
96 You can choose to indent promiseparameter from the beginning of
97 the line (absolutely) or from the word \"promise\" (relatively).
99 You can also choose to indent the start of the word
100 \"promiseparameter\" or the arrow that follows it.
102 Finally, you can choose the amount of the indent.
104 The default is to anchor at promise, indent parameter name, and offset 0:
111 comment => \"my netrc\",
112 perms => mog(\"600\", \"tzz\", \"tzz\");
115 Here we anchor at beginning of line, indent arrow, and offset 10:
122 comment => \"my netrc\",
123 perms => mog(\"600\", \"tzz\", \"tzz\");
126 Some, including cfengine_stdlib.cf, like to anchor at promise, indent
127 arrow, and offset 16 or so:
134 comment => \"my netrc\",
135 perms => mog(\"600\", \"tzz\", \"tzz\");
141 (choice (const :tag
"Anchor at beginning of promise" promise
)
142 (const :tag
"Anchor at beginning of line" bol
))
143 (choice (const :tag
"Indent parameter name" pname
)
144 (const :tag
"Indent arrow" arrow
))
145 (integer :tag
"Indentation amount from anchor")))
147 (defvar cfengine-mode-debug nil
148 "Whether `cfengine-mode' should print debugging info.")
150 (defvar cfengine-mode-syntax-cache nil
151 "Cache for `cfengine-mode' syntax trees obtained from 'cf-promises -s json'.")
153 (defconst cfengine3-fallback-syntax
156 (category .
"system") (variadic .
:json-false
)
157 (parameters .
[((range .
".*") (type .
"string"))])
158 (returnType .
"context") (status .
"normal"))
160 (category .
"utils") (variadic .
:json-false
)
161 (parameters .
[((range .
".*") (type .
"string"))
162 ((range .
".*") (type .
"string"))])
163 (returnType .
"context") (status .
"normal"))
165 (category .
"data") (variadic .
:json-false
)
166 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
167 (returnType .
"slist") (status .
"normal"))
169 (category .
"files") (variadic .
:json-false
)
170 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
171 (returnType .
"string") (status .
"normal"))
173 (category .
"data") (variadic .
:json-false
)
174 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
175 (returnType .
"real") (status .
"normal"))
177 (category .
"data") (variadic .
:json-false
)
178 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
179 ((range .
"head,tail") (type .
"option"))
180 ((range .
"0,99999999999") (type .
"int"))])
181 (returnType .
"slist") (status .
"normal"))
183 (category .
"data") (variadic .
:json-false
)
184 (parameters .
[((range .
"gmtime,localtime") (type .
"option"))
185 ((range .
".*") (type .
"string"))
186 ((range .
"0,99999999999") (type .
"int"))])
187 (returnType .
"string") (status .
"normal"))
189 (category .
"data") (variadic .
:json-false
)
190 (parameters .
[((range .
".*") (type .
"string"))
191 ((range .
".*") (type .
"string"))])
192 (returnType .
"context") (status .
"normal"))
194 (category .
"data") (variadic .
:json-false
)
195 (parameters .
[((range .
".*") (type .
"string"))
196 ((range .
".*") (type .
"string"))
197 ((range .
"0,99999999999") (type .
"int"))])
198 (returnType .
"slist") (status .
"normal"))
200 (category .
"utils") (variadic .
:json-false
)
201 (parameters .
[((range .
".*") (type .
"string"))
202 ((range .
"daily,hourly") (type .
"option"))])
203 (returnType .
"context") (status .
"normal"))
205 (category .
"data") (variadic .
:json-false
)
206 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
207 ((range .
"lex") (type .
"string"))])
208 (returnType .
"slist") (status .
"normal"))
210 (category .
"data") (variadic .
:json-false
)
211 (parameters .
[((range .
".*") (type .
"string"))
212 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
213 (returnType .
"context") (status .
"normal"))
215 (category .
"data") (variadic .
:json-false
)
216 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
217 ((range .
".*") (type .
"string"))])
218 (returnType .
"slist") (status .
"normal"))
220 (category .
"communication") (variadic .
:json-false
)
221 (parameters .
[((range .
"@[(][a-zA-Z0-9]+[)]") (type .
"string"))
222 ((range .
"0,99999999999") (type .
"int"))
223 ((range .
".*") (type .
"string"))
224 ((range .
".*") (type .
"string"))
225 ((range .
"0,99999999999") (type .
"int"))
226 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
227 (returnType .
"int") (status .
"normal"))
229 (category .
"data") (variadic .
:json-false
)
230 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
231 (returnType .
"slist") (status .
"normal"))
233 (category .
"data") (variadic .
:json-false
)
234 (parameters .
[((range .
"-9.99999E100,9.99999E100") (type .
"real"))
235 ((range .
"-9.99999E100,9.99999E100") (type .
"real"))])
236 (returnType .
"rrange") (status .
"normal"))
238 (category .
"utils") (variadic .
:json-false
)
239 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
240 ((range .
"useshell,noshell,powershell") (type .
"option"))])
241 (returnType .
"context") (status .
"normal"))
242 (remoteclassesmatching
243 (category .
"communication") (variadic .
:json-false
)
244 (parameters .
[((range .
".*") (type .
"string"))
245 ((range .
".*") (type .
"string"))
246 ((range .
"true,false,yes,no,on,off") (type .
"option"))
247 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
248 (returnType .
"context") (status .
"normal"))
250 (category .
"communication") (variadic .
:json-false
)
251 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
252 ((range .
".*") (type .
"string"))
253 ((range .
"true,false,yes,no,on,off") (type .
"option"))])
254 (returnType .
"string") (status .
"normal"))
256 (category .
"communication") (variadic .
:json-false
)
257 (parameters .
[((range .
".*") (type .
"string"))
258 ((range .
".*") (type .
"string"))
259 ((range .
".*") (type .
"string"))
260 ((range .
".*") (type .
"string"))
261 ((range .
"subtree,onelevel,base") (type .
"option"))
262 ((range .
".*") (type .
"string"))
263 ((range .
"none,ssl,sasl") (type .
"option"))])
264 (returnType .
"context") (status .
"normal"))
266 (category .
"data") (variadic .
:json-false
)
267 (parameters .
[((range .
"@[(][a-zA-Z0-9]+[)]") (type .
"string"))
268 ((range .
".*") (type .
"string"))])
269 (returnType .
"context") (status .
"normal"))
271 (category .
"io") (variadic .
:json-false
)
272 (parameters .
[((range .
".*") (type .
"string"))
273 ((range .
".*") (type .
"string"))])
274 (returnType .
"context") (status .
"normal"))
276 (category .
"system") (variadic .
:json-false
)
277 (parameters .
[((range .
".*") (type .
"string"))
278 ((range .
".*") (type .
"string"))])
279 (returnType .
"string") (status .
"normal"))
281 (category .
"data") (variadic .
:json-false
)
282 (parameters .
[((range .
".*") (type .
"string"))
283 ((range .
".*") (type .
"string"))
284 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
285 (returnType .
"context") (status .
"normal"))
287 (category .
"data") (variadic .
:json-false
)
288 (parameters .
[((range .
".*") (type .
"string"))
289 ((range .
".*") (type .
"string"))])
290 (returnType .
"context") (status .
"normal"))
292 (category .
"data") (variadic .
:json-false
)
293 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
294 ((range .
".*") (type .
"string"))])
295 (returnType .
"context") (status .
"normal"))
297 (category .
"communication") (variadic .
:json-false
)
298 (parameters .
[((range .
".*") (type .
"string"))
299 ((range .
"0,99999999999") (type .
"int"))
300 ((range .
".*") (type .
"string"))
301 ((range .
"0,99999999999") (type .
"int"))])
302 (returnType .
"string") (status .
"normal"))
304 (category .
"io") (variadic .
:json-false
)
305 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
306 ((range .
".*") (type .
"string"))
307 ((range .
".*") (type .
"string"))
308 ((range .
"0,99999999999") (type .
"int"))
309 ((range .
"0,99999999999") (type .
"int"))])
310 (returnType .
"slist") (status .
"normal"))
312 (category .
"io") (variadic .
:json-false
)
313 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
314 ((range .
"\"?(/.*)") (type .
"string"))
315 ((range .
".*") (type .
"string"))
316 ((range .
".*") (type .
"string"))
317 ((range .
"0,99999999999") (type .
"int"))
318 ((range .
"0,99999999999") (type .
"int"))])
319 (returnType .
"int") (status .
"normal"))
321 (category .
"io") (variadic .
:json-false
)
322 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
323 ((range .
"\"?(/.*)") (type .
"string"))
324 ((range .
".*") (type .
"string"))
325 ((range .
".*") (type .
"string"))
326 ((range .
"0,99999999999") (type .
"int"))
327 ((range .
"0,99999999999") (type .
"int"))])
328 (returnType .
"int") (status .
"normal"))
330 (category .
"io") (variadic .
:json-false
)
331 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
332 ((range .
".*") (type .
"string"))
333 ((range .
".*") (type .
"string"))
334 ((range .
"0,99999999999") (type .
"int"))
335 ((range .
"0,99999999999") (type .
"int"))])
336 (returnType .
"rlist") (status .
"normal"))
338 (category .
"io") (variadic .
:json-false
)
339 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
340 ((range .
"\"?(/.*)") (type .
"string"))
341 ((range .
".*") (type .
"string"))
342 ((range .
".*") (type .
"string"))
343 ((range .
"0,99999999999") (type .
"int"))
344 ((range .
"0,99999999999") (type .
"int"))])
345 (returnType .
"int") (status .
"normal"))
347 (category .
"io") (variadic .
:json-false
)
348 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
349 ((range .
".*") (type .
"string"))
350 ((range .
".*") (type .
"string"))
351 ((range .
"0,99999999999") (type .
"int"))
352 ((range .
"0,99999999999") (type .
"int"))])
353 (returnType .
"ilist") (status .
"normal"))
355 (category .
"io") (variadic .
:json-false
)
356 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
357 ((range .
"\"?(/.*)") (type .
"string"))
358 ((range .
".*") (type .
"string"))
359 ((range .
".*") (type .
"string"))
360 ((range .
"0,99999999999") (type .
"int"))
361 ((range .
"0,99999999999") (type .
"int"))])
362 (returnType .
"int") (status .
"normal"))
364 (category .
"io") (variadic .
:json-false
)
365 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
366 ((range .
"0,99999999999") (type .
"int"))])
367 (returnType .
"string") (status .
"normal"))
369 (category .
"data") (variadic .
:json-false
)
370 (parameters .
[((range .
"-99999999999,9999999999") (type .
"int"))
371 ((range .
"-99999999999,9999999999") (type .
"int"))])
372 (returnType .
"int") (status .
"normal"))
374 (category .
"data") (variadic .
:json-false
)
375 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
376 (returnType .
"real") (status .
"normal"))
378 (category .
"communication") (variadic .
:json-false
)
379 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
380 ((range .
".*") (type .
"string"))
381 ((range .
"0,99999999999") (type .
"int"))])
382 (returnType .
"slist") (status .
"normal"))
384 (category .
"communication") (variadic .
:json-false
)
385 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
386 ((range .
".*") (type .
"string"))
387 ((range .
"0,99999999999") (type .
"int"))])
388 (returnType .
"string") (status .
"normal"))
390 (category .
"communication") (variadic .
:json-false
)
391 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
392 ((range .
".*") (type .
"string"))
393 ((range .
"0,99999999999") (type .
"int"))])
394 (returnType .
"slist") (status .
"normal"))
396 (category .
"io") (variadic .
:json-false
)
397 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
398 ((range .
"\"?(/.*)") (type .
"string"))
399 ((range .
".*") (type .
"string"))
400 ((range .
".*") (type .
"string"))
401 ((range .
"0,99999999999") (type .
"int"))
402 ((range .
"0,99999999999") (type .
"int"))])
403 (returnType .
"int") (status .
"normal"))
405 (category .
"io") (variadic .
:json-false
)
406 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
407 ((range .
"\"?(/.*)") (type .
"string"))
408 ((range .
".*") (type .
"string"))
409 ((range .
".*") (type .
"string"))
410 ((range .
"0,99999999999") (type .
"int"))
411 ((range .
"0,99999999999") (type .
"int"))])
412 (returnType .
"int") (status .
"normal"))
414 (category .
"io") (variadic .
:json-false
)
415 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
416 ((range .
"\"?(/.*)") (type .
"string"))
417 ((range .
".*") (type .
"string"))
418 ((range .
".*") (type .
"string"))
419 ((range .
"0,99999999999") (type .
"int"))
420 ((range .
"0,99999999999") (type .
"int"))])
421 (returnType .
"int") (status .
"normal"))
423 (category .
"io") (variadic .
:json-false
)
424 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
425 ((range .
"\"?(/.*)") (type .
"string"))
426 ((range .
".*") (type .
"string"))
427 ((range .
".*") (type .
"string"))
428 ((range .
"0,99999999999") (type .
"int"))
429 ((range .
"0,99999999999") (type .
"int"))])
430 (returnType .
"int") (status .
"normal"))
432 (category .
"data") (variadic . t
)
434 (returnType .
"string") (status .
"normal"))
436 (category .
"data") (variadic .
:json-false
)
437 (parameters .
[((range .
"1970,3000") (type .
"int"))
438 ((range .
"1,12") (type .
"int"))
439 ((range .
"1,31") (type .
"int"))
440 ((range .
"0,23") (type .
"int"))
441 ((range .
"0,59") (type .
"int"))
442 ((range .
"0,59") (type .
"int"))])
443 (returnType .
"int") (status .
"normal"))
445 (category .
"data") (variadic .
:json-false
)
446 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
447 ((range .
"0,99999999999") (type .
"int"))])
448 (returnType .
"string") (status .
"normal"))
450 (category .
"system") (variadic .
:json-false
)
452 (returnType .
"int") (status .
"normal"))
454 (category .
"data") (variadic .
:json-false
)
455 (parameters .
[((range .
".*") (type .
"string"))])
456 (returnType .
"string") (status .
"normal"))
458 (category .
"data") (variadic .
:json-false
)
459 (parameters .
[((range .
".*") (type .
"string"))
460 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
461 (returnType .
"context") (status .
"normal"))
463 (category .
"data") (variadic .
:json-false
)
464 (parameters .
[((range .
".*") (type .
"string"))
465 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
466 (returnType .
"slist") (status .
"normal"))
468 (category .
"data") (variadic .
:json-false
)
469 (parameters .
[((range .
".*") (type .
"string"))
470 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
471 (returnType .
"slist") (status .
"normal"))
473 (category .
"files") (variadic .
:json-false
)
474 (parameters .
[((range .
".+") (type .
"string"))
475 ((range .
".*") (type .
"string"))
476 ((range .
"true,false,yes,no,on,off") (type .
"option"))])
477 (returnType .
"slist") (status .
"normal"))
479 (category .
"data") (variadic .
:json-false
)
480 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
481 (returnType .
"int") (status .
"normal"))
483 (category .
"communication") (variadic .
:json-false
)
484 (parameters .
[((range .
".*") (type .
"string"))
485 ((range .
".*") (type .
"string"))
486 ((range .
".*") (type .
"string"))
487 ((range .
".*") (type .
"string"))
488 ((range .
"subtree,onelevel,base") (type .
"option"))
489 ((range .
"none,ssl,sasl") (type .
"option"))])
490 (returnType .
"string") (status .
"normal"))
492 (category .
"communication") (variadic .
:json-false
)
493 (parameters .
[((range .
".*") (type .
"string"))
494 ((range .
".*") (type .
"string"))
495 ((range .
".*") (type .
"string"))
496 ((range .
".*") (type .
"string"))
497 ((range .
"subtree,onelevel,base") (type .
"option"))
498 ((range .
"none,ssl,sasl") (type .
"option"))])
499 (returnType .
"slist") (status .
"normal"))
501 (category .
"communication") (variadic .
:json-false
)
502 (parameters .
[((range .
".*") (type .
"string"))
503 ((range .
".*") (type .
"string"))
504 ((range .
".*") (type .
"string"))
505 ((range .
".*") (type .
"string"))
506 ((range .
"subtree,onelevel,base") (type .
"option"))
507 ((range .
"none,ssl,sasl") (type .
"option"))])
508 (returnType .
"context") (status .
"normal"))
510 (category .
"files") (variadic .
:json-false
)
511 (parameters .
[((range .
"0,1000") (type .
"int"))
512 ((range .
"0,1000") (type .
"int"))
513 ((range .
"0,1000") (type .
"int"))
514 ((range .
"0,1000") (type .
"int"))
515 ((range .
"0,1000") (type .
"int"))
516 ((range .
"0,40000") (type .
"int"))])
517 (returnType .
"context") (status .
"normal"))
519 (category .
"data") (variadic .
:json-false
)
520 (parameters .
[((range .
".*") (type .
"string"))
521 ((range .
".*") (type .
"string"))])
522 (returnType .
"string") (status .
"normal"))
524 (category .
"data") (variadic .
:json-false
)
525 (parameters .
[((range .
".*") (type .
"string"))
526 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
527 (returnType .
"string") (status .
"normal"))
529 (category .
"utils") (variadic .
:json-false
)
530 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
531 (returnType .
"context") (status .
"normal"))
533 (category .
"files") (variadic .
:json-false
)
534 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
535 (returnType .
"context") (status .
"normal"))
537 (category .
"files") (variadic .
:json-false
)
538 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
539 ((range .
"\"?(/.*)") (type .
"string"))])
540 (returnType .
"context") (status .
"normal"))
542 (category .
"files") (variadic .
:json-false
)
543 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
544 (returnType .
"context") (status .
"normal"))
546 (category .
"data") (variadic .
:json-false
)
547 (parameters .
[((range .
".*") (type .
"string"))
548 ((range .
".*") (type .
"string"))])
549 (returnType .
"context") (status .
"normal"))
551 (category .
"data") (variadic .
:json-false
)
552 (parameters .
[((range .
".*") (type .
"string"))
553 ((range .
".*") (type .
"string"))])
554 (returnType .
"context") (status .
"normal"))
556 (category .
"files") (variadic .
:json-false
)
557 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
558 (returnType .
"context") (status .
"normal"))
560 (category .
"files") (variadic .
:json-false
)
561 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
562 (returnType .
"context") (status .
"normal"))
564 (category .
"data") (variadic .
:json-false
)
565 (parameters .
[((range .
"-99999999999,9999999999") (type .
"int"))
566 ((range .
"-99999999999,9999999999") (type .
"int"))])
567 (returnType .
"irange") (status .
"normal"))
569 (category .
"communication") (variadic .
:json-false
)
570 (parameters .
[((range .
".*") (type .
"string"))])
571 (returnType .
"context") (status .
"normal"))
573 (category .
"data") (variadic .
:json-false
)
574 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
575 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
576 (returnType .
"slist") (status .
"normal"))
578 (category .
"data") (variadic . t
)
580 (returnType .
"string") (status .
"normal"))
582 (category .
"communication") (variadic .
:json-false
)
583 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
584 (returnType .
"string") (status .
"normal"))
586 (category .
"communication") (variadic .
:json-false
)
587 (parameters .
[((range .
"[a-zA-Z0-9_]+") (type .
"string"))
588 ((range .
"name,address") (type .
"option"))])
589 (returnType .
"slist") (status .
"normal"))
591 (category .
"communication") (variadic .
:json-false
)
592 (parameters .
[((range .
"0,99999999999") (type .
"int"))
593 ((range .
"lastseen,notseen") (type .
"option"))
594 ((range .
"name,address") (type .
"option"))])
595 (returnType .
"slist") (status .
"normal"))
597 (category .
"communication") (variadic .
:json-false
)
598 (parameters .
[((range .
".*") (type .
"string"))
599 ((range .
".*") (type .
"string"))])
600 (returnType .
"context") (status .
"normal"))
602 (category .
"system") (variadic .
:json-false
)
603 (parameters .
[((range .
".*") (type .
"string"))])
604 (returnType .
"context") (status .
"normal"))
606 (category .
"communication") (variadic .
:json-false
)
607 (parameters .
[((range .
".*") (type .
"string"))])
608 (returnType .
"string") (status .
"normal"))
610 (category .
"communication") (variadic .
:json-false
)
611 (parameters .
[((range .
".*") (type .
"string"))])
612 (returnType .
"string") (status .
"normal"))
614 (category .
"data") (variadic .
:json-false
)
615 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
616 ((range .
"md5,sha1,crypt,cf_sha224,cf_sha256,cf_sha384,cf_sha512") (type .
"option"))
617 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
618 (returnType .
"context") (status .
"normal"))
620 (category .
"data") (variadic .
:json-false
)
621 (parameters .
[((range .
".*") (type .
"string"))
622 ((range .
"md5,sha1,sha256,sha512,sha384,crypt") (type .
"option"))])
623 (returnType .
"string") (status .
"normal"))
625 (category .
"system") (variadic .
:json-false
)
626 (parameters .
[((range .
".*") (type .
"string"))])
627 (returnType .
"context") (status .
"normal"))
629 (category .
"data") (variadic .
:json-false
)
630 (parameters .
[((range .
".*") (type .
"string"))
631 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
632 (returnType .
"slist") (status .
"normal"))
634 (category .
"data") (variadic .
:json-false
)
635 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
636 (returnType .
"slist") (status .
"normal"))
638 (category .
"system") (variadic .
:json-false
)
639 (parameters .
[((range .
".*") (type .
"string"))
640 ((range .
".*") (type .
"string"))])
641 (returnType .
"slist") (status .
"normal"))
643 (category .
"system") (variadic .
:json-false
)
644 (parameters .
[((range .
".*") (type .
"string"))])
645 (returnType .
"int") (status .
"normal"))
647 (category .
"data") (variadic .
:json-false
)
648 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
649 (returnType .
"slist") (status .
"normal"))
651 (category .
"data") (variadic .
:json-false
)
652 (parameters .
[((range .
".*") (type .
"string"))])
653 (returnType .
"int") (status .
"normal"))
655 (category .
"data") (variadic .
:json-false
)
656 (parameters .
[((range .
".*") (type .
"string"))
657 ((range .
"\"?(/.*)") (type .
"string"))
658 ((range .
".*") (type .
"string"))
659 ((range .
".*") (type .
"string"))])
660 (returnType .
"int") (status .
"normal"))
662 (category .
"system") (variadic .
:json-false
)
663 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
664 ((range .
"0,99999999999") (type .
"int"))])
665 (returnType .
"string") (status .
"normal"))
667 (category .
"data") (variadic . t
)
668 (parameters .
[((range .
".*") (type .
"string"))])
669 (returnType .
"string") (status .
"normal"))
671 (category .
"data") (variadic .
:json-false
)
672 (parameters .
[((range .
".*") (type .
"string"))
673 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
674 ((range .
"true,false,yes,no,on,off") (type .
"option"))
675 ((range .
"true,false,yes,no,on,off") (type .
"option"))
676 ((range .
"0,99999999999") (type .
"int"))])
677 (returnType .
"slist") (status .
"normal"))
679 (category .
"files") (variadic .
:json-false
)
680 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
681 ((range .
"size,gid,uid,ino,nlink,ctime,atime,mtime,mode,modeoct,permstr,permoct,type,devno,dev_minor,dev_major,basename,dirname") (type .
"option"))])
682 (returnType .
"string") (status .
"normal"))
684 (category .
"files") (variadic .
:json-false
)
685 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
686 (returnType .
"int") (status .
"normal"))
688 (category .
"files") (variadic .
:json-false
)
689 (parameters .
[((range .
"@[(][a-zA-Z0-9]+[)]") (type .
"string"))])
690 (returnType .
"context") (status .
"normal"))
692 (category .
"files") (variadic .
:json-false
)
693 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
694 (returnType .
"context") (status .
"normal"))
696 (category .
"utils") (variadic .
:json-false
)
697 (parameters .
[((range .
".+") (type .
"string"))
698 ((range .
"useshell,noshell,powershell") (type .
"option"))])
699 (returnType .
"string") (status .
"normal"))
701 (category .
"data") (variadic .
:json-false
)
702 (parameters .
[((range .
".*") (type .
"string"))
703 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
704 (returnType .
"context") (status .
"normal"))
706 (category .
"data") (variadic .
:json-false
)
707 (parameters .
[((range .
".*") (type .
"string"))])
708 (returnType .
"string") (status .
"normal"))
710 (category .
"files") (variadic .
:json-false
)
711 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))])
712 (returnType .
"int") (status .
"normal"))
714 (category .
"files") (variadic .
:json-false
)
715 (parameters .
[((range .
".*") (type .
"string"))])
716 (returnType .
"string") (status .
"normal"))
718 (category .
"data") (variadic .
:json-false
)
719 (parameters .
[((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))
720 ((range .
"[a-zA-Z0-9_$(){}\\[\\].:]+") (type .
"string"))])
721 (returnType .
"slist") (status .
"normal"))
723 (category .
"io") (variadic .
:json-false
)
724 (parameters .
[((range .
".*") (type .
"string"))
725 ((range .
"\"?(/.*)") (type .
"string"))])
726 (returnType .
"int") (status .
"normal"))
727 (countclassesmatching
728 (category .
"utils") (variadic .
:json-false
)
729 (parameters .
[((range .
".*") (type .
"string"))])
730 (returnType .
"int") (status .
"normal"))
732 (category .
"utils") (variadic .
:json-false
)
733 (parameters .
[((range .
".*") (type .
"string"))])
734 (returnType .
"slist") (status .
"normal"))
736 (category .
"utils") (variadic .
:json-false
)
737 (parameters .
[((range .
".*") (type .
"string"))])
738 (returnType .
"context") (status .
"normal"))
740 (category .
"data") (variadic .
:json-false
)
741 (parameters .
[((range .
".*") (type .
"string"))])
742 (returnType .
"context") (status .
"normal"))
744 (category .
"files") (variadic .
:json-false
)
745 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
746 ((range .
"\"?(/.*)") (type .
"string"))])
747 (returnType .
"context") (status .
"normal"))
749 (category .
"data") (variadic . t
)
751 (returnType .
"string") (status .
"normal"))
753 (category .
"data") (variadic .
:json-false
)
754 (parameters .
[((range .
".*") (type .
"string"))])
755 (returnType .
"string") (status .
"normal"))
757 (category .
"data") (variadic . t
)
759 (returnType .
"string") (status .
"normal"))
761 (category .
"data") (variadic .
:json-false
)
762 (parameters .
[((range .
"0,1000") (type .
"int"))
763 ((range .
"0,1000") (type .
"int"))
764 ((range .
"0,1000") (type .
"int"))
765 ((range .
"0,1000") (type .
"int"))
766 ((range .
"0,1000") (type .
"int"))
767 ((range .
"0,40000") (type .
"int"))])
768 (returnType .
"int") (status .
"normal"))
770 (category .
"data") (variadic .
:json-false
)
771 (parameters .
[((range .
"0,1000") (type .
"int"))
772 ((range .
"0,1000") (type .
"int"))
773 ((range .
"0,1000") (type .
"int"))
774 ((range .
"0,1000") (type .
"int"))
775 ((range .
"0,1000") (type .
"int"))
776 ((range .
"0,40000") (type .
"int"))])
777 (returnType .
"int") (status .
"normal"))
779 (category .
"files") (variadic .
:json-false
)
780 (parameters .
[((range .
"\"?(/.*)") (type .
"string"))
781 ((range .
"\"?(/.*)") (type .
"string"))])
782 (returnType .
"context") (status .
"normal"))))
783 "Fallback CFEngine syntax, containing just function definitions.")
785 (defvar cfengine-mode-syntax-functions-regex
786 (regexp-opt (mapcar (lambda (def)
787 (format "%s" (car def
)))
788 (cdr (assq 'functions cfengine3-fallback-syntax
)))
791 (defcustom cfengine-mode-abbrevs nil
792 "Abbrevs for CFEngine2 mode."
794 :type
'(repeat (list (string :tag
"Name")
795 (string :tag
"Expansion")
796 (choice :tag
"Hook" (const nil
) function
))))
798 (make-obsolete-variable 'cfengine-mode-abbrevs
'edit-abbrevs
"24.1")
800 ;; Taken from the doc for pre-release 2.1.
802 (defconst cfengine2-actions
803 '("acl" "alerts" "binservers" "broadcast" "control" "classes" "copy"
804 "defaultroute" "disks" "directories" "disable" "editfiles" "files"
805 "filters" "groups" "homeservers" "ignore" "import" "interfaces"
806 "links" "mailserver" "methods" "miscmounts" "mountables"
807 "processes" "packages" "rename" "required" "resolve"
808 "shellcommands" "tidy" "unmount"
809 ;; Keywords for cfservd.
810 "admit" "grant" "deny")
811 "List of the action keywords supported by Cfengine.
812 This includes those for cfservd as well as cfagent.")
814 (defconst cfengine3-defuns
'("bundle" "body")
815 "List of the CFEngine 3.x defun headings.")
817 (defconst cfengine3-defuns-regex
(regexp-opt cfengine3-defuns t
)
818 "Regex to match the CFEngine 3.x defuns.")
820 (defconst cfengine3-defun-full-re
(concat "^\\s-*" cfengine3-defuns-regex
821 "\\s-+\\(\\(?:\\w\\|\\s_\\)+\\)" ;type
822 "\\s-+\\(\\(?:\\w\\|\\s_\\)+\\)" ;id
824 "Regexp matching full defun declaration (excluding argument list).")
826 (defconst cfengine3-class-selector-regex
"\\([[:alnum:]_().&|!:]+\\)::")
828 (defconst cfengine3-category-regex
"\\([[:alnum:]_]+\\):")
830 (defconst cfengine3-vartypes
'("string" "int" "real" "slist" "ilist" "rlist"
831 "irange" "rrange" "counter" "data")
832 "List of the CFEngine 3.x variable types."))
834 (defvar cfengine2-font-lock-keywords
836 ;; List the allowed actions explicitly, so that errors are more obvious.
837 (,(concat "^[ \t]*" (eval-when-compile
838 (regexp-opt cfengine2-actions t
))
840 1 font-lock-keyword-face
)
842 ("^[ \t]*\\([[:alnum:]_().|!]+\\)::" 1 font-lock-function-name-face
)
844 ("$(\\([[:alnum:]_]+\\))" 1 font-lock-variable-name-face
)
845 ("${\\([[:alnum:]_]+\\)}" 1 font-lock-variable-name-face
)
846 ;; Variable definitions.
847 ("\\_<\\([[:alnum:]_]+\\)[ \t]*=[ \t]*(" 1 font-lock-variable-name-face
)
848 ;; File, acl &c in group: { token ... }
849 ("{[ \t]*\\([^ \t\n]+\\)" 1 font-lock-constant-face
)))
851 (defvar cfengine3-font-lock-keywords
853 ;; Defuns. This happens early so they don't get caught by looser
855 (,(concat "\\_<" cfengine3-defuns-regex
"\\_>"
856 "[ \t]+\\_<\\([[:alnum:]_.:]+\\)\\_>"
857 "[ \t]+\\_<\\([[:alnum:]_.:]+\\)"
858 ;; Optional parentheses with variable names inside.
859 "\\(?:(\\([^)]*\\))\\)?")
860 (1 font-lock-builtin-face
)
861 (2 font-lock-constant-face
)
862 (3 font-lock-function-name-face
)
863 (4 font-lock-variable-name-face nil t
))
866 (,(concat "^[ \t]*" cfengine3-class-selector-regex
)
867 1 font-lock-keyword-face
)
870 (,(concat "^[ \t]*" cfengine3-category-regex
)
871 1 font-lock-builtin-face
)
873 ;; Variables, including scope, e.g. module.var
874 ("[@$](\\([[:alnum:]_.:]+\\))" 1 font-lock-variable-name-face
)
875 ("[@$]{\\([[:alnum:]_.:]+\\)}" 1 font-lock-variable-name-face
)
877 ;; Variable definitions.
878 ("\\_<\\([[:alnum:]_]+\\)[ \t]*=[ \t]*(" 1 font-lock-variable-name-face
)
881 (,(concat "\\_<" (eval-when-compile (regexp-opt cfengine3-vartypes t
)) "\\_>")
882 1 font-lock-type-face
)))
884 (defvar cfengine2-imenu-expression
885 `((nil ,(concat "^[ \t]*" (eval-when-compile
886 (regexp-opt cfengine2-actions t
))
889 ("Variables/classes" "\\_<\\([[:alnum:]_]+\\)[ \t]*=[ \t]*(" 1)
890 ("Variables/classes" "\\_<define=\\([[:alnum:]_]+\\)" 1)
891 ("Variables/classes" "\\_<DefineClass\\>[ \t]+\\([[:alnum:]_]+\\)" 1))
892 "`imenu-generic-expression' for CFEngine mode.")
894 (defun cfengine2-outline-level ()
895 "`outline-level' function for CFEngine mode."
896 (if (looking-at "[^:]+\\(?:[:]+\\)$")
897 (length (match-string 1))))
899 (defun cfengine2-beginning-of-defun ()
900 "`beginning-of-defun' function for CFEngine mode.
901 Treats actions as defuns."
902 (unless (<= (current-column) (current-indentation))
904 (if (re-search-backward "^[[:alpha:]]+: *$" nil t
)
906 (goto-char (point-min)))
909 (defun cfengine2-end-of-defun ()
910 "`end-of-defun' function for CFEngine mode.
911 Treats actions as defuns."
913 (if (re-search-forward "^[[:alpha:]]+: *$" nil t
)
915 (goto-char (point-max)))
918 ;; Fixme: Should get an extra indent step in editfiles BeginGroup...s.
920 (defun cfengine2-indent-line ()
921 "Indent a line in Cfengine mode.
922 Intended as the value of `indent-line-function'."
923 (let ((pos (- (point-max) (point))))
926 (back-to-indentation)
928 ;; Action selectors aren't indented; class selectors are
929 ;; indented one step.
930 ((looking-at "[[:alnum:]_().|!]+:\\(:\\)?")
932 (indent-line-to cfengine-indent
)
934 ;; Outdent leading close brackets one step.
935 ((or (eq ?\
} (char-after))
936 (eq ?\
) (char-after)))
938 (indent-line-to (save-excursion
943 ;; Inside brackets/parens: indent to start column of non-comment
944 ;; token on line following open bracket or by one step from open
947 (progn (indent-line-to (save-excursion
950 (skip-chars-forward " \t")
951 (if (looking-at "[^\n#]")
953 (skip-chars-backward " \t")
954 (+ (current-column) -
1
958 ;; Indent by two steps after a class selector.
960 (re-search-backward "^[ \t]*[[:alnum:]_().|!]+::" nil t
))
961 (indent-line-to (* 2 cfengine-indent
)))
962 ;; Indent by one step if we're after an action header.
964 (goto-char (point-min))
965 (looking-at "[[:alpha:]]+:[ \t]*$"))
966 (indent-line-to cfengine-indent
))
967 ;; Else don't indent.
969 (indent-line-to 0))))
970 ;; If initial point was within line's indentation,
971 ;; position after the indentation. Else stay at same point in text.
972 (if (> (- (point-max) pos
) (point))
973 (goto-char (- (point-max) pos
)))))
975 ;; This doesn't work too well in Emacs 21.2. See 22.1 development
977 (defun cfengine-fill-paragraph (&optional justify
)
978 "Fill `paragraphs' in Cfengine code."
980 (or (if (fboundp 'fill-comment-paragraph
)
981 (fill-comment-paragraph justify
) ; post Emacs 21.3
982 ;; else do nothing in a comment
983 (nth 4 (parse-partial-sexp (save-excursion
987 (let ((paragraph-start
988 ;; Include start of parenthesized block.
989 "\f\\|[ \t]*$\\|.*\(")
991 ;; Include action and class lines, start and end of
992 ;; bracketed blocks and end of parenthesized blocks to
993 ;; avoid including these in fill. This isn't ideal.
994 "[ \t\f]*$\\|.*#\\|.*[\){}]\\|\\s-*[[:alpha:]_().|!]+:")
995 fill-paragraph-function
)
996 (fill-paragraph justify
))
999 (defun cfengine3-beginning-of-defun ()
1000 "`beginning-of-defun' function for Cfengine 3 mode.
1001 Treats body/bundle blocks as defuns."
1002 (unless (<= (current-column) (current-indentation))
1004 (if (re-search-backward (concat "^[ \t]*" cfengine3-defuns-regex
"\\_>") nil t
)
1006 (goto-char (point-min)))
1009 (defun cfengine3-end-of-defun ()
1010 "`end-of-defun' function for Cfengine 3 mode.
1011 Treats body/bundle blocks as defuns."
1013 (if (re-search-forward (concat "^[ \t]*" cfengine3-defuns-regex
"\\_>") nil t
)
1015 (goto-char (point-max)))
1018 (defun cfengine3-indent-line ()
1019 "Indent a line in Cfengine 3 mode.
1020 Intended as the value of `indent-line-function'."
1021 (let ((pos (- (point-max) (point)))
1025 (back-to-indentation)
1026 (setq parse
(parse-partial-sexp (point-min) (point)))
1027 (when cfengine-mode-debug
1028 (message "%S" parse
))
1031 ;; Body/bundle blocks start at 0.
1032 ((looking-at (concat cfengine3-defuns-regex
"\\_>"))
1034 ;; Categories are indented one step.
1035 ((looking-at (concat cfengine3-category-regex
"[ \t]*\\(#.*\\)*$"))
1036 (indent-line-to cfengine-indent
))
1037 ;; Class selectors are indented two steps.
1038 ((looking-at (concat cfengine3-class-selector-regex
"[ \t]*\\(#.*\\)*$"))
1039 (indent-line-to (* 2 cfengine-indent
)))
1040 ;; Outdent leading close brackets one step.
1041 ((or (eq ?\
} (char-after))
1042 (eq ?\
) (char-after)))
1044 (indent-line-to (save-excursion
1047 (move-beginning-of-line nil
)
1048 (skip-chars-forward " \t")
1051 ;; Inside a string and it starts before this line: do nothing.
1053 (< (nth 8 parse
) (save-excursion (beginning-of-line) (point))))
1056 ;; Inside a defun, but not a nested list (depth is 1). This is
1057 ;; a promise, usually.
1059 ;; Indent to cfengine-indent times the nested depth
1060 ;; plus 2. That way, promises indent deeper than class
1061 ;; selectors, which in turn are one deeper than categories.
1062 ((= 1 (nth 0 parse
))
1063 (let ((p-anchor (nth 0 cfengine-parameters-indent
))
1064 (p-what (nth 1 cfengine-parameters-indent
))
1065 (p-indent (nth 2 cfengine-parameters-indent
)))
1066 ;; Do we have the parameter anchor and location and indent
1067 ;; defined, and are we looking at a promise parameter?
1068 (if (and p-anchor p-what p-indent
1069 (looking-at "\\([[:alnum:]_]+[ \t]*\\)=>"))
1070 (let* ((arrow-offset (* -
1 (length (match-string 1))))
1071 (extra-offset (if (eq p-what
'arrow
) arrow-offset
0))
1072 (base-offset (if (eq p-anchor
'promise
)
1073 (* (+ 2 (nth 0 parse
)) cfengine-indent
)
1075 (indent-line-to (max 0 (+ p-indent base-offset extra-offset
))))
1076 ;; Else, indent to cfengine-indent times the nested depth
1077 ;; plus 2. That way, promises indent deeper than class
1078 ;; selectors, which in turn are one deeper than categories.
1079 (indent-line-to (* (+ 2 (nth 0 parse
)) cfengine-indent
)))))
1080 ;; Inside brackets/parens: indent to start column of non-comment
1081 ;; token on line following open bracket or by one step from open
1082 ;; bracket's column.
1084 (progn (indent-line-to (save-excursion
1087 (skip-chars-forward " \t")
1089 ((looking-at "[^\n#]")
1091 ((looking-at "[^\n#]")
1094 (skip-chars-backward " \t")
1095 (+ (current-column) -
1
1096 cfengine-indent
)))))
1099 ;; Else don't indent.
1100 (t (indent-line-to 0))))
1101 ;; If initial point was within line's indentation,
1102 ;; position after the indentation. Else stay at same point in text.
1103 (if (> (- (point-max) pos
) (point))
1104 (goto-char (- (point-max) pos
)))))
1106 ;; CFEngine 3.x grammar
1108 ;; specification: blocks
1109 ;; blocks: block | blocks block;
1110 ;; block: bundle typeid blockid bundlebody
1111 ;; | bundle typeid blockid usearglist bundlebody
1112 ;; | body typeid blockid bodybody
1113 ;; | body typeid blockid usearglist bodybody;
1117 ;; usearglist: '(' aitems ')';
1118 ;; aitems: aitem | aitem ',' aitems |;
1121 ;; bundlebody: '{' statements '}'
1122 ;; statements: statement | statements statement;
1123 ;; statement: category | classpromises;
1125 ;; bodybody: '{' bodyattribs '}'
1126 ;; bodyattribs: bodyattrib | bodyattribs bodyattrib;
1127 ;; bodyattrib: class | selections;
1128 ;; selections: selection | selections selection;
1129 ;; selection: id ASSIGN rval ';' ;
1131 ;; classpromises: classpromise | classpromises classpromise;
1132 ;; classpromise: class | promises;
1133 ;; promises: promise | promises promise;
1134 ;; category: CATEGORY
1135 ;; promise: promiser ARROW rval constraints ';' | promiser constraints ';';
1136 ;; constraints: constraint | constraints ',' constraint |;
1137 ;; constraint: id ASSIGN rval;
1140 ;; rval: ID | QSTRING | NAKEDVAR | list | usefunction
1141 ;; list: '{' litems '}' ;
1142 ;; litems: litem | litem ',' litems |;
1143 ;; litem: ID | QSTRING | NAKEDVAR | list | usefunction
1145 ;; functionid: ID | NAKEDVAR
1146 ;; promiser: QSTRING
1147 ;; usefunction: functionid givearglist
1148 ;; givearglist: '(' gaitems ')'
1149 ;; gaitems: gaitem | gaitems ',' gaitem |;
1150 ;; gaitem: ID | QSTRING | NAKEDVAR | list | usefunction
1157 ;; NAKEDVAR [$@][(][a-zA-Z0-9_\200-\377.]+[)]|[$@][{][a-zA-Z0-9_\200-\377.]+[}]
1158 ;; ID: [a-zA-Z0-9_\200-\377]+
1161 ;; QSTRING: \"((\\\")|[^"])*\"|\'((\\\')|[^'])*\'|`[^`]*`
1162 ;; CLASS: [.|&!()a-zA-Z0-9_\200-\377]+::
1163 ;; CATEGORY: [a-zA-Z_]+:
1165 (defun cfengine3--current-function ()
1166 "Look up current CFEngine 3 function"
1167 (let* ((syntax (cfengine3-make-syntax-cache))
1168 (flist (assq 'functions syntax
)))
1170 (let ((w (save-excursion
1171 (skip-syntax-forward "w_")
1172 (when (search-backward-regexp
1173 cfengine-mode-syntax-functions-regex
1176 (match-string 1)))))
1177 (and w
(assq (intern w
) flist
))))))
1179 ;; format from "cf-promises -s json", e.g. "sort" function:
1180 ;; ((category . "data")
1181 ;; (variadic . :json-false)
1182 ;; (parameters . [((range . "[a-zA-Z0-9_$(){}\\[\\].:]+") (type . "string"))
1183 ;; ((range . "lex,int,real,IP,ip,MAC,mac") (type . "option"))])
1184 ;; (returnType . "slist")
1185 ;; (status . "normal"))
1187 (defun cfengine3-format-function-docstring (fdef)
1188 (let* ((f (format "%s" (car-safe fdef
)))
1190 (rtype (cdr (assq 'returnType def
)))
1191 (plist (cdr (assq 'parameters def
)))
1192 (has-some-parameters (> (length plist
) 0))
1193 (variadic (eq t
(cdr (assq 'variadic def
)))))
1195 ;; (format "[%S]%s %s(%s%s)" def
1196 (format "%s %s(%s%s)"
1198 (propertize rtype
'face
'font-lock-variable-name-face
)
1200 (propertize f
'face
'font-lock-function-name-face
)
1201 (mapconcat (lambda (p)
1202 (let ((type (cdr (assq 'type p
)))
1203 (range (cdr (assq 'range p
))))
1205 ((not (stringp type
)) "???type???")
1206 ((not (stringp range
)) "???range???")
1207 ;; options are lists of possible keywords
1208 ((equal type
"option")
1209 (propertize (concat "[" range
"]")
1211 'font-lock-keyword-face
))
1212 ;; anything else is a type name as a variable
1215 'font-lock-variable-name-face
)))))
1219 (if has-some-parameters
", ..." "...")
1222 (defun cfengine3-clear-syntax-cache ()
1223 "Clear the internal syntax cache.
1224 Should not be necessary unless you reinstall CFEngine."
1226 (setq cfengine-mode-syntax-functions-regex nil
)
1227 (setq cfengine-mode-syntax-cache nil
))
1229 (defun cfengine3-make-syntax-cache ()
1230 "Build the CFEngine 3 syntax cache and return the syntax.
1231 Calls `cfengine-cf-promises' with \"-s json\"."
1232 (or (cdr (assoc cfengine-cf-promises cfengine-mode-syntax-cache
))
1233 (let ((syntax (or (when cfengine-cf-promises
1234 (with-demoted-errors "cfengine3-make-syntax-cache: %S"
1236 (or (zerop (process-file cfengine-cf-promises
1241 (error "%s" (buffer-substring
1243 (progn (goto-char (point-min))
1244 (line-end-position)))))
1245 (goto-char (point-min))
1247 cfengine3-fallback-syntax
)))
1248 (push (cons cfengine-cf-promises syntax
)
1249 cfengine-mode-syntax-cache
)
1250 (setq cfengine-mode-syntax-functions-regex
1251 (regexp-opt (mapcar (lambda (def)
1252 (format "%s" (car def
)))
1253 (cdr (assq 'functions syntax
)))
1257 (defun cfengine3-documentation-function ()
1258 "Document CFengine 3 functions around point.
1259 Intended as the value of `eldoc-documentation-function', which see.
1260 Use it by enabling `eldoc-mode'."
1261 (let ((fdef (cfengine3--current-function)))
1263 (cfengine3-format-function-docstring fdef
))))
1265 (defun cfengine3-completion-function ()
1266 "Return completions for function name around or before point."
1267 (let* ((bounds (save-excursion
1269 (skip-syntax-backward "w_" (point-at-bol))
1271 (syntax (cfengine3-make-syntax-cache))
1272 (flist (assq 'functions syntax
)))
1274 (append bounds
(list (cdr flist
))))))
1276 (defun cfengine-common-settings ()
1277 (set (make-local-variable 'syntax-propertize-function
)
1278 ;; In the main syntax-table, \ is marked as a punctuation, because
1279 ;; of its use in DOS-style directory separators. Here we try to
1280 ;; recognize the cases where \ is used as an escape inside strings.
1281 (syntax-propertize-rules ("\\(\\(?:\\\\\\)+\\)\"" (1 "\\"))))
1282 (set (make-local-variable 'parens-require-spaces
) nil
)
1283 (set (make-local-variable 'comment-start
) "# ")
1284 (set (make-local-variable 'comment-start-skip
)
1285 "\\(\\(?:^\\|[^\\\\\n]\\)\\(?:\\\\\\\\\\)*\\)#+[ \t]*")
1286 ;; Like Lisp mode. Without this, we lose with, say,
1287 ;; `backward-up-list' when there's an unbalanced quote in a
1288 ;; preceding comment.
1289 (set (make-local-variable 'parse-sexp-ignore-comments
) t
))
1291 (defun cfengine-common-syntax (table)
1292 ;; The syntax defaults seem OK to give reasonable word movement.
1293 (modify-syntax-entry ?
# "<" table
)
1294 (modify-syntax-entry ?
\n ">#" table
)
1295 (modify-syntax-entry ?
\" "\"" table
) ; "string"
1296 (modify-syntax-entry ?
\' "\"" table
) ; 'string'
1297 ;; Variable substitution.
1298 (modify-syntax-entry ?$
"." table
)
1299 ;; Doze path separators.
1300 (modify-syntax-entry ?
\\ "." table
))
1302 (defconst cfengine3--prettify-symbols-alist
1307 (defun cfengine3-create-imenu-index ()
1308 "A function for `imenu-create-index-function'.
1309 Note: defun name is separated by space such as `body
1310 package_method opencsw' and imenu will replace spaces according
1311 to `imenu-space-replacement' (which see)."
1312 (goto-char (point-min))
1314 (while (re-search-forward cfengine3-defun-full-re nil t
)
1315 (push (cons (mapconcat #'match-string
'(1 2 3) " ")
1316 (copy-marker (match-beginning 3)))
1320 (defun cfengine3-current-defun ()
1321 "A function for `add-log-current-defun-function'."
1323 (beginning-of-defun)
1324 (and (looking-at cfengine3-defun-full-re
)
1325 (mapconcat #'match-string
'(1 2 3) " ")))
1328 (define-derived-mode cfengine3-mode prog-mode
"CFE3"
1329 "Major mode for editing CFEngine3 input.
1330 There are no special keybindings by default.
1332 Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves
1333 to the action header."
1334 (cfengine-common-settings)
1335 (cfengine-common-syntax cfengine3-mode-syntax-table
)
1337 (set (make-local-variable 'indent-line-function
) #'cfengine3-indent-line
)
1339 (setq font-lock-defaults
1340 '(cfengine3-font-lock-keywords
1341 nil nil nil beginning-of-defun
))
1342 (setq-local prettify-symbols-alist cfengine3--prettify-symbols-alist
)
1344 ;; `compile-command' is almost never a `make' call with CFEngine so
1346 (when cfengine-cf-promises
1347 (set (make-local-variable 'compile-command
)
1348 (concat cfengine-cf-promises
1350 (when buffer-file-name
1351 (shell-quote-argument buffer-file-name
)))))
1353 (setq-local eldoc-documentation-function
#'cfengine3-documentation-function
)
1355 (add-hook 'completion-at-point-functions
1356 #'cfengine3-completion-function nil t
)
1358 ;; Use defuns as the essential syntax block.
1359 (setq-local beginning-of-defun-function
#'cfengine3-beginning-of-defun
)
1360 (setq-local end-of-defun-function
#'cfengine3-end-of-defun
)
1362 (setq-local imenu-create-index-function
#'cfengine3-create-imenu-index
)
1363 (setq-local add-log-current-defun-function
#'cfengine3-current-defun
))
1366 (define-derived-mode cfengine2-mode prog-mode
"CFE2"
1367 "Major mode for editing CFEngine2 input.
1368 There are no special keybindings by default.
1370 Action blocks are treated as defuns, i.e. \\[beginning-of-defun] moves
1371 to the action header."
1372 (cfengine-common-settings)
1373 (cfengine-common-syntax cfengine2-mode-syntax-table
)
1375 ;; Shell commands can be quoted by single, double or back quotes.
1376 ;; It's debatable whether we should define string syntax, but it
1377 ;; should avoid potential confusion in some cases.
1378 (modify-syntax-entry ?\
` "\"" cfengine2-mode-syntax-table
)
1380 (set (make-local-variable 'indent-line-function
) #'cfengine2-indent-line
)
1381 (set (make-local-variable 'outline-regexp
) "[ \t]*\\(\\sw\\|\\s_\\)+:+")
1382 (set (make-local-variable 'outline-level
) #'cfengine2-outline-level
)
1383 (set (make-local-variable 'fill-paragraph-function
)
1384 #'cfengine-fill-paragraph
)
1385 (define-abbrev-table 'cfengine2-mode-abbrev-table cfengine-mode-abbrevs
)
1386 (setq font-lock-defaults
1387 '(cfengine2-font-lock-keywords nil nil nil beginning-of-line
))
1388 ;; Fixme: set the args of functions in evaluated classes to string
1389 ;; syntax, and then obey syntax properties.
1390 (setq imenu-generic-expression cfengine2-imenu-expression
)
1391 (set (make-local-variable 'beginning-of-defun-function
)
1392 #'cfengine2-beginning-of-defun
)
1393 (set (make-local-variable 'end-of-defun-function
) #'cfengine2-end-of-defun
))
1396 (defun cfengine-auto-mode ()
1397 "Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents."
1402 (goto-char (point-min))
1403 (forward-comment (point-max))
1406 (concat "^\\s-*" cfengine3-defuns-regex
"\\_>") nil t
))))
1410 (defalias 'cfengine-mode
'cfengine3-mode
)
1412 (provide 'cfengine3
)
1415 ;;; cfengine.el ends here