blob: 4bae87c3bc26c7d224ed8f9e93573438d5167f73 [file] [log] [blame]
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
Matteo Scandolof9d43412021-01-12 11:11:34 -08003 * Copyright 2020-present Open Networking Foundation
Elia Battiston9bfe1102022-02-03 10:38:03 +01004 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07005 * 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
Elia Battiston9bfe1102022-02-03 10:38:03 +01008 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -07009 * http://www.apache.org/licenses/LICENSE-2.0
Elia Battiston9bfe1102022-02-03 10:38:03 +010010 *
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070011 * 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 */
Girish Gowdra161d27a2021-05-05 12:01:44 -070017/*
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070018 * 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 */
Matteo Scandolof9d43412021-01-12 11:11:34 -080023
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070024package generated
25
26import "github.com/deckarep/golang-set"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028// Dot1RateLimiterClassID is the 16-bit ID for the OMCI
29// Managed entity Dot1 rate limiter
Andrea Campanella10426e22021-10-15 17:58:04 +020030const Dot1RateLimiterClassID = ClassID(298) // 0x012a
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070031
32var dot1ratelimiterBME *ManagedEntityDefinition
33
Andrea Campanella10426e22021-10-15 17:58:04 +020034// Dot1RateLimiter (Class ID: #298 / 0x012a)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070035// This ME allows rate limits to be defined for various types of upstream traffic that are
36// processed by IEEE 802.1 bridges or related structures.
37//
38// Relationships
39// An instance of this ME may be linked to an instance of a MAC bridge service profile or an IEEE
40// 802.1p mapper.
41//
42// Attributes
43// Managed Entity Id
Andrea Campanella10426e22021-10-15 17:58:04 +020044// This attribute uniquely identifies each instance of this ME. (R, setbycreate) (mandatory)
45// (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070046//
47// Parent Me Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +020048// This attribute points to an instance of a ME. The type of ME is determined by the TP type
49// attribute. (R,-W, setbycreate) (mandatory) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070050//
51// Tp Type
Matteo Scandolof9d43412021-01-12 11:11:34 -080052// (R,-W, setbycreate) (mandatory) (1-byte)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070053//
Andrea Campanella10426e22021-10-15 17:58:04 +020054// This attribute identifies the type of TP associated with this dot1 rate limiter. Valid values
55// are:
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070056//
Andrea Campanella10426e22021-10-15 17:58:04 +020057// 1 MAC bridge service profile
58//
59// 2 IEEE 802.1p mapper service profile
60//
61// Upstream Unicast Flood Rate Pointer
62// This attribute points to an instance of the traffic descriptor that governs the rate of upstream
63// unicast packets whose DA is unknown to the bridge. A null pointer specifies that no
Matteo Scandolof9d43412021-01-12 11:11:34 -080064// administrative limit is to be imposed. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070065//
Andrea Campanella10426e22021-10-15 17:58:04 +020066// Upstream Broadcast Rate Pointer
67// This attribute points to an instance of the traffic descriptor that governs the rate of upstream
68// broadcast packets. A null pointer specifies that no administrative limit is to be imposed.
69// (R,-W, setbycreate) (optional) (2-bytes)
70//
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070071// Upstream Multicast Payload Rate Pointer
Andrea Campanella10426e22021-10-15 17:58:04 +020072// This attribute points to an instance of the traffic descriptor that governs the rate of upstream
73// multicast payload packets. A null pointer specifies that no administrative limit is to be
74// imposed. (R,-W, setbycreate) (optional) (2-bytes)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070075//
76type Dot1RateLimiter struct {
77 ManagedEntityDefinition
78 Attributes AttributeValueMap
79}
80
Elia Battiston9bfe1102022-02-03 10:38:03 +010081// Attribute name constants
82
83const Dot1RateLimiter_ParentMePointer = "ParentMePointer"
84const Dot1RateLimiter_TpType = "TpType"
85const Dot1RateLimiter_UpstreamUnicastFloodRatePointer = "UpstreamUnicastFloodRatePointer"
86const Dot1RateLimiter_UpstreamBroadcastRatePointer = "UpstreamBroadcastRatePointer"
87const Dot1RateLimiter_UpstreamMulticastPayloadRatePointer = "UpstreamMulticastPayloadRatePointer"
88
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070089func init() {
90 dot1ratelimiterBME = &ManagedEntityDefinition{
91 Name: "Dot1RateLimiter",
Elia Battiston9bfe1102022-02-03 10:38:03 +010092 ClassID: Dot1RateLimiterClassID,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -070093 MessageTypes: mapset.NewSetWith(
94 Create,
95 Delete,
96 Get,
97 Set,
98 ),
Matteo Scandolof9d43412021-01-12 11:11:34 -080099 AllowedAttributeMask: 0xf800,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700100 AttributeDefinitions: AttributeDefinitionMap{
Elia Battiston9bfe1102022-02-03 10:38:03 +0100101 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
102 1: Uint16Field(Dot1RateLimiter_ParentMePointer, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
103 2: ByteField(Dot1RateLimiter_TpType, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
104 3: Uint16Field(Dot1RateLimiter_UpstreamUnicastFloodRatePointer, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 3),
105 4: Uint16Field(Dot1RateLimiter_UpstreamBroadcastRatePointer, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 4),
106 5: Uint16Field(Dot1RateLimiter_UpstreamMulticastPayloadRatePointer, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, true, false, 5),
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700107 },
Matteo Scandolof9d43412021-01-12 11:11:34 -0800108 Access: CreatedByOlt,
109 Support: UnknownSupport,
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700110 }
111}
112
Matteo Scandolof9d43412021-01-12 11:11:34 -0800113// NewDot1RateLimiter (class ID 298) creates the basic
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700114// Managed Entity definition that is used to validate an ME of this type that
Matteo Scandolof9d43412021-01-12 11:11:34 -0800115// is received from or transmitted to the OMCC.
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700116func NewDot1RateLimiter(params ...ParamData) (*ManagedEntity, OmciErrors) {
Matteo Scandolof9d43412021-01-12 11:11:34 -0800117 return NewManagedEntity(*dot1ratelimiterBME, params...)
Matteo Scandoloa6a3aee2019-11-26 13:30:14 -0700118}