blob: 76b5fda723d3e8b91c7d37573d47f85d084c9a38 [file] [log] [blame]
/*
* Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
* Copyright 2020-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 License for the specific language governing permissions and
* limitations under the License.
*/
/*
* NOTE: This file was generated, manual edits will be overwritten!
*
* Generated by 'goCodeGenerator.py':
* https://github.com/cboling/OMCI-parser/README.md
*/
package generated
import "github.com/deckarep/golang-set"
// MacBridgeConfigurationDataClassID is the 16-bit ID for the OMCI
// Managed entity MAC bridge configuration data
const MacBridgeConfigurationDataClassID = ClassID(46) // 0x002e
var macbridgeconfigurationdataBME *ManagedEntityDefinition
// MacBridgeConfigurationData (Class ID: #46 / 0x002e)
// This ME organizes status data associated with a MAC bridge. The ONU automatically creates or
// deletes an instance of this ME upon the creation or deletion of a MAC bridge service profile.
//
// Relationships
// This ME is associated with one instance of a MAC bridge service profile.
//
// Attributes
// Managed Entity Id
// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
// implicitly linked to an instance of the MAC bridge service profile. (R) (mandatory) (2-bytes)
//
// Bridge Mac Address
// This attribute indicates the MAC address used by the bridge. The ONU sets this attribute to a
// value based on criteria beyond the scope of this Recommendation, e.g., factory settings. (R)
// (mandatory) (6-bytes)
//
// Bridge Priority
// This attribute reports the priority of the bridge. The ONU copies this attribute from the
// priority attribute of the associated MAC bridge service profile. The value of this attribute
// changes with updates to the MAC bridge service profile priority attribute. (R) (mandatory)
// (2-bytes)
//
// Designated Root
// This attribute identifies the bridge at the root of the spanning tree. It comprises bridge
// priority (2-bytes) and MAC address (6-bytes). (R) (mandatory) (8-bytes)
//
// Root Path Cost
// This attribute reports the cost of the best path to the root as seen from this bridge. Upon ME
// instantiation, the ONU sets this attribute to 0. (R) (mandatory) (4-bytes)
//
// Bridge Port Count
// This attribute records the number of ports linked to this bridge. (R) (mandatory) (1-byte)
//
// Root Port Num
// This attribute contains the port number that has the lowest cost from the bridge to the root
// bridge. The value 0 means that this bridge is itself the root. Upon ME instantiation, the ONU
// sets this attribute to 0. (R) (mandatory) (2-bytes)
//
// Hello Time
// NOTE - [IEEE 802.1D] specifies the compatibility range for hello time to be 1..2-s.
//
// This attribute is the hello time received from the designated root, the interval (in 256ths of a
// second) between HELLO packets. Its range is 0x0100 to 0x0A00 (1..10-s). (R) (optional) (2-bytes)
//
// Forward Delay
// This attribute is the forwarding delay time received from the designated root (in 256ths of a
// second). Its range is 0x0400 to 0x1E00 (4..30-s) in accordance with [IEEE 802.1D]. (R)
// (optional) (2-bytes)
//
type MacBridgeConfigurationData struct {
ManagedEntityDefinition
Attributes AttributeValueMap
}
// Attribute name constants
const MacBridgeConfigurationData_BridgeMacAddress = "BridgeMacAddress"
const MacBridgeConfigurationData_BridgePriority = "BridgePriority"
const MacBridgeConfigurationData_DesignatedRoot = "DesignatedRoot"
const MacBridgeConfigurationData_RootPathCost = "RootPathCost"
const MacBridgeConfigurationData_BridgePortCount = "BridgePortCount"
const MacBridgeConfigurationData_RootPortNum = "RootPortNum"
const MacBridgeConfigurationData_HelloTime = "HelloTime"
const MacBridgeConfigurationData_ForwardDelay = "ForwardDelay"
func init() {
macbridgeconfigurationdataBME = &ManagedEntityDefinition{
Name: "MacBridgeConfigurationData",
ClassID: MacBridgeConfigurationDataClassID,
MessageTypes: mapset.NewSetWith(
Get,
),
AllowedAttributeMask: 0xff00,
AttributeDefinitions: AttributeDefinitionMap{
0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
1: MultiByteField(MacBridgeConfigurationData_BridgeMacAddress, OctetsAttributeType, 0x8000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read), false, false, false, 1),
2: Uint16Field(MacBridgeConfigurationData_BridgePriority, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
3: MultiByteField(MacBridgeConfigurationData_DesignatedRoot, OctetsAttributeType, 0x2000, 8, toOctets("AAAAAAAAAAA="), mapset.NewSetWith(Read), false, false, false, 3),
4: Uint32Field(MacBridgeConfigurationData_RootPathCost, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
5: ByteField(MacBridgeConfigurationData_BridgePortCount, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
6: Uint16Field(MacBridgeConfigurationData_RootPortNum, UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
7: Uint16Field(MacBridgeConfigurationData_HelloTime, UnsignedIntegerAttributeType, 0x0200, 256, mapset.NewSetWith(Read), false, true, false, 7),
8: Uint16Field(MacBridgeConfigurationData_ForwardDelay, UnsignedIntegerAttributeType, 0x0100, 1024, mapset.NewSetWith(Read), false, true, false, 8),
},
Access: CreatedByOnu,
Support: UnknownSupport,
}
}
// NewMacBridgeConfigurationData (class ID 46) creates the basic
// Managed Entity definition that is used to validate an ME of this type that
// is received from or transmitted to the OMCC.
func NewMacBridgeConfigurationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
return NewManagedEntity(*macbridgeconfigurationdataBME, params...)
}