cddcc4aa9f3e1fe55ca202a35f9b4fa0f495b3f8
[ric-plt/xapp-frame.git] / pkg / xapp / rmrendpoint.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 package xapp
21
22 import (
23         "strconv"
24         "strings"
25 )
26
27 //-----------------------------------------------------------------------------
28 //
29 //-----------------------------------------------------------------------------
30 type RmrEndpoint struct {
31         Addr string // xapp addr
32         Port uint16 // xapp port
33 }
34
35 func (endpoint RmrEndpoint) String() string {
36         return endpoint.Addr + ":" + strconv.FormatUint(uint64(endpoint.Port), 10)
37 }
38
39 func (endpoint *RmrEndpoint) Equal(ep *RmrEndpoint) bool {
40         if (endpoint.Addr == ep.Addr) &&
41                 (endpoint.Port == ep.Port) {
42                 return true
43         }
44         return false
45 }
46
47 func (endpoint *RmrEndpoint) GetAddr() string {
48         return endpoint.Addr
49 }
50
51 func (endpoint *RmrEndpoint) GetPort() uint16 {
52         return endpoint.Port
53 }
54
55 func (endpoint *RmrEndpoint) Set(src string) bool {
56         elems := strings.Split(src, ":")
57         if len(elems) == 2 {
58                 srcAddr := elems[0]
59                 srcPort, err := strconv.ParseUint(elems[1], 10, 16)
60                 if err == nil {
61                         endpoint.Addr = srcAddr
62                         endpoint.Port = uint16(srcPort)
63                         return true
64                 }
65         }
66         return false
67 }
68
69 func NewRmrEndpoint(src string) *RmrEndpoint {
70         ep := &RmrEndpoint{}
71         if ep.Set(src) == false {
72                 return nil
73         }
74         return ep
75 }