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
7ecadf55
Commit
7ecadf55
authored
Jul 20, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a41e0b4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
19 deletions
+36
-19
go/neo/server/storage.go
go/neo/server/storage.go
+36
-19
No files found.
go/neo/server/storage.go
View file @
7ecadf55
...
...
@@ -332,13 +332,6 @@ func (stor *Storage) m1serve(ctx context.Context, Mconn *neo.Conn) (err error) {
}
}
// XXX naming -> withOpCtx? withUntilOperational?
func
(
stor
*
Storage
)
opCtxRead
()
context
.
Context
{
stor
.
opMu
.
Lock
()
defer
stor
.
opMu
.
Unlock
()
return
stor
.
opCtx
}
// ServeLink serves incoming node-node link connection
// XXX +error return?
func
(
stor
*
Storage
)
ServeLink
(
ctx
context
.
Context
,
link
*
neo
.
NodeLink
)
{
...
...
@@ -395,6 +388,16 @@ func (stor *Storage) ServeLink(ctx context.Context, link *neo.NodeLink) {
// TODO wait all spawned serveConn
}
// withWhileOperational derives new context from ctx which will be cancelled, when either
// - ctx is cancelled, or
// - master tells us to stop operational service
func
(
stor
*
Storage
)
withWhileOperational
(
ctx
context
.
Context
)
(
context
.
Context
,
context
.
CancelFunc
)
{
stor
.
opMu
.
Lock
()
opCtx
:=
stor
.
opCtx
stor
.
opMu
.
Unlock
()
return
xcontext
.
Merge
(
ctx
,
opCtx
)
}
// serveClient serves incoming connection on which peer identified itself as client
// XXX +error return?
...
...
@@ -402,31 +405,43 @@ func (stor *Storage) serveClient(ctx context.Context, conn *neo.Conn) {
fmt
.
Printf
(
"stor: %s: serving new client conn
\n
"
,
conn
)
// rederive ctx to be also cancelled if M tells us StopOperation
ctx
,
cancel
:=
xcontext
.
Merge
(
ctx
,
stor
.
opCtxRead
())
//ctx, cancel := stor.withWhileOperational(ctx)
ctx
,
cancel
:=
stor
.
withWhileOperational
(
ctx
)
defer
cancel
()
// main work to serve
done
:=
make
(
chan
error
,
1
)
go
func
()
{
for
{
err
:=
stor
.
serveClient1
(
conn
)
if
err
!=
nil
{
done
<-
err
break
}
}
}()
// close connection when either cancelling or returning (e.g. due to an error)
// ( when cancelling - conn.Close will signal to current IO to
// terminate with an error )
go
func
()
{
<-
ctx
.
Done
()
// XXX tell client if we are shutting down?
// XXX ret err = cancelled ?
fmt
.
Printf
(
"stor: %v: closing client conn
\n
"
,
conn
)
conn
.
Close
()
// XXX err
}()
var
err
error
select
{
case
<-
ctx
.
Done
()
:
// XXX tell client we are shutting down?
err
=
ctx
.
Err
()
for
{
serveClient1
(
conn
)
// XXX err check
case
err
=
<-
done
:
}
fmt
.
Printf
(
"stor: %v: %v
\n
"
,
conn
,
err
)
fmt
.
Printf
(
"stor: %v: closing client conn
\n
"
,
conn
)
conn
.
Close
()
// XXX err
}
// serveClient1 serves 1 request from a client
func
(
stor
*
Storage
)
serveClient1
(
conn
*
neo
.
Conn
)
error
{
req
,
err
:=
conn
.
Recv
()
if
err
!=
nil
{
return
// XXX log / err / send error before closing
return
err
// XXX log / err / send error before closing
}
switch
req
:=
req
.
(
type
)
{
...
...
@@ -481,4 +496,6 @@ func (stor *Storage) serveClient1(conn *neo.Conn) error {
}
//req.Put(...)
return
nil
}
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