[ Jira id - ODUHIGH-593 ] Pack and unpack function nomenclature correction
[o-du/l2.git] / src / ric_stub / ric_e2ap_msg_hdl.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
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 *******************************************************************************/
18
19 /* This file contains all E2AP message handler related functionality */
20
21 #define ENCODE_FAIL -1
22 #define TRANS_ID 1
23 #define RRC_SIZE 1
24 #define SUL_BAND_COUNT  0
25 #define UL_SRBID        1
26 #define DL_SRBID        0
27 #define DU_ID           1
28 #define RIC_ID          1
29 #define CRNTI           17017
30 #define CELL_INDEX      0
31
32 #define RIC_STYLE_TYPE  1
33
34 /* if config type is CONFIG_ADD then 
35  * for action Id = n, RIC_ACTION_GRANULARITY_PERIOD = 100+ n*100 
36  * else config type is CONFIG_MOD then
37  * for action Id = n, RIC_ACTION_GRANULARITY_PERIOD =  100 +50(n+1) */ 
38 #define RIC_ACTION_GRANULARITY_PERIOD(_configType, _actionId)   \
39    ((_configType == CONFIG_ADD) ?  (100 + 100 * _actionId ) : ( 100 + 50 *( _actionId +1))) 
40
41
42 void E2APMsgHdlr(uint32_t *duId, Buffer *mBuf);
43 uint8_t BuildAndSendE2SetupRsp(DuDb *duDb, uint16_t transId, E2NodeConfigList e2NodeList);
44 uint8_t BuildAndSendRicSubscriptionReq(DuDb *duDb);
45 uint8_t SendE2APMsg(Region region, Pool pool, uint32_t duId);
46 uint8_t BuildAndSendRicServiceQuery(DuDb *duDb);
47 uint8_t BuildAndSendE2NodeConfigUpdateFailure(uint32_t duId, uint16_t transId, uint8_t causeInfo, uint8_t causeReason);
48 uint8_t fillE2NodeConfigAck(PTR e2NodeCfg, uint8_t procedureCode, E2NodeComponent *componentInfo, bool isSuccessful);
49 E2NodeComponent *fetchE2NodeComponentInfo(DuDb *duDb, InterfaceType interfaceType,CmLList **e2ComponentNode);
50 uint8_t handleE2NodeComponentAction(DuDb *duDb, PTR e2NodeCfg, uint8_t protocolId, E2NodeConfigItem *storeCfg);
51 uint8_t BuildAndSendE2NodeConfigUpdateAck(DuDb *duDb, uint16_t transId,  E2NodeConfigList *e2NodeList);
52 uint8_t BuildAndSendConnectionUpdate(uint32_t duId);
53 uint8_t BuildAndSendE2ConnectionUpdate(uint32_t duId, E2Connection connectionInfo);
54 uint8_t BuildAndSendRicSubscriptionDeleteRequest(uint32_t duId, RicSubscription *ricSubsDb);
55 void BuildRicSubsModificationReq(DuDb *duDb, RicSubscription *ricSubsInfo);
56 void deleteActionSequence(CmLList *actionNode);
57 void deleteRicSubscriptionNode(CmLList *subscriptionNode);
58 void deleteE2NodeInfo(DuDb *duDb);
59
60 /**********************************************************************
61          End of file
62 **********************************************************************/