blob: 35c1e44c643b0380d2f70902c3c9a79e17f4228e [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
Rich Laned47e5a22013-05-09 14:21:16 -070031import of_g
32import loxi_front_end.type_maps as type_maps
Rich Lane4d9f0f62013-05-09 15:50:57 -070033from loxi_ir import *
Rich Laned47e5a22013-05-09 14:21:16 -070034
35class InputError(Exception):
36 pass
37
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070038
39FrontendCtx = namedtuple("FrontendCtx", ("used_enums"))
40
41def get_type(t_ast, ctx):
42 if t_ast[0] == "enum":
43 ctx.used_enums.add(t_ast[1])
44
45 return t_ast[1]
46
47def create_member(m_ast, ctx):
Rich Lane4d9f0f62013-05-09 15:50:57 -070048 if m_ast[0] == 'pad':
49 return OFPadMember(length=m_ast[1])
Rich Lane32142872013-05-09 21:16:47 -070050 elif m_ast[0] == 'type':
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070051 return OFTypeMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx), value=m_ast[3])
Rich Lanef424e972013-05-09 21:00:13 -070052 elif m_ast[0] == 'data':
53 if m_ast[2] == 'length' or m_ast[2] == 'len': # Should be moved to parser
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070054 return OFLengthMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Rich Lanef424e972013-05-09 21:00:13 -070055 elif m_ast[2] == 'actions_len':
56 # HACK only usage so far
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070057 return OFFieldLengthMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx), field_name='actions')
Rich Lanef424e972013-05-09 21:00:13 -070058 else:
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070059 return OFDataMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Andreas Wundsam780e0c92013-08-02 17:48:27 -070060 elif m_ast[0] == 'discriminator':
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070061 return OFDiscriminatorMember(name=m_ast[2], oftype=get_type(m_ast[1], ctx))
Andreas Wundsam7adebd22013-08-01 22:14:14 -070062 else:
Andreas Wundsam7933beb2013-08-02 22:36:42 -070063 raise InputError("Dont know how to create member: %s" % m_ast[0])
Rich Lane4d9f0f62013-05-09 15:50:57 -070064
Rich Lane72875d62013-11-13 12:39:53 -080065def create_ofinput(name, ast):
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070066
Rich Laned47e5a22013-05-09 14:21:16 -070067 """
68 Create an OFInput from an AST
69
70 @param ast An AST as returned by loxi_front_end.parser.parse
71
72 @returns An OFInput object
73 """
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070074 ctx = FrontendCtx(set())
Rich Lane72875d62013-11-13 12:39:53 -080075 ofinput = OFInput(name, wire_versions=set(), classes=[], enums=[])
Rich Laned47e5a22013-05-09 14:21:16 -070076
Rich Lane4d9f0f62013-05-09 15:50:57 -070077 for decl_ast in ast:
78 if decl_ast[0] == 'struct':
Andreas Wundsam7933beb2013-08-02 22:36:42 -070079 # 0: "struct"
Andreas Wundsamfef7d5f2013-08-01 22:15:44 -070080 # 1: name
81 # 2: potentially list of [param_name, param_value]
Andreas Wundsam780e0c92013-08-02 17:48:27 -070082 # 3: super_class or None
Andreas Wundsam7933beb2013-08-02 22:36:42 -070083 # 4: list of members
Andreas Wundsam780e0c92013-08-02 17:48:27 -070084 superclass = decl_ast[3]
Andreas Wundsamdfeb5942013-09-19 13:07:49 -070085 members = [create_member(m_ast, ctx) for m_ast in decl_ast[4]]
Andreas Wundsam780e0c92013-08-02 17:48:27 -070086
87 discriminators = [ m for m in members if isinstance(m, OFDiscriminatorMember) ]
88 if len(discriminators) > 1:
Andreas Wundsam7933beb2013-08-02 22:36:42 -070089 raise InputError("%s: Cannot support more than one discriminator by class - got %s" %
Andreas Wundsam780e0c92013-08-02 17:48:27 -070090 (decl_ast[1], repr(discriminators)))
91 ofclass = OFClass(name=decl_ast[1], members=members, superclass=superclass,
92 virtual = len(discriminators) > 0,
Andreas Wundsamfef7d5f2013-08-01 22:15:44 -070093 params = { param: value for param, value in decl_ast[2] })
Rich Lane4d9f0f62013-05-09 15:50:57 -070094 ofinput.classes.append(ofclass)
Rich Lane4d9f0f62013-05-09 15:50:57 -070095 if decl_ast[0] == 'enum':
Andreas Wundsam4ee51462013-07-30 11:00:37 -070096 # 0: "enum"
97 # 1: name
98 # 2: potentially list of [param_name, param_value]
99 # 3: list of [constant_name, constant_value]+
100 enum = OFEnum(name=decl_ast[1],
101 entries=[OFEnumEntry(name=x[0], value=x[2], params={param:value for param, value in x[1] }) for x in decl_ast[3]],
102 params = { param: value for param, value in decl_ast[2] }
103 )
Rich Lane4d9f0f62013-05-09 15:50:57 -0700104 ofinput.enums.append(enum)
105 elif decl_ast[0] == 'metadata':
106 if decl_ast[1] == 'version':
107 if decl_ast[2] == 'any':
Rich Laned47e5a22013-05-09 14:21:16 -0700108 ofinput.wire_versions.update(of_g.wire_ver_map.keys())
Rich Lane4d9f0f62013-05-09 15:50:57 -0700109 elif int(decl_ast[2]) in of_g.supported_wire_protos:
110 ofinput.wire_versions.add(int(decl_ast[2]))
Rich Laned47e5a22013-05-09 14:21:16 -0700111 else:
Rich Lane4d9f0f62013-05-09 15:50:57 -0700112 raise InputError("Unrecognized wire protocol version %r" % decl_ast[2])
Rich Laned47e5a22013-05-09 14:21:16 -0700113 found_wire_version = True
114
115 if not ofinput.wire_versions:
116 raise InputError("Missing #version metadata")
117
Rich Laned47e5a22013-05-09 14:21:16 -0700118 return ofinput