blob: ea565210550d04cb96e28212d8052a15f328f72e [file] [log] [blame]
Matteo Scandolof9d43412021-01-12 11:11:34 -08001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandolof9d43412021-01-12 11:11:34 -08005 * 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
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandolof9d43412021-01-12 11:11:34 -08009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandolof9d43412021-01-12 11:11:34 -080011 * 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// EthernetPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity Ethernet performance monitoring history data
Andrea Campanella10426e22021-10-15 17:58:04 +020030const EthernetPerformanceMonitoringHistoryDataClassID = ClassID(24) // 0x0018
Matteo Scandolof9d43412021-01-12 11:11:34 -080031
32var ethernetperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// EthernetPerformanceMonitoringHistoryData (Class ID: #24 / 0x0018)
Matteo Scandolof9d43412021-01-12 11:11:34 -080035// This ME collects some of the PM data for a physical Ethernet interface. Instances of this ME are
36// created and deleted by the OLT.
37//
38// For a complete discussion of generic PM architecture, refer to clause I.4.
39//
40// Relationships
41// An instance of this ME is associated with an instance of the PPTP Ethernet UNI.
42//
43// Attributes
44// Managed Entity Id
Andrea Campanella10426e22021-10-15 17:58:04 +020045// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
46// implicitly linked to an instance of the PPTP Ethernet UNI. (R, setbycreate) (mandatory)
47// (2-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080048//
49// Interval End Time
Andrea Campanella10426e22021-10-15 17:58:04 +020050// This attribute identifies the most recently finished 15-min interval. (R) (mandatory) (1-byte)
Matteo Scandolof9d43412021-01-12 11:11:34 -080051//
52// Threshold Data 1_2 Id
53// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 and 2 MEs
54// that contains PM threshold values. (R,-W, setbycreate) (mandatory) (2-bytes)
55//
56// Fcs Errors
Andrea Campanella10426e22021-10-15 17:58:04 +020057// This attribute counts frames received on a particular interface that were an integral number of
58// octets in length but failed the FCS check. The count is incremented when the MAC service returns
59// the frameCheckError status to the link layer control (LLC) or other MAC user. Received frames
60// for which multiple error conditions are obtained are counted according to the error status
61// presented to the LLC. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080062//
63// Excessive Collision Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020064// This attribute counts frames whose transmission failed due to excessive collisions.-(R)
65// (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080066//
67// Late Collision Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020068// This attribute counts the number of times that a collision was detected later than 512 bit times
69// into the transmission of a packet. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080070//
71// Frames Too Long
Andrea Campanella10426e22021-10-15 17:58:04 +020072// This attribute counts received frames that exceeded the maximum permitted frame size. The count
73// is incremented when the MAC service returns the frameTooLong status to the LLC. (R) (mandatory)
74// (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080075//
76// Buffer Overflows On Receive
Andrea Campanella10426e22021-10-15 17:58:04 +020077// This attribute counts the number of times that the receive buffer overflowed. (R) (mandatory)
78// (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080079//
80// Buffer Overflows On Transmit
Andrea Campanella10426e22021-10-15 17:58:04 +020081// This attribute counts the number of times that the transmit buffer overflowed. (R) (mandatory)
82// (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080083//
84// Single Collision Frame Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020085// This attribute counts successfully transmitted frames whose transmission was delayed by exactly
86// one collision. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080087//
88// Multiple Collisions Frame Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020089// This attribute counts successfully transmitted frames whose transmission was delayed by more
90// than one collision. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080091//
92// Sqe Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020093// This attribute counts the number of times that the SQE test error message was generated by the
94// PLS sublayer. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080095//
96// Deferred Transmission Counter
Andrea Campanella10426e22021-10-15 17:58:04 +020097// This attribute counts frames whose first transmission attempt was delayed because the medium was
98// busy. The count does not include frames involved in collisions. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -080099//
100// Internal Mac Transmit Error Counter
Andrea Campanella10426e22021-10-15 17:58:04 +0200101// This attribute counts frames whose transmission failed due to an internal MAC sublayer transmit
102// error. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800103//
104// Carrier Sense Error Counter
Andrea Campanella10426e22021-10-15 17:58:04 +0200105// This attribute counts the number of times that carrier sense was lost or never asserted when
106// attempting to transmit a frame. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800107//
108// Alignment Error Counter
Andrea Campanella10426e22021-10-15 17:58:04 +0200109// This attribute counts received frames that were not an integral number of octets in length and
110// did not pass the FCS check. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800111//
112// Internal Mac Receive Error Counter
Andrea Campanella10426e22021-10-15 17:58:04 +0200113// This attribute counts frames whose reception failed due to an internal MAC sublayer receive
114// error. (R) (mandatory) (4-bytes)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800115//
116type EthernetPerformanceMonitoringHistoryData struct {
117 ManagedEntityDefinition
118 Attributes AttributeValueMap
119}
120
Elia Battiston9bfe1102022-02-03 10:38:03 +0100121// Attribute name constants
122
123const EthernetPerformanceMonitoringHistoryData_IntervalEndTime = "IntervalEndTime"
124const EthernetPerformanceMonitoringHistoryData_ThresholdData12Id = "ThresholdData12Id"
125const EthernetPerformanceMonitoringHistoryData_FcsErrors = "FcsErrors"
126const EthernetPerformanceMonitoringHistoryData_ExcessiveCollisionCounter = "ExcessiveCollisionCounter"
127const EthernetPerformanceMonitoringHistoryData_LateCollisionCounter = "LateCollisionCounter"
128const EthernetPerformanceMonitoringHistoryData_FramesTooLong = "FramesTooLong"
129const EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnReceive = "BufferOverflowsOnReceive"
130const EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnTransmit = "BufferOverflowsOnTransmit"
131const EthernetPerformanceMonitoringHistoryData_SingleCollisionFrameCounter = "SingleCollisionFrameCounter"
132const EthernetPerformanceMonitoringHistoryData_MultipleCollisionsFrameCounter = "MultipleCollisionsFrameCounter"
133const EthernetPerformanceMonitoringHistoryData_SqeCounter = "SqeCounter"
134const EthernetPerformanceMonitoringHistoryData_DeferredTransmissionCounter = "DeferredTransmissionCounter"
135const EthernetPerformanceMonitoringHistoryData_InternalMacTransmitErrorCounter = "InternalMacTransmitErrorCounter"
136const EthernetPerformanceMonitoringHistoryData_CarrierSenseErrorCounter = "CarrierSenseErrorCounter"
137const EthernetPerformanceMonitoringHistoryData_AlignmentErrorCounter = "AlignmentErrorCounter"
138const EthernetPerformanceMonitoringHistoryData_InternalMacReceiveErrorCounter = "InternalMacReceiveErrorCounter"
139
Matteo Scandolof9d43412021-01-12 11:11:34 -0800140func init() {
141 ethernetperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
142 Name: "EthernetPerformanceMonitoringHistoryData",
Elia Battiston9bfe1102022-02-03 10:38:03 +0100143 ClassID: EthernetPerformanceMonitoringHistoryDataClassID,
Matteo Scandolof9d43412021-01-12 11:11:34 -0800144 MessageTypes: mapset.NewSetWith(
145 Create,
146 Delete,
147 Get,
148 Set,
Girish Gowdrae2683102021-03-05 08:24:26 -0800149 GetCurrentData,
Matteo Scandolof9d43412021-01-12 11:11:34 -0800150 ),
151 AllowedAttributeMask: 0xffff,
152 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +0100153 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
154 1: ByteField(EthernetPerformanceMonitoringHistoryData_IntervalEndTime, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
155 2: Uint16Field(EthernetPerformanceMonitoringHistoryData_ThresholdData12Id, PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
156 3: Uint32Field(EthernetPerformanceMonitoringHistoryData_FcsErrors, CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
157 4: Uint32Field(EthernetPerformanceMonitoringHistoryData_ExcessiveCollisionCounter, CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
158 5: Uint32Field(EthernetPerformanceMonitoringHistoryData_LateCollisionCounter, CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
159 6: Uint32Field(EthernetPerformanceMonitoringHistoryData_FramesTooLong, CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
160 7: Uint32Field(EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnReceive, CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
161 8: Uint32Field(EthernetPerformanceMonitoringHistoryData_BufferOverflowsOnTransmit, CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8),
162 9: Uint32Field(EthernetPerformanceMonitoringHistoryData_SingleCollisionFrameCounter, CounterAttributeType, 0x0080, 0, mapset.NewSetWith(Read), false, false, false, 9),
163 10: Uint32Field(EthernetPerformanceMonitoringHistoryData_MultipleCollisionsFrameCounter, CounterAttributeType, 0x0040, 0, mapset.NewSetWith(Read), false, false, false, 10),
164 11: Uint32Field(EthernetPerformanceMonitoringHistoryData_SqeCounter, CounterAttributeType, 0x0020, 0, mapset.NewSetWith(Read), false, false, false, 11),
165 12: Uint32Field(EthernetPerformanceMonitoringHistoryData_DeferredTransmissionCounter, CounterAttributeType, 0x0010, 0, mapset.NewSetWith(Read), false, false, false, 12),
166 13: Uint32Field(EthernetPerformanceMonitoringHistoryData_InternalMacTransmitErrorCounter, CounterAttributeType, 0x0008, 0, mapset.NewSetWith(Read), false, false, false, 13),
167 14: Uint32Field(EthernetPerformanceMonitoringHistoryData_CarrierSenseErrorCounter, CounterAttributeType, 0x0004, 0, mapset.NewSetWith(Read), false, false, false, 14),
168 15: Uint32Field(EthernetPerformanceMonitoringHistoryData_AlignmentErrorCounter, CounterAttributeType, 0x0002, 0, mapset.NewSetWith(Read), false, false, false, 15),
169 16: Uint32Field(EthernetPerformanceMonitoringHistoryData_InternalMacReceiveErrorCounter, CounterAttributeType, 0x0001, 0, mapset.NewSetWith(Read), false, false, false, 16),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800170 },
171 Access: CreatedByOlt,
172 Support: UnknownSupport,
173 Alarms: AlarmMap{
174 0: "FCS errors",
175 1: "Excessive collision counter",
176 2: "Late collision counter",
177 3: "Frames too long",
178 4: "Buffer overflows on receive",
179 5: "Buffer overflows on transmit",
180 6: "Single collision frame counter",
181 7: "Multiple collisions frame counter",
182 8: "SQE counter",
183 9: "Deferred transmission counter",
184 10: "Internal MAC transmit error counter",
185 11: "Carrier sense error counter",
186 12: "Alignment error counter",
187 13: "Internal MAC receive error counter",
188 },
189 }
190}
191
192// NewEthernetPerformanceMonitoringHistoryData (class ID 24) creates the basic
193// Managed Entity definition that is used to validate an ME of this type that
194// is received from or transmitted to the OMCC.
195func NewEthernetPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
196 return NewManagedEntity(*ethernetperformancemonitoringhistorydataBME, params...)
197}