blob: abf60c7e95a8c0a1c678f1ee3479c7d9ea10a20f [file] [log] [blame]
Rich Lane45dcae12013-06-04 13:07:41 -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
28import os
Rich Laneb014bcf2013-06-19 11:14:11 -070029from collections import namedtuple
Rich Lane45dcae12013-06-04 13:07:41 -070030import loxi_utils.loxi_utils as utils
Rich Lane96641df2013-06-10 13:36:35 -070031import loxi_front_end
32import of_g
Rich Lane45dcae12013-06-04 13:07:41 -070033
34templates_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'templates')
35
Rich Laneb014bcf2013-06-19 11:14:11 -070036DissectorField = namedtuple("DissectorField", ["name", "type", "base"])
37
Rich Lane96641df2013-06-10 13:36:35 -070038# TODO move into IR
39def create_superclass_map():
40 superclasses = {}
41 for supercls, subcls_set in loxi_front_end.type_maps.inheritance_map.items():
42 for subcls in subcls_set:
43 superclasses[supercls + '_' + subcls] = supercls
44
45 for version, versioned in loxi_front_end.type_maps.message_types.items():
46 for subcls in versioned:
47 superclasses['of_' + subcls] = 'of_message'
48
49 for version, versioned in loxi_front_end.type_maps.extension_message_subtype.items():
50 for experimenter, classes in versioned.items():
51 for cls in classes:
52 superclasses[cls] = 'of_experimenter_' + experimenter
53
54 for version, versioned in loxi_front_end.type_maps.extension_action_subtype.items():
55 for experimenter, classes in versioned.items():
56 for cls in classes:
57 superclasses[cls] = 'of_action_' + experimenter
58
59 for version, versioned in loxi_front_end.type_maps.stats_types.items():
60 for subcls in versioned:
61 superclasses['of_' + subcls + '_stats_request'] = 'of_stats_request'
62 superclasses['of_' + subcls + '_stats_reply'] = 'of_stats_reply'
63
64 for version, versioned in loxi_front_end.type_maps.flow_mod_types.items():
65 for subcls in versioned:
66 superclasses['of_flow_' + subcls] = 'of_flow_mod'
67
68 return superclasses
69
Rich Laneb014bcf2013-06-19 11:14:11 -070070def create_fields():
71 return [
72 DissectorField("version", "UINT8", "DEC"),
73 DissectorField("type", "UINT8", "DEC"),
74 DissectorField("length", "UINT16", "DEC"),
75 DissectorField("xid", "UINT32", "HEX"),
76 ]
77
Rich Lane45dcae12013-06-04 13:07:41 -070078def generate(out, name):
Rich Lane96641df2013-06-10 13:36:35 -070079 superclasses = create_superclass_map()
80 all_classes = sorted(of_g.unified.keys())
81
82 for cls in all_classes:
83 if cls not in superclasses:
84 print cls + ": " + superclasses.get(cls, "NONE")
85
Rich Laneb014bcf2013-06-19 11:14:11 -070086 context = {
87 'superclasses': superclasses,
88 'fields': create_fields(),
89 }
Rich Lane45dcae12013-06-04 13:07:41 -070090 utils.render_template(out, "openflow.lua", [templates_dir], context)