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
a51a0274
Commit
a51a0274
authored
May 23, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
X zodb: Fix PActivate not to panic after an error
parent
857f51e0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
116 additions
and
16 deletions
+116
-16
go/internal/xtesting/xtesting.go
go/internal/xtesting/xtesting.go
+10
-4
go/zodb/impexp_test.go
go/zodb/impexp_test.go
+7
-1
go/zodb/import_x_test.go
go/zodb/import_x_test.go
+16
-7
go/zodb/persistent.go
go/zodb/persistent.go
+7
-3
go/zodb/persistent_test.go
go/zodb/persistent_test.go
+76
-1
No files found.
go/internal/xtesting/xtesting.go
View file @
a51a0274
...
...
@@ -95,13 +95,14 @@ func NeedPy(t testing.TB, modules ...string) {
}
// ZRawObject represents raw ZODB object state.
type
ZRawObject
struct
{
type
ZRawObject
struct
{
// keep in sync with zodb(test).ZRawObject
Oid
zodb
.
Oid
Data
[]
byte
// raw serialized zodb data
}
// ZPyCommitRaw commits new transaction into database @ zurl with raw data specified by objv.
//
// Empty data means "delete object".
// The commit is performed via zodbtools/py.
func
ZPyCommitRaw
(
zurl
string
,
at
zodb
.
Tid
,
objv
...
ZRawObject
)
(
_
zodb
.
Tid
,
err
error
)
{
defer
xerr
.
Contextf
(
&
err
,
"%s: zpycommit @%s"
,
zurl
,
at
)
...
...
@@ -112,9 +113,14 @@ func ZPyCommitRaw(zurl string, at zodb.Tid, objv ...ZRawObject) (_ zodb.Tid, err
fmt
.
Fprintf
(
zin
,
"description %q
\n
"
,
fmt
.
Sprintf
(
"test commit; at=%s"
,
at
))
fmt
.
Fprintf
(
zin
,
"extension %q
\n
"
,
""
)
for
_
,
obj
:=
range
objv
{
fmt
.
Fprintf
(
zin
,
"obj %s %d null:00
\n
"
,
obj
.
Oid
,
len
(
obj
.
Data
))
zin
.
Write
(
obj
.
Data
)
zin
.
WriteString
(
"
\n
"
)
// !data -> delete
if
len
(
obj
.
Data
)
==
0
{
fmt
.
Fprintf
(
zin
,
"obj %s delete
\n
"
,
obj
.
Oid
)
}
else
{
fmt
.
Fprintf
(
zin
,
"obj %s %d null:00
\n
"
,
obj
.
Oid
,
len
(
obj
.
Data
))
zin
.
Write
(
obj
.
Data
)
zin
.
WriteString
(
"
\n
"
)
}
}
zin
.
WriteString
(
"
\n
"
)
...
...
go/zodb/impexp_test.go
View file @
a51a0274
...
...
@@ -25,10 +25,16 @@ import (
// imported at runtime via import_x_test due to cyclic dependency:
var
ZPyCommit
func
(
string
,
Tid
,
...
IPersistent
)
(
Tid
,
error
)
var
ZPyCommit
func
(
string
,
Tid
,
...
IPersistent
)
(
Tid
,
error
)
var
ZPyCommitRaw
func
(
string
,
Tid
,
...
ZRawObject
)
(
Tid
,
error
)
// exported for zodb_test package:
type
ZRawObject
struct
{
// keep in sync with xtesting.ZRawObject
Oid
Oid
Data
[]
byte
}
func
PSerialize
(
obj
IPersistent
)
*
mem
.
Buf
{
return
obj
.
persistent
()
.
pSerialize
()
}
go/zodb/import_x_test.go
View file @
a51a0274
// Copyright (C) 2019 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
// Copyright (C) 2019
-2021
Nexedi SA and Contributors.
//
Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
...
...
@@ -33,7 +33,8 @@ import (
// due to cyclic dependency.
func
init
()
{
zodb
.
ZPyCommit
=
ZPyCommit
zodb
.
ZPyCommit
=
ZPyCommit
zodb
.
ZPyCommitRaw
=
ZPyCommitRaw
}
// ZPyCommit commits new transaction with specified objects.
...
...
@@ -41,8 +42,8 @@ func init() {
// The objects need to be alive, but do not need to be marked as changed.
// The commit is performed via zodb/py.
func
ZPyCommit
(
zurl
string
,
at
zodb
.
Tid
,
objv
...
zodb
.
IPersistent
)
(
zodb
.
Tid
,
error
)
{
var
rawobjv
[]
xtesting
.
ZRawObject
// raw zodb objects data to commit
var
bufv
[]
*
mem
.
Buf
// buffers to release
var
rawobjv
[]
zodb
.
ZRawObject
// raw zodb objects data to commit
var
bufv
[]
*
mem
.
Buf
// buffers to release
defer
func
()
{
for
_
,
buf
:=
range
bufv
{
buf
.
Release
()
...
...
@@ -51,7 +52,7 @@ func ZPyCommit(zurl string, at zodb.Tid, objv ...zodb.IPersistent) (zodb.Tid, er
for
_
,
obj
:=
range
objv
{
buf
:=
zodb
.
PSerialize
(
obj
)
rawobj
:=
xtesting
.
ZRawObject
{
rawobj
:=
zodb
.
ZRawObject
{
Oid
:
obj
.
POid
(),
Data
:
buf
.
Data
,
}
...
...
@@ -59,5 +60,13 @@ func ZPyCommit(zurl string, at zodb.Tid, objv ...zodb.IPersistent) (zodb.Tid, er
bufv
=
append
(
bufv
,
buf
)
}
return
xtesting
.
ZPyCommitRaw
(
zurl
,
at
,
rawobjv
...
)
return
ZPyCommitRaw
(
zurl
,
at
,
rawobjv
...
)
}
func
ZPyCommitRaw
(
zurl
string
,
at
zodb
.
Tid
,
rawobjv
...
zodb
.
ZRawObject
)
(
zodb
.
Tid
,
error
)
{
var
xrawobjv
[]
xtesting
.
ZRawObject
for
_
,
obj
:=
range
rawobjv
{
xrawobjv
=
append
(
xrawobjv
,
xtesting
.
ZRawObject
{
Oid
:
obj
.
Oid
,
Data
:
obj
.
Data
})
}
return
xtesting
.
ZPyCommitRaw
(
zurl
,
at
,
xrawobjv
...
)
}
go/zodb/persistent.go
View file @
a51a0274
// Copyright (C) 2018-20
19
Nexedi SA and Contributors.
// Copyright (C) 2018-20
21
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
@@ -163,7 +163,7 @@ func (obj *Persistent) pSerialize() *mem.Buf {
func
(
obj
*
Persistent
)
PActivate
(
ctx
context
.
Context
)
(
err
error
)
{
obj
.
mu
.
Lock
()
obj
.
refcnt
++
doload
:=
(
obj
.
refcnt
==
1
&&
obj
.
state
==
GHOST
)
doload
:=
(
obj
.
state
==
GHOST
&&
obj
.
loading
==
nil
)
defer
func
()
{
if
err
!=
nil
{
obj
.
PDeactivate
()
...
...
@@ -231,9 +231,13 @@ func (obj *Persistent) PActivate(ctx context.Context) (err error) {
}
}
// XXX set state to load error? (to avoid panic on second activate after load error)
loading
.
err
=
err
// force reload on next activate if it was an error
if
err
!=
nil
{
obj
.
loading
=
nil
}
obj
.
mu
.
Unlock
()
close
(
loading
.
ready
)
...
...
go/zodb/persistent_test.go
View file @
a51a0274
...
...
@@ -21,6 +21,7 @@ package zodb
import
(
"context"
"errors"
"fmt"
"io/ioutil"
"os"
...
...
@@ -317,7 +318,7 @@ func (t *tDB) Add(oid Oid, value string) {
}
// Commit commits objects queued by Add.
func
(
t
*
tDB
)
Commit
()
{
func
(
t
*
tDB
)
Commit
()
Tid
{
t
.
Helper
()
head
,
err
:=
ZPyCommit
(
t
.
zurl
,
t
.
head
,
t
.
commitq
...
)
...
...
@@ -326,6 +327,19 @@ func (t *tDB) Commit() {
}
t
.
head
=
head
t
.
commitq
=
nil
return
head
}
// CommitRaw commits raw changes.
func
(
t
*
tDB
)
CommitRaw
(
rawobjv
...
ZRawObject
)
Tid
{
t
.
Helper
()
head
,
err
:=
ZPyCommitRaw
(
t
.
zurl
,
t
.
head
,
rawobjv
...
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
t
.
head
=
head
return
head
}
// Open opens new test transaction/connection.
...
...
@@ -719,6 +733,67 @@ func testPersistentDB(t0 *testing.T, rawcache bool) {
t
.
checkObj
(
robj2
,
102
,
InvalidTid
,
GHOST
,
0
)
}
func
TestActivateAfterDelete
(
t0
*
testing
.
T
)
{
assert
:=
assert
.
New
(
t0
)
tdb
:=
testdb
(
t0
,
/*rawcache=*/
false
)
defer
tdb
.
Close
()
db
:=
tdb
.
db
tdb
.
Add
(
101
,
"object"
)
at0
:=
tdb
.
Commit
()
t
:=
tdb
.
Open
(
&
ConnOptions
{})
// do not evict the object from live cache.
zcc
:=
&
zcacheControl
{
map
[
Oid
]
PCachePolicy
{
101
:
PCachePinObject
|
PCacheKeepState
,
}}
zcache
:=
t
.
conn
.
Cache
()
zcache
.
Lock
()
zcache
.
SetControl
(
zcc
)
zcache
.
Unlock
()
// load the object
obj
:=
t
.
Get
(
101
)
t
.
checkObj
(
obj
,
101
,
InvalidTid
,
GHOST
,
0
)
t
.
PActivate
(
obj
)
t
.
checkObj
(
obj
,
101
,
at0
,
UPTODATE
,
1
,
"object"
)
obj
.
PDeactivate
()
t
.
checkObj
(
obj
,
101
,
at0
,
UPTODATE
,
0
,
"object"
)
// delete obj
at1
:=
tdb
.
CommitRaw
(
ZRawObject
{
Oid
:
101
,
Data
:
[]
byte
(
""
)})
// conn stays at older view with obj pinned into the cache
t
.
checkObj
(
obj
,
101
,
at0
,
UPTODATE
,
0
,
"object"
)
// finish transaction and reopen new connection - it should be conn
t
.
Abort
()
assert
.
Equal
(
db
.
pool
,
[]
*
Connection
{
t
.
conn
})
t_
:=
tdb
.
Open
(
&
ConnOptions
{})
assert
.
Same
(
t_
.
conn
,
t
.
conn
)
t
=
t_
assert
.
Equal
(
t
.
conn
.
At
(),
at1
)
// obj should be invalidated but present in the cache
t
.
checkObj
(
obj
,
101
,
InvalidTid
,
GHOST
,
0
)
// activating obj should give "no data" error
// (loop because second activate used to panic)
for
i
:=
0
;
i
<
10
;
i
++
{
err
:=
obj
.
PActivate
(
t
.
ctx
)
eok
:=
&
NoDataError
{
Oid
:
obj
.
POid
(),
DeletedAt
:
at1
}
var
e
*
NoDataError
errors
.
As
(
err
,
&
e
)
if
!
reflect
.
DeepEqual
(
e
,
eok
)
{
t
.
Fatalf
(
"(%d) after delete: err:
\n
have: %s
\n
want cause: %s"
,
i
,
err
,
eok
)
}
}
}
// XXX PDeactivate of new object with oid == InvalidOid -> stays not deactivated
// Test details of how LiveCache handles live caching policy.
func
TestLiveCache
(
t0
*
testing
.
T
)
{
assert
:=
assert
.
New
(
t0
)
...
...
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