blob: 68096591f6e8b0de545ed4521e57d71510ae22a5 [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// VoipVoiceCtpClassID is the 16-bit ID for the OMCI
29// Managed entity VoIP voice CTP
mpagenko836a1fd2021-11-01 16:12:42 +000030const VoipVoiceCtpClassID = ClassID(139) // 0x008b
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031
32var voipvoicectpBME *ManagedEntityDefinition
33
mpagenko836a1fd2021-11-01 16:12:42 +000034// VoipVoiceCtp (Class ID: #139 / 0x008b)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000035// The VoIP voice CTP defines the attributes necessary to associate a specified VoIP service (SIP,
36// ITUT-H.248) with a POTS UNI. This entity is conditionally required for ONUs that offer VoIP
37// services. If a non-OMCI interface is used to manage VoIP signalling, this ME is unnecessary.
38//
39// An instance of this ME is created and deleted by the OLT. A VoIP voice CTP ME is needed for each
40// PPTP POTS UNI served by VoIP.
41//
42// Relationships
43// An instance of this ME links a PPTP POTS UNI ME with a VoIP media profile and a SIP user data or
44// media gateway controller (MGC) config data ME.
45//
46// Attributes
47// Managed Entity Id
mpagenko836a1fd2021-11-01 16:12:42 +000048// This attribute uniquely identifies each instance of this ME. (R, setbycreate) (mandatory)
49// (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000050//
51// User Protocol Pointer
mpagenko836a1fd2021-11-01 16:12:42 +000052// This attribute points to signalling protocol data. If the signalling protocol used attribute of
53// the VoIP config data ME specifies that the ONU's signalling protocol is SIP, this attribute
54// points to a SIP user data ME, which in turn points to a SIP agent config data ME. If the
55// signalling protocol is ITU-T-H.248, this attribute points directly to an MGC config data ME.
56// (R,-W, setbycreate) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000057//
58// Pptp Pointer
mpagenko836a1fd2021-11-01 16:12:42 +000059// This attribute points to the PPTP POTS UNI ME that serves the analogue telephone port. (R,-W,
60// setbycreate) (mandatory) (2-bytes)
Holger Hildebrandtfa074992020-03-27 15:42:06 +000061//
62// V O Ip Media Profile Pointer
63// VoIP media profile pointer: This attribute points to an associated VoIP media profile. (R,-W,
64// setbycreate) (mandatory) (2-bytes)
65//
66// Signalling Code
mpagenko836a1fd2021-11-01 16:12:42 +000067// 3 Loop reverse battery
68//
69// 4 Coin first
70//
71// 5 Dial tone first
72//
73// 6 Multi-party
74//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000075// (R,-W, setbycreate) (mandatory) (1-byte)
76//
mpagenko836a1fd2021-11-01 16:12:42 +000077// This attribute specifies the POTS-side signalling as follows.
78//
79// 1 Loop start
80//
81// 2 Ground start
82//
Holger Hildebrandtfa074992020-03-27 15:42:06 +000083type VoipVoiceCtp struct {
84 ManagedEntityDefinition
85 Attributes AttributeValueMap
86}
87
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000088// Attribute name constants
89
90const VoipVoiceCtp_UserProtocolPointer = "UserProtocolPointer"
91const VoipVoiceCtp_PptpPointer = "PptpPointer"
92const VoipVoiceCtp_VOIpMediaProfilePointer = "VOIpMediaProfilePointer"
93const VoipVoiceCtp_SignallingCode = "SignallingCode"
94
Holger Hildebrandtfa074992020-03-27 15:42:06 +000095func init() {
96 voipvoicectpBME = &ManagedEntityDefinition{
97 Name: "VoipVoiceCtp",
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +000098 ClassID: VoipVoiceCtpClassID,
Holger Hildebrandtfa074992020-03-27 15:42:06 +000099 MessageTypes: mapset.NewSetWith(
100 Create,
101 Delete,
102 Get,
103 Set,
104 ),
105 AllowedAttributeMask: 0xf000,
106 AttributeDefinitions: AttributeDefinitionMap{
Holger Hildebrandt3ac49bd2022-02-07 17:46:43 +0000107 0: Uint16Field(ManagedEntityID, PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
108 1: Uint16Field(VoipVoiceCtp_UserProtocolPointer, UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
109 2: Uint16Field(VoipVoiceCtp_PptpPointer, UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
110 3: Uint16Field(VoipVoiceCtp_VOIpMediaProfilePointer, UnsignedIntegerAttributeType, 0x2000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 3),
111 4: ByteField(VoipVoiceCtp_SignallingCode, UnsignedIntegerAttributeType, 0x1000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 4),
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000112 },
113 Access: CreatedByOlt,
114 Support: UnknownSupport,
115 }
116}
117
118// NewVoipVoiceCtp (class ID 139) creates the basic
119// Managed Entity definition that is used to validate an ME of this type that
120// is received from or transmitted to the OMCC.
121func NewVoipVoiceCtp(params ...ParamData) (*ManagedEntity, OmciErrors) {
122 return NewManagedEntity(*voipvoicectpBME, params...)
123}