E2AP changes Part2
[o-du/l2.git] / src / ric_stub / ric_stub.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 #ifndef __RIC_MGR_MAIN_H__
20 #define __RIC_MGR_MAIN_H__
21
22
23 #include "stdio.h"
24 #include "stdlib.h"
25 #include "string.h"
26 #include "stdbool.h"
27 #include "ctype.h"
28 #include "envopt.h"        /* Environment options */
29 #include "envdep.h"        /* Environment dependent */
30 #include "envind.h"        /* Environment independent */
31
32 #include "gen.h"           /* General */
33 #include "ssi.h"           /* System services */
34 #include "ss_queue.h"
35 #include "ss_task.h"
36 #include "ss_msg.h"
37 #include "cm_inet.h"
38 #include "cm_llist.h"      /* Common link list  defines  */
39 #include "cm_hash.h"       /* Common hashlist  defines */
40
41 #include "gen.x"           /* General */
42 #include "ssi.x"   /* System services */
43 #include "ss_queue.x"
44 #include "ss_task.x"
45 #include "ss_msg.x"
46 #include "cm_lib.x"
47 #include "cm_inet.x"
48 #include "cm_llist.x"      /* Common link list  defines  */
49 #include "cm_hash.x"       /* Common hashlist  defines */
50 #include "odu_common_codec.h"
51
52 #include "du_log.h"
53 #define MAX_IPV6_LEN 16
54 #define RIC_DU_NAME_LEN_MAX 30      /* Max length of RIC/DU name string */
55
56 #define RIC_APP_MEM_REG 1
57 #define RIC_POOL 1
58
59 /* allocate and zero out a static buffer */
60 #define RIC_ALLOC(_datPtr, _size)                                \
61 {                                                               \
62    S16 _ret;                                                    \
63    _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL,                  \
64                      (Data **)&_datPtr, _size);                  \
65    if(_ret == ROK)                                              \
66       cmMemset((uint8_t*)_datPtr, 0, _size);                         \
67    else                                                         \
68       _datPtr = NULLP;                                          \
69 }
70  
71 /* free a static buffer */
72 #define RIC_FREE(_datPtr, _size)                                 \
73    SPutSBuf(RIC_APP_MEM_REG, RIC_POOL,                         \
74          (Data *)_datPtr, _size);
75
76 typedef struct ipAddr
77 {
78  bool ipV4Pres;
79  uint32_t  ipV4Addr;
80  bool ipV6Pres;
81  uint8_t   ipV6Addr[MAX_IPV6_LEN];
82 }SctpIpAddr;
83
84 typedef struct RicSctpParams
85 {
86    SctpIpAddr  duIpAddr;
87    uint16_t         duPort;
88    SctpIpAddr  ricIpAddr;
89    uint16_t         ricPort;
90 }RicSctpParams;
91
92 typedef struct ricCfgParams
93 {
94    uint32_t             ricId;
95    char            ricName[RIC_DU_NAME_LEN_MAX];
96    RicSctpParams   sctpParams;
97    Plmn            plmn;
98 }RicCfgParams;
99 RicCfgParams ricCfgParams; //global variable to hold all configs
100
101 void readRicCfg();
102 void cuAppInmsgHdlr(Buffer *mBuf);
103 void sctpNtfyInd(CmInetSctpNotification *ntfy);
104
105 #endif
106
107 /**********************************************************************
108          End of file
109 **********************************************************************/