routing manager version 0.3.2
[ric-plt/rtmgr.git] / pkg / rpe / rmr.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 */
19 /*
20   Mnemonic:     rmr.go
21   Abstract:     RMR Route Policy implementation
22                 Produces RMR (RIC Management Routing) formatted route messages
23   Date:         16 March 2019
24 */
25
26 package rpe
27
28 import (
29         "routing-manager/pkg/rtmgr"
30         "strconv"
31 )
32
33 type Rmr struct {
34         Rpe
35 }
36
37 type RmrPub struct {
38         Rmr
39 }
40
41 type RmrPush struct {
42         Rmr
43 }
44
45 func NewRmrPub() *RmrPub {
46         instance := new(RmrPub)
47         return instance
48 }
49
50 func NewRmrPush() *RmrPush {
51         instance := new(RmrPush)
52         return instance
53 }
54
55 /*
56 Produces the raw route message consumable by RMR
57 */
58 func (r *Rmr) generateRMRPolicies(eps rtmgr.Endpoints, key string) *[]string {
59         rawrt := []string{key + "newrt|start\n"}
60         rt := r.getRouteTable(eps)
61         for _, rte := range *rt {
62                 rawrte := key + "mse|" + rte.MessageType
63                 for _, tx := range rte.TxList {
64                         rawrte += "," + tx.Ip + ":" + strconv.Itoa(int(tx.Port))
65                 }
66                 rawrte += "|" + strconv.Itoa(int(rte.SubID)) + "|"
67                 group := ""
68                 for _, rxg := range rte.RxGroups {
69                         member := ""
70                         for _, rx := range rxg {
71                                 if member == "" {
72                                         member += rx.Ip + ":" + strconv.Itoa(int(rx.Port))
73                                 } else {
74                                         member += "," + rx.Ip + ":" + strconv.Itoa(int(rx.Port))
75                                 }
76                         }
77                         if group == "" {
78                                 group += member
79                         } else {
80                                 group += ";" + member
81                         }
82                 }
83                 rawrte += group
84                 rawrt = append(rawrt, rawrte+"\n")
85         }
86         rawrt = append(rawrt, key+"newrt|end\n")
87         rtmgr.Logger.Debug("rmr.GeneratePolicies returns: %v", rawrt)
88         return &rawrt
89 }
90
91 func (r *RmrPub) GeneratePolicies(eps rtmgr.Endpoints) *[]string {
92         rtmgr.Logger.Debug("Invoked rmr.GeneratePolicies, args: %v: ", eps)
93         return r.generateRMRPolicies(eps, "00000           ")
94 }
95
96 func (r *RmrPush) GeneratePolicies(eps rtmgr.Endpoints) *[]string {
97         rtmgr.Logger.Debug("Invoked rmr.GeneratePolicies, args: %v: ", eps)
98         return r.generateRMRPolicies(eps, "")
99 }
100
101 func (r *RmrPub) GetRouteTable(eps rtmgr.Endpoints) *rtmgr.RouteTable {
102         return r.getRouteTable(eps)
103 }
104
105 func (r *RmrPush) GetRouteTable(eps rtmgr.Endpoints) *rtmgr.RouteTable {
106         return r.getRouteTable(eps)
107 }
108