blob: 68096591f6e8b0de545ed4521e57d71510ae22a5 [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
Chip Boling8cdd6392022-01-27 08:43:37 -06004 *
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
Chip Boling8cdd6392022-01-27 08:43:37 -06008 *
Chip Boling6e27b352020-02-14 09:10:01 -06009 * http://www.apache.org/licenses/LICENSE-2.0
Chip Boling8cdd6392022-01-27 08:43:37 -060010 *
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// VoipVoiceCtpClassID is the 16-bit ID for the OMCI
29// Managed entity VoIP voice CTP
Chip Boling610117d2021-09-09 11:24:34 -050030const VoipVoiceCtpClassID = ClassID(139) // 0x008b
Chip Boling6e27b352020-02-14 09:10:01 -060031
32var voipvoicectpBME *ManagedEntityDefinition
33
Chip Boling610117d2021-09-09 11:24:34 -050034// VoipVoiceCtp (Class ID: #139 / 0x008b)
Chip Boling6e27b352020-02-14 09:10:01 -060035// 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
Chip Boling610117d2021-09-09 11:24:34 -050048// This attribute uniquely identifies each instance of this ME. (R, setbycreate) (mandatory)
49// (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060050//
51// User Protocol Pointer
Chip Boling610117d2021-09-09 11:24:34 -050052// 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)
Chip Boling6e27b352020-02-14 09:10:01 -060057//
58// Pptp Pointer
Chip Boling610117d2021-09-09 11:24:34 -050059// This attribute points to the PPTP POTS UNI ME that serves the analogue telephone port. (R,-W,
60// setbycreate) (mandatory) (2-bytes)
Chip Boling6e27b352020-02-14 09:10:01 -060061//
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
Chip Boling610117d2021-09-09 11:24:34 -050067// 3 Loop reverse battery
68//
69// 4 Coin first
70//
71// 5 Dial tone first
72//
73// 6 Multi-party
74//
Chip Boling6e27b352020-02-14 09:10:01 -060075// (R,-W, setbycreate) (mandatory) (1-byte)
76//
Chip Boling610117d2021-09-09 11:24:34 -050077// This attribute specifies the POTS-side signalling as follows.
78//
79// 1 Loop start
80//
81// 2 Ground start
82//
Chip Boling6e27b352020-02-14 09:10:01 -060083type VoipVoiceCtp struct {
84 ManagedEntityDefinition
85 Attributes AttributeValueMap
86}
87
Chip Boling8cdd6392022-01-27 08:43:37 -060088// Attribute name constants
89
90const VoipVoiceCtp_UserProtocolPointer = "UserProtocolPointer"
91const VoipVoiceCtp_PptpPointer = "PptpPointer"
92const VoipVoiceCtp_VOIpMediaProfilePointer = "VOIpMediaProfilePointer"
93const VoipVoiceCtp_SignallingCode = "SignallingCode"
94
Chip Boling6e27b352020-02-14 09:10:01 -060095func init() {
96 voipvoicectpBME = &ManagedEntityDefinition{
97 Name: "VoipVoiceCtp",
Chip Boling8cdd6392022-01-27 08:43:37 -060098 ClassID: VoipVoiceCtpClassID,
Chip Boling6e27b352020-02-14 09:10:01 -060099 MessageTypes: mapset.NewSetWith(
100 Create,
101 Delete,
102 Get,
103 Set,
104 ),
105 AllowedAttributeMask: 0xf000,
106 AttributeDefinitions: AttributeDefinitionMap{
Chip Boling8cdd6392022-01-27 08:43:37 -0600107 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),
Chip Boling6e27b352020-02-14 09:10:01 -0600112 },
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}