blob: dc6b999f9bc77927a2ee5784f277bd76349b97c0 [file] [log] [blame]
Rich Lanea06d0c32013-03-25 08:52:03 -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
28from collections import namedtuple
Rich Lanec2685792013-04-30 14:08:33 -070029import struct
Rich Lanea06d0c32013-03-25 08:52:03 -070030import of_g
31import loxi_front_end.type_maps as type_maps
32import loxi_utils.loxi_utils as utils
33import util
34import oftype
35
Rich Lane8ca3b772013-04-30 13:36:55 -070036OFClass = namedtuple('OFClass', ['name', 'pyname', 'members', 'type_members',
Rich Lanea06d0c32013-03-25 08:52:03 -070037 'min_length', 'is_fixed_length'])
Rich Laneef0b8872013-05-01 13:54:19 -070038Member = namedtuple('Member', ['name', 'oftype'])
39LengthMember = namedtuple('LengthMember', ['name', 'oftype'])
40FieldLengthMember = namedtuple('FieldLengthMember', ['name', 'oftype', 'field_name'])
41TypeMember = namedtuple('TypeMember', ['name', 'oftype', 'value'])
42PadMember = namedtuple('PadMember', ['length'])
Rich Lanea06d0c32013-03-25 08:52:03 -070043
Rich Lane193317b2013-05-01 12:09:42 -070044# XXX move to frontend
45field_length_members = {
46 ('of_packet_out', 1, 'actions_len') : 'actions',
47 ('of_packet_out', 2, 'actions_len') : 'actions',
48 ('of_packet_out', 3, 'actions_len') : 'actions',
49 ('of_packet_out', 4, 'actions_len') : 'actions',
50}
51
Rich Lanea06d0c32013-03-25 08:52:03 -070052def get_type_values(cls, version):
53 """
54 Returns a map from the name of the type member to its value.
55 """
56 type_values = {}
57
58 # Primary wire type
59 if utils.class_is_message(cls):
60 type_values['version'] = 'const.OFP_VERSION'
61 type_values['type'] = util.constant_for_value(version, "ofp_type", util.primary_wire_type(cls, version))
62 if cls in type_maps.flow_mod_list:
63 type_values['_command'] = util.constant_for_value(version, "ofp_flow_mod_command",
64 type_maps.flow_mod_types[version][cls[8:]])
65 if cls in type_maps.stats_request_list:
66 type_values['stats_type'] = util.constant_for_value(version, "ofp_stats_types",
67 type_maps.stats_types[version][cls[3:-14]])
68 if cls in type_maps.stats_reply_list:
69 type_values['stats_type'] = util.constant_for_value(version, "ofp_stats_types",
70 type_maps.stats_types[version][cls[3:-12]])
71 if type_maps.message_is_extension(cls, version):
72 type_values['experimenter'] = '%#x' % type_maps.extension_to_experimenter_id(cls)
73 type_values['subtype'] = type_maps.extension_message_to_subtype(cls, version)
74 elif utils.class_is_action(cls):
75 type_values['type'] = util.constant_for_value(version, "ofp_action_type", util.primary_wire_type(cls, version))
76 if type_maps.action_is_extension(cls, version):
77 type_values['experimenter'] = '%#x' % type_maps.extension_to_experimenter_id(cls)
78 type_values['subtype'] = type_maps.extension_action_to_subtype(cls, version)
79 elif utils.class_is_queue_prop(cls):
80 type_values['type'] = util.constant_for_value(version, "ofp_queue_properties", util.primary_wire_type(cls, version))
Rich Lanee90685c2013-04-05 17:27:41 -070081 elif utils.class_is_hello_elem(cls):
82 type_values['type'] = util.constant_for_value(version, "ofp_hello_elem_type", util.primary_wire_type(cls, version))
Rich Laneea693752013-03-18 11:05:45 -070083 elif utils.class_is_oxm(cls):
84 oxm_class = 0x8000
85 oxm_type = util.primary_wire_type(cls, version)
86 oxm_masked = cls.find('masked') != -1 and 1 or 0
Rich Lane82e9f6e2013-04-25 17:32:22 -070087 oxm_len = of_g.base_length[(cls, version)] - 4
Rich Laneea693752013-03-18 11:05:45 -070088 type_values['type_len'] = '%#x' % (oxm_class << 16 | oxm_type << 8 | \
89 oxm_masked << 8 | oxm_len)
Rich Lane0b2ce252013-05-01 13:21:22 -070090 elif cls == "of_match_v2":
91 type_values['type'] = 0
Rich Lane3005cf92013-05-01 12:33:35 -070092 elif cls == "of_match_v3":
93 type_values['type'] = 1
Rich Laned82c0a62013-05-02 15:40:35 -070094 elif utils.class_is_meter_band(cls):
95 type_values['type'] = util.constant_for_value(version, "ofp_meter_band_type", util.primary_wire_type(cls, version))
Rich Lanea06d0c32013-03-25 08:52:03 -070096
97 return type_values
98
99# Create intermediate representation
100def build_ofclasses(version):
101 blacklist = ["of_action", "of_action_header", "of_header", "of_queue_prop",
Rich Lane3f075972013-03-15 22:56:29 -0700102 "of_queue_prop_header", "of_experimenter", "of_action_experimenter",
Rich Lanee90685c2013-04-05 17:27:41 -0700103 "of_oxm", "of_oxm_header", "of_oxm_experimenter_header",
104 "of_hello_elem", "of_hello_elem_header"]
Rich Lanea06d0c32013-03-25 08:52:03 -0700105 ofclasses = []
106 for cls in of_g.standard_class_order:
Rich Laned82c0a62013-05-02 15:40:35 -0700107 if type_maps.class_is_virtual(cls):
108 continue
Rich Lanea06d0c32013-03-25 08:52:03 -0700109 if version not in of_g.unified[cls] or cls in blacklist:
110 continue
111 unified_class = util.lookup_unified_class(cls, version)
112
113 # Name for the generated Python class
114 if utils.class_is_action(cls):
115 pyname = cls[10:]
Rich Laneea693752013-03-18 11:05:45 -0700116 elif utils.class_is_oxm(cls):
117 pyname = cls[7:]
Rich Laned82c0a62013-05-02 15:40:35 -0700118 elif utils.class_is_meter_band(cls):
119 pyname = cls[14:]
Rich Lanea06d0c32013-03-25 08:52:03 -0700120 else:
121 pyname = cls[3:]
122
123 type_values = get_type_values(cls, version)
124 members = []
Rich Lanea06d0c32013-03-25 08:52:03 -0700125 type_members = []
Rich Lane8ca3b772013-04-30 13:36:55 -0700126
Rich Lanec58a2322013-03-15 23:28:52 -0700127 pad_count = 0
Rich Lanea06d0c32013-03-25 08:52:03 -0700128
129 for member in unified_class['members']:
130 if member['name'] in ['length', 'len']:
Rich Lane8ca3b772013-04-30 13:36:55 -0700131 members.append(LengthMember(name=member['name'],
Rich Lane8ca3b772013-04-30 13:36:55 -0700132 oftype=oftype.OFType(member['m_type'], version)))
Rich Lane193317b2013-05-01 12:09:42 -0700133 elif (cls, version, member['name']) in field_length_members:
134 field_name = field_length_members[(cls, version, member['name'])]
135 members.append(FieldLengthMember(name=member['name'],
Rich Lane193317b2013-05-01 12:09:42 -0700136 oftype=oftype.OFType(member['m_type'], version),
137 field_name=field_name))
Rich Lanea06d0c32013-03-25 08:52:03 -0700138 elif member['name'] in type_values:
Rich Lane8ca3b772013-04-30 13:36:55 -0700139 members.append(TypeMember(name=member['name'],
Rich Lane8ca3b772013-04-30 13:36:55 -0700140 oftype=oftype.OFType(member['m_type'], version),
141 value=type_values[member['name']]))
142 type_members.append(members[-1])
Rich Lanec2685792013-04-30 14:08:33 -0700143 elif member['name'].startswith("pad"):
144 # HACK this should be moved to the frontend
145 pad_oftype = oftype.OFType(member['m_type'], version)
146 length = struct.calcsize("!" + pad_oftype._pack_fmt())
147 if pad_oftype.is_array: length *= pad_oftype.array_length
Rich Laneef0b8872013-05-01 13:54:19 -0700148 members.append(PadMember(length=length))
Rich Lanec2685792013-04-30 14:08:33 -0700149 else:
150 members.append(Member(name=member['name'],
Rich Laneef0b8872013-05-01 13:54:19 -0700151 oftype=oftype.OFType(member['m_type'], version)))
Rich Lanea06d0c32013-03-25 08:52:03 -0700152
153 ofclasses.append(
154 OFClass(name=cls,
155 pyname=pyname,
156 members=members,
Rich Lanea06d0c32013-03-25 08:52:03 -0700157 type_members=type_members,
158 min_length=of_g.base_length[(cls, version)],
159 is_fixed_length=(cls, version) in of_g.is_fixed_length))
160 return ofclasses
161
162def generate_init(out, name, version):
Rich Laneea693752013-03-18 11:05:45 -0700163 util.render_template(out, 'init.py', version=version)
Rich Lanea06d0c32013-03-25 08:52:03 -0700164
165def generate_action(out, name, version):
166 ofclasses = [x for x in build_ofclasses(version)
167 if utils.class_is_action(x.name)]
Rich Lane3f075972013-03-15 22:56:29 -0700168 util.render_template(out, 'action.py', ofclasses=ofclasses, version=version)
Rich Lanea06d0c32013-03-25 08:52:03 -0700169
Rich Laneea693752013-03-18 11:05:45 -0700170def generate_oxm(out, name, version):
171 ofclasses = [x for x in build_ofclasses(version)
172 if utils.class_is_oxm(x.name)]
173 util.render_template(out, 'oxm.py', ofclasses=ofclasses, version=version)
174
Rich Lanea06d0c32013-03-25 08:52:03 -0700175def generate_common(out, name, version):
176 ofclasses = [x for x in build_ofclasses(version)
177 if not utils.class_is_message(x.name)
178 and not utils.class_is_action(x.name)
Rich Laned82c0a62013-05-02 15:40:35 -0700179 and not utils.class_is_meter_band(x.name)
Rich Laneea693752013-03-18 11:05:45 -0700180 and not utils.class_is_oxm(x.name)
Rich Lanea06d0c32013-03-25 08:52:03 -0700181 and not utils.class_is_list(x.name)]
Rich Lane3f075972013-03-15 22:56:29 -0700182 util.render_template(out, 'common.py', ofclasses=ofclasses, version=version)
Rich Lanea06d0c32013-03-25 08:52:03 -0700183
184def generate_const(out, name, version):
185 groups = {}
186 for (group, idents) in of_g.identifiers_by_group.items():
187 items = []
188 for ident in idents:
189 info = of_g.identifiers[ident]
190 if version in info["values_by_version"]:
191 items.append((info["ofp_name"], info["values_by_version"][version]))
192 if items:
193 groups[group] = items
194 util.render_template(out, 'const.py', version=version, groups=groups)
195
196def generate_message(out, name, version):
197 ofclasses = [x for x in build_ofclasses(version)
198 if utils.class_is_message(x.name)]
199 util.render_template(out, 'message.py', ofclasses=ofclasses, version=version)
200
Rich Laned82c0a62013-05-02 15:40:35 -0700201def generate_meter_band(out, name, version):
202 ofclasses = [x for x in build_ofclasses(version)
203 if utils.class_is_meter_band(x.name)]
204 util.render_template(out, 'meter_band.py', ofclasses=ofclasses, version=version)
205
Rich Lanea06d0c32013-03-25 08:52:03 -0700206def generate_pp(out, name, version):
207 util.render_template(out, 'pp.py')
208
209def generate_util(out, name, version):
210 util.render_template(out, 'util.py')