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
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
abed4adb
Commit
abed4adb
authored
May 03, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
09915e9e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
29 deletions
+53
-29
go/neo/cluster_test.go
go/neo/cluster_test.go
+24
-11
go/neo/connection.go
go/neo/connection.go
+27
-18
go/neo/storage.go
go/neo/storage.go
+2
-0
No files found.
go/neo/cluster_test.go
View file @
abed4adb
...
...
@@ -23,19 +23,32 @@ import (
"testing"
)
// basic interaction between Client -- Storage
func
TestClientStorage
(
t
*
testing
.
T
)
{
nlC
,
nlS
:=
nodeLinkPipe
()
Cnl
,
Snl
:=
nodeLinkPipe
()
wg
:=
WorkGroup
()
ctxS
:=
context
.
Background
(
)
Sctx
,
Scancel
:=
context
.
WithCancel
(
context
.
Background
()
)
S
:=
NewStorage
(
nil
)
// TODO zodb.storage.mem
//Serve(ctx, l, S)
S
.
ServeLink
(
ctxS
,
nlS
)
// XXX go
C
,
err
:=
NewClient
(
nlC
)
//assert err != nil
_
=
C
_
=
err
wg
.
Gox
(
func
()
{
S
.
ServeLink
(
Sctx
,
Snl
)
// XXX + test error return
})
C
,
err
:=
NewClient
(
Cnl
)
if
err
!=
nil
{
t
.
Fatalf
(
"creating/identifying client: %v"
,
err
)
}
lastTid
,
err
:=
C
.
LastTid
()
if
!
(
lastTid
==
111
&&
err
==
nil
)
{
// XXX 111
t
.
Fatalf
(
"C.LastTid -> %v, %v ; want %v, nil"
,
lastTid
,
err
,
111
,
err
)
}
// shutdown storage
// XXX wait for S to shutdown + verify shutdown error
Scancel
()
xwait
(
wg
)
}
go/neo/connection.go
View file @
abed4adb
...
...
@@ -157,7 +157,7 @@ func NewNodeLink(conn net.Conn, role LinkRole) *NodeLink {
func
(
nl
*
NodeLink
)
newConn
(
connId
uint32
)
*
Conn
{
c
:=
&
Conn
{
nodeLink
:
nl
,
connId
:
connId
,
rxq
:
make
(
chan
*
PktBuf
),
// TODO buffering
rxq
:
make
(
chan
*
PktBuf
,
1
),
// NOTE non-blocking - see serveRecv
txerr
:
make
(
chan
error
,
1
),
// NOTE non-blocking - see Conn.Send
down
:
make
(
chan
struct
{}),
}
...
...
@@ -328,6 +328,7 @@ func (nl *NodeLink) serveRecv() {
// pkt.ConnId -> Conn
connId
:=
ntoh32
(
pkt
.
Header
()
.
ConnId
)
accept
:=
false
nl
.
connMu
.
Lock
()
...
...
@@ -338,23 +339,7 @@ func (nl *NodeLink) serveRecv() {
if
nl
.
acceptq
!=
nil
{
// we are accepting new incoming connection
conn
=
nl
.
newConn
(
connId
)
select
{
case
<-
nl
.
down
:
// Accept and loop calling it can exit if shutdown was requested
// if so we are also exiting
nl
.
connMu
.
Unlock
()
// make sure not to leave rx error as nil
nl
.
errMu
.
Lock
()
nl
.
errRecv
=
ErrLinkDown
nl
.
errMu
.
Unlock
()
return
case
nl
.
acceptq
<-
conn
:
// ok
}
accept
=
true
}
}
...
...
@@ -369,11 +354,35 @@ func (nl *NodeLink) serveRecv() {
//
// TODO backpressure when Recv is not keeping up with Send on peer side?
// (not to let whole nodelink starve because of one connection)
//
// NOTE rxq must be buffered with at least 1 element so that
// queuing pkt succeeds for incoming connection that is not yet
// there in acceptq.
conn
.
rxq
<-
pkt
// keep connMu locked until here: so that ^^^ `conn.rxq <- pkt` can be
// sure conn stays not down e.g. closed by Conn.Close or NodeLink.shutdown
//
// XXX try to release connMu eariler - before `rxq <- pkt`
nl
.
connMu
.
Unlock
()
if
accept
{
select
{
case
<-
nl
.
down
:
// Accept and loop calling it can exit if shutdown was requested
// if so we are also exiting
// make sure not to leave rx error as nil
nl
.
errMu
.
Lock
()
nl
.
errRecv
=
ErrLinkDown
nl
.
errMu
.
Unlock
()
return
case
nl
.
acceptq
<-
conn
:
// ok
}
}
}
}
...
...
go/neo/storage.go
View file @
abed4adb
...
...
@@ -43,6 +43,7 @@ func NewStorage(zstor zodb.IStorage) *Storage {
// ServeLink serves incoming node-node link connection
// XXX +error return?
func
(
stor
*
Storage
)
ServeLink
(
ctx
context
.
Context
,
link
*
NodeLink
)
{
fmt
.
Printf
(
"stor: %s: serving new node
\n
"
,
link
)
...
...
@@ -98,6 +99,7 @@ func (stor *Storage) ServeLink(ctx context.Context, link *NodeLink) {
}
// ServeClient serves incoming connection on which peer identified itself as client
// XXX +error return?
func
(
stor
*
Storage
)
ServeClient
(
ctx
context
.
Context
,
conn
*
Conn
)
{
fmt
.
Printf
(
"stor: %s: serving new client conn
\n
"
,
conn
)
...
...
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