blob: 6be642f5e96d854f3b1d625271a0ea4fe1edab3f [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// TrafficSchedulerClassID is the 16-bit ID for the OMCI
29// Managed entity Traffic scheduler
Chip Boling610117d2021-09-09 11:24:34 -050030const TrafficSchedulerClassID = ClassID(278) // 0x0116
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var trafficschedulerBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// TrafficScheduler (Class ID: #278 / 0x0116)
Chip Boling6e27b352020-02-14 09:10:01 -060035// 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
Chip Boling610117d2021-09-09 11:24:34 -050053// 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)
Chip Boling6e27b352020-02-14 09:10:01 -060059//
60// T_Cont Pointer
Chip Boling610117d2021-09-09 11:24:34 -050061// 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//
Chip Boling6e27b352020-02-14 09:10:01 -060065// 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
Chip Boling610117d2021-09-09 11:24:34 -050071// 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)
Chip Boling6e27b352020-02-14 09:10:01 -060074//
75// Policy
Chip Boling610117d2021-09-09 11:24:34 -050076// 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//
Chip Boling6e27b352020-02-14 09:10:01 -060089// 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
Chip Boling610117d2021-09-09 11:24:34 -050094// 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//
Chip Boling6e27b352020-02-14 09:10:01 -0600104// 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
111func init() {
112 trafficschedulerBME = &ManagedEntityDefinition{
113 Name: "TrafficScheduler",
114 ClassID: 278,
115 MessageTypes: mapset.NewSetWith(
116 Get,
117 Set,
118 ),
119 AllowedAttributeMask: 0xf000,
120 AttributeDefinitions: AttributeDefinitionMap{
121 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
122 1: Uint16Field("TContPointer", PointerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, Write), false, false, false, 1),
123 2: Uint16Field("TrafficSchedulerPointer", PointerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), false, false, false, 2),
124 3: ByteField("Policy", EnumerationAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
125 4: ByteField("PriorityWeight", UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, Write), false, false, false, 4),
126 },
127 Access: CreatedByOnu,
128 Support: UnknownSupport,
129 }
130}
131
132// NewTrafficScheduler (class ID 278) creates the basic
133// Managed Entity definition that is used to validate an ME of this type that
134// is received from or transmitted to the OMCC.
135func NewTrafficScheduler(params ...ParamData) (*ManagedEntity, OmciErrors) {
136 return NewManagedEntity(*trafficschedulerBME, params...)
137}