/* ================================================================================== Copyright (c) 2019-2020 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================================================== */ /* * HWIndicationMessage.cc * * Created on: Apr, 2020 * Author: Shraboni Jana */ /* Classes to handle E2 service model based on e2sm-HelloWorld-v001.asn */ #include "e2sm_indication.hpp" //initialize HWIndicationMessage::HWIndicationMessage(void){ memset(&_message_fmt1, 0, sizeof(E2SM_HelloWorld_IndicationMessage_Format1_t)); _message = 0; _message = (E2SM_HelloWorld_IndicationMessage_t*)calloc(1, sizeof(E2SM_HelloWorld_IndicationMessage_t)); assert(_message !=0); _hw_msg_size = 0; }; //initialize HWIndicationMessage::HWIndicationMessage(unsigned char *buf, size_t *size){ _message = 0; _hw_msg_size = 0; bool status = this->decode(buf, size); if(!status) throw "HWIndicationMessage: "+this->get_error(); }; //initialize HWIndicationHeader::HWIndicationHeader(void){ memset(&_header_fmt1, 0, sizeof(E2SM_HelloWorld_IndicationHeader_Format1_t)); _header = 0; _header = ( E2SM_HelloWorld_IndicationHeader_t *)calloc(1, sizeof( E2SM_HelloWorld_IndicationHeader_t)); assert(_header != 0); _hw_header = 0; }; //initialize HWIndicationHeader::HWIndicationHeader(unsigned char *buf, size_t *size){ _header = 0; _hw_header = 0; bool status = this->decode(buf, size); // if(!status) // throw "HWIndicationHeader: "+this->get_error(); }; HWIndicationMessage::~HWIndicationMessage(void){ mdclog_write(MDCLOG_DEBUG, "Freeing event trigger object memory"); _message->choice.indicationMessage_Format1 = 0; ASN_STRUCT_FREE(asn_DEF_E2SM_HelloWorld_IndicationMessage, _message); }; HWIndicationHeader::~HWIndicationHeader(void){ mdclog_write(MDCLOG_DEBUG, "Freeing event trigger object memory"); _header->choice.indicationHeader_Format1 = 0; ASN_STRUCT_FREE(asn_DEF_E2SM_HelloWorld_IndicationHeader, _header); }; bool HWIndicationHeader::encode(unsigned char *buf, size_t *size){ ASN_STRUCT_RESET(asn_DEF_E2SM_HelloWorld_IndicationHeader, _header); bool res; res = setfields(_header); if (!res){ return false; } int ret_constr = asn_check_constraints(&asn_DEF_E2SM_HelloWorld_IndicationHeader, _header, _errbuf, &_errbuf_len); if(ret_constr){ _error_string.assign(&_errbuf[0], _errbuf_len); return false; } xer_fprint(stdout, &asn_DEF_E2SM_HelloWorld_IndicationHeader, _header); asn_enc_rval_t retval = asn_encode_to_buffer(0, ATS_ALIGNED_BASIC_PER, &asn_DEF_E2SM_HelloWorld_IndicationHeader, _header, buf, *size); if(retval.encoded == -1){ _error_string.assign(strerror(errno)); return false; } else if (retval.encoded > *size){ std::stringstream ss; ss <<"Error encoding event trigger definition. Reason = encoded pdu size " << retval.encoded << " exceeds buffer size " << *size << std::endl; _error_string = ss.str(); return false; } else{ *size = retval.encoded; } return true; } bool HWIndicationMessage::encode(unsigned char *buf, size_t *size){ ASN_STRUCT_RESET(asn_DEF_E2SM_HelloWorld_IndicationMessage, _message); bool res; res = setfields(_message); if (!res){ return false; } int ret_constr = asn_check_constraints(&asn_DEF_E2SM_HelloWorld_IndicationMessage, _message, _errbuf, &_errbuf_len); if(ret_constr){ _error_string.assign(&_errbuf[0], _errbuf_len); return false; } xer_fprint(stdout, &asn_DEF_E2SM_HelloWorld_IndicationMessage, _message); asn_enc_rval_t retval = asn_encode_to_buffer(0, ATS_ALIGNED_BASIC_PER, &asn_DEF_E2SM_HelloWorld_IndicationMessage, _message, buf, *size); if(retval.encoded == -1){ _error_string.assign(strerror(errno)); return false; } else if (retval.encoded > *size){ std::stringstream ss; ss <<"Error encoding action definition. Reason = encoded pdu size " << retval.encoded << " exceeds buffer size " << *size << std::endl; _error_string = ss.str(); return false; } else{ *size = retval.encoded; } return true; } bool HWIndicationHeader::setfields(E2SM_HelloWorld_IndicationHeader_t * _header){ if(_header == 0){ _error_string = "Invalid reference for Event Trigger Definition set fields"; return false; } _header->present = E2SM_HelloWorld_IndicationHeader_PR_indicationHeader_Format1; _header_fmt1.indicationHeaderParam = this->get_hw_header(); _header->choice.indicationHeader_Format1 = &_header_fmt1; return true; }; bool HWIndicationMessage::setfields(E2SM_HelloWorld_IndicationMessage_t * _message){ if(_message == 0){ _error_string = "Invalid reference for Event Action Definition set fields"; return false; } _message->present = E2SM_HelloWorld_IndicationMessage_PR_indicationMessage_Format1; _message_fmt1.indicationMsgParam.buf = this->get_hw_message(); _message_fmt1.indicationMsgParam.size = this->get_hw_message_size(); _message->choice.indicationMessage_Format1 = &_message_fmt1; return true; }; bool HWIndicationHeader::decode(unsigned char *buf, size_t *size){ _header = 0; asn_dec_rval_t dec_res = asn_decode(0,ATS_ALIGNED_BASIC_PER, &asn_DEF_E2SM_HelloWorld_IndicationHeader, (void**)&(_header), buf, *size); if(dec_res.code != RC_OK){ mdclog_write(MDCLOG_ERR, "Failed to decode: %s","HW-E2SM RIC Indication Header"); _error_string = "Failed to decode HW-E2SM RIC Indication Header"; return false; } else { mdclog_write(MDCLOG_INFO, "Successfully decoded: %s","HW-E2SM RIC Indication Header"); } if (_header == 0){ _error_string = "Invalid reference for Indication Header get fields"; return false; } this->set_ricIndicationHeader(_header->choice.indicationHeader_Format1->indicationHeaderParam); return true; } bool HWIndicationMessage::decode(unsigned char *buf, size_t *size){ asn_dec_rval_t dec_res = asn_decode(0,ATS_ALIGNED_BASIC_PER, &asn_DEF_E2SM_HelloWorld_IndicationMessage, (void**)&(_message), buf, *size); if(dec_res.code != RC_OK){ mdclog_write(MDCLOG_ERR, "Failed to decode: %s","HW-E2SM RIC Indication Message"); return false; } else { mdclog_write(MDCLOG_INFO, "Successfully decoded: %s","HW-E2SM RIC Indication Message"); } if (_message == 0){ _error_string = "Invalid reference for Indication Message get fields"; return false; } // this->set_ricIndicationMessage(_message->choice.indicationMessage_Format1->indicationMsgParam.buf, _message->choice.indicationMessage_Format1->indicationMsgParam.size); return true; }