Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefane Fermigier
neo
Commits
347c32d8
Commit
347c32d8
authored
Feb 09, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
9b001898
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
13 deletions
+63
-13
go/neo/server/cluster_test.go
go/neo/server/cluster_test.go
+63
-13
No files found.
go/neo/server/cluster_test.go
View file @
347c32d8
...
...
@@ -118,14 +118,18 @@ type EventRouter struct {
// events specific to particular node - e.g. node starts listening
byNode
map
[
string
/*host*/
]
*
tsync
.
SyncChan
byLink
map
[
string
/*host-host*/
]
*
tsync
.
SyncChan
byLink
map
[
string
/*host-host*/
]
*
linkDst
connected
map
[
string
/*addr-addr*/
]
bool
}
func
NewEventRouter
()
*
EventRouter
{
return
&
EventRouter
{
defaultq
:
tsync
.
NewSyncChan
(
"default"
),
byNode
:
make
(
map
[
string
]
*
tsync
.
SyncChan
),
byLink
:
make
(
map
[
string
]
*
tsync
.
SyncChan
),
byLink
:
make
(
map
[
string
]
*
linkDst
),
connected
:
make
(
map
[
string
]
bool
),
}
}
...
...
@@ -135,8 +139,9 @@ func (r *EventRouter) AllRoutes() []*tsync.SyncChan {
for
_
,
dst
:=
range
r
.
byNode
{
rtset
[
dst
]
=
1
}
for
_
,
dst
:=
range
r
.
byLink
{
rtset
[
dst
]
=
1
for
_
,
ldst
:=
range
r
.
byLink
{
rtset
[
ldst
.
a
]
=
1
rtset
[
ldst
.
b
]
=
1
}
var
rtv
[]
*
tsync
.
SyncChan
...
...
@@ -179,12 +184,47 @@ func (r *EventRouter) Route(event interface{}) (dst *tsync.SyncChan) {
case
*
eventNetConnect
:
link
:=
host
(
ev
.
Src
)
+
"-"
+
host
(
ev
.
Dst
)
dst
=
r
.
byLink
[
link
]
ldst
:=
r
.
byLink
[
link
]
if
ldst
!=
nil
{
dst
=
ldst
.
a
}
// remember who dialed and who was listening so that when
// seeing eventNeoSend we can determine by connID who initiated
// the exchange.
//
// remember with full host:port addresses, since potentially
// there can be several connections and a->b and a<-b at the
// same time. Having port around will allow to see which one it
// actually is.
r
.
connected
[
ev
.
Src
+
"-"
+
ev
.
Dst
]
=
true
case
*
eventNeoSend
:
// XXX adjust link according to ConnID/rest
link
:=
host
(
ev
.
Src
)
+
"-"
+
host
(
ev
.
Dst
)
dst
=
r
.
byLink
[
link
]
var
ldst
*
linkDst
// find out link and cause dst according to ConnID and who connected to who
a
,
b
:=
host
(
ev
.
Src
),
host
(
ev
.
Dst
)
switch
{
case
r
.
connected
[
ev
.
Src
+
"-"
+
ev
.
Dst
]
:
ldst
=
r
.
byLink
[
a
+
"-"
+
b
]
case
r
.
connected
[
ev
.
Dst
+
"-"
+
ev
.
Src
]
:
ldst
=
r
.
byLink
[
b
+
"-"
+
a
]
default
:
// FIXME bad - did not seen connect
panic
(
"TODO"
)
}
if
ldst
==
nil
{
break
// link not branched
}
if
ev
.
ConnID
%
2
==
1
{
dst
=
ldst
.
a
}
else
{
dst
=
ldst
.
b
}
// state changes
case
*
eventNodeTab
:
...
...
@@ -212,10 +252,13 @@ func (r *EventRouter) BranchNode(host string, dst *tsync.SyncChan) {
r
.
byNode
[
host
]
=
dst
}
// BranchLink branches events corresponding to link in between a-b
with cause root on a to dst
.
// BranchLink branches events corresponding to link in between a-b.
//
// link should be of "a-b" form.
func
(
r
*
EventRouter
)
BranchLink
(
link
string
,
dst
*
tsync
.
SyncChan
)
{
// Link should be of "a-b" form with b listening and a dialing.
//
// Event with networkiing cause root coming from a go to dsta, and with
// networking cause root coming from b - go to dstb.
func
(
r
*
EventRouter
)
BranchLink
(
link
string
,
dsta
,
dstb
*
tsync
.
SyncChan
)
{
r
.
mu
.
Lock
()
defer
r
.
mu
.
Unlock
()
...
...
@@ -223,7 +266,14 @@ func (r *EventRouter) BranchLink(link string, dst *tsync.SyncChan) {
panic
(
fmt
.
Sprintf
(
"event router: link %q already branched"
,
link
))
}
r
.
byLink
[
link
]
=
dst
// XXX verify b-a not registered too ?
r
.
byLink
[
link
]
=
&
linkDst
{
dsta
,
dstb
}
}
type
linkDst
struct
{
a
*
tsync
.
SyncChan
// net cause was on dialer
b
*
tsync
.
SyncChan
// net cause was on listener
}
// ---- trace probes, etc -> events -> dispatcher ----
...
...
@@ -422,7 +472,7 @@ func TestMasterStorage(t *testing.T) {
rt
.
BranchNode
(
"m"
,
cM
)
rt
.
BranchNode
(
"s"
,
cS
)
rt
.
BranchLink
(
"s-m"
,
cSM
)
rt
.
BranchLink
(
"s-m"
,
cSM
,
cMS
)
// cluster nodes
M
:=
NewMaster
(
"abc1"
,
":1"
,
Mhost
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment