blob: a84508a047c5234a4eeab01cc7f8c5be704f8797 [file] [log] [blame]
Rich Laned47e5a22013-05-09 14:21:16 -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
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070028from generic_utils import find
29from collections import namedtuple
Rich Lane4d9f0f62013-05-09 15:50:57 -070030import copy
Andreas Wundsamd30c1072013-11-15 13:36:57 -080031import loxi_globals
32import loxi_front_end.frontend_ir as ir
Rich Laned47e5a22013-05-09 14:21:16 -070033
34class InputError(Exception):
35 pass
36
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070037
38FrontendCtx = namedtuple("FrontendCtx", ("used_enums"))
39
40def get_type(t_ast, ctx):
41 if t_ast[0] == "enum":
42 ctx.used_enums.add(t_ast[1])
43
44 return t_ast[1]
45
46def create_member(m_ast, ctx):
Rich Lane4d9f0f62013-05-09 15:50:57 -070047 if m_ast[0] == 'pad':
Andreas Wundsamd30c1072013-11-15 13:36:57 -080048 return ir.OFPadMember(length=m_ast[1])
Rich Lane32142872013-05-09 21:16:47 -070049 elif m_ast[0] == 'type':
Andreas Wundsamd30c1072013-11-15 13:36:57 -080050 return ir.OFTypeMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx), value=m_ast[3])
Rich Lanef424e972013-05-09 21:00:13 -070051 elif m_ast[0] == 'data':
52 if m_ast[2] == 'length' or m_ast[2] == 'len': # Should be moved to parser
Andreas Wundsamd30c1072013-11-15 13:36:57 -080053 return ir.OFLengthMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Rich Lanef424e972013-05-09 21:00:13 -070054 elif m_ast[2] == 'actions_len':
55 # HACK only usage so far
Andreas Wundsamd30c1072013-11-15 13:36:57 -080056 return ir.OFFieldLengthMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx), field_name='actions')
Rich Lanef424e972013-05-09 21:00:13 -070057 else:
Andreas Wundsamd30c1072013-11-15 13:36:57 -080058 return ir.OFDataMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Andreas Wundsam780e0c92013-08-02 17:48:27 -070059 elif m_ast[0] == 'discriminator':
Andreas Wundsamd30c1072013-11-15 13:36:57 -080060 return ir.OFDiscriminatorMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Andreas Wundsam7adebd22013-08-01 22:14:14 -070061 else:
Andreas Wundsam7933beb2013-08-02 22:36:42 -070062 raise InputError("Dont know how to create member: %s" % m_ast[0])
Rich Lane4d9f0f62013-05-09 15:50:57 -070063
Andreas Wundsamd30c1072013-11-15 13:36:57 -080064def create_ofinput(filename, ast):
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070065
Rich Laned47e5a22013-05-09 14:21:16 -070066 """
67 Create an OFInput from an AST
68
69 @param ast An AST as returned by loxi_front_end.parser.parse
70
71 @returns An OFInput object
72 """
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070073 ctx = FrontendCtx(set())
Andreas Wundsamd30c1072013-11-15 13:36:57 -080074 ofinput = ir.OFInput(filename, wire_versions=set(), classes=[], enums=[])
Rich Laned47e5a22013-05-09 14:21:16 -070075
Rich Lane4d9f0f62013-05-09 15:50:57 -070076 for decl_ast in ast:
77 if decl_ast[0] == 'struct':
Andreas Wundsam7933beb2013-08-02 22:36:42 -070078 # 0: "struct"
Andreas Wundsamfef7d5f2013-08-01 22:15:44 -070079 # 1: name
80 # 2: potentially list of [param_name, param_value]
Andreas Wundsam780e0c92013-08-02 17:48:27 -070081 # 3: super_class or None
Andreas Wundsam7933beb2013-08-02 22:36:42 -070082 # 4: list of members
Andreas Wundsam780e0c92013-08-02 17:48:27 -070083 superclass = decl_ast[3]
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070084 members = [create_member(m_ast, ctx) for m_ast in decl_ast[4]]
Andreas Wundsam780e0c92013-08-02 17:48:27 -070085
Andreas Wundsamd30c1072013-11-15 13:36:57 -080086 discriminators = [ m for m in members if isinstance(m, ir.OFDiscriminatorMember) ]
Andreas Wundsam780e0c92013-08-02 17:48:27 -070087 if len(discriminators) > 1:
Andreas Wundsam7933beb2013-08-02 22:36:42 -070088 raise InputError("%s: Cannot support more than one discriminator by class - got %s" %
Andreas Wundsam780e0c92013-08-02 17:48:27 -070089 (decl_ast[1], repr(discriminators)))
Andreas Wundsamd30c1072013-11-15 13:36:57 -080090 ofclass = ir.OFClass(name=decl_ast[1], members=members, superclass=superclass,
Andreas Wundsam780e0c92013-08-02 17:48:27 -070091 virtual = len(discriminators) > 0,
Andreas Wundsamfef7d5f2013-08-01 22:15:44 -070092 params = { param: value for param, value in decl_ast[2] })
Rich Lane4d9f0f62013-05-09 15:50:57 -070093 ofinput.classes.append(ofclass)
Rich Lane4d9f0f62013-05-09 15:50:57 -070094 if decl_ast[0] == 'enum':
Andreas Wundsam4ee51462013-07-30 11:00:37 -070095 # 0: "enum"
96 # 1: name
97 # 2: potentially list of [param_name, param_value]
98 # 3: list of [constant_name, constant_value]+
Andreas Wundsamd30c1072013-11-15 13:36:57 -080099 enum = ir.OFEnum(name=decl_ast[1],
100 entries=[ir.OFEnumEntry(name=x[0], value=x[2], params={param:value for param, value in x[1] }) for x in decl_ast[3]],
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700101 params = { param: value for param, value in decl_ast[2] }
102 )
Rich Lane4d9f0f62013-05-09 15:50:57 -0700103 ofinput.enums.append(enum)
104 elif decl_ast[0] == 'metadata':
105 if decl_ast[1] == 'version':
106 if decl_ast[2] == 'any':
Andreas Wundsamd30c1072013-11-15 13:36:57 -0800107 ofinput.wire_versions.update(v.wire_version for v in loxi_globals.OFVersions.all_supported)
108 elif int(decl_ast[2]) in loxi_globals.OFVersions.wire_version_map:
Rich Lane4d9f0f62013-05-09 15:50:57 -0700109 ofinput.wire_versions.add(int(decl_ast[2]))
Rich Laned47e5a22013-05-09 14:21:16 -0700110 else:
Rich Lane4d9f0f62013-05-09 15:50:57 -0700111 raise InputError("Unrecognized wire protocol version %r" % decl_ast[2])
Rich Laned47e5a22013-05-09 14:21:16 -0700112 found_wire_version = True
113
114 if not ofinput.wire_versions:
115 raise InputError("Missing #version metadata")
116
Rich Laned47e5a22013-05-09 14:21:16 -0700117 return ofinput