Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net) |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 3 | * Copyright 2020-present Open Networking Foundation |
| 4 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 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 |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 8 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
Andrea Campanella | 7167ebb | 2020-02-24 09:56:38 +0100 | [diff] [blame] | 10 | |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 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 | */ |
Chip Boling | 34ebcb6 | 2021-02-02 12:13:58 -0600 | [diff] [blame^] | 17 | /* |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 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 | |
| 24 | package generated |
| 25 | |
| 26 | import "github.com/deckarep/golang-set" |
| 27 | |
| 28 | // PwAtmPerformanceMonitoringHistoryDataClassID is the 16-bit ID for the OMCI |
| 29 | // Managed entity PW ATM performance monitoring history data |
| 30 | const PwAtmPerformanceMonitoringHistoryDataClassID ClassID = ClassID(338) |
| 31 | |
| 32 | var pwatmperformancemonitoringhistorydataBME *ManagedEntityDefinition |
| 33 | |
| 34 | // PwAtmPerformanceMonitoringHistoryData (class ID #338) |
| 35 | // This ME collects PM data associated with an ATM pseudowire. 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 PW ATM configuration 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 the instance of the PW ATM configuration data ME. |
| 47 | // (R, 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 | // Downstream Missing Packets Counter |
| 59 | // Downstream missing packets counter: This attribute counts missing packets, as detected via |
| 60 | // control word sequence number gaps. (R) (mandatory) (4-bytes) |
| 61 | // |
| 62 | // Downstream Reordered Packets Counter |
| 63 | // Downstream reordered packets counter: This attribute counts packets detected out of sequence via |
| 64 | // the control word sequence number, but successfully reordered. Some implementations may not |
| 65 | // support this feature. (R) (optional) (4-bytes) |
| 66 | // |
| 67 | // Downstream Misordered Packets Counter |
| 68 | // Downstream misordered packets counter: This attribute counts packets detected out of order via |
| 69 | // the control word sequence numbers. (R) (mandatory) (4-bytes) |
| 70 | // |
| 71 | // Upstream Timeout Packets Counter |
| 72 | // Upstream timeout packets counter: This attribute counts packets transmitted due to timeout |
| 73 | // expiration while attempting to collect cells. (R) (mandatory) (4-bytes) |
| 74 | // |
| 75 | // Upstream Transmitted Cells Counter |
| 76 | // Upstream transmitted cells counter: This attribute counts transmitted cells. (R) (mandatory) |
| 77 | // (4-bytes) |
| 78 | // |
| 79 | // Upstream Dropped Cells Counter |
| 80 | // Upstream dropped cells counter: This attribute counts dropped cells. (R) (mandatory) (4-bytes) |
| 81 | // |
| 82 | // Upstream Received Cells Counter |
| 83 | // Upstream received cells counter: This attribute counts received cells. (R) (mandatory) (4-bytes) |
| 84 | // |
| 85 | type PwAtmPerformanceMonitoringHistoryData struct { |
| 86 | ManagedEntityDefinition |
| 87 | Attributes AttributeValueMap |
| 88 | } |
| 89 | |
| 90 | func init() { |
| 91 | pwatmperformancemonitoringhistorydataBME = &ManagedEntityDefinition{ |
| 92 | Name: "PwAtmPerformanceMonitoringHistoryData", |
| 93 | ClassID: 338, |
| 94 | MessageTypes: mapset.NewSetWith( |
| 95 | Create, |
| 96 | Delete, |
| 97 | Get, |
| 98 | Set, |
| 99 | ), |
| 100 | AllowedAttributeMask: 0xff80, |
| 101 | AttributeDefinitions: AttributeDefinitionMap{ |
| 102 | 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0), |
| 103 | 1: ByteField("IntervalEndTime", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read), false, false, false, 1), |
| 104 | 2: Uint16Field("ThresholdData12Id", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2), |
| 105 | 3: Uint32Field("DownstreamMissingPacketsCounter", CounterAttributeType, 0x2000, 0, mapset.NewSetWith(Read), false, false, false, 3), |
| 106 | 4: Uint32Field("DownstreamReorderedPacketsCounter", CounterAttributeType, 0x1000, 0, mapset.NewSetWith(Read), false, true, false, 4), |
| 107 | 5: Uint32Field("DownstreamMisorderedPacketsCounter", CounterAttributeType, 0x0800, 0, mapset.NewSetWith(Read), false, false, false, 5), |
| 108 | 6: Uint32Field("UpstreamTimeoutPacketsCounter", CounterAttributeType, 0x0400, 0, mapset.NewSetWith(Read), false, false, false, 6), |
| 109 | 7: Uint32Field("UpstreamTransmittedCellsCounter", CounterAttributeType, 0x0200, 0, mapset.NewSetWith(Read), false, false, false, 7), |
| 110 | 8: Uint32Field("UpstreamDroppedCellsCounter", CounterAttributeType, 0x0100, 0, mapset.NewSetWith(Read), false, false, false, 8), |
| 111 | 9: Uint32Field("UpstreamReceivedCellsCounter", CounterAttributeType, 0x0080, 0, mapset.NewSetWith(Read), false, false, false, 9), |
| 112 | }, |
| 113 | Access: CreatedByOlt, |
| 114 | Support: UnknownSupport, |
Chip Boling | 34ebcb6 | 2021-02-02 12:13:58 -0600 | [diff] [blame^] | 115 | Alarms: AlarmMap{ |
| 116 | 1: "Downstream missing packets", |
| 117 | 2: "Downstream reordered packets", |
| 118 | 3: "Downstream timeout packets", |
| 119 | 4: "Upstream dropped cells", |
| 120 | }, |
Chip Boling | 6e27b35 | 2020-02-14 09:10:01 -0600 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | |
| 124 | // NewPwAtmPerformanceMonitoringHistoryData (class ID 338) creates the basic |
| 125 | // Managed Entity definition that is used to validate an ME of this type that |
| 126 | // is received from or transmitted to the OMCC. |
| 127 | func NewPwAtmPerformanceMonitoringHistoryData(params ...ParamData) (*ManagedEntity, OmciErrors) { |
| 128 | return NewManagedEntity(*pwatmperformancemonitoringhistorydataBME, params...) |
| 129 | } |