Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
51e5b8b2
Commit
51e5b8b2
authored
Jul 09, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
96080842
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
12 deletions
+72
-12
go/zodb/storage/zeo/zeo.go
go/zodb/storage/zeo/zeo.go
+72
-12
No files found.
go/zodb/storage/zeo/zeo.go
View file @
51e5b8b2
...
@@ -39,12 +39,12 @@ import (
...
@@ -39,12 +39,12 @@ import (
type
zeo
struct
{
type
zeo
struct
{
srv
*
zLink
// XXX rename -> link?
srv
*
zLink
// XXX rename -> link?
// state we get from server by way of server notifications.
mu
sync
.
Mutex
lastTid
zodb
.
Tid
// driver client <- watcher: database commits | errors.
// driver client <- watcher: database commits | errors.
watchq
chan
<-
zodb
.
Event
// FIXME stub
watchq
chan
<-
zodb
.
Event
head
zodb
.
Tid
// last invalidation received from server
at0Mu
sync
.
Mutex
at0
zodb
.
Tid
// at0 obtained when initially connecting to server
eventq0
[]
*
zodb
.
EventCommit
// buffer for initial messeages, until .at0 is initialized
url
string
// we were opened via this
url
string
// we were opened via this
}
}
...
@@ -112,6 +112,56 @@ func (z *zeo) Iterate(ctx context.Context, tidMin, tidMax zodb.Tid) zodb.ITxnIte
...
@@ -112,6 +112,56 @@ func (z *zeo) Iterate(ctx context.Context, tidMin, tidMax zodb.Tid) zodb.ITxnIte
}
}
// invalidateTransaction receives invalidations from server
func
(
z
*
zeo
)
invalidateTransaction
(
arg
interface
{})
error
{
t
,
ok
:=
z
.
srv
.
asTuple
(
arg
)
if
!
ok
||
len
(
t
)
!=
2
{
return
XXX
(
"got %#v; expect 2-tuple"
,
arg
)
}
// (tid, oidv)
tid
,
ok1
:=
z
.
srv
.
tidUnpack
(
t
[
0
])
xoidt
,
ok2
:=
z
.
srv
.
asTuple
(
t
[
1
])
if
!
(
ok1
&&
ok2
)
{
return
XXX
(
"got (%T, %T); expect (tid, []oid)"
)
}
oidv
:=
[]
zodb
.
Oid
{}
for
_
,
xoid
:=
range
xoidt
{
oid
,
ok
:=
z
.
srv
.
oidUnpack
(
xoid
)
if
!
ok
{
return
XXX
(
"non-oid %#v in oidv"
,
xoid
)
}
}
if
tid
<=
z
.
head
{
return
XXX
(
"bad invalidation from server: tid not ↑: %s -> %s"
,
z
.
head
,
tid
)
}
z
.
head
=
tid
if
z
.
watchq
==
nil
{
return
nil
}
event
:=
&
zodb
.
EventCommit
{
Tid
:
tid
,
Changev
:
oidv
}
z
.
at0Mu
.
Lock
()
defer
z
.
at0Mu
.
Unlock
()
// queue initial events until .at0 is initalized after register
if
z
.
at0
==
0
{
z
.
eventq0
=
append
(
z
.
eventq0
,
event
)
return
nil
}
// at0 is initialized - ok to send current event if it goes > at0
if
tid
>
z
.
at0
{
z
.
watchq
<-
event
}
return
nil
}
// ----------------------------------------
// errorUnexpectedReply is returned by zLink.Call callers when reply was
// errorUnexpectedReply is returned by zLink.Call callers when reply was
// received successfully, but is not what the caller expected.
// received successfully, but is not what the caller expected.
type
errorUnexpectedReply
struct
{
type
errorUnexpectedReply
struct
{
...
@@ -331,7 +381,6 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
...
@@ -331,7 +381,6 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
// FIXME handle opt.Watchq
// FIXME handle opt.Watchq
// for now we pretend as if the database is not changing.
// for now we pretend as if the database is not changing.
// TODO watcher(when implementing): filter-out first < at0 messages.
if
opt
.
Watchq
!=
nil
{
if
opt
.
Watchq
!=
nil
{
log
.
Print
(
"zeo: FIXME: watchq support not implemented - there "
+
log
.
Print
(
"zeo: FIXME: watchq support not implemented - there "
+
"won't be notifications about database changes"
)
"won't be notifications about database changes"
)
...
@@ -372,14 +421,25 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
...
@@ -372,14 +421,25 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
return
nil
,
zodb
.
InvalidTid
,
rpc
.
ereplyf
(
"got %v; expect tid"
,
xlastTid
)
return
nil
,
zodb
.
InvalidTid
,
rpc
.
ereplyf
(
"got %v; expect tid"
,
xlastTid
)
}
}
z
.
lastTid
=
lastTid
// since we read lastTid, at least with ZEO < 5, in separate RPC
// call, there is a chance, that by the time when lastTid was read, some
// XXX since we read lastTid, at least with ZEO < 5, in separate RPC
// call, there is a chance, that by the time when lastTid was read some
// new transactions were committed. This way lastTid will be > than
// new transactions were committed. This way lastTid will be > than
// some first transactions received by watcher via
// some first transactions received by watcher via
// "invalidateTransaction" server notification.
// "invalidateTransaction" server notification.
at0
=
lastTid
//
// 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
.
at0Mu
.
Unlock
()
//call('get_info') -> {}str->str, ex // XXX can be omitted
//call('get_info') -> {}str->str, ex // XXX can be omitted
...
@@ -398,7 +458,7 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
...
@@ -398,7 +458,7 @@ func openByURL(ctx context.Context, u *url.URL, opt *zodb.DriverOptions) (_ zodb
'supports_record_iternext': True})
'supports_record_iternext': True})
*/
*/
return
z
,
at0
,
nil
return
z
,
z
.
at0
,
nil
}
}
func
(
z
*
zeo
)
Close
()
error
{
func
(
z
*
zeo
)
Close
()
error
{
...
...
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