2 ==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
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
10 http://www.apache.org/licenses/LICENSE-2.0
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 ==================================================================================
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
30 type RmrEndpoint struct {
31 Addr string // xapp addr
32 Port uint16 // xapp port
35 func (endpoint RmrEndpoint) String() string {
36 return endpoint.Addr + ":" + strconv.FormatUint(uint64(endpoint.Port), 10)
39 func (endpoint *RmrEndpoint) Equal(ep *RmrEndpoint) bool {
40 if (endpoint.Addr == ep.Addr) &&
41 (endpoint.Port == ep.Port) {
47 func (endpoint *RmrEndpoint) GetAddr() string {
51 func (endpoint *RmrEndpoint) GetPort() uint16 {
55 func (endpoint *RmrEndpoint) Set(src string) bool {
56 elems := strings.Split(src, ":")
59 srcPort, err := strconv.ParseUint(elems[1], 10, 16)
61 endpoint.Addr = srcAddr
62 endpoint.Port = uint16(srcPort)
69 //-----------------------------------------------------------------------------
71 //-----------------------------------------------------------------------------
72 type RmrEndpointList struct {
73 Endpoints []RmrEndpoint
76 func (eplist *RmrEndpointList) String() string {
77 valuesText := eplist.StringList()
78 return strings.Join(valuesText, ",")
81 func (eplist *RmrEndpointList) StringList() []string {
82 tmpList := eplist.Endpoints
83 valuesText := []string{}
84 for i := range tmpList {
85 valuesText = append(valuesText, tmpList[i].String())
90 func (eplist *RmrEndpointList) Size() int {
91 return len(eplist.Endpoints)
94 func (eplist *RmrEndpointList) AddEndpoint(ep *RmrEndpoint) bool {
95 for i := range eplist.Endpoints {
96 if eplist.Endpoints[i].Equal(ep) {
100 eplist.Endpoints = append(eplist.Endpoints, *ep)
104 func (eplist *RmrEndpointList) DelEndpoint(ep *RmrEndpoint) bool {
105 for i := range eplist.Endpoints {
106 if eplist.Endpoints[i].Equal(ep) {
107 eplist.Endpoints[i] = eplist.Endpoints[len(eplist.Endpoints)-1]
108 eplist.Endpoints[len(eplist.Endpoints)-1] = RmrEndpoint{"", 0}
109 eplist.Endpoints = eplist.Endpoints[:len(eplist.Endpoints)-1]
116 func (eplist *RmrEndpointList) DelEndpoints(otheplist *RmrEndpointList) bool {
117 var retval bool = false
118 for i := range otheplist.Endpoints {
119 if eplist.DelEndpoint(&otheplist.Endpoints[i]) {
126 func (eplist *RmrEndpointList) HasEndpoint(ep *RmrEndpoint) bool {
127 for i := range eplist.Endpoints {
128 if eplist.Endpoints[i].Equal(ep) {
135 func NewRmrEndpoint(src string) *RmrEndpoint {
137 if ep.Set(src) == false {