5ad23e0c630dbe6e56081a2b06aceee68dbb1ca4
[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 }
64
65 type XApp struct {
66         Name      string         `json:"name"`
67         Status    string         `json:"status"`
68         Version   string         `json:"version"`
69         Instances []XAppInstance `json:"instances"`
70 }
71
72 type XAppInstance struct {
73         Name       string   `json:"name"`
74         Status     string   `json:"status"`
75         Ip         string   `json:"ip"`
76         Port       uint16   `json:"port"`
77         TxMessages []string `json:"txMessages"`
78         RxMessages []string `json:"rxMessages"`
79         Policies   []int32  `json:"policies"`
80 }
81
82 type PlatformComponents []struct {
83         Name string `json:"name"`
84         Fqdn string `json:"fqdn"`
85         Port uint16 `json:"port"`
86 }
87
88 type ConfigRtmgr struct {
89         Pcs PlatformComponents `json:"PlatformComponents"`
90 }
91
92 type RicComponents struct {
93         XApps []XApp
94         Pcs   PlatformComponents
95 }
96
97 type Subscription struct {
98         SubID int32
99         Fqdn  string
100         Port  uint16
101 }