blob: eb1833f2204301900d594cc67bf16475dd15b92c [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// TcpUdpPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI
29// Managed entity TCP/UDP performance monitoring history data
30const TcpUdpPerformanceMonitoringHistoryDataClassID ClassID = ClassID(342)
31
32var tcpudpperformancemonitoringhistorydataBME *ManagedEntityDefinition
33
34// TcpUdpPerformanceMonitoringHistoryData (class ID #342)
35// This ME collects PM data related to a TCP or UDP port. 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 instance of the TCP/UDP config data ME.
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 TCP/UDP config data ME. (R,
47// setbycreate) (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 data 1/2 ID: This attribute points to an instance of the threshold data 1 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// Socket Failed
59// Socket failed: This attribute is incremented when an attempt to create a socket associated with
60// a port fails. (R) (mandatory) (2-bytes)
61//
62// Listen Failed
63// Listen failed: This attribute is incremented when an attempt by a service to listen for a
64// request on a port fails. (R) (mandatory) (2-bytes)
65//
66// Bind Failed
67// Bind failed: This attribute is incremented when an attempt by a service to bind to a port fails.
68// (R) (mandatory) (2-bytes)
69//
70// Accept Failed
71// Accept failed: This attribute is incremented when an attempt to accept a connection on a port
72// fails. (R) (mandatory) (2-bytes)
73//
74// Select Failed
75// Select failed: This attribute is incremented when an attempt to perform a select on a group of
76// ports fails. (R) (mandatory) (2-bytes)
77//
78type TcpUdpPerformanceMonitoringHistoryData struct {
79 ManagedEntityDefinition
80 Attributes AttributeValueMap
81}
82
83func init() {
84 tcpudpperformancemonitoringhistorydataBME = &ManagedEntityDefinition{
85 Name: "TcpUdpPerformanceMonitoringHistoryData",
86 ClassID: 342,
87 MessageTypes: mapset.NewSetWith(
88 Create,
89 Delete,
90 Get,
91 Set,
92 ),
93 AllowedAttributeMask: 0xfe00,
94 AttributeDefinitions: AttributeDefinitionMap{
95 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
96 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1),
97 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
98 3: Uint16Field("SocketFailed", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3),
99 4: Uint16Field("ListenFailed", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, false, false, 4),
100 5: Uint16Field("BindFailed", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5),
101 6: Uint16Field("AcceptFailed", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6),
102 7: Uint16Field("SelectFailed", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7),
103 },
104 Access: CreatedByOlt,
105 Support: UnknownSupport,
106 Alarms: AlarmMap{
107 1: "Socket failed",
108 2: "Listen failed",
109 3: "Bind failed",
110 4: "Accept failed",
111 5: "Select failed",
112 },
113 }
114}
115
116// NewTcpUdpPerformanceMonitoringHistoryData (class ID 342) creates the basic
117// Managed Entity definition that is used to validate an ME of this type that
118// is received from or transmitted to the OMCC.
119func NewTcpUdpPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) {
120 return NewManagedEntity(*tcpudpperformancemonitoringhistorydataBME, params...)
121}