blob: 89d8cab29367596e9859dfd77768573dd7c488cb [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 */
Himani Chawlaac1f5ad2021-02-04 21:21:54 +053017/*
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// PhysicalPathTerminationPointVideoUniClassID is the 16-bit ID for the OMCI
29// Managed entity Physical path termination point video UNI
mpagenko836a1fd2021-11-01 16:12:42 +000030const PhysicalPathTerminationPointVideoUniClassID = ClassID(82) // 0x0052
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var physicalpathterminationpointvideouniBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// PhysicalPathTerminationPointVideoUni (Class ID: #82 / 0x0052)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// This ME represents an RF video UNI in the ONU, where physical paths terminate and physical path
36// level functions are performed.
37//
38// The ONU automatically creates an instance of this ME per port:
39//
40// o when the ONU has RF video UNI ports built into its factory configuration;
41//
42// o when a cardholder is provisioned to expect a circuit pack of the video UNI type;
43//
44// o when a cardholder provisioned for plug-and-play is equipped with a circuit pack of the video
45// UNI type. Note that the installation of a plug-and-play card may indicate the presence of video
46// ports via equipment ID as well as its type, and indeed may cause the ONU to instantiate a port-
47// mapping package that specifies video ports.
48//
49// The ONU automatically deletes instances of this ME when a cardholder is neither provisioned to
50// expect a video circuit pack, nor is it equipped with a video circuit pack.
51//
52// Relationships
53// One or more instances of this ME are associated with an instance of a real or virtual circuit
54// pack classified as video type.
55//
56// Attributes
57// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000058// This attribute uniquely identifies each instance of this ME. This 2-byte number indicates the
59// physical position of the UNI. The first byte is the slot ID (defined in clause 9.1.5). The
60// second byte is the port ID, with the range 1..255. (R) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000061//
62// Administrative State
mpagenko836a1fd2021-11-01 16:12:42 +000063// This attribute locks (1) and unlocks (0) the functions performed by this ME. Administrative
64// state is further described in clause A.1.6. (R,-W) (mandatory) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000065//
66// Operational State
mpagenko836a1fd2021-11-01 16:12:42 +000067// This attribute indicates whether the ME is capable of performing its function. Valid values are
68// enabled (0) and disabled (1). (R) (optional) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000069//
70// Arc
mpagenko836a1fd2021-11-01 16:12:42 +000071// See clause A.1.4.3. (R,-W) (optional) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000072//
73// Arc Interval
mpagenko836a1fd2021-11-01 16:12:42 +000074// See clause A.1.4.3. (R,-W) (optional) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000075//
76// Power Control
mpagenko836a1fd2021-11-01 16:12:42 +000077// This attribute controls whether power is provided from the ONU to an external equipment over the
78// video PPTP. Value 1 enables power over coaxial cable. The default value 0 disables power feed.
79// (R,-W) (optional) (1-byte)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000080//
81type PhysicalPathTerminationPointVideoUni struct {
82 ManagedEntityDefinition
83 Attributes AttributeValueMap
84}
85
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000086// Attribute name constants
87
88const PhysicalPathTerminationPointVideoUni_AdministrativeState = "AdministrativeState"
89const PhysicalPathTerminationPointVideoUni_OperationalState = "OperationalState"
90const PhysicalPathTerminationPointVideoUni_Arc = "Arc"
91const PhysicalPathTerminationPointVideoUni_ArcInterval = "ArcInterval"
92const PhysicalPathTerminationPointVideoUni_PowerControl = "PowerControl"
93
Holger Hildebrandtfa074992020-03-27 15:42:06 +000094func init() {
95 physicalpathterminationpointvideouniBME = &ManagedEntityDefinition{
96 Name: "PhysicalPathTerminationPointVideoUni",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000097 ClassID: PhysicalPathTerminationPointVideoUniClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +000098 MessageTypes: mapset.NewSetWith(
99 Get,
100 Set,
101 ),
102 AllowedAttributeMask: 0xf800,
103 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000104 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read), false, false, false, 0),
105 1: ByteField(PhysicalPathTerminationPointVideoUni_AdministrativeState, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, Write), false, false, false, 1),
106 2: ByteField(PhysicalPathTerminationPointVideoUni_OperationalState, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read), true, true, false, 2),
107 3: ByteField(PhysicalPathTerminationPointVideoUni_Arc, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, Write), true, true, false, 3),
108 4: ByteField(PhysicalPathTerminationPointVideoUni_ArcInterval, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, Write), false, true, false, 4),
109 5: ByteField(PhysicalPathTerminationPointVideoUni_PowerControl, UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, Write), false, true, false, 5),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000110 },
111 Access: CreatedByOnu,
112 Support: UnknownSupport,
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530113 Alarms: AlarmMap{
114 0: "Video-LOS",
115 1: "Video-OOR-low",
116 2: "Video-OOR-high",
117 },
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000118 }
119}
120
121// NewPhysicalPathTerminationPointVideoUni (class ID 82) 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 NewPhysicalPathTerminationPointVideoUni(params ...ParamData) (*ManagedEntity, OmciErrors) {
125 return NewManagedEntity(*physicalpathterminationpointvideouniBME, params...)
126}