Fix release notes
[ric-plt/e2mgr.git] / E2Manager / converters / endc_x2setupFailureResponseToProtobuf.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // 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
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // 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
17 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20
21 package converters
22
23 // #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/
24 // #cgo LDFLAGS: -L ../3rdparty/asn1codec/lib/ -L../3rdparty/asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
25 // #include <asn1codec_utils.h>
26 // #include <x2setup_response_wrapper.h>
27 import "C"
28 import (
29         "e2mgr/logger"
30         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities"
31         "unsafe"
32 )
33
34 // Populate and return the EN-DC/X2 setup response failure structure with data from the pdu
35 func endcX2SetupFailureResponseToProtobuf(pdu *C.E2AP_PDU_t) (*entities.SetupFailure, error) {
36         setupFailure := entities.SetupFailure{}
37
38         if pdu.present == C.E2AP_PDU_PR_unsuccessfulOutcome {
39                 //dereference a union of pointers (C union is represented as a byte array with the size of the largest member)
40                 unsuccessfulOutcome := *(**C.UnsuccessfulOutcome_t)(unsafe.Pointer(&pdu.choice[0]))
41                 if unsuccessfulOutcome != nil && unsuccessfulOutcome.value.present == C.UnsuccessfulOutcome__value_PR_ENDCX2SetupFailure {
42                         endcX2SetupFailure := (*C.ENDCX2SetupFailure_t)(unsafe.Pointer(&unsuccessfulOutcome.value.choice[0]))
43                         if endcX2SetupFailure != nil && endcX2SetupFailure.protocolIEs.list.count > 0 {
44                                 count:=int(endcX2SetupFailure.protocolIEs.list.count)
45                                 endcX2SetupFailure_IEs_slice := (*[1 << 30]*C.ENDCX2SetupFailure_IEs_t)(unsafe.Pointer(endcX2SetupFailure.protocolIEs.list.array))[:count:count]
46                                 for _, endcX2SetupFailure_IE := range endcX2SetupFailure_IEs_slice {
47                                         if endcX2SetupFailure_IE != nil {
48                                                 switch endcX2SetupFailure_IE.value.present {
49                                                 case C.ENDCX2SetupFailure_IEs__value_PR_Cause:
50                                                         causeIE := (*C.Cause_t)(unsafe.Pointer(&endcX2SetupFailure_IE.value.choice[0]))
51                                                         err := getCause(causeIE, &setupFailure)
52                                                         if err != nil {
53                                                                 return nil, err
54                                                         }
55                                                 case C.ENDCX2SetupFailure_IEs__value_PR_TimeToWait:
56                                                         setupFailure.TimeToWait = entities.TimeToWait(1 + *((*C.TimeToWait_t)(unsafe.Pointer(&endcX2SetupFailure_IE.value.choice[0]))))
57                                                 case C.ENDCX2SetupFailure_IEs__value_PR_CriticalityDiagnostics:
58                                                         cdIE := (*C.CriticalityDiagnostics_t)(unsafe.Pointer(&endcX2SetupFailure_IE.value.choice[0]))
59                                                         if cd, err := getCriticalityDiagnostics(cdIE); err == nil {
60                                                                 setupFailure.CriticalityDiagnostics = cd
61                                                         } else {
62                                                                 return nil, err
63                                                         }
64                                                 }
65                                         }
66                                 }
67                         }
68                 }
69         }
70
71         return &setupFailure, nil
72 }
73
74 func UnpackEndcX2SetupFailureResponseAndExtract(logger *logger.Logger, allocationBufferSize int, packedBufferSize int, packedBuf []byte, maxMessageBufferSize int) (*entities.SetupFailure, error) {
75         pdu, err := UnpackX2apPdu(logger, allocationBufferSize, packedBufferSize, packedBuf, maxMessageBufferSize)
76         if err != nil {
77                 return nil, err
78         }
79
80         defer C.delete_pdu(pdu)
81
82         return endcX2SetupFailureResponseToProtobuf(pdu)
83 }