blob: a3304c9485310e12d330cf92bd8f63e72ba51145 [file] [log] [blame]
# Copyright 2013, Big Switch Networks, Inc.
#
# LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
# the following special exception:
#
# LOXI Exception
#
# As a special exception to the terms of the EPL, you may distribute libraries
# generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
# that copyright and licensing notices generated by LoxiGen are not altered or removed
# from the LoxiGen Libraries and the notice provided below is (i) included in
# the LoxiGen Libraries, if distributed in source code form and (ii) included in any
# documentation for the LoxiGen Libraries, if distributed in binary form.
#
# Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
#
# You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
# a copy of the EPL at:
#
# http://www.eclipse.org/legal/epl-v10.html
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# EPL for the specific language governing permissions and limitations
# under the EPL.
##
# @brief Process identifiers for updating of_g.identifiers
#
import sys
from generic_utils import *
##
# The value to use when an identifier is not defined for a version
UNDEFINED_IDENT_VALUE = 0
def add_identifier(name, ofp_name, ofp_group, value, version, all_idents, idents_by_group):
assert(isinstance(value, (int,long)))
if name in all_idents:
all_idents[name]["values_by_version"][version] = value
if ((all_idents[name]["ofp_name"] != ofp_name or
all_idents[name]["ofp_group"] != ofp_group) and
ofp_name.find("OFPP_") != 0):
log("""
NOTE: Identifier %s has different ofp name or group in version %s
From ofp name %s, group %s to name %s, group %s.
This could indicate a name collision in LOXI identifier translation.
""" % (name, str(version), all_idents[name]["ofp_name"],
all_idents[name]["ofp_group"], ofp_name, ofp_group))
# Update stuff assuming newer versions processed later
all_idents[name]["ofp_name"] = ofp_name
all_idents[name]["ofp_group"] = ofp_group
else: # New name
all_idents[name] = dict(
values_by_version = {version:value},
common_value = value,
ofp_name = ofp_name,
ofp_group = ofp_group
)
if ofp_group not in idents_by_group:
idents_by_group[ofp_group] = []
if name not in idents_by_group[ofp_group]:
idents_by_group[ofp_group].append(name)
def defined_versions_agree(all_idents, version_list, name):
val_list = all_idents[name]["values_by_version"]
for version in version_list:
if version in val_list:
if str(val_list[version]) != str(all_idents[name]["common_value"]):
return False
return True