blob: 20aa1fc92aaed77cc0f5dee1b3aea5f0a743fd7c [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Andrea Campanella7167ebb2020-02-24 09:56:38 +01003 * Copyright 2020-present Open Networking Foundation
4
Chip Boling6e27b352020-02-14 09:10:01 -06005 * 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 Campanella7167ebb2020-02-24 09:56:38 +01008
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Andrea Campanella7167ebb2020-02-24 09:56:38 +010010
Chip Boling6e27b352020-02-14 09:10:01 -060011 * 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 */
David K. Bainbridgeadf422d2021-04-09 16:06:41 +000017/*
Chip Boling6e27b352020-02-14 09:10:01 -060018 * 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// PseudowireMaintenanceProfileClassID is the 16-bit ID for the OMCI
29// Managed entity Pseudowire maintenance profile
Chip Boling610117d2021-09-09 11:24:34 -050030const PseudowireMaintenanceProfileClassID = ClassID(284) // 0x011c
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var pseudowiremaintenanceprofileBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// PseudowireMaintenanceProfile (Class ID: #284 / 0x011c)
Chip Boling6e27b352020-02-14 09:10:01 -060035// The pseudowire maintenance profile permits the configuration of pseudowire service exception
36// handling. It is created and deleted by the OLT.
37//
38// The settings, and indeed existence, of a pseudowire maintenance profile affect the behaviour of
39// the pseudowire PM history data ME only in establishing criteria for counting SESs, but in no
40// other way. The pseudowire maintenance profile primarily affects the alarms declared by the
41// subscribing pseudowire TP.
42//
43// Relationships
44// One or more instances of the pseudowire TP may point to an instance of the pseudowire
45// maintenance profile. If the pseudowire TP does not refer to a pseudowire maintenance profile,
46// the ONU's default exception handling is implied.
47//
48// Attributes
49// Managed Entity Id
Chip Boling610117d2021-09-09 11:24:34 -050050// This attribute uniquely identifies each instance of this ME. The value 0 is reserved. (R,
51// setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060052//
53// Jitter Buffer Maximum Depth
Chip Boling610117d2021-09-09 11:24:34 -050054// This attribute specifies the desired maximum depth of the playout buffer in the PSN to the TDM
55// direction. The value is expressed as a multiple of the 125-vs frame rate. The default value 0
56// selects the ONU's internal policy. (R,-W, setbycreate) (optional) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060057//
58// Jitter Buffer Desired Depth
Chip Boling610117d2021-09-09 11:24:34 -050059// This attribute specifies the desired nominal fill depth of the playout buffer in the PSN to the
60// TDM direction. The value is expressed as a multiple of the 125-vs frame rate. The default value
61// 0 selects the ONU's internal policy. (R,-W, setbycreate) (optional) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060062//
63// Fill Policy
Chip Boling610117d2021-09-09 11:24:34 -050064// This attribute defines the payload bit pattern to be applied towards the TDM service if no
65// payload packet is available to play out. The default value 0 specifies that the ONU apply its
66// internal policy.
67//
68// 0 ONU default, vendor-specific (recommended: AIS for unstructured service, all 1s for structured
69// service)
70//
71// 1 Play out AIS according to the service definition (for example, DS3 AIS)
72//
73// 2 Play out all 1s
74//
75// 3 Play out all 0s
76//
77// 4 Repeat the previous data
78//
79// 5 Play out DS1 idle (Appendix C of [b-ATIS-0600403])
80//
81// 6..15 Reserved for future standardization
82//
83// 16..255 Vendor-specific, not to be standardized
84//
Chip Boling6e27b352020-02-14 09:10:01 -060085// (R,-W, setbycreate) (optional) (1-byte)
86//
Chip Boling610117d2021-09-09 11:24:34 -050087// Four pairs of alarm-related policy attributes, defined in the following, share common behaviour.
88//
89// The alarm declaration policy attribute defines the anomaly rate that causes the corresponding
90// alarm to be declared. It is an integer percentage between 1..100. If this density of anomalies
91// occurs during the alarm onset soak interval, the alarm is declared. The default value 0 selects
92// the ONU's internal policy.
93//
94// The alarm clear policy attribute defines the anomaly rate that causes the corresponding alarm to
95// be cleared. It is an integer percentage between 0..99. If no more than this density of anomalies
96// occurs during the alarm clear soak interval, the alarm is cleared. The default value 255 selects
97// the ONU's internal policy.
98//
Chip Boling6e27b352020-02-14 09:10:01 -060099// Misconnected Packets Declaration Policy
Chip Boling610117d2021-09-09 11:24:34 -0500100// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600101//
102// Misconnected Packets Clear Policy
Chip Boling610117d2021-09-09 11:24:34 -0500103// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600104//
105// Loss Of Packets Declaration Policy
Chip Boling610117d2021-09-09 11:24:34 -0500106// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600107//
108// Loss Of Packets Clear Policy
Chip Boling610117d2021-09-09 11:24:34 -0500109// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600110//
111// Buffer Overrun_Underrun Declaration Policy
112// Buffer overrun/underrun declaration policy: (R,-W, setbycreate) (optional) (1-byte)
113//
114// Buffer Overrun_Underrun Clear Policy
115// Buffer overrun/underrun clear policy: (R,-W, setbycreate) (optional) (1-byte)
116//
117// Malformed Packets Declaration Policy
Chip Boling610117d2021-09-09 11:24:34 -0500118// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600119//
120// Malformed Packets Clear Policy
Chip Boling610117d2021-09-09 11:24:34 -0500121// (R,-W, setbycreate) (optional) (1-byte)
Chip Boling6e27b352020-02-14 09:10:01 -0600122//
123// R_Bit Transmit Set Policy
124// R-bit transmit set policy: This attribute defines the number of consecutive lost packets that
125// causes the transmitted R bit to be set in the TDM to the PSN direction, indicating lost packets
126// to the far end. The default value 0 selects the ONU's internal policy. (R,-W, setbycreate)
127// (optional) (1-byte)
128//
129// R_Bit Transmit Clear Policy
130// R-bit transmit clear policy: This attribute defines the number of consecutive valid packets that
131// causes the transmitted R bit to be cleared in the TDM to the PSN direction, removing the remote
132// failure indication to the far end. The default value 0 selects the ONU's internal policy. (R,-W,
133// setbycreate) (optional) (1-byte)
134//
135// R_Bit Receive Policy
Chip Boling610117d2021-09-09 11:24:34 -0500136// R-bit receive policy: This attribute defines the action towards the N-*-64 TDM interface when
137// remote failure is indicated on packets received from the PSN (either Rbit set or M-=-0b10 while
138// the L bit is cleared).
139//
140// 0 Do nothing (recommended to be the default)
141//
142// 1 Play out service-specific RAI/REI/RDI code
143//
144// 2 Send channel idle signalling and idle channel payload to all DS0s comprising the service
145//
Chip Boling6e27b352020-02-14 09:10:01 -0600146// (R,-W, setbycreate) (optional) (1-byte)
147//
148// L Bit Receive Policy
Chip Boling610117d2021-09-09 11:24:34 -0500149// This attribute defines the action towards the TDM interface when farend TDM failure is indicated
150// on packets received from the PSN (L bit set).
151//
152// 0 Play out service-specific AIS (recommended to be the default)
153//
154// 1 Repeat last received packet
155//
156// 2 Send channel idle signalling and idle channel payload to all DS0s comprising the service
157//
Chip Boling6e27b352020-02-14 09:10:01 -0600158// (R,-W, setbycreate) (optional) (1-byte)
159//
160// Ses Threshold
Chip Boling610117d2021-09-09 11:24:34 -0500161// Number of lost, malformed or otherwise unusable packets expected in the PSN to the TDM direction
162// within a 1-s interval that causes an SES to be counted. Stray packets do not count towards an
163// SES, nor do packets whose L bit is set at the far end. The value 0 specifies that the ONU uses
164// its internal default, which is not necessarily the same as the recommended default value 3. (R,
165// W, set-by-create) (optional) (2 bytes)
Chip Boling6e27b352020-02-14 09:10:01 -0600166//
167type PseudowireMaintenanceProfile struct {
168 ManagedEntityDefinition
169 Attributes AttributeValueMap
170}
171
172func init() {
173 pseudowiremaintenanceprofileBME = &ManagedEntityDefinition{
174 Name: "PseudowireMaintenanceProfile",
175 ClassID: 284,
176 MessageTypes: mapset.NewSetWith(
177 Create,
178 Delete,
179 Get,
180 Set,
181 ),
182 AllowedAttributeMask: 0xffff,
183 AttributeDefinitions: AttributeDefinitionMap{
184 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
185 1: Uint16Field("JitterBufferMaximumDepth", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 1),
186 2: Uint16Field("JitterBufferDesiredDepth", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 2),
187 3: ByteField("FillPolicy", UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 3),
188 4: ByteField("MisconnectedPacketsDeclarationPolicy", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 4),
189 5: ByteField("MisconnectedPacketsClearPolicy", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 5),
190 6: ByteField("LossOfPacketsDeclarationPolicy", UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 6),
191 7: ByteField("LossOfPacketsClearPolicy", UnsignedIntegerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 7),
192 8: ByteField("BufferOverrunUnderrunDeclarationPolicy", UnsignedIntegerAttributeType, 0x0100, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 8),
193 9: ByteField("BufferOverrunUnderrunClearPolicy", UnsignedIntegerAttributeType, 0x0080, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 9),
194 10: ByteField("MalformedPacketsDeclarationPolicy", UnsignedIntegerAttributeType, 0x0040, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 10),
195 11: ByteField("MalformedPacketsClearPolicy", UnsignedIntegerAttributeType, 0x0020, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 11),
196 12: ByteField("RBitTransmitSetPolicy", UnsignedIntegerAttributeType, 0x0010, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 12),
197 13: ByteField("RBitTransmitClearPolicy", UnsignedIntegerAttributeType, 0x0008, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 13),
198 14: ByteField("RBitReceivePolicy", UnsignedIntegerAttributeType, 0x0004, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 14),
199 15: ByteField("LBitReceivePolicy", UnsignedIntegerAttributeType, 0x0002, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 15),
200 16: Uint16Field("SesThreshold", UnsignedIntegerAttributeType, 0x0001, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 16),
201 },
202 Access: CreatedByOlt,
203 Support: UnknownSupport,
204 }
205}
206
207// NewPseudowireMaintenanceProfile (class ID 284) creates the basic
208// Managed Entity definition that is used to validate an ME of this type that
209// is received from or transmitted to the OMCC.
210func NewPseudowireMaintenanceProfile(params ...ParamData) (*ManagedEntity, OmciErrors) {
211 return NewManagedEntity(*pseudowiremaintenanceprofileBME, params...)
212}