Imported Upstream version 1.5.0
[platform/upstream/augeas.git] / lenses / rsyslog.aug
1 (*
2 Module: Rsyslog
3   Parses /etc/rsyslog.conf
4
5 Author: Raphael Pinson <raphael.pinsons@camptocamp.com>
6
7 About: Reference
8   This lens tries to keep as close as possible to `man 5 rsyslog.conf` where possible.
9
10 About: License
11    This file is licenced under the LGPL v2+, like the rest of Augeas.
12
13 About: Lens Usage
14    To be documented
15
16 About: Configuration files
17    This lens applies to /etc/rsyslog.conf. See <filter>.
18
19 About: Examples
20    The <Test_Rsyslog> file contains various examples and tests.
21 *)
22 module Rsyslog =
23
24 autoload xfm
25
26 let macro_rx = /[^,# \n\t][^#\n]*[^,# \n\t]|[^,# \n\t]/
27 let macro = [ key /$[A-Za-z0-9]+/ . Sep.space . store macro_rx . Util.comment_or_eol ]
28
29 (* View: users
30    Map :omusrmsg: and a list of users, or a single *
31 *)
32 let omusrmsg = Util.del_str ":omusrmsg:" .
33                  Syslog.label_opt_list_or "omusrmsg" (store Syslog.word)
34                                           Syslog.comma "*"
35
36 (* View: file_tmpl
37    File action with a specified template *)
38 let file_tmpl = Syslog.file . [ label "template" . Util.del_str ";" . store Rx.word ]
39
40 let namedpipe = Syslog.pipe . Sep.space . [ label "pipe" . store Syslog.file_r ]
41
42 let action = Syslog.action | omusrmsg | file_tmpl | namedpipe
43
44 (* View: entry
45    An entry contains selectors and an action
46 *)
47 let entry = [ label "entry" . Syslog.selectors . Syslog.sep_tab .
48               [ label "action" . action ] . Util.eol ]
49
50 (* View: prop_filter
51    Parses property-based filters, which start with ":" and the property name *)
52 let prop_filter =
53      let sep = Sep.comma . Util.del_opt_ws " "
54   in let prop_name = [ Util.del_str ":" . label "property" . store Rx.word ]
55   in let prop_oper = [ label "operation" . store /[A-Za-z!-]+/ ]
56   in let prop_val  = [ label "value" . Quote.do_dquote (store /[^\n"]*/) ]
57   in let prop_act  = [ label "action" . action ]
58   in [ label "filter" . prop_name . sep . prop_oper . sep . prop_val .
59        Sep.space . prop_act . Util.eol ]
60
61 let entries = ( Syslog.empty | Syslog.comment | entry | macro | prop_filter )*
62
63 let lns = entries . ( Syslog.program | Syslog.hostname )*
64
65 let filter = incl "/etc/rsyslog.conf"
66
67 let xfm = transform lns filter
68