blob: df4499f5bfcbca3811dc965e50ff84fb82758050 [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Andrea Campanella7167ebb2020-02-24 09:56:38 +01003 * Copyright 2020-present Open Networking Foundation
4
Chip Boling6e27b352020-02-14 09:10:01 -06005 * 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
Andrea Campanella7167ebb2020-02-24 09:56:38 +01008
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Andrea Campanella7167ebb2020-02-24 09:56:38 +010010
Chip Boling6e27b352020-02-14 09:10:01 -060011 * 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 */
Chip Boling34ebcb62021-02-02 12:13:58 -060017/*
Chip Boling6e27b352020-02-14 09:10:01 -060018 * 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// TwdmChannelPloamPerformanceMonitoringHistoryDataPart1ClassID is the 16-bit ID for the OMCI
29// Managed entity TWDM channel PLOAM performance monitoring history data part 1
Chip Boling610117d2021-09-09 11:24:34 -050030const TwdmChannelPloamPerformanceMonitoringHistoryDataPart1ClassID = ClassID(446) // 0x01be
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var twdmchannelploamperformancemonitoringhistorydatapart1BME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// TwdmChannelPloamPerformanceMonitoringHistoryDataPart1 (Class ID: #446 / 0x01be)
Chip Boling6e27b352020-02-14 09:10:01 -060035// This ME collects certain PLOAM-related PM data associated with the slot/circuit pack, hosting
36// one or more ANI-G MEs, for a specific TWDM channel. Instances of this ME are created and deleted
37// by the OLT.
38//
39// The downstream PLOAM message counts of this ME include only the received PLOAM messages
40// pertaining to the given ONU, i.e.:
41//
42// - unicast PLOAM messages, addressed by ONU-ID;
43//
44// - broadcast PLOAM messages, addressed by serial number;
45//
46// - broadcast PLOAM messages, addressed to all ONUs on the PON.
47//
48// This ME includes all PLOAM PM counters characterized as mandatory in clause 14 of [ITU-
49// T-G.989.3].
50//
51// For a complete discussion of generic PM architecture, refer to clause I.4.
52//
53// Relationships
54// An instance of this ME is associated with an instance of TWDM channel ME.
55//
56// Attributes
57// Managed Entity Id
Chip Boling610117d2021-09-09 11:24:34 -050058// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
59// implicitly linked to an instance of the TWDM channel ME. (R, setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060060//
61// Interval End Time
Chip Boling610117d2021-09-09 11:24:34 -050062// This attribute identifies the most recently finished 15-min interval. (R) (mandatory) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -060063//
64// Threshold Data 1_2 Id
65// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 and 2 MEs
66// that contains PM threshold values. (R,-W, setbycreate) (mandatory) (2-bytes)
67//
68// Ploam Mic Errors
Chip Boling610117d2021-09-09 11:24:34 -050069// The counter of received PLOAM messages that remain unparsable due to MIC error. (R) (mandatory)
Chip Boling6e27b352020-02-14 09:10:01 -060070// (4-byte)
71//
Chip Boling610117d2021-09-09 11:24:34 -050072// Downstream Ploam Message Count
73// The counter of received broadcast and unicast PLOAM messages pertaining to the given ONU. (R)
Chip Boling6e27b352020-02-14 09:10:01 -060074// (mandatory) (4-byte)
75//
Chip Boling610117d2021-09-09 11:24:34 -050076// Ranging_Time Message Count
77// The counter of received Ranging_Time PLOAM messages. (R) (mandatory) (4-byte)
78//
79// Protection_Control Message Count
80// The counter of received Protection_Control PLOAM messages. (R) (mandatory) (4-byte)
81//
Chip Boling6e27b352020-02-14 09:10:01 -060082// Adjust_Tx_Wavelength Message Count
Chip Boling610117d2021-09-09 11:24:34 -050083// The counter of received Adjust_Tx_Wavelength PLOAM messages. (R) (mandatory) (4-byte)
Chip Boling6e27b352020-02-14 09:10:01 -060084//
85// Adjust_Tx_Wavelength Adjustment Amplitude
Chip Boling610117d2021-09-09 11:24:34 -050086// An estimator of the absolute value of the transmission wavelength adjustment. (R) (mandatory)
87// (4-byte)
Chip Boling6e27b352020-02-14 09:10:01 -060088//
89type TwdmChannelPloamPerformanceMonitoringHistoryDataPart1 struct {
90 ManagedEntityDefinition
91 Attributes AttributeValueMap
92}
93
94func init() {
95 twdmchannelploamperformancemonitoringhistorydatapart1BME = &ManagedEntityDefinition{
96 Name: "TwdmChannelPloamPerformanceMonitoringHistoryDataPart1",
97 ClassID: 446,
98 MessageTypes: mapset.NewSetWith(
99 Create,
100 Delete,
101 Get,
Chip Boling6e27b352020-02-14 09:10:01 -0600102 Set,
Chip Boling610117d2021-09-09 11:24:34 -0500103 GetCurrentData,
Chip Boling6e27b352020-02-14 09:10:01 -0600104 ),
105 AllowedAttributeMask: 0xff00,
106 AttributeDefinitions: AttributeDefinitionMap{
107 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
108 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
109 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
110 3: Uint32Field("PloamMicErrors", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
111 4: Uint32Field("DownstreamPloamMessageCount", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
112 5: Uint32Field("RangingTimeMessageCount", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
113 6: Uint32Field("ProtectionControlMessageCount", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
114 7: Uint32Field("AdjustTxWavelengthMessageCount", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
115 8: Uint32Field("AdjustTxWavelengthAdjustmentAmplitude", CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8),
116 },
117 Access: CreatedByOlt,
118 Support: UnknownSupport,
Chip Boling34ebcb62021-02-02 12:13:58 -0600119 Alarms: AlarmMap{
120 0: "PLOAM MIC errors",
121 },
Chip Boling6e27b352020-02-14 09:10:01 -0600122 }
123}
124
125// NewTwdmChannelPloamPerformanceMonitoringHistoryDataPart1 (class ID 446) creates the basic
126// Managed Entity definition that is used to validate an ME of this type that
127// is received from or transmitted to the OMCC.
128func NewTwdmChannelPloamPerformanceMonitoringHistoryDataPart1(params ...ParamData) (*ManagedEntity, OmciErrors) {
129 return NewManagedEntity(*twdmchannelploamperformancemonitoringhistorydatapart1BME, params...)
130}