blob: 2ee8a6bfc0bc24b5e69fc3ee787bc30562bbac90 [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
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// TcAdaptorPerformanceMonitoringHistoryDataXdslClassID is the 16-bit ID for the OMCI
29// Managed entity TC adaptor performance monitoring history data xDSL
30const TcAdaptorPerformanceMonitoringHistoryDataXdslClassID ClassID = ClassID(116)
31
32var tcadaptorperformancemonitoringhistorydataxdslBME *ManagedEntityDefinition
33
34// TcAdaptorPerformanceMonitoringHistoryDataXdsl (class ID #116)
35// This ME collects PM data of an xTUC to xTUR ATM data path. Instances of this ME are created and
36// 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 xDSL UNI.
42//
43// Attributes
44// Managed Entity Id
45// Managed entity ID: This attribute uniquely identifies each instance of this ME. Through an
46// identical ID, this ME is implicitly linked to an instance of the PPTP xDSL UNI part 1. (R)
47// (mandatory) (2-bytes)
48//
49// Interval End Time
50// Interval end time: This attribute identifies the most recently finished 15-min interval. (R)
51// (mandatory) (1-byte)
52//
53// Threshold Data 1_2 Id
54// Threshold data1/2 ID: This attribute points to an instance of the threshold data1 ME that
55// contains PM threshold values. Since no threshold value attribute number exceeds 7, a threshold
56// data 2 ME is optional. (R,-W, setbycreate) (mandatory) (2-bytes)
57//
58// Near_End Hec Violation Count
59// Near-end HEC violation count: This attribute counts near-end HEC anomalies in the ATM data path.
60// (R) (mandatory) (2-bytes)
61//
62// Near_End Delineated Total Cell Count Cd P
63// Near-end delineated total cell count (CDP): This attribute counts the total number of cells
64// passed through the cell delineation and HEC function process operating on the ATM data path
65// while in the SYNC state. (R) (mandatory) (4-bytes)
66//
67// Near_End User Total Cell Count Cu_P
68// Near-end user total cell count(CU-P): This attribute counts the total number of cells in the ATM
69// data path delivered at the V-C interface. (R) (mandatory) (4-bytes)
70//
71// Near_End Idle Cell Bit Error Count
72// Near-end idle cell bit error count: This attribute counts cells with bit errors in the ATM data
73// path idle payload received at the near end. (R) (mandatory) (2-bytes)
74//
75// Far_End Hec Violation Count
76// Far-end HEC violation count: This attribute counts far-end HEC anomalies in the ATM data path.
77// (R) (mandatory) (2-bytes)
78//
79// Far_End Delineated Total Cell Count Cd_Pfe
80// Far-end delineated total cell count (CD-PFE): This attribute counts the total number of cells
81// passed through the cell delineation process and HEC function operating on the ATM data path
82// while in the SYNC state. (R) (mandatory) (4-bytes)
83//
84// Far_End User Total Cell Count Cu_Pfe
85// Far-end user total cell count (CU-PFE): This attribute counts the total number of cells in the
86// ATM data path delivered at the T-R interface. (R) (mandatory) (4-bytes)
87//
88// Far_End Idle Cell Bit Error Count
89// Far-end idle cell bit error count: This attribute counts cells with bit errors in the ATM data
90// path idle payload received at the far end. (R) (mandatory) (2-bytes)
91//
92type TcAdaptorPerformanceMonitoringHistoryDataXdsl struct {
93 ManagedEntityDefinition
94 Attributes AttributeValueMap
95}
96
97func init() {
98 tcadaptorperformancemonitoringhistorydataxdslBME = &ManagedEntityDefinition{
99 Name: "TcAdaptorPerformanceMonitoringHistoryDataXdsl",
100 ClassID: 116,
101 MessageTypes: mapset.NewSetWith(
102 Create,
103 Delete,
104 Get,
105 Set,
106 ),
107 AllowedAttributeMask: 0xffc0,
108 AttributeDefinitions: AttributeDefinitionMap{
109 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
110 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
111 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
112 3: Uint16Field("NearEndHecViolationCount", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
113 4: Uint32Field("NearEndDelineatedTotalCellCountCdP", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
114 5: Uint32Field("NearEndUserTotalCellCountCuP", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
115 6: Uint16Field("NearEndIdleCellBitErrorCount", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
116 7: Uint16Field("FarEndHecViolationCount", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
117 8: Uint32Field("FarEndDelineatedTotalCellCountCdPfe", CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8),
118 9: Uint32Field("FarEndUserTotalCellCountCuPfe", CounterAttributeType, 0x0080, 0, mapset.NewSetWith(Read), false, false, false, 9),
119 10: Uint16Field("FarEndIdleCellBitErrorCount", CounterAttributeType, 0x0040, 0, mapset.NewSetWith(Read), false, false, false, 10),
120 },
121 Access: CreatedByOlt,
122 Support: UnknownSupport,
123 Alarms: AlarmMap{
124 0: "Near-end HEC violation",
125 1: "Near-end idle cell bit error count",
126 2: "Far-end HEC violation count",
127 3: "Far-end idle cell bit error count",
128 4: "Near-end delineated total cell count (CD-P)",
129 5: "Near-end user total cell count (CU-P)",
130 6: "Far-end delineated total cell count (CD-PFE)",
131 7: "Far-end user total cell count (CU-PFE)",
132 },
133 }
134}
135
136// NewTcAdaptorPerformanceMonitoringHistoryDataXdsl (class ID 116) creates the basic
137// Managed Entity definition that is used to validate an ME of this type that
138// is received from or transmitted to the OMCC.
139func NewTcAdaptorPerformanceMonitoringHistoryDataXdsl(params ...ParamData) (*ManagedEntity, OmciErrors) {
140 return NewManagedEntity(*tcadaptorperformancemonitoringhistorydataxdslBME, params...)
141}