Merge "FIX: move some end-to-end test configs to values.yaml for nanobot"
[it/test.git] / simulators / e2sim / src / E2AP / e2ap_asn_codec.cpp
1 /*****************************************************************************\r
2 #                                                                            *\r
3 # Copyright 2019 AT&T Intellectual Property                                  *\r
4 # Copyright 2019 Nokia                                                       *\r
5 #                                                                            *\r
6 # Licensed under the Apache License, Version 2.0 (the "License");            *\r
7 # you may not use this file except in compliance with the License.           *\r
8 # You may obtain a copy of the License at                                    *\r
9 #                                                                            *\r
10 #      http://www.apache.org/licenses/LICENSE-2.0                            *\r
11 #                                                                            *\r
12 # Unless required by applicable law or agreed to in writing, software        *\r
13 # distributed under the License is distributed on an "AS IS" BASIS,          *\r
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *\r
15 # See the License for the specific language governing permissions and        *\r
16 # limitations under the License.                                             *\r
17 #                                                                            *\r
18 ******************************************************************************/\r
19 \r
20 #include "e2ap_asn_codec.hpp"\r
21 \r
22 void e2ap_encode_pdu(e2ap_pdu_t* pdu, unsigned char* buf, int buf_size, int &encoded_size)\r
23 {\r
24   char err_buf[ERROR_MESSAGE_BUFFER];\r
25 \r
26   encoded_size = e2ap_asn_per_encode(pdu, buf, buf_size, err_buf, sizeof(err_buf));\r
27 \r
28   if(encoded_size != -1)\r
29   {\r
30     LOG_D("[E2AP] ASN Encode successful, encoded_size = %d", encoded_size);\r
31   }\r
32   else\r
33   {\r
34     LOG_E("[E2AP] Encode error: %s", err_buf);\r
35     exit(1);\r
36   }\r
37 \r
38 }\r
39 \r
40 void e2ap_decode_pdu(e2ap_pdu_t* pdu, unsigned char* buf, int &encoded_size)\r
41 {\r
42   char err_buf[ERROR_MESSAGE_BUFFER];\r
43 \r
44   int rc = e2ap_asn_per_decode(pdu, buf, encoded_size, err_buf, sizeof(err_buf));\r
45   if(rc == -1) {\r
46     LOG_E("[E2AP] Decode error: %s", err_buf);\r
47   } else {\r
48     LOG_D("[E2AP] ASN decode successful");\r
49   }\r
50 }\r
51 \r
52 void e2ap_print_pdu(e2ap_pdu_t* pdu)\r
53 {\r
54   char pdu_str[PDU_PRINT_BUFFER];\r
55 \r
56   e2ap_asn_print(pdu, pdu_str, sizeof(pdu_str));\r
57 \r
58   LOG_D("[E2AP] %s", pdu_str);\r
59 }\r