blob: 77b477740827288e495d9cf0244a908a32fd704b [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// OmciClassID is the 16-bit ID for the OMCI
29// Managed entity OMCI
Chip Boling610117d2021-09-09 11:24:34 -050030const OmciClassID = ClassID(287) // 0x011f
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var omciBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// Omci (Class ID: #287 / 0x011f)
Chip Boling6e27b352020-02-14 09:10:01 -060035// 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
Chip Boling610117d2021-09-09 11:24:34 -050043// This attribute uniquely identifies each instance of this ME. There is only one instance, number
44// 0. (R) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060045//
46// Me Type Table
Chip Boling610117d2021-09-09 11:24:34 -050047// 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.)
Chip Boling6e27b352020-02-14 09:10:01 -060050//
51// Message Type Table
Chip Boling610117d2021-09-09 11:24:34 -050052// 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.)
Chip Boling6e27b352020-02-14 09:10:01 -060055//
56type Omci struct {
57 ManagedEntityDefinition
58 Attributes AttributeValueMap
59}
60
61func init() {
62 omciBME = &ManagedEntityDefinition{
63 Name: "Omci",
64 ClassID: 287,
65 MessageTypes: mapset.NewSetWith(
66 Get,
67 GetNext,
68 ),
69 AllowedAttributeMask: 0xc000,
70 AttributeDefinitions: AttributeDefinitionMap{
71 0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
72 1: TableField("MeTypeTable", TableAttributeType, 0x8000, TableInfo{nil, 2}, mapset.NewSetWith(Read), false, false, false, 1),
73 2: TableField("MessageTypeTable", TableAttributeType, 0x4000, TableInfo{nil, 1}, mapset.NewSetWith(Read), false, false, false, 2),
74 },
75 Access: CreatedByOnu,
76 Support: UnknownSupport,
77 }
78}
79
80// NewOmci (class ID 287) creates the basic
81// Managed Entity definition that is used to validate an ME of this type that
82// is received from or transmitted to the OMCC.
83func NewOmci(params ...ParamData) (*ManagedEntity, OmciErrors) {
84 return NewManagedEntity(*omciBME, params...)
85}