-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings_templates.py
156 lines (136 loc) · 4.85 KB
/
settings_templates.py
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
## This file is part of conftron.
##
## Copyright (C) 2011 Matt Peddie <[email protected]>
##
## 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 2 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, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301, USA.
## Init settings
lcm_settings_init_template = """
void
%(varname)s_settings_init(const char *provider)
{
%(classname)s_lcm_init(provider);
%(classname)s_lcm_subscribe_chan(%(type)s, &%(classname)s_%(varname)s_setter, NULL, "%(classname)s_%(type)s_%(varname)s_set");
}
"""
lcm_settings_init_custom_chan_template = """
void
%(varname)s_settings_init(const char *provider)
{
%(classname)s_lcm_init(provider);
%(classname)s_lcm_subscribe_chan(%(type)s, &%(classname)s_%(varname)s_setter, NULL, "%(channel)s");
}
"""
lcm_settings_init_nop_template = """
void
%(varname)s_settings_init(const char *provider __attribute__((unused)))
{
return;
}
"""
lcm_settings_set_nop_template = """
void
%(classname)s_%(varname)s_setter(const lcm_recv_buf_t *rbuf __attribute__((unused)),
const char *channel __attribute__((unused)),
const %(classname)s_%(type)s *msg __attribute__((unused)),
void *user __attribute__((unused)))
{
return;
}
"""
lcm_settings_init_prototype = """\
void %(varname)s_settings_init(const char *provider);
"""
lcm_settings_init_call_template = """ %(varname)s_settings_init(provider); \\"""
lcm_settings_init_null_template = """ %(classname)s_%(varname)s_setter(NULL, NULL, NULL, NULL); \\"""
lcm_settings_init_class_template = """
/* Initialize all the LCM classes and set all settings values to their
default values as defined in XML */
#define %(classname)s_settings_init(provider) { \\
%(init_calls)s
%(null_calls)s
}
"""
lcm_init_all_template = """
/* Initialize all the LCM classes and set all settings values to their
default values as defined in XML */
#define settings_init(provider) { \\
%(init_calls)s }
"""
## Run settings
lcm_settings_prototype = """
void %(classname)s_%(varname)s_setter(const lcm_recv_buf_t *rbuf,
const char *channel,
const %(classname)s_%(type)s *msg,
void *user);
"""
lcm_settings_func_template = """
void
%(classname)s_%(varname)s_setter(const lcm_recv_buf_t *rbuf __attribute__((unused)),
const char *channel __attribute__((unused)),
const %(classname)s_%(type)s *new_data,
void *user __attribute__((unused)))
{
%(field_settings)s
%(classname)s_lcm_send_chan(&%(varname)s, %(type)s, "%(classname)s_%(type)s_%(varname)s_ack");
}
"""
lcm_settings_field_template_mm = """
if (new_data == NULL) {
%(varname)s.%(name)s = %(default)s;
} else {
if (new_data->%(name)s > %(max)s)
%(varname)s.%(name)s = %(max)s;
else if (new_data->%(name)s < %(min)s)
%(varname)s.%(name)s = %(min)s;
else
%(varname)s.%(name)s = new_data->%(name)s;
}
"""
lcm_send_settings_template = """
void
%(classname)s_%(varname)s_set(%(classname)s_%(type)s *new_data)
{
%(classname)s_lcm_send(new_data, %(type)s);
}
"""
lcm_check_all_template = """
#define settings_check() { \\
%(run_calls)s }
"""
lcm_check_call_template = """
#define %(classname)s_settings_check() { \\
lcm_check(%(classname)s_lcm.lcm, %(classname)s_lcm.fd); \\
}
"""
## Parsing errors
parse_settings_nobounds = """
Error: Settings generation couldn't derive a set of bounds
for field `%(f)s' in section `%(s)s'.
Make sure you've specified either a `max' and `min' value or an
`absmax' for symmetric zero-mean bounds.
"""
parse_settings_noval = """
Error: Settings generation couldn't derive a(n) `%(tag)s' value for
field `%(name)s' in section `%(parentname)s'.
You must specify this value either for the entire section or for each
field within the section. (If both are specified, the value inside
the field tag will take precedence.)
"""
parse_settings_badval = """
Error: Settings generation received a(n) `%(sp)s' value of `%(val)s'
for field `%(f)s' in section `%(s)s'. This value doesn't make sense
given the specified bounded range of [%(min)s, %(max)s].
"""