blob: 5b6a1c6cca48af5dbe02cb81d3ebcda7fbee2261 [file] [log] [blame]
Takahiro Suzuki241c10e2020-12-17 20:17:57 +09001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
4
5 * 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
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * 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 */
17 /*
18 * 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
30const MacBridgeConfigurationDataClassID ClassID = ClassID(46)
31
32var macbridgeconfigurationdataBME *ManagedEntityDefinition
33
34// MacBridgeConfigurationData (class ID #46)
35// 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
43// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
44// identical ID, this ME is implicitly linked to an instance of the MAC bridge service profile. (R)
45// (mandatory) (2-bytes)
46//
47// Bridge Mac Address
48// Bridge MAC address: This attribute indicates the MAC address used by the bridge. The ONU sets
49// this attribute to a value based on criteria beyond the scope of this Recommendation, e.g.,
50// factory settings. (R) (mandatory) (6-bytes)
51//
52// Bridge Priority
53// Bridge priority: This attribute reports the priority of the bridge. The ONU copies this
54// attribute from the priority attribute of the associated MAC bridge service profile. The value of
55// this attribute changes with updates to the MAC bridge service profile priority attribute. (R)
56// (mandatory) (2-bytes)
57//
58// Designated Root
59// Designated root: This attribute identifies the bridge at the root of the spanning tree. It
60// comprises bridge priority (2-bytes) and MAC address (6-bytes). (R) (mandatory) (8-bytes)
61//
62// Root Path Cost
63// Root path cost: This attribute reports the cost of the best path to the root as seen from this
64// bridge. Upon ME instantiation, the ONU sets this attribute to 0. (R) (mandatory) (4-bytes)
65//
66// Bridge Port Count
67// Bridge port count: This attribute records the number of ports linked to this bridge. (R)
68// (mandatory) (1-byte)
69//
70// Root Port Num
71// Root port num: This attribute contains the port number that has the lowest cost from the bridge
72// to the root bridge. The value 0 means that this bridge is itself the root. Upon ME
73// instantiation, the ONU sets this attribute to 0. (R) (mandatory) (2-bytes)
74//
75// Hello Time
76// NOTE - [IEEE 802.1D] specifies the compatibility range for hello time to be 1..2-s.
77//
78// Forward Delay
79// Forward delay: This attribute is the forwarding delay time received from the designated root (in
80// 256ths of a second). Its range is 0x0400 to 0x1E00 (4..30-s) in accordance with [IEEE 802.1D].
81// (R) (optional) (2-bytes)
82//
83type MacBridgeConfigurationData struct {
84 ManagedEntityDefinition
85 Attributes AttributeValueMap
86}
87
88func init() {
89 macbridgeconfigurationdataBME = &ManagedEntityDefinition{
90 Name: "MacBridgeConfigurationData",
91 ClassID: 46,
92 MessageTypes: mapset.NewSetWith(
93 Get,
94 ),
95 AllowedAttributeMask: 0xff00,
96 AttributeDefinitions: AttributeDefinitionMap{
97 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
98 1: MultiByteField("BridgeMacAddress", OctetsAttributeType, 0x8000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read), false, false, false, 1),
99 2: Uint16Field("BridgePriority", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
100 3: MultiByteField("DesignatedRoot", OctetsAttributeType, 0x2000, 8, toOctets("AAAAAAAAAAA="), mapset.NewSetWith(Read), false, false, false, 3),
101 4: Uint32Field("RootPathCost", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
102 5: ByteField("BridgePortCount", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
103 6: Uint16Field("RootPortNum", UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
104 7: Uint16Field("HelloTime", UnsignedIntegerAttributeType, 0x0200, 256, mapset.NewSetWith(Read), false, true, false, 7),
105 8: Uint16Field("ForwardDelay", UnsignedIntegerAttributeType, 0x0100, 1024, mapset.NewSetWith(Read), false, true, false, 8),
106 },
107 Access: CreatedByOnu,
108 Support: UnknownSupport,
109 }
110}
111
112// NewMacBridgeConfigurationData (class ID 46) creates the basic
113// Managed Entity definition that is used to validate an ME of this type that
114// is received from or transmitted to the OMCC.
115func NewMacBridgeConfigurationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
116 return NewManagedEntity(*macbridgeconfigurationdataBME, params...)
117}