blob: 658fba2e94f0fc0789f5944afdf1f0cdf57d581a [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 */
Girish Gowdra5c5aaf42021-02-17 19:40:50 -080017/*
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// MacBridgePortFilterTableDataClassID is the 16-bit ID for the OMCI
29// Managed entity MAC bridge port filter table data
mpagenko836a1fd2021-11-01 16:12:42 +000030const MacBridgePortFilterTableDataClassID = ClassID(49) // 0x0031
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var macbridgeportfiltertabledataBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// MacBridgePortFilterTableData (Class ID: #49 / 0x0031)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// This ME organizes data associated with a bridge port. The ONU automatically creates or deletes
36// an instance of this ME upon the creation or deletion of a MAC bridge port configuration data ME.
37//
38// NOTE - The OLT should disable the learning mode in the MAC bridge service profile before writing
39// to the MAC filter table.
40//
41// Relationships
42// An instance of this ME is associated with an instance of a MAC bridge port configuration data
43// ME.
44//
45// Attributes
46// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000047// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
48// implicitly linked to an instance of the MAC bridge port configuration data ME. (R) (mandatory)
49// (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000050//
51// Mac Filter Table
mpagenko836a1fd2021-11-01 16:12:42 +000052// This attribute lists MAC addresses associated with the bridge port, each with an allow/disallow
53// forwarding indicator for traffic flowing out of the bridge port. Additionally, the forwarding
54// action may be based on a MAC source or DA. In this way, upstream traffic is filtered on ANI-side
55// bridge ports, and downstream traffic is filtered on UNI-side bridge ports. The setting of an
56// entry with a forward action implies that all other addresses are filtered. Conversely, the
57// setting of an entry with a filter action implies that all other addresses are forwarded. The
58// behaviour is unspecified if forward and filter actions are mixed.
59//
60// Each entry contains:
61//
62// - the entry number, an index into this attribute list (1-byte);
63//
64// - filter byte (1-byte);
65//
66// - MAC address (6-bytes).
67//
68// The bits of the filter byte are assigned as follows.
69//
70// Bit Name Setting
71//
72// 1 (LSB) Filter/forward 0: forward
73//
74// 1: filter
75//
76// 2 0: MAC DAs
77//
78// 1: MAC source addresses
79//
80// 3..6 Reserved 0
81//
82// 7..8 Add/remove 10: Clear entire table (set operation)
83//
84// 00: Remove this entry (set operation)
85//
86// 01: Add this entry
87//
88// Upon ME instantiation, the ONU sets this attribute to an empty table.
89//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000090// (R,-W) (Mandatory) (8N bytes, where N is the number of entries in the list)
91//
92type MacBridgePortFilterTableData struct {
93 ManagedEntityDefinition
94 Attributes AttributeValueMap
95}
96
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000097// Attribute name constants
98
99const MacBridgePortFilterTableData_MacFilterTable = "MacFilterTable"
100
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000101func init() {
102 macbridgeportfiltertabledataBME = &ManagedEntityDefinition{
103 Name: "MacBridgePortFilterTableData",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000104 ClassID: MacBridgePortFilterTableDataClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000105 MessageTypes: mapset.NewSetWith(
106 Get,
107 GetNext,
108 Set,
Girish Gowdra5c5aaf42021-02-17 19:40:50 -0800109 SetTable,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000110 ),
111 AllowedAttributeMask: 0x8000,
112 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000113 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
114 1: TableField(MacBridgePortFilterTableData_MacFilterTable, TableAttributeType, 0x8000, TableInfo{nil, 8}, mapset.NewSetWith(Read, Write), false, false, false, 1),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000115 },
116 Access: CreatedByOnu,
117 Support: UnknownSupport,
118 }
119}
120
121// NewMacBridgePortFilterTableData (class ID 49) creates the basic
122// Managed Entity definition that is used to validate an ME of this type that
123// is received from or transmitted to the OMCC.
124func NewMacBridgePortFilterTableData(params ...ParamData) (*ManagedEntity, OmciErrors) {
125 return NewManagedEntity(*macbridgeportfiltertabledataBME, params...)
126}