Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
nexedi
ZODB
Commits
7aa7c699
Commit
7aa7c699
authored
Feb 03, 2005
by
Dmitry Vasiliev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Size info for object records was added. Also use enumerate() builtin.
parent
475d8cb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
src/ZODB/FileStorage/fsdump.py
src/ZODB/FileStorage/fsdump.py
+9
-11
No files found.
src/ZODB/FileStorage/fsdump.py
View file @
7aa7c699
...
...
@@ -21,9 +21,8 @@ from ZODB.utils import u64, get_pickle_metadata
from
ZODB.tests.StorageTestBase
import
zodb_unpickle
def
fsdump
(
path
,
file
=
None
,
with_offset
=
1
):
i
=
0
iter
=
FileIterator
(
path
)
for
trans
in
iter
:
for
i
,
trans
in
enumerate
(
iter
)
:
if
with_offset
:
print
>>
file
,
"Trans #%05d tid=%016x time=%s offset=%d"
%
\
(
i
,
u64
(
trans
.
tid
),
str
(
TimeStamp
(
trans
.
tid
)),
trans
.
_pos
)
...
...
@@ -32,12 +31,13 @@ def fsdump(path, file=None, with_offset=1):
(
i
,
u64
(
trans
.
tid
),
str
(
TimeStamp
(
trans
.
tid
)))
print
>>
file
,
"
\
t
status=%s user=%s description=%s"
%
\
(
`trans.status`
,
trans
.
user
,
trans
.
description
)
j
=
0
for
rec
in
trans
:
for
j
,
rec
in
enumerate
(
trans
):
if
rec
.
data
is
None
:
fullclass
=
"undo or abort of object creation"
size
=
""
else
:
modname
,
classname
=
get_pickle_metadata
(
rec
.
data
)
size
=
" size=%d"
%
len
(
rec
.
data
)
fullclass
=
"%s.%s"
%
(
modname
,
classname
)
# FIXME: Is this used?
# special case for testing purposes
...
...
@@ -45,20 +45,18 @@ def fsdump(path, file=None, with_offset=1):
obj
=
zodb_unpickle
(
rec
.
data
)
fullclass
=
"%s %s"
%
(
fullclass
,
obj
.
value
)
if
rec
.
version
:
version
=
"
version=%s
"
%
rec
.
version
version
=
"
version=%s
"
%
rec
.
version
else
:
version
=
''
version
=
""
if
rec
.
data_txn
:
# XXX It would be nice to print the transaction number
# (i) but it would be too expensive to keep track of.
bp
=
"bp=%016x"
%
u64
(
rec
.
data_txn
)
bp
=
"
bp=%016x"
%
u64
(
rec
.
data_txn
)
else
:
bp
=
""
print
>>
file
,
" data #%05d oid=%016x %sclass=%s %s"
%
\
(
j
,
u64
(
rec
.
oid
),
version
,
fullclass
,
bp
)
j
+=
1
print
>>
file
,
" data #%05d oid=%016x%s%s class=%s%s"
%
\
(
j
,
u64
(
rec
.
oid
),
version
,
size
,
fullclass
,
bp
)
print
>>
file
i
+=
1
iter
.
close
()
def
fmt
(
p64
):
...
...
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