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
25f5692b
Commit
25f5692b
authored
Jul 13, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
4512fec8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
39 deletions
+69
-39
go/zodb/storage/zeo/zeo.go
go/zodb/storage/zeo/zeo.go
+48
-20
go/zodb/storage/zeo/zrpc.go
go/zodb/storage/zeo/zrpc.go
+21
-19
No files found.
go/zodb/storage/zeo/zeo.go
View file @
25f5692b
...
...
@@ -47,6 +47,9 @@ type zeo struct {
at0
zodb
.
Tid
// at0 obtained when initially connecting to server
eventq0
[]
*
zodb
.
EventCommit
// buffer for initial messeages, until .at0 is initialized
// becomes ready when serve loop finishes
serveWG
sync
.
WaitGroup
url
string
// we were opened via this
}
...
...
@@ -163,6 +166,22 @@ func (z *zeo) invalidateTransaction(arg interface{}) (err error) {
return
nil
}
// flushEventq0 flushes events queued in z.eventq0.
// must be called under .at0Mu
func
(
z
*
zeo
)
flushEventq0
()
{
if
z
.
at0
==
0
{
panic
(
"flush, but .at0 not yet initialized"
)
}
if
z
.
watchq
!=
nil
{
for
_
,
e
:=
range
z
.
eventq0
{
if
e
.
Tid
>
z
.
at0
{
z
.
watchq
<-
e
}
}
}
z
.
eventq0
=
nil
}
// ----------------------------------------
// errorUnexpectedReply is returned by zLink.Call callers when reply was
...
...
@@ -396,7 +415,12 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
z
:=
&
zeo
{
link
:
zl
,
watchq
:
opt
.
Watchq
,
url
:
url
}
zl
.
StartServe
(
// start serve loop on the link
z
.
serveWG
.
Add
(
1
)
go
func
()
{
defer
z
.
serveWG
.
Done
()
err
:=
zl
.
Serve
(
// notifyTab
map
[
string
]
func
(
interface
{})
error
{
"invalidateTransaction"
:
z
.
invalidateTransaction
,
...
...
@@ -405,6 +429,20 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
nil
,
)
// close .watchq after serve is over
z
.
at0Mu
.
Lock
()
defer
z
.
at0Mu
.
Unlock
()
if
z
.
at0
!=
0
{
z
.
flushEventq0
()
}
if
z
.
watchq
!=
nil
{
if
err
!=
nil
{
z
.
watchq
<-
&
zodb
.
EventError
{
Err
:
err
}
}
close
(
z
.
watchq
)
}
}()
rpc
:=
z
.
rpc
(
"register"
)
xlastTid
,
err
:=
rpc
.
call
(
ctx
,
storageID
,
opt
.
ReadOnly
)
if
err
!=
nil
{
...
...
@@ -435,14 +473,7 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
// filter-out first < at0 messages for this reason.
z
.
at0Mu
.
Lock
()
z
.
at0
=
lastTid
if
z
.
watchq
!=
nil
{
for
_
,
e
:=
range
z
.
eventq0
{
if
e
.
Tid
>
lastTid
{
z
.
watchq
<-
e
}
}
}
z
.
eventq0
=
nil
z
.
flushEventq0
()
z
.
at0Mu
.
Unlock
()
...
...
@@ -468,10 +499,7 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
func
(
z
*
zeo
)
Close
()
error
{
err
:=
z
.
link
.
Close
()
// XXX move -> after wait for go serve
if
z
.
watchq
!=
nil
{
// XXX -> into zlink.shutdown instead? (so it is closed after link is closed)?
close
(
z
.
watchq
)
}
z
.
serveWG
.
Wait
()
return
err
}
...
...
go/zodb/storage/zeo/zrpc.go
View file @
25f5692b
...
...
@@ -50,7 +50,7 @@ var protoVersions = []string{
// zLink provides service to make and receive RPC requests.
//
// create zLink via dialZLink or handshake.
// once link is created .S
tartS
erve must be called on it.
// once link is created .Serve must be called on it.
type
zLink
struct
{
link
net
.
Conn
// underlying network
rxbuf
rbuf
.
RingBuf
// buffer for reading from link
...
...
@@ -73,7 +73,7 @@ type zLink struct {
serveCancel
func
()
// to cancel serveCtx
down1
sync
.
Once
err
Close
error
// error got from .link.Close()
err
Down
error
// error with which the link was shut down
ver
string
// protocol version in use (without "Z" or "M" prefix)
enc
encoding
// protocol encoding in use ('Z' or 'M')
...
...
@@ -87,36 +87,43 @@ func (zl *zLink) start() {
go
zl
.
serveRecv
()
}
// StartServe starts serving calls from remote peer according to notifyTab and serveTab.
// Serve serves calls from remote peer according to notifyTab and serveTab.
//
// Serve returns when zlink becomes down - either on normal Close or on error.
// On normal Close returned error == nil, otherwise it describes the reason for
// why zlink was shut down.
//
// XXX it would be better for zLink to instead provide .Recv() to receive
// peer's requests and then serve is just loop over Recv and decide what to do
// with messages.
//
// XXX -> Serve(notifyTab, serveTab) error
// XXX err = nil on normal zlink.Close
// XXX err != nil on zlink.shutdown(err)
func
(
zl
*
zLink
)
StartServe
(
func
(
zl
*
zLink
)
Serve
(
notifyTab
map
[
string
]
func
(
interface
{})
error
,
serveTab
map
[
string
]
func
(
context
.
Context
,
interface
{})
interface
{},
)
{
)
error
{
zl
.
serveTab
=
serveTab
zl
.
notifyTab
=
notifyTab
close
(
zl
.
serveReady
)
// wait for zlink to become down and return shutdown error
zl
.
serveWg
.
Wait
()
return
zl
.
errDown
}
var
errLinkClosed
=
errors
.
New
(
"zlink is closed"
)
// shutdown shuts zlink down and sets
error (XXX) which
// shutdown shuts zlink down and sets
reason why the link was shut down.
func
(
zl
*
zLink
)
shutdown
(
err
error
)
{
zl
.
down1
.
Do
(
func
()
{
err2
:=
zl
.
link
.
Close
()
if
err
==
nil
{
err
=
err2
}
if
err
!=
nil
{
log
.
Printf
(
"%s: %s"
,
zl
.
link
.
RemoteAddr
(),
err
)
// XXX what else to do with err?
}
zl
.
errDown
=
err
zl
.
serveCancel
()
zl
.
errClose
=
zl
.
link
.
Close
()
// notify call waiters
zl
.
callMu
.
Lock
()
...
...
@@ -127,18 +134,13 @@ func (zl *zLink) shutdown(err error) {
for
_
,
rxc
:=
range
callTab
{
rxc
<-
msg
{
arg
:
nil
}
// notify link was closed XXX ok? or err explicitly?
}
// XXX if err != nil -> watchq <- zodb.EventError{err}
// XXX close watcher
// XXX -> notifyTab.shutdown?
// XXX -> go Serve() -> err -> watchq? <- yes
})
}
func
(
zl
*
zLink
)
Close
()
error
{
zl
.
shutdown
(
nil
)
zl
.
serveWg
.
Wait
()
// wait in case shutdown was called from serveRecv
return
zl
.
err
Close
return
zl
.
err
Down
}
...
...
@@ -190,7 +192,7 @@ func (zl *zLink) serveRecv1(pkb *pktBuf) error {
}
// message is notification or call
// wait until user called S
tartS
erve on us
// wait until user called Serve on us
<-
zl
.
serveReady
// message is notification
...
...
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