blob: 71292a6795b60ba1a2e04e42f3f566c84942e2f1 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00004 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00005 * 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
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +00008 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +00009 * http://www.apache.org/licenses/LICENSE-2.0
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000010 *
Holger Hildebrandtfa074992020-03-27 15:42:06 +000011 * 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. Bainbridged80007b2021-04-12 12:22:29 +000017/*
Holger Hildebrandtfa074992020-03-27 15:42:06 +000018 * 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// TrafficSchedulerClassID is the 16-bit ID for the OMCI
29// Managed entity Traffic scheduler
mpagenko836a1fd2021-11-01 16:12:42 +000030const TrafficSchedulerClassID = ClassID(278) // 0x0116
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var trafficschedulerBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// TrafficScheduler (Class ID: #278 / 0x0116)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// NOTE 1 - In [ITU-T G.984.4], this ME is called a traffic scheduler-G.
36//
37// An instance of this ME represents a logical object that can control upstream GEM packets. A
38// traffic scheduler can accommodate GEM packets after a priority queue or other traffic scheduler
39// and transfer them towards the next traffic scheduler or T-CONT. Because T-CONTs and traffic
40// schedulers are created autonomously by the ONU, the ONU vendor predetermines the most complex
41// traffic handling model it is prepared to support; the OLT may use less than the ONU's full
42// capabilities, but cannot ask for more. See Appendix II for more details.
43//
44// After the ONU creates instances of the T-CONT ME, it then autonomously creates instances of the
45// traffic scheduler ME.
46//
47// Relationships
48// The traffic scheduler ME may be related to a T-CONT or other traffic schedulers through pointer
49// attributes.
50//
51// Attributes
52// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000053// This attribute uniquely identifies each instance of this ME. This 2-byte number indicates the
54// physical capability that realizes the traffic scheduler. The first byte is the slot ID of the
55// circuit pack with which this traffic scheduler is associated. For a traffic scheduler that is
56// not associated with a circuit pack, the first byte is 0xFF. The second byte is the traffic
57// scheduler id, assigned by the ONU itself. Traffic schedulers are numbered in ascending order
58// with the range 0..0xFF in each circuit pack or in the ONU core. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000059//
60// T_Cont Pointer
mpagenko836a1fd2021-11-01 16:12:42 +000061// T-CONT pointer: This attribute points to the T-CONT ME instance associated with this traffic
62// scheduler. This pointer is used when this traffic scheduler is connected to the T-CONT directly;
63// It is null (0) otherwise. (R, W) (mandatory) (2 bytes)
64//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000065// NOTE 2 - This attribute is read-only unless otherwise specified by the QoS configuration
66// flexibility attribute of the ONU2-G ME. If flexible configuration is not supported, the ONU
67// should reject an attempt to set the TCONT pointer attribute with a parameter error result-reason
68// code.
69//
70// Traffic Scheduler Pointer
mpagenko836a1fd2021-11-01 16:12:42 +000071// This attribute points to another traffic scheduler ME instance that may serve this traffic
72// scheduler. This pointer is used when this traffic scheduler is connected to another traffic
73// scheduler; it is null (0) otherwise. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000074//
75// Policy
mpagenko836a1fd2021-11-01 16:12:42 +000076// This attribute represents scheduling policy. Valid values include:
77//
78// 0 Null
79//
80// 1 Strict priority
81//
82// 2 WRR (weighted round robin)
83//
84// The traffic scheduler derives priority or weight values for its tributary traffic schedulers or
85// priority queues from the tributary MEs themselves.
86//
87// (R, W) (mandatory) (1 byte)
88//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000089// NOTE 3 - This attribute is read-only unless otherwise specified by the QoS configuration
90// flexibility attribute of the ONU2-G ME. If flexible configuration is not supported, the ONU
91// should reject an attempt to set the policy attribute with a parameter error result-reason code.
92//
93// Priority_Weight
mpagenko836a1fd2021-11-01 16:12:42 +000094// Priority/weight: This attribute represents the priority for strict priority scheduling or the
95// weight for WRR scheduling. This value is used by the next upstream ME, as indicated by the
96// T-CONT pointer attribute or traffic scheduler pointer attribute.
97//
98// If the indicated pointer has policy-=-strict priority, this value is interpreted as a priority
99// (0 is the highest priority, 255 the lowest).
100//
101// If the indicated pointer has policy-=-WRR, this value is interpreted as a weight. Higher values
102// receive more bandwidth.
103//
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000104// Upon ME instantiation, the ONU sets this attribute to 0. (R,-W) (mandatory) (1-byte)
105//
106type TrafficScheduler struct {
107 ManagedEntityDefinition
108 Attributes AttributeValueMap
109}
110
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000111// Attribute name constants
112
113const TrafficScheduler_TContPointer = "TContPointer"
114const TrafficScheduler_TrafficSchedulerPointer = "TrafficSchedulerPointer"
115const TrafficScheduler_Policy = "Policy"
116const TrafficScheduler_PriorityWeight = "PriorityWeight"
117
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000118func init() {
119 trafficschedulerBME = &ManagedEntityDefinition{
120 Name: "TrafficScheduler",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000121 ClassID: TrafficSchedulerClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000122 MessageTypes: mapset.NewSetWith(
123 Get,
124 Set,
125 ),
126 AllowedAttributeMask: 0xf000,
127 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000128 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
129 1: Uint16Field(TrafficScheduler_TContPointer, PointerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, Write), false, false, false, 1),
130 2: Uint16Field(TrafficScheduler_TrafficSchedulerPointer, PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
131 3: ByteField(TrafficScheduler_Policy, EnumerationAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
132 4: ByteField(TrafficScheduler_PriorityWeight, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, Write), false, false, false, 4),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000133 },
134 Access: CreatedByOnu,
135 Support: UnknownSupport,
136 }
137}
138
139// NewTrafficScheduler (class ID 278) creates the basic
140// Managed Entity definition that is used to validate an ME of this type that
141// is received from or transmitted to the OMCC.
142func NewTrafficScheduler(params ...ParamData) (*ManagedEntity, OmciErrors) {
143 return NewManagedEntity(*trafficschedulerBME, params...)
144}