blob: 89a8ba1df921982d8352b436a8c8de438480bfa0 [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
29import loxi_utils.loxi_utils as utils
Rich Lane96641df2013-06-10 13:36:35 -070030import loxi_front_end
31import of_g
Rich Lane45dcae12013-06-04 13:07:41 -070032
33templates_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'templates')
34
Rich Lane96641df2013-06-10 13:36:35 -070035# TODO move into IR
36def create_superclass_map():
37 superclasses = {}
38 for supercls, subcls_set in loxi_front_end.type_maps.inheritance_map.items():
39 for subcls in subcls_set:
40 superclasses[supercls + '_' + subcls] = supercls
41
42 for version, versioned in loxi_front_end.type_maps.message_types.items():
43 for subcls in versioned:
44 superclasses['of_' + subcls] = 'of_message'
45
46 for version, versioned in loxi_front_end.type_maps.extension_message_subtype.items():
47 for experimenter, classes in versioned.items():
48 for cls in classes:
49 superclasses[cls] = 'of_experimenter_' + experimenter
50
51 for version, versioned in loxi_front_end.type_maps.extension_action_subtype.items():
52 for experimenter, classes in versioned.items():
53 for cls in classes:
54 superclasses[cls] = 'of_action_' + experimenter
55
56 for version, versioned in loxi_front_end.type_maps.stats_types.items():
57 for subcls in versioned:
58 superclasses['of_' + subcls + '_stats_request'] = 'of_stats_request'
59 superclasses['of_' + subcls + '_stats_reply'] = 'of_stats_reply'
60
61 for version, versioned in loxi_front_end.type_maps.flow_mod_types.items():
62 for subcls in versioned:
63 superclasses['of_flow_' + subcls] = 'of_flow_mod'
64
65 return superclasses
66
Rich Lane45dcae12013-06-04 13:07:41 -070067def generate(out, name):
Rich Lane96641df2013-06-10 13:36:35 -070068 superclasses = create_superclass_map()
69 all_classes = sorted(of_g.unified.keys())
70
71 for cls in all_classes:
72 if cls not in superclasses:
73 print cls + ": " + superclasses.get(cls, "NONE")
74
75 context = { 'superclasses': superclasses }
Rich Lane45dcae12013-06-04 13:07:41 -070076 utils.render_template(out, "openflow.lua", [templates_dir], context)