-
Notifications
You must be signed in to change notification settings - Fork 3
/
service.go
165 lines (124 loc) · 3.18 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Copyright 2015 Eryx <evorui аt gmаil dοt cοm>, All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package inapi
import (
"sync"
// "github.com/lessos/lessgo/types"
)
var (
service_mu sync.RWMutex
)
// ServicePort represents a network port in a single box(container)
type ServicePort struct {
// Optional: If specified, this must be a DNS_LABEL. Each named port
// in a pod must have a unique name.
Name string `json:"name,omitempty" toml:"name,omitempty"`
// Required: This must be a valid port number, 0 < x < 65536.
BoxPort uint16 `json:"box_port" toml:"box_port"`
// Optional: If specified, this must be a valid port number, 0 < x < 65536.
HostPort uint16 `json:"host_port,omitempty" toml:"host_port,omitempty"`
// Optional
LanAddr string `json:"lan_addr,omitempty" toml:"lan_addr,omitempty"`
// Optional
WanAddr string `json:"wan_addr,omitempty" toml:"wan_addr,omitempty"`
// Optional
AppSpec string `json:"app_spec,omitempty" toml:"app_spec,omitempty"`
}
type ServicePorts []*ServicePort
func (ls *ServicePorts) Get(box_port uint16) *ServicePort {
if box_port == 0 {
return nil
}
service_mu.RLock()
defer service_mu.RUnlock()
for _, v := range *ls {
if v.BoxPort == box_port {
return v
}
}
return nil
}
func (ls *ServicePorts) Del(box_port uint16) {
if box_port == 0 {
return
}
service_mu.Lock()
defer service_mu.Unlock()
for i, v := range *ls {
if v.BoxPort == box_port {
*ls = append((*ls)[:i], (*ls)[i+1:]...)
return
}
}
}
func (ls *ServicePorts) Sync(item ServicePort) (changed bool) {
if item.BoxPort == 0 {
return false
}
service_mu.Lock()
defer service_mu.Unlock()
for i, v := range *ls {
if v.BoxPort != item.BoxPort {
continue
}
if item.Name != "" && v.Name != item.Name {
(*ls)[i].Name = item.Name
changed = true
}
if item.HostPort > 0 && v.HostPort != item.HostPort {
(*ls)[i].HostPort = item.HostPort
changed = true
}
if item.AppSpec != "" && v.AppSpec != item.AppSpec {
(*ls)[i].AppSpec = item.AppSpec
changed = true
}
return changed
}
*ls = append(*ls, &item)
return true
}
func (ls *ServicePorts) Clean() {
service_mu.Lock()
defer service_mu.Unlock()
if len(*ls) > 0 {
*ls = []*ServicePort{}
}
}
func (ls *ServicePorts) Equal(items ServicePorts) bool {
if len(*ls) != len(items) {
return false
}
service_mu.RLock()
defer service_mu.RUnlock()
for _, v := range *ls {
hit := false
for _, v2 := range items {
if v.BoxPort != v2.BoxPort {
continue
}
if v.Name != v2.Name ||
v.AppSpec != v2.AppSpec ||
v.HostPort != v2.HostPort {
return false
}
hit = true
break
}
if !hit {
return false
}
}
return true
}