MEID tableupdated incrementally rather than full update
[ric-plt/rtmgr.git] / pkg / rtmgr / types.go
1 /*
2 ==================================================================================
3   Copyright (c) 2019 AT&T Intellectual Property.
4   Copyright (c) 2019 Nokia
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17
18    This source code is part of the near-RT RIC (RAN Intelligent Controller)
19    platform project (RICP).
20
21 ==================================================================================
22 */
23 /*
24   Mnemonic:     rtmgr/types.go
25   Abstract:     Contains RTMGR (Routing Manager) specific types
26   Date:         12 March 2019
27 */
28
29 package rtmgr
30
31 type XApps struct {
32         XAppList []XApp
33 }
34
35 type RouteTable []RouteTableEntry
36 type EndpointList []Endpoint
37
38 type Endpoints map[string]*Endpoint
39
40 type SubscriptionList []Subscription
41
42 //TODO: uuid is not a real UUID but a string of "ip:port"
43 // this should be changed to real UUID later on which should come from xApp Manager // petszila
44 type Endpoint struct {
45         Uuid       string
46         Name       string
47         XAppType   string
48         Ip         string
49         Port       uint16
50         TxMessages []string
51         RxMessages []string
52         Policies   []int32
53         Socket     interface{}
54         IsReady    bool
55         Keepalive  bool
56 }
57
58 type RouteTableEntry struct {
59         MessageType string
60         TxList      EndpointList
61         RxGroups    []EndpointList
62         SubID       int32
63         RouteType   string
64 }
65
66 type XApp struct {
67         Name      string         `json:"name"`
68         Status    string         `json:"status"`
69         Version   string         `json:"version"`
70         Instances []XAppInstance `json:"instances"`
71 }
72
73 type XAppInstance struct {
74         Name       string   `json:"name"`
75         Status     string   `json:"status"`
76         Ip         string   `json:"ip"`
77         Port       uint16   `json:"port"`
78         TxMessages []string `json:"txMessages"`
79         RxMessages []string `json:"rxMessages"`
80         Policies   []int32  `json:"policies"`
81 }
82
83 type PlatformComponents []struct {
84         Name string `json:"name"`
85         Fqdn string `json:"fqdn"`
86         Port uint16 `json:"port"`
87 }
88
89 type E2TInstance struct {
90         Name string `json:"name"`
91         Fqdn string `json:"fqdn"`
92         Ranlist []string `json:"ranlist"`
93 }
94
95 type ConfigRtmgr struct {
96         Pcs PlatformComponents `json:"PlatformComponents"`
97 }
98
99 type RicComponents struct {
100         XApps []XApp
101         E2Ts  map [string]E2TInstance
102         MeidMap  []string
103         Pcs   PlatformComponents
104 }
105
106 type Subscription struct {
107         SubID int32
108         Fqdn  string
109         Port  uint16
110 }
111
112 type PlatformRoutes []struct {
113        MessageType     string `json:"messagetype"`
114        SenderEndPoint  string `json:"senderendpoint"`
115        SubscriptionId  int32  `json:"subscriptionid"`
116        EndPoint        string `json:"endpoint"`
117        Meid            string `json:"meid"`
118 }
119
120 type RtmgrRoutes struct {
121        Prs PlatformRoutes      `json:"PlatformRoutes"`
122 }
123
124