Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
ZEO
Commits
ca9cfcf9
Commit
ca9cfcf9
authored
20 years ago
by
Dmitry Vasiliev
Browse files
Options
Download
Email Patches
Plain Diff
Merge rev 28197 from ZODB 3.3 branch.
Imports normalization.
parent
db606bfc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
21 deletions
+14
-21
src/ZODB/BaseStorage.py
src/ZODB/BaseStorage.py
+3
-5
src/ZODB/ConflictResolution.py
src/ZODB/ConflictResolution.py
+1
-1
src/ZODB/Connection.py
src/ZODB/Connection.py
+1
-3
src/ZODB/DemoStorage.py
src/ZODB/DemoStorage.py
+8
-8
src/ZODB/ExportImport.py
src/ZODB/ExportImport.py
+0
-1
src/ZODB/Mount.py
src/ZODB/Mount.py
+1
-3
No files found.
src/ZODB/BaseStorage.py
View file @
ca9cfcf9
...
...
@@ -20,12 +20,10 @@ import threading
import
time
import
logging
import
UndoLogCompatible
import
POSException
from
persistent.TimeStamp
import
TimeStamp
from
ZODB
import
POSException
,
utils
from
ZODB.utils
import
z64
from
ZODB
import
POSException
from
ZODB.utils
import
z64
,
oid_repr
from
ZODB.UndoLogCompatible
import
UndoLogCompatible
log
=
logging
.
getLogger
(
"ZODB.BaseStorage"
)
...
...
@@ -402,7 +400,7 @@ class BaseStorage(UndoLogCompatible):
for
r
in
transaction
:
oid
=
r
.
oid
if
verbose
:
print
utils
.
oid_repr
(
oid
),
r
.
version
,
len
(
r
.
data
)
print
oid_repr
(
oid
),
r
.
version
,
len
(
r
.
data
)
if
restoring
:
self
.
restore
(
oid
,
r
.
tid
,
r
.
data
,
r
.
version
,
r
.
data_txn
,
transaction
)
...
...
This diff is collapsed.
Click to expand it.
src/ZODB/ConflictResolution.py
View file @
ca9cfcf9
...
...
@@ -11,7 +11,7 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
import
sys
import
logging
from
cStringIO
import
StringIO
from
cPickle
import
Unpickler
,
Pickler
...
...
This diff is collapsed.
Click to expand it.
src/ZODB/Connection.py
View file @
ca9cfcf9
...
...
@@ -20,10 +20,8 @@ import sys
import
threading
import
warnings
from
time
import
time
from
utils
import
u64
from
persistent
import
PickleCache
from
persistent.interfaces
import
IPersistent
import
transaction
...
...
@@ -33,7 +31,7 @@ from ZODB.POSException \
import
ConflictError
,
ReadConflictError
,
InvalidObjectReference
,
\
ConnectionStateError
from
ZODB.TmpStore
import
TmpStore
from
ZODB.utils
import
oid_repr
,
z64
,
positive_id
from
ZODB.utils
import
u64
,
oid_repr
,
z64
,
positive_id
from
ZODB.serialize
import
ObjectWriter
,
ConnectionObjectReader
,
myhasattr
from
ZODB.interfaces
import
IConnection
from
zope.interface
import
implements
...
...
This diff is collapsed.
Click to expand it.
src/ZODB/DemoStorage.py
View file @
ca9cfcf9
...
...
@@ -80,9 +80,9 @@ and call it to monitor the storage.
"""
import
base64
,
time
,
string
from
ZODB
import
POSException
,
BaseStorage
,
utils
from
ZODB.utils
import
z64
import
base64
,
time
from
ZODB
import
POSException
,
BaseStorage
from
ZODB.utils
import
z64
,
oid_repr
from
persistent.TimeStamp
import
TimeStamp
from
cPickle
import
loads
from
BTrees
import
OOBTree
...
...
@@ -509,8 +509,8 @@ class DemoStorage(BaseStorage.BaseStorage):
o
.
append
(
" %s %s"
%
(
TimeStamp
(
tid
),
p
))
for
r
in
t
:
oid
,
pre
,
vdata
,
p
,
tid
=
r
oid
=
utils
.
oid_repr
(
oid
)
tid
=
utils
.
oid_repr
(
tid
)
oid
=
oid_repr
(
oid
)
tid
=
oid_repr
(
tid
)
## if serial is not None: serial=str(TimeStamp(serial))
pre
=
id
(
pre
)
if
vdata
and
vdata
[
1
]:
vdata
=
vdata
[
0
],
id
(
vdata
[
1
])
...
...
@@ -523,7 +523,7 @@ class DemoStorage(BaseStorage.BaseStorage):
items
.
sort
()
for
oid
,
r
in
items
:
if
r
:
r
=
id
(
r
)
o
.
append
(
' %s: %s'
%
(
utils
.
oid_repr
(
oid
),
r
))
o
.
append
(
' %s: %s'
%
(
oid_repr
(
oid
),
r
))
o
.
append
(
'
\n
Version Index:'
)
items
=
self
.
_vindex
.
items
()
...
...
@@ -534,6 +534,6 @@ class DemoStorage(BaseStorage.BaseStorage):
vitems
.
sort
()
for
oid
,
r
in
vitems
:
if
r
:
r
=
id
(
r
)
o
.
append
(
' %s: %s'
%
(
utils
.
oid_repr
(
oid
),
r
))
o
.
append
(
' %s: %s'
%
(
oid_repr
(
oid
),
r
))
return
string
.
join
(
o
,
'
\n
'
)
return
'
\n
'
.
join
(
o
)
This diff is collapsed.
Click to expand it.
src/ZODB/ExportImport.py
View file @
ca9cfcf9
...
...
@@ -21,7 +21,6 @@ import logging
from
ZODB.POSException
import
ExportError
from
ZODB.utils
import
p64
,
u64
from
ZODB.serialize
import
referencesf
import
sys
logger
=
logging
.
getLogger
(
'ZODB.ExportImport'
)
...
...
This diff is collapsed.
Click to expand it.
src/ZODB/Mount.py
View file @
ca9cfcf9
...
...
@@ -15,9 +15,7 @@
$Id$"""
import
string
import
time
import
sys
import
thread
import
logging
import
persistent
...
...
@@ -187,7 +185,7 @@ class MountPoint(persistent.Persistent, Acquisition.Implicit):
if
newMount
:
try
:
id
=
data
.
getId
()
except
:
id
=
'???'
# data has no getId() method. Bad.
p
=
string
.
join
(
parent
.
getPhysicalPath
()
+
(
id
,)
,
'/'
)
p
=
'/'
.
join
(
parent
.
getPhysicalPath
()
+
(
id
,))
logger
.
info
(
'Mounted database %s at %s'
,
self
.
_getMountParams
(),
p
)
else
:
...
...
This diff is collapsed.
Click to expand it.
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