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
e4a7f75c
Commit
e4a7f75c
authored
Feb 03, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
599cd283
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
go/neo/storage.go
go/neo/storage.go
+17
-14
No files found.
go/neo/storage.go
View file @
e4a7f75c
...
...
@@ -153,10 +153,24 @@ func (stor *Storage) Run(ctx context.Context, l xnet.Listener) (err error) {
}(
ctx
)
// connect to master and get commands and updates from it
err
=
stor
.
talkMaster
(
ctx
)
//
err = stor.talkMaster(ctx)
// err = stor.talkMaster(serveCtx) // XXX hack for shutdown
// XXX log err?
err
=
stor
.
node
.
TalkMaster
(
ctx
,
func
(
ctx
context
.
Context
,
mlink
*
neonet
.
NodeLink
)
error
{
// let master initialize us. If successful this ends with StartOperation command.
reqStart
,
err
:=
stor
.
m1initialize
(
ctx
,
mlink
)
if
err
!=
nil
{
//log.Error(ctx, err)
return
err
}
// we got StartOperation command. Let master drive us during service phase.
err
=
stor
.
m1serve
(
ctx
,
reqStart
)
//log.Error(ctx, err)
return
err
})
// we are done - shutdown
// serveCancel()
wg
.
Wait
()
...
...
@@ -274,7 +288,7 @@ func (stor *Storage) m1initialize(ctx context.Context, mlink *neonet.NodeLink) (
defer
task
.
Runningf
(
&
ctx
,
"init %v"
,
mlink
)(
&
err
)
for
{
req
,
err
:=
mlink
.
Recv1
()
// XXX -> RecvM1
req
,
err
:=
stor
.
node
.
RecvM1
()
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -294,7 +308,6 @@ var cmdStart = errors.New("start requested")
// m1initialize1 handles one message from master from under m1initialize
func
(
stor
*
Storage
)
m1initialize1
(
ctx
context
.
Context
,
req
neonet
.
Request
)
error
{
// XXX vvv move Send out of reply preparing logic
var
err
error
switch
msg
:=
req
.
Msg
.
(
type
)
{
...
...
@@ -333,23 +346,13 @@ func (stor *Storage) m1initialize1(ctx context.Context, req neonet.Request) erro
err
=
req
.
Reply
(
&
proto
.
AnswerLastIDs
{
LastTid
:
lastTid
,
LastOid
:
lastOid
})
// XXX -> somehow to common part in Node ?
case
*
proto
.
SendPartitionTable
:
// TODO M sends us whole PT -> save locally
stor
.
node
.
UpdatePartTab
(
ctx
,
msg
)
// XXX lock? XXX handle msg.NumReplicas
case
*
proto
.
NotifyPartitionChanges
:
// TODO M sends us δPT -> save locally?
case
*
proto
.
NotifyNodeInformation
:
// XXX check for myNID and consider it a command (like neo/py) does?
stor
.
node
.
UpdateNodeTab
(
ctx
,
msg
)
// XXX lock?
case
*
proto
.
NotifyClusterState
:
stor
.
node
.
UpdateClusterState
(
ctx
,
msg
)
// XXX lock? what to do with it?
// TODO M sends us δPT -> save locally
}
// XXX move req.Reply here and ^^^ only prepare reply
return
err
}
...
...
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