blob: 0480bd626e01a7b128d21eb0f17ada99b8b86f6f [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// OmciClassID is the 16-bit ID for the OMCI
29// Managed entity OMCI
mpagenko836a1fd2021-11-01 16:12:42 +000030const OmciClassID = ClassID(287) // 0x011f
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var omciBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// Omci (Class ID: #287 / 0x011f)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// This ME describes the ONU's general level of support for OMCI MEs and messages. This ME is not
36// included in an MIB upload.
37//
38// Relationships
39// One instance exists in the ONU. The ME entities are related to the OMCI entity.
40//
41// Attributes
42// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000043// This attribute uniquely identifies each instance of this ME. There is only one instance, number
44// 0. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000045//
46// Me Type Table
mpagenko836a1fd2021-11-01 16:12:42 +000047// This attribute lists the ME classes supported by the ONU. Each entry contains the ME class value
48// (see Table 11.2.4-1) of an ME type. (R) (mandatory) (2 * N bytes, where N is the number of
49// entries in the list.)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000050//
51// Message Type Table
mpagenko836a1fd2021-11-01 16:12:42 +000052// This attribute is a list of message types (MTs) supported by the ONU. Each entry contains the MT
53// of an OMCI message (see Table-11.2.2-1). (R) (mandatory) (M bytes, where M is the number of
54// entries in the list.)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000055//
56type Omci struct {
57 ManagedEntityDefinition
58 Attributes AttributeValueMap
59}
60
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000061// Attribute name constants
62
63const Omci_MeTypeTable = "MeTypeTable"
64const Omci_MessageTypeTable = "MessageTypeTable"
65
Holger Hildebrandtfa074992020-03-27 15:42:06 +000066func init() {
67 omciBME = &ManagedEntityDefinition{
68 Name: "Omci",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000069 ClassID: OmciClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +000070 MessageTypes: mapset.NewSetWith(
71 Get,
72 GetNext,
73 ),
74 AllowedAttributeMask: 0xc000,
75 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000076 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
77 1: TableField(Omci_MeTypeTable, TableAttributeType, 0x8000, TableInfo{nil, 2}, mapset.NewSetWith(Read), false, false, false, 1),
78 2: TableField(Omci_MessageTypeTable, TableAttributeType, 0x4000, TableInfo{nil, 1}, mapset.NewSetWith(Read), false, false, false, 2),
Holger Hildebrandtfa074992020-03-27 15:42:06 +000079 },
80 Access: CreatedByOnu,
81 Support: UnknownSupport,
82 }
83}
84
85// NewOmci (class ID 287) creates the basic
86// Managed Entity definition that is used to validate an ME of this type that
87// is received from or transmitted to the OMCC.
88func NewOmci(params ...ParamData) (*ManagedEntity, OmciErrors) {
89 return NewManagedEntity(*omciBME, params...)
90}