blob: 0f35dc6a728648390d8ccb678f2fcc753324a1fb [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
28##
29# @brief Process identifiers for updating of_g.identifiers
30#
31
32import sys
33import of_h_utils
34from generic_utils import *
35import of_g
36
37##
38# The value to use when an identifier is not defined for a version
39UNDEFINED_IDENT_VALUE = 0
40
41def add_identifiers(all_idents, idents_by_group, version, contents):
42 """
43 Update all_idents with identifiers from an openflow.h header file
44 @param all_idents A dict, usually of_g.identifiers
45 @param idents_by_group A dict for mapping LOXI idents to groups,
46 usually of_g.identifiers_by_group
47 @param version The OF wire version
48 @param contents The contents of an openflow.h file
49 """
50
51 # Get the dictionary of enums from the file text
52 enum_dict = of_h_utils.get_enum_dict(version,
53 contents)
54 for name, info in enum_dict.items():
Rich Laneba7feb12013-04-08 14:07:00 -070055 add_identifier(name, info.ofp_name, info.ofp_group, info.value,
56 version, all_idents, idents_by_group)
Rich Lanea06d0c32013-03-25 08:52:03 -070057
Rich Laneba7feb12013-04-08 14:07:00 -070058def add_identifier(name, ofp_name, ofp_group, value, version, all_idents, idents_by_group):
Rich Lanefe735bc2013-04-08 16:58:49 -070059 assert(isinstance(value, int))
Rich Laneba7feb12013-04-08 14:07:00 -070060 if name in all_idents:
61 all_idents[name]["values_by_version"][version] = value
62 if ((all_idents[name]["ofp_name"] != ofp_name or
63 all_idents[name]["ofp_group"] != ofp_group) and
64 ofp_name.find("OFPP_") != 0):
65 log("""
Rich Lanea06d0c32013-03-25 08:52:03 -070066NOTE: Identifier %s has different ofp name or group in version %s
67From ofp name %s, group %s to name %s, group %s.
68This could indicate a name collision in LOXI identifier translation.
69""" % (name, str(version), all_idents[name]["ofp_name"],
Rich Laneba7feb12013-04-08 14:07:00 -070070 all_idents[name]["ofp_group"], ofp_name, ofp_group))
71 # Update stuff assuming newer versions processed later
72 all_idents[name]["ofp_name"] = ofp_name
73 all_idents[name]["ofp_group"] = ofp_group
Rich Lanea06d0c32013-03-25 08:52:03 -070074
Rich Laneba7feb12013-04-08 14:07:00 -070075 else: # New name
76 all_idents[name] = dict(
77 values_by_version = {version:value},
78 common_value = value,
79 ofp_name = ofp_name,
80 ofp_group = ofp_group
81 )
82 if ofp_group not in idents_by_group:
83 idents_by_group[ofp_group] = []
84 if name not in idents_by_group[ofp_group]:
85 idents_by_group[ofp_group].append(name)
Rich Lanea06d0c32013-03-25 08:52:03 -070086
87def all_versions_agree(all_idents, version_list, name):
88 val_list = all_idents[name]["values_by_version"]
89 for version in version_list:
90 if not version in val_list:
91 return False
92 if str(val_list[version]) != str(all_idents[name]["common_value"]):
93 return False
94 return True
95
96def defined_versions_agree(all_idents, version_list, name):
97 val_list = all_idents[name]["values_by_version"]
98 for version in version_list:
99 if version in val_list:
100 if str(val_list[version]) != str(all_idents[name]["common_value"]):
101 return False
102 return True