forked from davyxu/cellnet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
peerprofile.go
82 lines (62 loc) · 1.33 KB
/
peerprofile.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
package cellnet
import (
"sync"
)
type PeerProfile interface {
// 名字
SetName(string)
Name() string
// 地址
SetAddress(string)
Address() string
// Tag
SetTag(interface{})
Tag() interface{}
}
// Peer间的共享数据
type PeerProfileImplement struct {
// 基本信息
name string
address string
tag interface{}
// 运行状态
running bool
runningGuard sync.RWMutex
}
func (self *PeerProfileImplement) IsRunning() bool {
self.runningGuard.RLock()
defer self.runningGuard.RUnlock()
return self.running
}
func (self *PeerProfileImplement) SetRunning(v bool) {
self.runningGuard.Lock()
self.running = v
self.runningGuard.Unlock()
}
func (self *PeerProfileImplement) NameOrAddress() string {
if self.name != "" {
return self.name
}
return self.address
}
func (self *PeerProfileImplement) Tag() interface{} {
return self.tag
}
func (self *PeerProfileImplement) SetTag(tag interface{}) {
self.tag = tag
}
func (self *PeerProfileImplement) Address() string {
return self.address
}
func (self *PeerProfileImplement) SetAddress(address string) {
self.address = address
}
func (self *PeerProfileImplement) SetName(name string) {
self.name = name
}
func (self *PeerProfileImplement) Name() string {
return self.name
}
func NewPeerProfile() *PeerProfileImplement {
return &PeerProfileImplement{}
}