blob: 8e5a58679aeafee509981fdb8f14d3ea9bea434e [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * 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 Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * 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 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070024package generated
25
26import "github.com/deckarep/golang-set"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028// GemPortNetworkCtpPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity GEM port network CTP performance monitoring history data
Andrea Campanella10426e22021-10-15 17:58:04 +020030const GemPortNetworkCtpPerformanceMonitoringHistoryDataClassID = ClassID(341) // 0x0155
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var gemportnetworkctpperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// GemPortNetworkCtpPerformanceMonitoringHistoryData (Class ID: #341 / 0x0155)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070035// This ME collects GEM frame PM data associated with a GEM port network CTP. Instances of this ME
36// are created and deleted by the OLT.
37//
Matteo Scandolof9d43412021-01-12 11:11:34 -080038// NOTE 1 - One might expect to find some form of impaired or discarded frame count associated with
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070039// a GEM port. However, the only impairment that might be detected at the GEM frame level would be
40// a corrupted GEM frame header. In this case, no part of the header could be considered reliable
41// including the port ID. For this reason, there is no impaired or discarded frame count in this
42// ME.
43//
Matteo Scandolof9d43412021-01-12 11:11:34 -080044// NOTE 2 - This ME replaces the GEM port performance history data ME and is preferred for new
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070045// implementations.
46//
47// For a complete discussion of generic PM architecture, refer to clause I.4.
48//
49// Relationships
50// An instance of this ME is associated with an instance of the GEM port network CTP ME.
51//
52// Attributes
53// Managed Entity Id
Andrea Campanella10426e22021-10-15 17:58:04 +020054// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
55// implicitly linked to an instance of the GEM port network CTP. (R, setbycreate) (mandatory)
56// (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070057//
58// Interval End Time
Andrea Campanella10426e22021-10-15 17:58:04 +020059// This attribute identifies the most recently finished 15-min interval. (R) (mandatory) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070060//
61// Threshold Data 1_2 Id
62// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 ME that
63// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
Matteo Scandolof9d43412021-01-12 11:11:34 -080064// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070065//
66// Transmitted Gem Frames
Andrea Campanella10426e22021-10-15 17:58:04 +020067// This attribute counts GEM frames transmitted on the monitored GEM port. (R) (mandatory)
68// (4-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070069//
70// Received Gem Frames
Andrea Campanella10426e22021-10-15 17:58:04 +020071// This attribute counts GEM frames received correctly on the monitored GEM port. A correctly
72// received GEM frame is one that does not contain uncorrectable errors and has a valid header
73// error check (HEC). (R) (mandatory) (4-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070074//
75// Received Payload Bytes
Andrea Campanella10426e22021-10-15 17:58:04 +020076// This attribute counts user payload bytes received on the monitored GEM port. (R) (mandatory)
77// (8-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070078//
79// Transmitted Payload Bytes
Andrea Campanella10426e22021-10-15 17:58:04 +020080// This attribute counts user payload bytes transmitted on the monitored GEM port. (R) (mandatory)
81// (8-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070082//
83// Encryption Key Errors
Andrea Campanella10426e22021-10-15 17:58:04 +020084// NOTE 3 - GEM PM ignores idle GEM frames.
85//
Matteo Scandolof9d43412021-01-12 11:11:34 -080086// NOTE 4 - GEM PM counts each non-idle GEM frame, whether it contains an entire user frame or only
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070087// a fragment of a user frame.
88//
Andrea Campanella10426e22021-10-15 17:58:04 +020089// This attribute is defined in ITU-T G.987 systems only. It counts GEM frames with erroneous
90// encryption key indexes. If the GEM port is not encrypted, this attribute counts any frame with a
91// key index not equal to 0. If the GEM port is encrypted, this attribute counts any frame whose
92// key index specifies a key that is not known to the ONU. (R) (optional) (4-bytes)
93//
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070094type GemPortNetworkCtpPerformanceMonitoringHistoryData struct {
95 ManagedEntityDefinition
96 Attributes AttributeValueMap
97}
98
Elia Battiston9bfe1102022-02-03 10:38:03 +010099// Attribute name constants
100
101const GemPortNetworkCtpPerformanceMonitoringHistoryData_IntervalEndTime = "IntervalEndTime"
102const GemPortNetworkCtpPerformanceMonitoringHistoryData_ThresholdData12Id = "ThresholdData12Id"
103const GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedGemFrames = "TransmittedGemFrames"
104const GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedGemFrames = "ReceivedGemFrames"
105const GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedPayloadBytes = "ReceivedPayloadBytes"
106const GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedPayloadBytes = "TransmittedPayloadBytes"
107const GemPortNetworkCtpPerformanceMonitoringHistoryData_EncryptionKeyErrors = "EncryptionKeyErrors"
108
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700109func init() {
110 gemportnetworkctpperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
111 Name: "GemPortNetworkCtpPerformanceMonitoringHistoryData",
Elia Battiston9bfe1102022-02-03 10:38:03 +0100112 ClassID: GemPortNetworkCtpPerformanceMonitoringHistoryDataClassID,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700113 MessageTypes: mapset.NewSetWith(
114 Create,
115 Delete,
116 Get,
117 Set,
Girish Gowdrae2683102021-03-05 08:24:26 -0800118 GetCurrentData,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700119 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800120 AllowedAttributeMask: 0xfe00,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700121 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +0100122 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
123 1: ByteField(GemPortNetworkCtpPerformanceMonitoringHistoryData_IntervalEndTime, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
124 2: Uint16Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_ThresholdData12Id, PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
125 3: Uint32Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedGemFrames, CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
126 4: Uint32Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedGemFrames, CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
127 5: Uint64Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_ReceivedPayloadBytes, CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
128 6: Uint64Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_TransmittedPayloadBytes, CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
129 7: Uint32Field(GemPortNetworkCtpPerformanceMonitoringHistoryData_EncryptionKeyErrors, CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, true, false, 7),
Matteo Scandolof9d43412021-01-12 11:11:34 -0800130 },
131 Access: CreatedByOlt,
132 Support: UnknownSupport,
133 Alarms: AlarmMap{
134 1: "Encryption key errors",
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700135 },
136 }
137}
138
Matteo Scandolof9d43412021-01-12 11:11:34 -0800139// NewGemPortNetworkCtpPerformanceMonitoringHistoryData (class ID 341) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700140// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -0800141// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700142func NewGemPortNetworkCtpPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -0800143 return NewManagedEntity(*gemportnetworkctpperformancemonitoringhistorydataBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700144}