blob: eb01e50c3ece0283293aae64cbae319a8e209740 [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// GemPortNetworkCtpPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity GEM port network CTP performance monitoring history data
30const GemPortNetworkCtpPerformanceMonitoringHistoryDataClassID ClassID = ClassID(341)
31
32var gemportnetworkctpperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
34// GemPortNetworkCtpPerformanceMonitoringHistoryData (class ID #341)
35// 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//
38// NOTE 1 - One might expect to find some form of impaired or discarded frame count associated with
39// 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//
44// NOTE 2 - This ME replaces the GEM port performance history data ME and is preferred for new
45// 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
54// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
55// identical ID, this ME is implicitly linked to an instance of the GEM port network CTP. (R,
56// setbycreate) (mandatory) (2-bytes)
57//
58// Interval End Time
59// Interval end time: This attribute identifies the most recently finished 15-min interval. (R)
60// (mandatory) (1-byte)
61//
62// Threshold Data 1_2 Id
63// Threshold data 1/2 ID: This attribute points to an instance of the threshold data 1 ME that
64// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
65// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
66//
67// Transmitted Gem Frames
68// Transmitted GEM frames: This attribute counts GEM frames transmitted on the monitored GEM port.
69// (R) (mandatory) (4-bytes)
70//
71// Received Gem Frames
72// Received GEM frames: This attribute counts GEM frames received correctly on the monitored GEM
73// port. A correctly received GEM frame is one that does not contain uncorrectable errors and has a
74// valid header error check (HEC). (R) (mandatory) (4-bytes)
75//
76// Received Payload Bytes
77// Received payload bytes: This attribute counts user payload bytes received on the monitored GEM
78// port. (R) (mandatory) (8-bytes)
79//
80// Transmitted Payload Bytes
81// Transmitted payload bytes: This attribute counts user payload bytes transmitted on the monitored
82// GEM port. (R) (mandatory) (8-bytes)
83//
84// Encryption Key Errors
85// NOTE 4 - GEM PM counts each non-idle GEM frame, whether it contains an entire user frame or only
86// a fragment of a user frame.
87//
88type GemPortNetworkCtpPerformanceMonitoringHistoryData struct {
89 ManagedEntityDefinition
90 Attributes AttributeValueMap
91}
92
93func init() {
94 gemportnetworkctpperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
95 Name: "GemPortNetworkCtpPerformanceMonitoringHistoryData",
96 ClassID: 341,
97 MessageTypes: mapset.NewSetWith(
98 Create,
99 Delete,
100 Get,
101 Set,
102 ),
103 AllowedAttributeMask: 0xfe00,
104 AttributeDefinitions: AttributeDefinitionMap{
105 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
106 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
107 2: Uint16Field("ThresholdData12Id", PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
108 3: Uint32Field("TransmittedGemFrames", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
109 4: Uint32Field("ReceivedGemFrames", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
110 5: Uint64Field("ReceivedPayloadBytes", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
111 6: Uint64Field("TransmittedPayloadBytes", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
112 7: Uint32Field("EncryptionKeyErrors", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, true, false, 7),
113 },
114 Access: CreatedByOlt,
115 Support: UnknownSupport,
116 }
117}
118
119// NewGemPortNetworkCtpPerformanceMonitoringHistoryData (class ID 341) creates the basic
120// Managed Entity definition that is used to validate an ME of this type that
121// is received from or transmitted to the OMCC.
122func NewGemPortNetworkCtpPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
123 return NewManagedEntity(*gemportnetworkctpperformancemonitoringhistorydataBME, params...)
124}