blob: 2a10a5ff999bca7d49db845e62d99dc1ac67c047 [file] [log] [blame]
Rich Laneea693752013-03-18 11:05:45 -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
29:: import of_g
30:: include('_copyright.py')
31
32:: include('_autogen.py')
33
34import struct
35import const
36import util
Rich Lane15cbe842013-04-26 16:04:11 -070037import loxi.generic_util
Rich Laneea693752013-03-18 11:05:45 -070038import loxi
39
Rich Lane21fd0112013-05-01 12:50:04 -070040def unpack_list(reader):
41 def deserializer(reader):
42 type_len, = reader.peek('!L')
43 if type_len in parsers:
44 return parsers[type_len](reader)
45 else:
46 raise loxi.ProtocolError("unknown OXM cls=%#x type=%#x masked=%d len=%d (%#x)" % \
47 ((type_len >> 16) & 0xffff, (type_len >> 9) & 0x7f, (type_len >> 8) & 1, type_len & 0xff, type_len))
48 return loxi.generic_util.unpack_list(reader, deserializer)
49
Rich Laneea693752013-03-18 11:05:45 -070050class OXM(object):
51 type_len = None # override in subclass
52 pass
53
54:: for ofclass in ofclasses:
Rich Lane002e70c2013-05-09 17:08:16 -070055:: from loxi_ir import *
56:: normal_members = [m for m in ofclass.members if type(m) == OFDataMember]
57:: type_members = [m for m in ofclass.members if type(m) == OFTypeMember]
Rich Laneea693752013-03-18 11:05:45 -070058class ${ofclass.pyname}(OXM):
Rich Lane8ca3b772013-04-30 13:36:55 -070059:: for m in type_members:
Rich Laneea693752013-03-18 11:05:45 -070060 ${m.name} = ${m.value}
61:: #endfor
62
Rich Lane8ca3b772013-04-30 13:36:55 -070063 def __init__(self, ${', '.join(["%s=None" % m.name for m in normal_members])}):
64:: for m in normal_members:
Rich Laneea693752013-03-18 11:05:45 -070065 if ${m.name} != None:
66 self.${m.name} = ${m.name}
67 else:
68 self.${m.name} = ${m.oftype.gen_init_expr()}
69:: #endfor
70
71 def pack(self):
72 packed = []
73:: include("_pack.py", ofclass=ofclass)
74 return ''.join(packed)
75
76 @staticmethod
77 def unpack(buf):
78 obj = ${ofclass.pyname}()
79:: include("_unpack.py", ofclass=ofclass)
80 return obj
81
82 def __eq__(self, other):
83 if type(self) != type(other): return False
Rich Lane8ca3b772013-04-30 13:36:55 -070084:: for m in normal_members:
Rich Laneea693752013-03-18 11:05:45 -070085 if self.${m.name} != other.${m.name}: return False
86:: #endfor
87 return True
88
89 def __ne__(self, other):
90 return not self.__eq__(other)
91
92 def show(self):
93 import loxi.pp
94 return loxi.pp.pp(self)
95
96 def pretty_print(self, q):
97:: include('_pretty_print.py', ofclass=ofclass)
98
99:: #endfor
100
101parsers = {
Rich Lane002e70c2013-05-09 17:08:16 -0700102:: key = lambda x: x.type_members[0].value
Rich Laneea693752013-03-18 11:05:45 -0700103:: for ofclass in sorted(ofclasses, key=key):
104 ${key(ofclass)} : ${ofclass.pyname}.unpack,
105:: #endfor
106}