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
423908a9
Commit
423908a9
authored
Nov 05, 2002
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove support for undo (of the non-transactional variety).
parent
91c7c629
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
54 deletions
+1
-54
src/ZODB/FileStorage.py
src/ZODB/FileStorage.py
+1
-54
No files found.
src/ZODB/FileStorage.py
View file @
423908a9
...
@@ -115,7 +115,7 @@
...
@@ -115,7 +115,7 @@
# may have a back pointer to a version record or to a non-version
# may have a back pointer to a version record or to a non-version
# record.
# record.
#
#
__version__
=
'$Revision: 1.11
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.11
3
$'
[
11
:
-
2
]
import
base64
import
base64
from
cPickle
import
Pickler
,
Unpickler
,
loads
from
cPickle
import
Pickler
,
Unpickler
,
loads
...
@@ -862,9 +862,6 @@ class FileStorage(BaseStorage.BaseStorage,
...
@@ -862,9 +862,6 @@ class FileStorage(BaseStorage.BaseStorage,
finally
:
finally
:
self
.
_lock_release
()
self
.
_lock_release
()
def
supportsUndo
(
self
):
return
1
def
supportsVersions
(
self
):
def
supportsVersions
(
self
):
return
1
return
1
...
@@ -958,56 +955,6 @@ class FileStorage(BaseStorage.BaseStorage,
...
@@ -958,56 +955,6 @@ class FileStorage(BaseStorage.BaseStorage,
self
.
_file
.
truncate
(
self
.
_pos
)
self
.
_file
.
truncate
(
self
.
_pos
)
self
.
_nextpos
=
0
self
.
_nextpos
=
0
def
undo
(
self
,
transaction_id
):
if
self
.
_is_read_only
:
raise
POSException
.
ReadOnlyError
()
self
.
_lock_acquire
()
try
:
self
.
_clear_index
()
transaction_id
=
base64
.
decodestring
(
transaction_id
+
'
\
n
'
)
tid
,
tpos
=
transaction_id
[:
8
],
U64
(
transaction_id
[
8
:])
packt
=
self
.
_packt
if
packt
is
None
or
packt
>
tid
:
raise
UndoError
,
(
'Undo is currently disabled for database maintenance.<p>'
)
file
=
self
.
_file
seek
=
file
.
seek
read
=
file
.
read
index_get
=
self
.
_index_get
unpack
=
struct
.
unpack
seek
(
tpos
)
h
=
read
(
TRANS_HDR_LEN
)
if
len
(
h
)
!=
TRANS_HDR_LEN
or
h
[:
8
]
!=
tid
:
raise
UndoError
(
'Invalid undo transaction id'
)
if
h
[
16
]
==
'u'
:
return
if
h
[
16
]
!=
' '
:
raise
UndoError
tl
=
U64
(
h
[
8
:
16
])
ul
,
dl
,
el
=
unpack
(
">HHH"
,
h
[
17
:
TRANS_HDR_LEN
])
tend
=
tpos
+
tl
pos
=
tpos
+
(
TRANS_HDR_LEN
+
ul
+
dl
+
el
)
t
=
{}
while
pos
<
tend
:
# Read the data records for this transaction
seek
(
pos
)
h
=
read
(
DATA_HDR_LEN
)
oid
,
serial
,
sprev
,
stloc
,
vlen
,
splen
=
unpack
(
DATA_HDR
,
h
)
plen
=
U64
(
splen
)
prev
=
U64
(
sprev
)
dlen
=
DATA_HDR_LEN
+
(
plen
or
8
)
if
vlen
:
dlen
=
dlen
+
(
16
+
vlen
)
if
index_get
(
oid
,
0
)
!=
pos
:
raise
UndoError
pos
=
pos
+
dlen
if
pos
>
tend
:
raise
UndoError
t
[
oid
]
=
prev
seek
(
tpos
+
16
)
file
.
write
(
'u'
)
file
.
flush
()
self
.
_index
.
update
(
t
)
return
t
.
keys
()
finally
:
self
.
_lock_release
()
def
supportsTransactionalUndo
(
self
):
def
supportsTransactionalUndo
(
self
):
return
1
return
1
...
...
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