Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 3 | '''Phosphor Inventory Manager YAML parser and code generator. |
| 4 | |
| 5 | The parser workflow is broken down as follows: |
| 6 | 1 - Import YAML files as native python type(s) instance(s). |
| 7 | 2 - Create an instance of the Everything class from the |
| 8 | native python type instance(s) with the Everything.load |
| 9 | method. |
| 10 | 3 - The Everything class constructor orchestrates conversion of the |
| 11 | native python type(s) instances(s) to render helper types. |
| 12 | Each render helper type constructor imports its attributes |
| 13 | from the native python type(s) instances(s). |
| 14 | 4 - Present the converted YAML to the command processing method |
| 15 | requested by the script user. |
| 16 | ''' |
| 17 | |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 18 | import sys |
| 19 | import os |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 20 | import argparse |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 21 | import subprocess |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 22 | import yaml |
| 23 | import mako.lookup |
| 24 | import sdbusplus.property |
| 25 | from sdbusplus.namedelement import NamedElement |
| 26 | from sdbusplus.renderer import Renderer |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 27 | |
| 28 | |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 29 | def cppTypeName(yaml_type): |
| 30 | ''' Convert yaml types to cpp types.''' |
| 31 | return sdbusplus.property.Property(type=yaml_type).cppTypeName |
| 32 | |
| 33 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 34 | class Interface(list): |
| 35 | '''Provide various interface transformations.''' |
| 36 | |
| 37 | def __init__(self, iface): |
| 38 | super(Interface, self).__init__(iface.split('.')) |
| 39 | |
| 40 | def namespace(self): |
| 41 | '''Represent as an sdbusplus namespace.''' |
| 42 | return '::'.join(['sdbusplus'] + self[:-1] + ['server', self[-1]]) |
| 43 | |
| 44 | def header(self): |
| 45 | '''Represent as an sdbusplus server binding header.''' |
| 46 | return os.sep.join(self + ['server.hpp']) |
| 47 | |
| 48 | def __str__(self): |
| 49 | return '.'.join(self) |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 50 | |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 51 | |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 52 | class Indent(object): |
| 53 | '''Help templates be depth agnostic.''' |
| 54 | |
| 55 | def __init__(self, depth=0): |
| 56 | self.depth = depth |
| 57 | |
| 58 | def __add__(self, depth): |
| 59 | return Indent(self.depth + depth) |
| 60 | |
| 61 | def __call__(self, depth): |
| 62 | '''Render an indent at the current depth plus depth.''' |
| 63 | return 4*' '*(depth + self.depth) |
| 64 | |
| 65 | |
| 66 | class Template(NamedElement): |
| 67 | '''Associate a template name with its namespace.''' |
| 68 | |
| 69 | def __init__(self, **kw): |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 70 | self.namespace = kw.pop('namespace', []) |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 71 | super(Template, self).__init__(**kw) |
| 72 | |
| 73 | def qualified(self): |
| 74 | return '::'.join(self.namespace + [self.name]) |
| 75 | |
| 76 | |
| 77 | class Quote(object): |
| 78 | '''Decorate an argument by quoting it.''' |
| 79 | |
| 80 | def __call__(self, arg): |
| 81 | return '"{0}"'.format(arg) |
| 82 | |
| 83 | |
| 84 | class Cast(object): |
| 85 | '''Decorate an argument by casting it.''' |
| 86 | |
| 87 | def __init__(self, cast, target): |
| 88 | '''cast is the cast type (static, const, etc...). |
| 89 | target is the cast target type.''' |
| 90 | self.cast = cast |
| 91 | self.target = target |
| 92 | |
| 93 | def __call__(self, arg): |
| 94 | return '{0}_cast<{1}>({2})'.format(self.cast, self.target, arg) |
| 95 | |
| 96 | |
| 97 | class Literal(object): |
| 98 | '''Decorate an argument with a literal operator.''' |
| 99 | |
| 100 | literals = { |
| 101 | 'string': 's', |
| 102 | 'int64': 'll', |
| 103 | 'uint64': 'ull' |
| 104 | } |
| 105 | |
| 106 | def __init__(self, type): |
| 107 | self.type = type |
| 108 | |
| 109 | def __call__(self, arg): |
| 110 | literal = self.literals.get(self.type) |
| 111 | |
| 112 | if literal: |
| 113 | return '{0}{1}'.format(arg, literal) |
| 114 | |
| 115 | return arg |
| 116 | |
| 117 | |
Brad Bishop | 75800cf | 2017-01-21 15:24:18 -0500 | [diff] [blame] | 118 | class Argument(NamedElement, Renderer): |
| 119 | '''Define argument type inteface.''' |
| 120 | |
| 121 | def __init__(self, **kw): |
| 122 | self.type = kw.pop('type', None) |
| 123 | super(Argument, self).__init__(**kw) |
| 124 | |
| 125 | def argument(self, loader, indent): |
| 126 | raise NotImplementedError |
| 127 | |
| 128 | |
| 129 | class TrivialArgument(Argument): |
| 130 | '''Non-array type arguments.''' |
Brad Bishop | 14a9fe5 | 2016-11-12 12:51:26 -0500 | [diff] [blame] | 131 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 132 | def __init__(self, **kw): |
| 133 | self.value = kw.pop('value') |
Brad Bishop | 75800cf | 2017-01-21 15:24:18 -0500 | [diff] [blame] | 134 | self.decorators = kw.pop('decorators', []) |
| 135 | if kw.get('type', None) == 'string': |
| 136 | self.decorators.insert(0, Quote()) |
| 137 | |
Brad Bishop | 75800cf | 2017-01-21 15:24:18 -0500 | [diff] [blame] | 138 | super(TrivialArgument, self).__init__(**kw) |
| 139 | |
| 140 | def argument(self, loader, indent): |
| 141 | a = str(self.value) |
| 142 | for d in self.decorators: |
| 143 | a = d(a) |
| 144 | |
| 145 | return a |
Brad Bishop | 14a9fe5 | 2016-11-12 12:51:26 -0500 | [diff] [blame] | 146 | |
Brad Bishop | 14a9fe5 | 2016-11-12 12:51:26 -0500 | [diff] [blame] | 147 | |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 148 | class InitializerList(Argument): |
| 149 | '''Initializer list arguments.''' |
| 150 | |
| 151 | def __init__(self, **kw): |
| 152 | self.values = kw.pop('values') |
| 153 | super(InitializerList, self).__init__(**kw) |
| 154 | |
| 155 | def argument(self, loader, indent): |
| 156 | return self.render( |
| 157 | loader, |
| 158 | 'argument.mako.cpp', |
| 159 | arg=self, |
| 160 | indent=indent) |
| 161 | |
| 162 | |
Brad Bishop | 75800cf | 2017-01-21 15:24:18 -0500 | [diff] [blame] | 163 | class DbusSignature(Argument): |
| 164 | '''DBus signature arguments.''' |
| 165 | |
| 166 | def __init__(self, **kw): |
| 167 | self.sig = {x: y for x, y in kw.iteritems()} |
| 168 | kw.clear() |
| 169 | super(DbusSignature, self).__init__(**kw) |
| 170 | |
| 171 | def argument(self, loader, indent): |
| 172 | return self.render( |
| 173 | loader, |
| 174 | 'signature.mako.cpp', |
| 175 | signature=self, |
| 176 | indent=indent) |
| 177 | |
| 178 | |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 179 | class MethodCall(Argument): |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 180 | '''Render syntatically correct c++ method calls.''' |
| 181 | |
| 182 | def __init__(self, **kw): |
| 183 | self.namespace = kw.pop('namespace', []) |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 184 | self.templates = kw.pop('templates', []) |
| 185 | self.args = kw.pop('args', []) |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 186 | super(MethodCall, self).__init__(**kw) |
| 187 | |
Brad Bishop | cab2bdd | 2017-01-21 15:00:54 -0500 | [diff] [blame] | 188 | def call(self, loader, indent): |
| 189 | return self.render( |
| 190 | loader, |
| 191 | 'method.mako.cpp', |
| 192 | method=self, |
| 193 | indent=indent) |
| 194 | |
| 195 | def argument(self, loader, indent): |
| 196 | return self.call(loader, indent) |
| 197 | |
Brad Bishop | 14a9fe5 | 2016-11-12 12:51:26 -0500 | [diff] [blame] | 198 | |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 199 | class Vector(MethodCall): |
| 200 | '''Convenience type for vectors.''' |
| 201 | |
| 202 | def __init__(self, **kw): |
| 203 | kw['name'] = 'vector' |
| 204 | kw['namespace'] = ['std'] |
| 205 | kw['args'] = [InitializerList(values=kw.pop('args'))] |
| 206 | super(Vector, self).__init__(**kw) |
| 207 | |
| 208 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 209 | class Filter(MethodCall): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 210 | '''Convenience type for filters''' |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 211 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 212 | def __init__(self, **kw): |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 213 | kw['name'] = 'make_filter' |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 214 | super(Filter, self).__init__(**kw) |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 215 | |
Brad Bishop | 0a6a479 | 2016-11-12 12:10:07 -0500 | [diff] [blame] | 216 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 217 | class Action(MethodCall): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 218 | '''Convenience type for actions''' |
Brad Bishop | 561a565 | 2016-10-26 21:13:32 -0500 | [diff] [blame] | 219 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 220 | def __init__(self, **kw): |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 221 | kw['name'] = 'make_action' |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 222 | super(Action, self).__init__(**kw) |
Brad Bishop | 92665b2 | 2016-10-26 20:51:16 -0500 | [diff] [blame] | 223 | |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 224 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 225 | class CreateObjects(MethodCall): |
| 226 | '''Assemble a createObjects functor.''' |
Brad Bishop | db92c28 | 2017-01-21 23:44:28 -0500 | [diff] [blame] | 227 | |
| 228 | def __init__(self, **kw): |
| 229 | objs = [] |
| 230 | |
| 231 | for path, interfaces in kw.pop('objs').iteritems(): |
| 232 | key_o = TrivialArgument( |
| 233 | value=path, |
| 234 | type='string', |
| 235 | decorators=[Literal('string')]) |
| 236 | value_i = [] |
| 237 | |
| 238 | for interface, properties, in interfaces.iteritems(): |
| 239 | key_i = TrivialArgument(value=interface, type='string') |
| 240 | value_p = [] |
| 241 | |
| 242 | for prop, value in properties.iteritems(): |
| 243 | key_p = TrivialArgument(value=prop, type='string') |
| 244 | value_v = TrivialArgument( |
| 245 | decorators=[Literal(value.get('type', None))], |
| 246 | **value) |
| 247 | value_p.append(InitializerList(values=[key_p, value_v])) |
| 248 | |
| 249 | value_p = InitializerList(values=value_p) |
| 250 | value_i.append(InitializerList(values=[key_i, value_p])) |
| 251 | |
| 252 | value_i = InitializerList(values=value_i) |
| 253 | objs.append(InitializerList(values=[key_o, value_i])) |
| 254 | |
| 255 | kw['args'] = [InitializerList(values=objs)] |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 256 | kw['namespace'] = ['functor'] |
Brad Bishop | db92c28 | 2017-01-21 23:44:28 -0500 | [diff] [blame] | 257 | super(CreateObjects, self).__init__(**kw) |
| 258 | |
| 259 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 260 | class DestroyObjects(MethodCall): |
| 261 | '''Assemble a destroyObject functor.''' |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 262 | |
| 263 | def __init__(self, **kw): |
Brad Bishop | 7b7e712 | 2017-01-21 21:21:46 -0500 | [diff] [blame] | 264 | values = [{'value': x, 'type': 'string'} for x in kw.pop('paths')] |
| 265 | args = [InitializerList( |
| 266 | values=[TrivialArgument(**x) for x in values])] |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 267 | kw['args'] = args |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 268 | kw['namespace'] = ['functor'] |
Brad Bishop | 7b7e712 | 2017-01-21 21:21:46 -0500 | [diff] [blame] | 269 | super(DestroyObjects, self).__init__(**kw) |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 270 | |
| 271 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 272 | class SetProperty(MethodCall): |
| 273 | '''Assemble a setProperty functor.''' |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 274 | |
| 275 | def __init__(self, **kw): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 276 | args = [] |
| 277 | |
| 278 | value = kw.pop('value') |
| 279 | prop = kw.pop('property') |
| 280 | iface = kw.pop('interface') |
| 281 | iface = Interface(iface) |
| 282 | namespace = iface.namespace().split('::')[:-1] |
| 283 | name = iface[-1] |
| 284 | t = Template(namespace=namespace, name=iface[-1]) |
| 285 | |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 286 | member = '&%s' % '::'.join( |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 287 | namespace + [name, NamedElement(name=prop).camelCase]) |
| 288 | member_type = cppTypeName(value['type']) |
| 289 | member_cast = '{0} ({1}::*)({0})'.format(member_type, t.qualified()) |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 290 | |
Brad Bishop | 02ca021 | 2017-01-28 23:25:58 -0500 | [diff] [blame] | 291 | paths = [{'value': x, 'type': 'string'} for x in kw.pop('paths')] |
| 292 | args.append(InitializerList( |
| 293 | values=[TrivialArgument(**x) for x in paths])) |
| 294 | |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 295 | args.append(TrivialArgument(value=str(iface), type='string')) |
| 296 | args.append(TrivialArgument( |
| 297 | value=member, decorators=[Cast('static', member_cast)])) |
| 298 | args.append(TrivialArgument(**value)) |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 299 | |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 300 | kw['templates'] = [Template(name=name, namespace=namespace)] |
| 301 | kw['args'] = args |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 302 | kw['namespace'] = ['functor'] |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 303 | super(SetProperty, self).__init__(**kw) |
| 304 | |
| 305 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 306 | class PropertyChanged(MethodCall): |
| 307 | '''Assemble a propertyChanged functor.''' |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 308 | |
| 309 | def __init__(self, **kw): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 310 | args = [] |
| 311 | args.append(TrivialArgument(value=kw.pop('interface'), type='string')) |
| 312 | args.append(TrivialArgument(value=kw.pop('property'), type='string')) |
| 313 | args.append(TrivialArgument( |
| 314 | decorators=[ |
| 315 | Literal(kw['value'].get('type', None))], **kw.pop('value'))) |
| 316 | kw['args'] = args |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 317 | kw['namespace'] = ['functor'] |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 318 | super(PropertyChanged, self).__init__(**kw) |
| 319 | |
| 320 | |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 321 | class PropertyIs(MethodCall): |
| 322 | '''Assemble a propertyIs functor.''' |
Brad Bishop | 040e18b | 2017-01-21 22:04:00 -0500 | [diff] [blame] | 323 | |
| 324 | def __init__(self, **kw): |
| 325 | args = [] |
| 326 | args.append(TrivialArgument(value=kw.pop('path'), type='string')) |
| 327 | args.append(TrivialArgument(value=kw.pop('interface'), type='string')) |
| 328 | args.append(TrivialArgument(value=kw.pop('property'), type='string')) |
| 329 | args.append(TrivialArgument( |
| 330 | decorators=[ |
| 331 | Literal(kw['value'].get('type', None))], **kw.pop('value'))) |
| 332 | |
| 333 | service = kw.pop('service', None) |
| 334 | if service: |
| 335 | args.append(TrivialArgument(value=service, type='string')) |
| 336 | |
| 337 | kw['args'] = args |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 338 | kw['namespace'] = ['functor'] |
Brad Bishop | 040e18b | 2017-01-21 22:04:00 -0500 | [diff] [blame] | 339 | super(PropertyIs, self).__init__(**kw) |
| 340 | |
| 341 | |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 342 | class Event(MethodCall): |
| 343 | '''Assemble an inventory manager event.''' |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 344 | |
| 345 | action_map = { |
Brad Bishop | 7b7e712 | 2017-01-21 21:21:46 -0500 | [diff] [blame] | 346 | 'destroyObjects': DestroyObjects, |
Brad Bishop | db92c28 | 2017-01-21 23:44:28 -0500 | [diff] [blame] | 347 | 'createObjects': CreateObjects, |
Brad Bishop | e2e402f | 2016-11-30 18:00:17 -0500 | [diff] [blame] | 348 | 'setProperty': SetProperty, |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 349 | } |
| 350 | |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 351 | filter_map = { |
| 352 | 'propertyChangedTo': PropertyChanged, |
Brad Bishop | 040e18b | 2017-01-21 22:04:00 -0500 | [diff] [blame] | 353 | 'propertyIs': PropertyIs, |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 354 | } |
| 355 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 356 | def __init__(self, **kw): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 357 | self.summary = kw.pop('name') |
| 358 | |
| 359 | filters = [ |
| 360 | self.filter_map[x['name']](**x) for x in kw.pop('filters', [])] |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 361 | filters = [Filter(args=[x]) for x in filters] |
Brad Bishop | 064c94a | 2017-01-21 21:33:30 -0500 | [diff] [blame] | 362 | filters = Vector( |
Brad Bishop | 12f8a3c | 2017-02-09 00:02:00 -0500 | [diff] [blame] | 363 | templates=[Template(name='Filter', namespace=[])], |
Brad Bishop | 064c94a | 2017-01-21 21:33:30 -0500 | [diff] [blame] | 364 | args=filters) |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 365 | |
| 366 | event = MethodCall( |
| 367 | name='make_shared', |
| 368 | namespace=['std'], |
| 369 | templates=[Template( |
| 370 | name=kw.pop('event'), |
| 371 | namespace=kw.pop('event_namespace', []))], |
Brad Bishop | 064c94a | 2017-01-21 21:33:30 -0500 | [diff] [blame] | 372 | args=kw.pop('event_args', []) + [filters]) |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 373 | |
| 374 | events = Vector( |
Brad Bishop | 12f8a3c | 2017-02-09 00:02:00 -0500 | [diff] [blame] | 375 | templates=[Template(name='EventBasePtr', namespace=[])], |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 376 | args=[event]) |
| 377 | |
Brad Bishop | 12f8a3c | 2017-02-09 00:02:00 -0500 | [diff] [blame] | 378 | action_type = Template(name='Action', namespace=[]) |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 379 | action_args = [ |
| 380 | self.action_map[x['name']](**x) for x in kw.pop('actions', [])] |
Brad Bishop | c1f4798 | 2017-02-09 01:27:38 -0500 | [diff] [blame^] | 381 | action_args = [Action(args=[x]) for x in action_args] |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 382 | actions = Vector( |
| 383 | templates=[action_type], |
| 384 | args=action_args) |
| 385 | |
| 386 | kw['name'] = 'make_tuple' |
| 387 | kw['namespace'] = ['std'] |
| 388 | kw['args'] = [events, actions] |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 389 | super(Event, self).__init__(**kw) |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 390 | |
Brad Bishop | cfb3c89 | 2016-11-12 11:43:37 -0500 | [diff] [blame] | 391 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 392 | class MatchEvent(Event): |
| 393 | '''Associate one or more dbus signal match signatures with |
| 394 | a filter.''' |
| 395 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 396 | def __init__(self, **kw): |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 397 | kw['event'] = 'DbusSignal' |
Brad Bishop | 12f8a3c | 2017-02-09 00:02:00 -0500 | [diff] [blame] | 398 | kw['event_namespace'] = [] |
Brad Bishop | c93bcc9 | 2017-01-21 16:23:39 -0500 | [diff] [blame] | 399 | kw['event_args'] = [ |
| 400 | DbusSignature(**x) for x in kw.pop('signatures', [])] |
| 401 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 402 | super(MatchEvent, self).__init__(**kw) |
| 403 | |
| 404 | |
Brad Bishop | 828df83 | 2017-01-21 22:20:43 -0500 | [diff] [blame] | 405 | class StartupEvent(Event): |
| 406 | '''Assemble a startup event.''' |
| 407 | |
| 408 | def __init__(self, **kw): |
| 409 | kw['event'] = 'StartupEvent' |
Brad Bishop | 12f8a3c | 2017-02-09 00:02:00 -0500 | [diff] [blame] | 410 | kw['event_namespace'] = [] |
Brad Bishop | 828df83 | 2017-01-21 22:20:43 -0500 | [diff] [blame] | 411 | super(StartupEvent, self).__init__(**kw) |
| 412 | |
| 413 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 414 | class Everything(Renderer): |
| 415 | '''Parse/render entry point.''' |
| 416 | |
| 417 | class_map = { |
| 418 | 'match': MatchEvent, |
Brad Bishop | 828df83 | 2017-01-21 22:20:43 -0500 | [diff] [blame] | 419 | 'startup': StartupEvent, |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | @staticmethod |
| 423 | def load(args): |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 424 | # Aggregate all the event YAML in the events.d directory |
| 425 | # into a single list of events. |
| 426 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 427 | events = [] |
Brad Bishop | a6fcd56 | 2017-02-03 11:00:27 -0500 | [diff] [blame] | 428 | events_dir = os.path.join(args.inputdir, 'events.d') |
| 429 | |
| 430 | if os.path.exists(events_dir): |
| 431 | yaml_files = filter( |
| 432 | lambda x: x.endswith('.yaml'), |
| 433 | os.listdir(events_dir)) |
| 434 | |
| 435 | for x in yaml_files: |
| 436 | with open(os.path.join(events_dir, x), 'r') as fd: |
| 437 | for e in yaml.safe_load(fd.read()).get('events', {}): |
| 438 | events.append(e) |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 439 | |
| 440 | return Everything( |
| 441 | *events, |
| 442 | interfaces=Everything.get_interfaces(args)) |
| 443 | |
| 444 | @staticmethod |
| 445 | def get_interfaces(args): |
| 446 | '''Aggregate all the interface YAML in the interfaces.d |
| 447 | directory into a single list of interfaces.''' |
| 448 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 449 | interfaces = [] |
Brad Bishop | a6fcd56 | 2017-02-03 11:00:27 -0500 | [diff] [blame] | 450 | interfaces_dir = os.path.join(args.inputdir, 'interfaces.d') |
| 451 | if os.path.exists(interfaces_dir): |
| 452 | yaml_files = filter( |
| 453 | lambda x: x.endswith('.yaml'), |
| 454 | os.listdir(interfaces_dir)) |
| 455 | |
| 456 | for x in yaml_files: |
| 457 | with open(os.path.join(interfaces_dir, x), 'r') as fd: |
| 458 | for i in yaml.safe_load(fd.read()): |
| 459 | interfaces.append(i) |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 460 | |
| 461 | return interfaces |
| 462 | |
| 463 | def __init__(self, *a, **kw): |
| 464 | self.interfaces = \ |
| 465 | [Interface(x) for x in kw.pop('interfaces', [])] |
| 466 | self.events = [ |
| 467 | self.class_map[x['type']](**x) for x in a] |
| 468 | super(Everything, self).__init__(**kw) |
| 469 | |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 470 | def generate_cpp(self, loader): |
| 471 | '''Render the template with the provided events and interfaces.''' |
| 472 | with open(os.path.join( |
| 473 | args.outputdir, |
| 474 | 'generated.cpp'), 'w') as fd: |
| 475 | fd.write( |
| 476 | self.render( |
| 477 | loader, |
| 478 | 'generated.mako.cpp', |
| 479 | events=self.events, |
Brad Bishop | 9b5a12f | 2017-01-21 14:42:11 -0500 | [diff] [blame] | 480 | interfaces=self.interfaces, |
| 481 | indent=Indent())) |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 482 | |
Brad Bishop | 95dd98f | 2016-11-12 12:39:15 -0500 | [diff] [blame] | 483 | |
| 484 | if __name__ == '__main__': |
| 485 | script_dir = os.path.dirname(os.path.realpath(__file__)) |
Brad Bishop | 14a9fe5 | 2016-11-12 12:51:26 -0500 | [diff] [blame] | 486 | valid_commands = { |
| 487 | 'generate-cpp': 'generate_cpp', |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 488 | } |
Brad Bishop | 95dd98f | 2016-11-12 12:39:15 -0500 | [diff] [blame] | 489 | |
| 490 | parser = argparse.ArgumentParser( |
| 491 | description='Phosphor Inventory Manager (PIM) YAML ' |
| 492 | 'scanner and code generator.') |
| 493 | parser.add_argument( |
| 494 | '-o', '--output-dir', dest='outputdir', |
| 495 | default='.', help='Output directory.') |
| 496 | parser.add_argument( |
| 497 | '-d', '--dir', dest='inputdir', |
| 498 | default=os.path.join(script_dir, 'example'), |
| 499 | help='Location of files to process.') |
Brad Bishop | f4666f5 | 2016-11-12 12:44:42 -0500 | [diff] [blame] | 500 | parser.add_argument( |
| 501 | 'command', metavar='COMMAND', type=str, |
| 502 | choices=valid_commands.keys(), |
Brad Bishop | c029f6a | 2017-01-18 19:43:26 -0500 | [diff] [blame] | 503 | help='%s.' % " | ".join(valid_commands.keys())) |
Brad Bishop | 95dd98f | 2016-11-12 12:39:15 -0500 | [diff] [blame] | 504 | |
| 505 | args = parser.parse_args() |
Brad Bishop | 22cfbe6 | 2016-11-30 13:25:10 -0500 | [diff] [blame] | 506 | |
| 507 | if sys.version_info < (3, 0): |
| 508 | lookup = mako.lookup.TemplateLookup( |
| 509 | directories=[script_dir], |
| 510 | disable_unicode=True) |
| 511 | else: |
| 512 | lookup = mako.lookup.TemplateLookup( |
| 513 | directories=[script_dir]) |
| 514 | |
| 515 | function = getattr( |
| 516 | Everything.load(args), |
| 517 | valid_commands[args.command]) |
| 518 | function(lookup) |
Brad Bishop | 95dd98f | 2016-11-12 12:39:15 -0500 | [diff] [blame] | 519 | |
| 520 | |
Brad Bishop | bf066a6 | 2016-10-19 08:09:44 -0400 | [diff] [blame] | 521 | # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |