blob: 76b5fda723d3e8b91c7d37573d47f85d084c9a38 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00004 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00008 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00009 * http://www.apache.org/licenses/LICENSE-2.0
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000010 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +000011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Himani Chawlaac1f5ad2021-02-04 21:21:54 +053017/*
Holger Hildebrandtfa074992020-03-27 15:42:06 +000018 * NOTE: This file was generated, manual edits will be overwritten!
19 *
20 * Generated by 'goCodeGenerator.py':
21 * https://github.com/cboling/OMCI-parser/README.md
22 */
23
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// MacBridgeConfigurationDataClassID is the 16-bit ID for the OMCI
29// Managed entity MAC bridge configuration data
mpagenko836a1fd2021-11-01 16:12:42 +000030const MacBridgeConfigurationDataClassID = ClassID(46) // 0x002e
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var macbridgeconfigurationdataBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// MacBridgeConfigurationData (Class ID: #46 / 0x002e)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// This ME organizes status data associated with a MAC bridge. The ONU automatically creates or
36// deletes an instance of this ME upon the creation or deletion of a MAC bridge service profile.
37//
38// Relationships
39// This ME is associated with one instance of a MAC bridge service profile.
40//
41// Attributes
42// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000043// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
44// implicitly linked to an instance of the MAC bridge service profile. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000045//
46// Bridge Mac Address
mpagenko836a1fd2021-11-01 16:12:42 +000047// This attribute indicates the MAC address used by the bridge. The ONU sets this attribute to a
48// value based on criteria beyond the scope of this Recommendation, e.g., factory settings. (R)
49// (mandatory) (6-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000050//
51// Bridge Priority
mpagenko836a1fd2021-11-01 16:12:42 +000052// This attribute reports the priority of the bridge. The ONU copies this attribute from the
53// priority attribute of the associated MAC bridge service profile. The value of this attribute
54// changes with updates to the MAC bridge service profile priority attribute. (R) (mandatory)
55// (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000056//
57// Designated Root
mpagenko836a1fd2021-11-01 16:12:42 +000058// This attribute identifies the bridge at the root of the spanning tree. It comprises bridge
59// priority (2-bytes) and MAC address (6-bytes). (R) (mandatory) (8-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000060//
61// Root Path Cost
mpagenko836a1fd2021-11-01 16:12:42 +000062// This attribute reports the cost of the best path to the root as seen from this bridge. Upon ME
63// instantiation, the ONU sets this attribute to 0. (R) (mandatory) (4-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000064//
65// Bridge Port Count
mpagenko836a1fd2021-11-01 16:12:42 +000066// This attribute records the number of ports linked to this bridge. (R) (mandatory) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000067//
68// Root Port Num
mpagenko836a1fd2021-11-01 16:12:42 +000069// This attribute contains the port number that has the lowest cost from the bridge to the root
70// bridge. The value 0 means that this bridge is itself the root. Upon ME instantiation, the ONU
71// sets this attribute to 0. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000072//
73// Hello Time
74// NOTE - [IEEE 802.1D] specifies the compatibility range for hello time to be 1..2-s.
75//
mpagenko836a1fd2021-11-01 16:12:42 +000076// This attribute is the hello time received from the designated root, the interval (in 256ths of a
77// second) between HELLO packets. Its range is 0x0100 to 0x0A00 (1..10-s). (R) (optional) (2-bytes)
78//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000079// Forward Delay
mpagenko836a1fd2021-11-01 16:12:42 +000080// This attribute is the forwarding delay time received from the designated root (in 256ths of a
81// second). Its range is 0x0400 to 0x1E00 (4..30-s) in accordance with [IEEE 802.1D]. (R)
82// (optional) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000083//
84type MacBridgeConfigurationData struct {
85 ManagedEntityDefinition
86 Attributes AttributeValueMap
87}
88
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000089// Attribute name constants
90
91const MacBridgeConfigurationData_BridgeMacAddress = "BridgeMacAddress"
92const MacBridgeConfigurationData_BridgePriority = "BridgePriority"
93const MacBridgeConfigurationData_DesignatedRoot = "DesignatedRoot"
94const MacBridgeConfigurationData_RootPathCost = "RootPathCost"
95const MacBridgeConfigurationData_BridgePortCount = "BridgePortCount"
96const MacBridgeConfigurationData_RootPortNum = "RootPortNum"
97const MacBridgeConfigurationData_HelloTime = "HelloTime"
98const MacBridgeConfigurationData_ForwardDelay = "ForwardDelay"
99
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000100func init() {
101 macbridgeconfigurationdataBME = &ManagedEntityDefinition{
102 Name: "MacBridgeConfigurationData",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000103 ClassID: MacBridgeConfigurationDataClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000104 MessageTypes: mapset.NewSetWith(
105 Get,
106 ),
107 AllowedAttributeMask: 0xff00,
108 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000109 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
110 1: MultiByteField(MacBridgeConfigurationData_BridgeMacAddress, OctetsAttributeType, 0x8000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read), false, false, false, 1),
111 2: Uint16Field(MacBridgeConfigurationData_BridgePriority, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
112 3: MultiByteField(MacBridgeConfigurationData_DesignatedRoot, OctetsAttributeType, 0x2000, 8, toOctets("AAAAAAAAAAA="), mapset.NewSetWith(Read), false, false, false, 3),
113 4: Uint32Field(MacBridgeConfigurationData_RootPathCost, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
114 5: ByteField(MacBridgeConfigurationData_BridgePortCount, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
115 6: Uint16Field(MacBridgeConfigurationData_RootPortNum, UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
116 7: Uint16Field(MacBridgeConfigurationData_HelloTime, UnsignedIntegerAttributeType, 0x0200, 256, mapset.NewSetWith(Read), false, true, false, 7),
117 8: Uint16Field(MacBridgeConfigurationData_ForwardDelay, UnsignedIntegerAttributeType, 0x0100, 1024, mapset.NewSetWith(Read), false, true, false, 8),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000118 },
119 Access: CreatedByOnu,
120 Support: UnknownSupport,
121 }
122}
123
124// NewMacBridgeConfigurationData (class ID 46) creates the basic
125// Managed Entity definition that is used to validate an ME of this type that
126// is received from or transmitted to the OMCC.
127func NewMacBridgeConfigurationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
128 return NewManagedEntity(*macbridgeconfigurationdataBME, params...)
129}