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
Kirill Smelkov
ZODB
Commits
06e757b3
Commit
06e757b3
authored
Oct 14, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print transaction and data record size.
parent
e30b316a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
7 deletions
+19
-7
src/ZODB/fsdump.py
src/ZODB/fsdump.py
+19
-7
No files found.
src/ZODB/fsdump.py
View file @
06e757b3
...
...
@@ -41,14 +41,17 @@ def fsdump(path, file=None, with_offset=1):
iter
=
FileIterator
(
path
)
for
trans
in
iter
:
if
with_offset
:
print
>>
file
,
"Trans #%05d tid=%016x time=%s offset=%d"
%
\
(
i
,
u64
(
trans
.
tid
),
str
(
TimeStamp
(
trans
.
tid
)),
trans
.
_pos
)
print
>>
file
,
(
"Trans #%05d tid=%016x time=%s offset=%d"
%
(
i
,
u64
(
trans
.
tid
),
str
(
TimeStamp
(
trans
.
tid
)),
trans
.
_pos
))
else
:
print
>>
file
,
"Trans #%05d tid=%016x time=%s"
%
\
(
i
,
u64
(
trans
.
tid
),
str
(
TimeStamp
(
trans
.
tid
)))
print
>>
file
,
"
\
t
status=%s user=%s description=%s"
%
\
(
`trans.status`
,
trans
.
user
,
trans
.
description
)
print
>>
file
,
"
\
t
size=%d status=%s user=%s description=%s"
%
\
(
trans
.
_tend
-
trans
.
_tpos
,
`trans.status`
,
trans
.
user
,
trans
.
description
)
j
=
0
tsize
=
0
for
rec
in
trans
:
if
rec
.
data
is
None
:
fullclass
=
"undo or abort of object creation"
...
...
@@ -70,8 +73,17 @@ def fsdump(path, file=None, with_offset=1):
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
)
if
rec
.
data_txn
:
size
=
8
+
len
(
rec
.
version
)
else
:
size
=
len
(
rec
.
data
)
+
len
(
rec
.
version
)
if
rec
.
version
:
size
+=
DATA_VERSION_HDR_LEN
else
:
size
+=
DATA_HDR_LEN
tsize
+=
size
print
>>
file
,
" data #%05d oid=%016x %sclass=%s size=%d %s"
%
\
(
j
,
u64
(
rec
.
oid
),
version
,
fullclass
,
size
,
bp
)
j
+=
1
print
>>
file
i
+=
1
...
...
@@ -79,7 +91,7 @@ def fsdump(path, file=None, with_offset=1):
import
struct
from
ZODB.FileStorage
import
TRANS_HDR
,
TRANS_HDR_LEN
from
ZODB.FileStorage
import
DATA_HDR
,
DATA_HDR_LEN
from
ZODB.FileStorage
import
DATA_HDR
,
DATA_HDR_LEN
,
DATA_VERSION_HDR_LEN
def
fmt
(
p64
):
# Return a nicely formatted string for a packaged 64-bit value
...
...
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