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
0b792ca5
Commit
0b792ca5
authored
Mar 05, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
5d6a5cf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
go/zodb/db.go
go/zodb/db.go
+22
-16
No files found.
go/zodb/db.go
View file @
0b792ca5
...
...
@@ -282,6 +282,8 @@ type hwaiter struct {
// XXX -> waitHead?
// XXX -> waitHeadOrDBUnlock?
func
(
db
*
DB
)
headWait
(
ctx
context
.
Context
,
at
Tid
)
(
err
error
)
{
// XXX check if db is already down -> error even if at is under coverage?
if
at
<=
db
.
δtail
.
Head
()
{
return
nil
// we already have the coverage
}
...
...
@@ -334,7 +336,11 @@ func (db *DB) Open(ctx context.Context, opt *ConnOptions) (_ *Connection, err er
}
}()
// XXX check db is aready down/closed
// check db is already down/closed
// XXX -> headWait?
if
ready
(
db
.
down
)
{
return
nil
,
db
.
downErr
}
// find out db state we should open at
at
:=
opt
.
At
...
...
@@ -367,11 +373,7 @@ func (db *DB) Open(ctx context.Context, opt *ConnOptions) (_ *Connection, err er
}
conn
:=
db
.
open
(
at
,
opt
.
NoPool
)
err
=
conn
.
resyncAndDBUnlock
(
ctx
,
at
)
if
err
!=
nil
{
// XXX release conn?
return
nil
,
err
}
conn
.
resyncAndDBUnlock
(
ctx
,
at
)
return
conn
,
nil
}
...
...
@@ -447,25 +449,32 @@ func (conn *Connection) Resync(ctx context.Context, at Tid) error {
panic
(
"Conn.Resync: resync to at=0 (auto-mode is valid only for DB.Open)"
)
}
// XXX err ctx? ("resync @at -> @at")
db
:=
conn
.
db
// XXX check db is already down/closed
// XXX or -> headWait?
db
.
mu
.
Lock
()
// wait for db.Head ≥ at
err
=
db
.
headWait
(
ctx
,
at
)
err
:
=
db
.
headWait
(
ctx
,
at
)
if
err
!=
nil
{
return
err
}
return
conn
.
resyncAndDBUnlock
(
ctx
,
at
)
conn
.
resyncAndDBUnlock
(
ctx
,
at
)
return
nil
}
// resyncAndDBUnlock serves Connection.Resync and DB.Open .
//
// Must be called with at ≤ conn.db.Head .
// Must be called with conn.db locked and unlocks it at the end.
func
(
conn
*
Connection
)
resyncAndDBUnlock
(
ctx
context
.
Context
,
at
Tid
)
(
err
error
)
{
func
(
conn
*
Connection
)
resyncAndDBUnlock
(
ctx
context
.
Context
,
at
Tid
)
{
db
:=
conn
.
db
txn
:=
transaction
.
Current
(
ctx
)
// XXX no unlock here
txn
:=
transaction
.
Current
(
ctx
)
// XXX no unlock here
if !txn
if
conn
.
txn
!=
nil
{
db
.
mu
.
Unlock
()
...
...
@@ -478,11 +487,8 @@ func (conn *Connection) resyncAndDBUnlock(ctx context.Context, at Tid) (err erro
panic
(
fmt
.
Sprintf
(
"resync: at (%s) > head (%s)"
,
at
,
head
))
}
// XXX err ctx
// upon exit, with all locks released, register conn to txn.
defer
func
()
{
if
err
!=
nil
{
return
}
conn
.
at
=
at
conn
.
txn
=
txn
txn
.
RegisterSync
((
*
connTxnSync
)(
conn
))
...
...
@@ -491,10 +497,10 @@ func (conn *Connection) resyncAndDBUnlock(ctx context.Context, at Tid) (err erro
// conn.at == at - nothing to do (even if out of δtail coverage)
if
conn
.
at
==
at
{
db
.
mu
.
Unlock
()
return
nil
return
}
// XXX -> DB.δobj(at1, at2)
// XXX -> DB.δobj(at1, at2)
?
// conn.at != at - have to invalidate objects in live cache.
δtail
:=
db
.
δtail
...
...
@@ -551,7 +557,7 @@ func (conn *Connection) resyncAndDBUnlock(ctx context.Context, at Tid) (err erro
}
// all done
return
nil
return
}
// get returns connection from db pool most close to at with conn.at ∈ [atMin, at].
...
...
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