blob: 0225950d73a02565c7793504d4e53d81bde672c4 [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// EthernetFlowTerminationPointClassID is the 16-bit ID for the OMCI
29// Managed entity Ethernet flow termination point
mpagenko836a1fd2021-11-01 16:12:42 +000030const EthernetFlowTerminationPointClassID = ClassID(286) // 0x011e
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var ethernetflowterminationpointBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// EthernetFlowTerminationPoint (Class ID: #286 / 0x011e)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// The Ethernet flow TP contains the attributes necessary to originate and terminate Ethernet
36// frames in the ONU. It is appropriate when transporting pseudowire services via layer-2.
37// Instances of this ME are created and deleted by the OLT.
38//
39// Relationships
40// One Ethernet flow TP ME exists for each distinct pseudowire service that is transported via
41// layer 2.
42//
43// Attributes
44// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000045// This attribute uniquely identifies each instance of this ME. Through an identical ID, this ME is
46// implicitly linked to a pseudowire TP ME. (R, setbycreate) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000047//
48// Destination Mac
mpagenko836a1fd2021-11-01 16:12:42 +000049// This attribute specifies the destination MAC address of upstream Ethernet frames. (R,-W,
50// setbycreate) (mandatory) (6-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000051//
52// Source Mac
mpagenko836a1fd2021-11-01 16:12:42 +000053// This attribute specifies the near-end MAC address. It is established by nonOMCI means (e.g.,
54// factory programmed into ONU flash memory) and is included here for information only. (R)
55// (mandatory) (6-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000056//
57// Tag Policy
mpagenko836a1fd2021-11-01 16:12:42 +000058// 0 untagged frame
59//
60// 1 tagged frame
61//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000062// (R,-W, setbycreate) (mandatory) (1-byte)
63//
mpagenko836a1fd2021-11-01 16:12:42 +000064// This attribute specifies the tagging policy to be applied to upstream Ethernet frames.
65//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000066// Tci
mpagenko836a1fd2021-11-01 16:12:42 +000067// If the tag policy calls for tagging of upstream Ethernet frames, this attribute specifies the
68// tag control information, which includes the VLAN tag, P bits and CFI bit. (R,-W) (optional)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000069// (2-bytes)
70//
71// Loopback
mpagenko836a1fd2021-11-01 16:12:42 +000072// This attribute sets the loopback configuration as follows.
73//
74// 0 No loopback
75//
76// 1 Loopback of downstream traffic at MAC client
77//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000078// (R,-W) (mandatory) (1-byte)
79//
80type EthernetFlowTerminationPoint struct {
81 ManagedEntityDefinition
82 Attributes AttributeValueMap
83}
84
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000085// Attribute name constants
86
87const EthernetFlowTerminationPoint_DestinationMac = "DestinationMac"
88const EthernetFlowTerminationPoint_SourceMac = "SourceMac"
89const EthernetFlowTerminationPoint_TagPolicy = "TagPolicy"
90const EthernetFlowTerminationPoint_Tci = "Tci"
91const EthernetFlowTerminationPoint_Loopback = "Loopback"
92
Holger Hildebrandtfa074992020-03-27 15:42:06 +000093func init() {
94 ethernetflowterminationpointBME = &ManagedEntityDefinition{
95 Name: "EthernetFlowTerminationPoint",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000096 ClassID: EthernetFlowTerminationPointClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +000097 MessageTypes: mapset.NewSetWith(
98 Create,
99 Delete,
100 Get,
101 Set,
102 ),
103 AllowedAttributeMask: 0xf800,
104 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000105 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
106 1: MultiByteField(EthernetFlowTerminationPoint_DestinationMac, OctetsAttributeType, 0x8000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
107 2: MultiByteField(EthernetFlowTerminationPoint_SourceMac, OctetsAttributeType, 0x4000, 6, toOctets("AAAAAAAA"), mapset.NewSetWith(Read), false, false, false, 2),
108 3: ByteField(EthernetFlowTerminationPoint_TagPolicy, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
109 4: Uint16Field(EthernetFlowTerminationPoint_Tci, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, Write), false, true, false, 4),
110 5: ByteField(EthernetFlowTerminationPoint_Loopback, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, Write), false, false, false, 5),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000111 },
112 Access: CreatedByOlt,
113 Support: UnknownSupport,
114 }
115}
116
117// NewEthernetFlowTerminationPoint (class ID 286) creates the basic
118// Managed Entity definition that is used to validate an ME of this type that
119// is received from or transmitted to the OMCC.
120func NewEthernetFlowTerminationPoint(params ...ParamData) (*ManagedEntity, OmciErrors) {
121 return NewManagedEntity(*ethernetflowterminationpointBME, params...)
122}