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
c643ba53
Commit
c643ba53
authored
Sep 14, 2017
by
Kirill Smelkov
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
X Send1: switch to sending directly over link
parent
d39a6fc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
go/neo/connection.go
go/neo/connection.go
+13
-7
No files found.
go/neo/connection.go
View file @
c643ba53
...
...
@@ -249,7 +249,7 @@ func (c *Conn) reinit() {
c
.
txdownOnce
=
sync
.
Once
{}
// XXX ok?
c
.
txclosed
.
Set
(
0
)
c
.
closeOnce
=
sync
.
Once
{}
// XXX ok?
c
.
closeOnce
=
sync
.
Once
{}
// XXX ok?
}
// ensureOpen make sure *ch stays non-closed chan struct{} for signalling.
...
...
@@ -302,7 +302,7 @@ func (nl *NodeLink) NewConn() (*Conn, error) {
return
c
,
nil
}
// shutdownAX marks acceptq as no longer operational
// shutdownAX marks acceptq as no longer operational
and interrupts Accept.
func
(
link
*
NodeLink
)
shutdownAX
()
{
link
.
axdown1
.
Do
(
func
()
{
close
(
link
.
axdown
)
...
...
@@ -364,12 +364,12 @@ func (nl *NodeLink) shutdown() {
})
}
// CloseAccept instructs node link to not accept incoming conections anymore.
// CloseAccept instructs node link to not accept incoming con
n
ections anymore.
//
// Any blocked Accept() will be unblocked and return error.
// The peer will receive "connection refused" if it tries to connect after.
//
// It is safe
t
to call CloseAccept several times.
// It is safe to call CloseAccept several times.
func
(
link
*
NodeLink
)
CloseAccept
()
{
link
.
axclosed
.
Set
(
1
)
link
.
shutdownAX
()
...
...
@@ -395,6 +395,7 @@ func (c *Conn) shutdown() {
c
.
shutdownRX
(
errConnClosed
)
}
// shutdownTX marks TX as no longer operational (?) and interrupts Send.
func
(
c
*
Conn
)
shutdownTX
()
{
c
.
txdownOnce
.
Do
(
func
()
{
close
(
c
.
txdown
)
...
...
@@ -1335,12 +1336,13 @@ func (c *Conn) Recv() (Msg, error) {
//
// it encodes message int packet, sets header appropriately and sends it.
//
// it is ok to call sendMsg in parallel with serveSend
running XXX why
// it is ok to call sendMsg in parallel with serveSend
. XXX link to sendPktDirect for rationale?
func
(
link
*
NodeLink
)
sendMsg
(
connId
uint32
,
msg
Msg
)
error
{
traceMsgSendPre
(
link
,
connId
,
msg
)
buf
:=
msgPack
(
connId
,
msg
)
return
link
.
sendPkt
(
buf
)
// XXX more context in err? (msg type)
// FIXME ^^^ shutdown whole link on error
}
// Send sends message.
...
...
@@ -1353,6 +1355,10 @@ func (c *Conn) Send(msg Msg) error {
return
c
.
sendPkt
(
buf
)
// XXX more context in err? (msg type)
}
func
(
c
*
Conn
)
sendMsgDirect
(
msg
Msg
)
error
{
return
c
.
link
.
sendMsg
(
c
.
connId
,
msg
)
}
// Expect receives message and checks it is one of expected types
//
...
...
@@ -1497,9 +1503,9 @@ func (link *NodeLink) Send1(msg Msg) error {
return
err
}
conn
.
downRX
(
errConnClosed
)
// FIXME
just new conn this way
conn
.
downRX
(
errConnClosed
)
// XXX
just new conn this way
err
=
conn
.
Send
(
msg
)
err
=
conn
.
sendMsgDirect
(
msg
)
conn
.
lightClose
()
return
err
}
...
...
Kirill Smelkov
@kirr
mentioned in commit
ec4b3ce0
·
Jul 12, 2018
mentioned in commit
ec4b3ce0
mentioned in commit ec4b3ce09d46f046e1487e9f25c689ee8a7fc09a
Toggle commit list
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