blob: 5dfafab41d355b3e53f0cb85a5c9db43fa58e352 [file] [log] [blame]
Rich Lanee02314c2013-05-02 16:42:04 -07001:: # Copyright 2013, Big Switch Networks, Inc.
2:: #
3:: # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4:: # the following special exception:
5:: #
6:: # LOXI Exception
7:: #
8:: # As a special exception to the terms of the EPL, you may distribute libraries
9:: # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10:: # that copyright and licensing notices generated by LoxiGen are not altered or removed
11:: # from the LoxiGen Libraries and the notice provided below is (i) included in
12:: # the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13:: # documentation for the LoxiGen Libraries, if distributed in binary form.
14:: #
15:: # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16:: #
17:: # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18:: # a copy of the EPL at:
19:: #
20:: # http://www.eclipse.org/legal/epl-v10.html
21:: #
22:: # Unless required by applicable law or agreed to in writing, software
23:: # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24:: # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25:: # EPL for the specific language governing permissions and limitations
26:: # under the EPL.
27::
28:: import itertools
Rich Lane002e70c2013-05-09 17:08:16 -070029:: import py_gen.util as util
Rich Lanee02314c2013-05-02 16:42:04 -070030:: include('_copyright.py')
31
32:: include('_autogen.py')
33
34import struct
35import action
36import const
37import util
38import loxi.generic_util
39import loxi
40
41def unpack_list(reader):
42 def deserializer(reader, typ):
43 parser = parsers.get(typ)
44 if not parser: raise loxi.ProtocolError("unknown instruction type %d" % typ)
45 return parser(reader)
46 return loxi.generic_util.unpack_list_tlv16(reader, deserializer)
47
48class Instruction(object):
49 type = None # override in subclass
50 pass
51
52:: for ofclass in ofclasses:
53:: include('_ofclass.py', ofclass=ofclass, superclass="Instruction")
54
55:: #endfor
56
Rich Lane41000ba2013-11-18 16:08:14 -080057def parse_experimenter(reader):
58 experimenter, = reader.peek("!4xL")
59 if experimenter == 0x005c16c7: # Big Switch Networks
60 subtype, = reader.peek("!8xL")
61 else:
62 raise loxi.ProtocolError("unexpected experimenter id %#x" % experimenter)
63
64 if subtype in experimenter_parsers[experimenter]:
65 return experimenter_parsers[experimenter][subtype](reader)
66 else:
67 raise loxi.ProtocolError("unexpected experimenter id %#x subtype %#x" % (experimenter, subtype))
68
Rich Lanee02314c2013-05-02 16:42:04 -070069parsers = {
Rich Lanea2de2192013-11-29 17:58:32 -080070:: sort_key = lambda x: x.member_by_name('type').value
Rich Lanee02314c2013-05-02 16:42:04 -070071:: msgtype_groups = itertools.groupby(sorted(ofclasses, key=sort_key), sort_key)
72:: for (k, v) in msgtype_groups:
Rich Lane002e70c2013-05-09 17:08:16 -070073:: k = util.constant_for_value(version, "ofp_instruction_type", k)
Rich Lanee02314c2013-05-02 16:42:04 -070074:: v = list(v)
Rich Lane75649a62013-11-21 22:56:05 -080075:: if len(v) == 1 and k != 'const.OFPIT_EXPERIMENTER':
Rich Lanee02314c2013-05-02 16:42:04 -070076 ${k} : ${v[0].pyname}.unpack,
77:: else:
78 ${k} : parse_${k[12:].lower()},
79:: #endif
80:: #endfor
81}
Rich Lane41000ba2013-11-18 16:08:14 -080082
Rich Lanea2de2192013-11-29 17:58:32 -080083:: experimenter_ofclasses = [x for x in ofclasses if x.member_by_name('type').value == 0xffff]
84:: sort_key = lambda x: x.member_by_name('experimenter').value
Rich Lane41000ba2013-11-18 16:08:14 -080085:: experimenter_ofclasses.sort(key=sort_key)
86:: grouped = itertools.groupby(experimenter_ofclasses, sort_key)
87experimenter_parsers = {
88:: for (experimenter, v) in grouped:
89 ${experimenter} : {
90:: for ofclass in v:
Rich Lanea2de2192013-11-29 17:58:32 -080091 ${ofclass.member_by_name('subtype').value}: ${ofclass.pyname}.unpack,
Rich Lane41000ba2013-11-18 16:08:14 -080092:: #endfor
93 },
94:: #endfor
95}