blob: 66886e02ef325cc7f404baf3abe2c3869b1ec13e [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
40class OXM(object):
41 type_len = None # override in subclass
42 pass
43
44:: for ofclass in ofclasses:
Rich Lane8ca3b772013-04-30 13:36:55 -070045:: from py_gen.codegen import Member, LengthMember, TypeMember
46:: normal_members = [m for m in ofclass.members if type(m) == Member and not m.skip]
47:: type_members = [m for m in ofclass.members if type(m) == TypeMember]
Rich Laneea693752013-03-18 11:05:45 -070048class ${ofclass.pyname}(OXM):
Rich Lane8ca3b772013-04-30 13:36:55 -070049:: for m in type_members:
Rich Laneea693752013-03-18 11:05:45 -070050 ${m.name} = ${m.value}
51:: #endfor
52
Rich Lane8ca3b772013-04-30 13:36:55 -070053 def __init__(self, ${', '.join(["%s=None" % m.name for m in normal_members])}):
54:: for m in normal_members:
Rich Laneea693752013-03-18 11:05:45 -070055 if ${m.name} != None:
56 self.${m.name} = ${m.name}
57 else:
58 self.${m.name} = ${m.oftype.gen_init_expr()}
59:: #endfor
60
61 def pack(self):
62 packed = []
63:: include("_pack.py", ofclass=ofclass)
64 return ''.join(packed)
65
66 @staticmethod
67 def unpack(buf):
68 obj = ${ofclass.pyname}()
69:: include("_unpack.py", ofclass=ofclass)
70 return obj
71
72 def __eq__(self, other):
73 if type(self) != type(other): return False
Rich Lane8ca3b772013-04-30 13:36:55 -070074:: for m in normal_members:
Rich Laneea693752013-03-18 11:05:45 -070075 if self.${m.name} != other.${m.name}: return False
76:: #endfor
77 return True
78
79 def __ne__(self, other):
80 return not self.__eq__(other)
81
82 def show(self):
83 import loxi.pp
84 return loxi.pp.pp(self)
85
86 def pretty_print(self, q):
87:: include('_pretty_print.py', ofclass=ofclass)
88
89:: #endfor
90
91parsers = {
92:: key = lambda x: int(x.type_members[0].value, 16)
93:: for ofclass in sorted(ofclasses, key=key):
94 ${key(ofclass)} : ${ofclass.pyname}.unpack,
95:: #endfor
96}