blob: bbf9c5dda2049b9b960c7fe98e6a204af5bf386e [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
Rich Lane9d98adf2013-11-29 18:37:24 -080028from collections import defaultdict
Rich Lane1cd97912014-09-26 15:51:38 -070029import os
Andreas Wundsam5630c422013-11-15 13:43:11 -080030import loxi_globals
Andreas Wundsam5420b952013-11-15 13:41:01 -080031import template_utils
Rich Lanea06d0c32013-03-25 08:52:03 -070032import loxi_utils.loxi_utils as utils
33import util
Rich Lane002e70c2013-05-09 17:08:16 -070034from loxi_ir import *
Rich Lanea06d0c32013-03-25 08:52:03 -070035
Rich Lane1cd97912014-09-26 15:51:38 -070036# Map from wire version to directory name
37versions = {
38 1: "of10",
39 2: "of11",
40 3: "of12",
41 4: "of13",
42}
Rich Lanefa931272013-11-10 17:43:50 -080043
Rich Lane9d98adf2013-11-29 18:37:24 -080044# Map from inheritance root to module name
45roots = {
46 'of_header': 'message',
47 'of_action': 'action',
Rich Lane2c9938e2013-12-09 17:20:12 -080048 'of_action_id': 'action_id',
Rich Lane9d98adf2013-11-29 18:37:24 -080049 'of_oxm': 'oxm',
50 'of_instruction': 'instruction',
Rich Lane2c9938e2013-12-09 17:20:12 -080051 'of_instruction_id': 'instruction_id',
Rich Lane9d98adf2013-11-29 18:37:24 -080052 'of_meter_band': 'meter_band',
Rich Lanee6321992013-12-03 13:04:52 -080053 'of_bsn_tlv': 'bsn_tlv',
Rich Lane9d98adf2013-11-29 18:37:24 -080054}
55
56# Return the module and class names for the generated Python class
57def generate_pyname(ofclass):
58 for root, module_name in roots.items():
59 if ofclass.name == root:
60 return module_name, module_name
61 elif ofclass.is_instanceof(root):
62 if root == 'of_header':
63 # The input files don't prefix message names
64 return module_name, ofclass.name[3:]
65 else:
66 return module_name, ofclass.name[len(root)+1:]
67 return 'common', ofclass.name[3:]
Rich Lanea06d0c32013-03-25 08:52:03 -070068
Rich Lane002e70c2013-05-09 17:08:16 -070069# Create intermediate representation, extended from the LOXI IR
Rich Lanea06d0c32013-03-25 08:52:03 -070070def build_ofclasses(version):
Rich Lane9d98adf2013-11-29 18:37:24 -080071 modules = defaultdict(list)
Andreas Wundsam5630c422013-11-15 13:43:11 -080072 for ofclass in loxi_globals.ir[version].classes:
Rich Lane9d98adf2013-11-29 18:37:24 -080073 module_name, ofclass.pyname = generate_pyname(ofclass)
74 modules[module_name].append(ofclass)
75 return modules
Rich Lanea06d0c32013-03-25 08:52:03 -070076
Rich Lane1cd97912014-09-26 15:51:38 -070077def codegen(install_dir):
78 def render(name, template_name=None, **ctx):
79 if template_name is None:
80 template_name = os.path.basename(name)
81 with template_utils.open_output(install_dir, name) as out:
82 util.render_template(out, template_name, **ctx)
Rich Lanea06d0c32013-03-25 08:52:03 -070083
Rich Lane1cd97912014-09-26 15:51:38 -070084 render('__init__.py', template_name='toplevel_init.py')
85 render('pp.py')
86 render('generic_util.py')
Rich Lanea06d0c32013-03-25 08:52:03 -070087
Rich Lane1cd97912014-09-26 15:51:38 -070088 for wire_version, subdir in versions.items():
89 version = loxi_globals.OFVersions.from_wire(wire_version)
90 modules = build_ofclasses(version)
Rich Lane2c9938e2013-12-09 17:20:12 -080091
Rich Lane1cd97912014-09-26 15:51:38 -070092 render(os.path.join(subdir, '__init__.py'), template_name='init.py',
93 version=version, modules=modules.keys())
Rich Laneea693752013-03-18 11:05:45 -070094
Rich Lane1cd97912014-09-26 15:51:38 -070095 render(os.path.join(subdir, 'util.py'), version=version)
Rich Lanea06d0c32013-03-25 08:52:03 -070096
Rich Lane1cd97912014-09-26 15:51:38 -070097 render(os.path.join(subdir, 'const.py'), version=version,
98 enums=loxi_globals.ir[version].enums)
Rich Lanea06d0c32013-03-25 08:52:03 -070099
Rich Lane1cd97912014-09-26 15:51:38 -0700100 args_by_module = {
101 'common': { 'extra_template' : '_common_extra.py' },
102 'message': { 'extra_template' : '_message_extra.py' },
103 }
Rich Lanee02314c2013-05-02 16:42:04 -0700104
Rich Lane1cd97912014-09-26 15:51:38 -0700105 for name, ofclasses in modules.items():
106 args = args_by_module.get(name, {})
107 render(os.path.join(subdir, name + '.py'), template_name='module.py',
108 version=version, ofclasses=ofclasses, modules=modules.keys(),
109 **args)