blob: 6b86fd25aa3427f55af12b4d15c6d94f1491a55d [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// MacBridgePortDesignationDataClassID is the 16-bit ID for the OMCI
29// Managed entity MAC bridge port designation data
30const MacBridgePortDesignationDataClassID ClassID = ClassID(48)
31
32var macbridgeportdesignationdataBME *ManagedEntityDefinition
33
34// MacBridgePortDesignationData (class ID #48)
35// This ME records data associated with a bridge port. The ONU automatically creates or deletes an
36// instance of this managed entity upon the creation or deletion of a MAC bridge port configuration
37// data ME.
38//
39// Relationships
40// An instance of this managed entity is associated with one MAC bridge port configuration data ME.
41//
42// Attributes
43// Managed Entity Id
44// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
45// identical ID, this ME is implicitly linked to an instance of the MAC bridge port configuration
46// data. (R) (mandatory) (2-bytes)
47//
48// Designated Bridge Root Cost Port
49// Upon ME instantiation, the ONU sets this attribute to 0. (R) (mandatory) (24-bytes)
50//
51// Port State
52// The value (R)stp_off is introduced to denote the port status where the (rapid) spanning tree
53// protocol has been disabled by setting the port spanning tree ind attribute of the MAC bridge
54// port configuration data to false, and the Ethernet link state is up. This value distinguishes
55// whether frame forwarding is under the control of (R)STP.
56//
57type MacBridgePortDesignationData struct {
58 ManagedEntityDefinition
59 Attributes AttributeValueMap
60}
61
62func init() {
63 macbridgeportdesignationdataBME = &ManagedEntityDefinition{
64 Name: "MacBridgePortDesignationData",
65 ClassID: 48,
66 MessageTypes: mapset.NewSetWith(
67 Get,
68 ),
69 AllowedAttributeMask: 0xc000,
70 AttributeDefinitions: AttributeDefinitionMap{
71 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
72 1: MultiByteField("DesignatedBridgeRootCostPort", OctetsAttributeType, 0x8000, 24, toOctets("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), mapset.NewSetWith(Read), false, false, false, 1),
73 2: ByteField("PortState", EnumerationAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
74 },
75 Access: CreatedByOnu,
76 Support: UnknownSupport,
77 }
78}
79
80// NewMacBridgePortDesignationData (class ID 48) creates the basic
81// Managed Entity definition that is used to validate an ME of this type that
82// is received from or transmitted to the OMCC.
83func NewMacBridgePortDesignationData(params ...ParamData) (*ManagedEntity, OmciErrors) {
84 return NewManagedEntity(*macbridgeportdesignationdataBME, params...)
85}