blob: 61a26b4e1bccb9845c8205f1309fb0450d95f15c [file] [log] [blame]
Takahiro Suzuki241c10e2020-12-17 20:17:57 +09001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 * Copyright 2020-present Open Networking Foundation
4
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
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
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 */
17 /*
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
24package generated
25
26import "github.com/deckarep/golang-set"
27
28// TContClassID is the 16-bit ID for the OMCI
29// Managed entity T-CONT
30const TContClassID ClassID = ClassID(262)
31
32var tcontBME *ManagedEntityDefinition
33
34// TCont (class ID #262)
35// An instance of the traffic container ME T-CONT represents a logical connection group associated
36// with a G-PON PLOAM layer alloc-ID. A T-CONT can accommodate GEM packets in priority queues or
37// traffic schedulers that exist in the GEM layer.
38//
39// The ONU autonomously creates instances of this ME. The OLT can discover the number of TCONT
40// instances via the ANI-G ME. When the ONU's MIB is reset or created for the first time, all
41// supported T-CONTs are created. The OLT provisions alloc-IDs to the ONU via the PLOAM channel.
42// Via the OMCI, the OLT must then set the alloc-ID attributes in the T-CONTs that it wants to
43// activate for user traffic, to create the appropriate association with the allocation ID in the
44// PLOAM channel. There should be a one-to-one relationship between allocation IDs and T-CONT MEs;
45// the connection of multiple T-CONTs to a single allocation ID is undefined.
46//
47// The allocation ID that matches the ONU-ID itself is defined to be the default alloc-ID. This
48// allocID is used to carry the OMCC. The default alloc-ID can also be used to carry user traffic,
49// and hence can be assigned to one of the T-CONT MEs. However, this OMCI relationship only
50// pertains to user traffic, and the OMCC relationship is unaffected. It can also be true that the
51// OMCC is not contained in any T-CONT ME construct; rather, that the OMCC remains outside of the
52// OMCI, and that the OMCI is not used to manage the OMCC in any way. Multiplexing of the OMCC and
53// user data in GPON systems is discussed in clause B.2.4.
54//
55// Relationships
56// One or more instances of this ME are associated with an instance of a circuit pack that supports
57// a PON interface function, or with the ONU-G itself.
58//
59// Attributes
60// Managed Entity Id
61// Managed entity ID: This attribute uniquely identifies each instance of this ME. This 2-byte
62// number indicates the physical capability that realizes the TCONT. It may be represented as
63// 0xSSBB, where SS indicates the slot ID that contains this T-CONT (0 for the ONU as a whole), and
64// BB is the TCONT ID, numbered by the ONU itself. T-CONTs are numbered in ascending order, with
65// the range 0..255 in each slot. (R) (mandatory) (2-bytes)
66//
67// Alloc_Id
68// Alloc-ID: This attribute links the T-CONT with the alloc-ID assigned by the OLT in the
69// assign_alloc-ID PLOAM message. The respective TC layer specification should be referenced for
70// the legal values for that system. Prior to the setting of this attribute by the OLT, this
71// attribute has an unambiguously unusable initial value, namely the value 0x00FF or 0xFFFF for
72// ITU-T G.984 systems, and the value 0xFFFF for all other ITU-T GTC based PON systems. (R,-W)
73// (mandatory) (2-bytes)
74//
75// Deprecated
76// Deprecated: The ONU should set this attribute to the value 1, and the OLT should ignore it. (R)
77// (mandatory) (1-byte)
78//
79// Policy
80// NOTE - This attribute is read-only, unless otherwise specified by the QoS configuration
81// flexibility attribute of the ONU2-G ME. If flexible configuration is not supported, the ONU
82// should reject an attempt to set it with a parameter error result-reason code.
83//
84type TCont struct {
85 ManagedEntityDefinition
86 Attributes AttributeValueMap
87}
88
89func init() {
90 tcontBME = &ManagedEntityDefinition{
91 Name: "TCont",
92 ClassID: 262,
93 MessageTypes: mapset.NewSetWith(
94 Get,
95 Set,
96 ),
97 AllowedAttributeMask: 0xe000,
98 AttributeDefinitions: AttributeDefinitionMap{
99 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
100 1: Uint16Field("AllocId", UnsignedIntegerAttributeType, 0x8000, 65535, mapset.NewSetWith(Read, Write), false, false, false, 1),
101 2: ByteField("Deprecated", UnsignedIntegerAttributeType, 0x4000, 1, mapset.NewSetWith(Read), false, false, true, 2),
102 3: ByteField("Policy", EnumerationAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), false, false, false, 3),
103 },
104 Access: CreatedByOnu,
105 Support: UnknownSupport,
106 }
107}
108
109// NewTCont (class ID 262) creates the basic
110// Managed Entity definition that is used to validate an ME of this type that
111// is received from or transmitted to the OMCC.
112func NewTCont(params ...ParamData) (*ManagedEntity, OmciErrors) {
113 return NewManagedEntity(*tcontBME, params...)
114}