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
Joshua
zodb
Commits
c2a8e340
Commit
c2a8e340
authored
Jun 10, 2007
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now require Blob files to be stored even for unopened blobs.
parent
2794dae8
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
34 additions
and
48 deletions
+34
-48
src/ZEO/ClientStorage.py
src/ZEO/ClientStorage.py
+5
-5
src/ZEO/ServerStub.py
src/ZEO/ServerStub.py
+0
-5
src/ZEO/StorageServer.py
src/ZEO/StorageServer.py
+0
-3
src/ZEO/zrpc/connection.py
src/ZEO/zrpc/connection.py
+0
-1
src/ZODB/Connection.py
src/ZODB/Connection.py
+6
-9
src/ZODB/ExportImport.py
src/ZODB/ExportImport.py
+5
-8
src/ZODB/blob.py
src/ZODB/blob.py
+16
-15
src/ZODB/interfaces.py
src/ZODB/interfaces.py
+1
-1
src/ZODB/tests/blob_connection.txt
src/ZODB/tests/blob_connection.txt
+1
-1
No files found.
src/ZEO/ClientStorage.py
View file @
c2a8e340
...
...
@@ -899,8 +899,7 @@ class ClientStorage(object):
else
:
self
.
_server
.
storeBlob
(
oid
,
serial
,
data
,
blobfilename
,
version
,
txn
)
if
blobfilename
is
not
None
:
self
.
_tbuf
.
storeBlob
(
oid
,
blobfilename
)
self
.
_tbuf
.
storeBlob
(
oid
,
blobfilename
)
return
serials
def
_storeBlob_shared
(
self
,
oid
,
serial
,
data
,
filename
,
version
,
txn
):
...
...
@@ -965,6 +964,7 @@ class ClientStorage(object):
# Load a blob. If it isn't present and we have a shared blob
# directory, then assume that it doesn't exist on the server
# and return None.
if
self
.
fshelper
is
None
:
raise
POSException
.
Unsupported
(
"No blob cache directory is "
"configured."
)
...
...
@@ -976,8 +976,8 @@ class ClientStorage(object):
if
self
.
blob_cache_writable
:
# We're using a server shared cache. If the file isn't
# here, it's not anyw
a
here.
r
eturn
None
# here, it's not anywhere.
r
aise
POSKeyError
(
"No blob file"
,
oid
,
serial
)
# First, we'll create the directory for this oid, if it doesn't exist.
targetpath
=
self
.
fshelper
.
getPathForOID
(
oid
)
...
...
@@ -1040,7 +1040,7 @@ class ClientStorage(object):
if
self
.
_have_blob
(
blob_filename
,
oid
,
serial
):
return
blob_filename
r
eturn
None
r
aise
POSKeyError
(
"No blob file"
,
oid
,
serial
)
finally
:
lock
.
close
()
...
...
src/ZEO/ServerStub.py
View file @
c2a8e340
...
...
@@ -226,11 +226,6 @@ class StorageServer:
# the data into memory, so we use a message iterator. This
# allows us to read the blob data as needed.
if
blobfilename
is
None
:
self
.
rpc
.
callAsync
(
'storeEmptyBlob'
,
oid
,
serial
,
data
,
version
,
id
(
txn
))
return
def
store
():
yield
(
'storeBlobStart'
,
())
f
=
open
(
blobfilename
,
'rb'
)
...
...
src/ZEO/StorageServer.py
View file @
c2a8e340
...
...
@@ -539,9 +539,6 @@ class ZEOStorage:
os
.
close
(
fd
)
self
.
blob_log
.
append
((
oid
,
serial
,
data
,
tempname
,
version
))
def
storeEmptyBlob
(
self
,
oid
,
serial
,
data
,
version
,
id
):
self
.
blob_log
.
append
((
oid
,
serial
,
data
,
None
,
version
))
def
storeBlobShared
(
self
,
oid
,
serial
,
data
,
filename
,
version
,
id
):
# Reconstruct the full path from the filename in the OID directory
filename
=
os
.
path
.
join
(
self
.
storage
.
fshelper
.
getPathForOID
(
oid
),
...
...
src/ZEO/zrpc/connection.py
View file @
c2a8e340
...
...
@@ -305,7 +305,6 @@ class Connection(smac.SizedMessageAsyncConnection, object):
# Z308 -- named after the ZODB release 3.8
# Added blob-support server methods:
# sendBlob
# storeEmptyBlob
# storeBlobStart
# storeBlobChunk
# storeBlobEnd
...
...
src/ZODB/Connection.py
View file @
c2a8e340
...
...
@@ -1072,7 +1072,6 @@ class Connection(ExportImport, object):
def
savepoint
(
self
):
if
self
.
_savepoint_storage
is
None
:
# XXX what to do about IBlobStorages?
tmpstore
=
TmpStore
(
self
.
_version
,
self
.
_normal_storage
)
self
.
_savepoint_storage
=
tmpstore
self
.
_storage
=
self
.
_savepoint_storage
...
...
@@ -1115,12 +1114,8 @@ class Connection(ExportImport, object):
for
oid
in
oids
:
data
,
serial
=
src
.
load
(
oid
,
src
)
try
:
if
isinstance
(
self
.
_reader
.
getGhost
(
data
),
Blob
)
:
blobfilename
=
src
.
loadBlob
(
oid
,
serial
)
except
(
POSKeyError
,
Unsupported
):
s
=
self
.
_storage
.
store
(
oid
,
serial
,
data
,
self
.
_version
,
transaction
)
else
:
s
=
self
.
_storage
.
storeBlob
(
oid
,
serial
,
data
,
blobfilename
,
self
.
_version
,
transaction
)
# we invalidate the object here in order to ensure
...
...
@@ -1128,6 +1123,10 @@ class Connection(ExportImport, object):
# unghostify it, which will cause its blob data
# to be reattached "cleanly"
self
.
invalidate
(
s
,
{
oid
:
True
})
else
:
s
=
self
.
_storage
.
store
(
oid
,
serial
,
data
,
self
.
_version
,
transaction
)
self
.
_handle_serial
(
s
,
oid
,
change
=
False
)
src
.
close
()
...
...
@@ -1240,8 +1239,6 @@ class TmpStore:
def
storeBlob
(
self
,
oid
,
serial
,
data
,
blobfilename
,
version
,
transaction
):
serial
=
self
.
store
(
oid
,
serial
,
data
,
version
,
transaction
)
assert
isinstance
(
serial
,
str
)
# XXX in theory serials could be
# something else
targetpath
=
self
.
_getBlobPath
(
oid
)
if
not
os
.
path
.
exists
(
targetpath
):
...
...
@@ -1259,7 +1256,7 @@ class TmpStore:
self
.
_storage
)
filename
=
self
.
_getCleanFilename
(
oid
,
serial
)
if
not
os
.
path
.
exists
(
filename
):
raise
POSKeyError
,
"Not an existing blob."
raise
POSKeyError
(
"No blob file"
,
oid
,
serial
)
return
filename
def
_getBlobPath
(
self
,
oid
):
...
...
src/ZODB/ExportImport.py
View file @
c2a8e340
...
...
@@ -20,10 +20,11 @@ from cPickle import Pickler, Unpickler
from
tempfile
import
TemporaryFile
import
logging
from
ZODB.POSException
import
ExportError
,
POSKeyError
from
ZODB.utils
import
p64
,
u64
,
cp
,
mktemp
from
ZODB.blob
import
Blob
from
ZODB.interfaces
import
IBlobStorage
from
ZODB.POSException
import
ExportError
,
POSKeyError
from
ZODB.serialize
import
referencesf
from
ZODB.utils
import
p64
,
u64
,
cp
,
mktemp
logger
=
logging
.
getLogger
(
'ZODB.ExportImport'
)
...
...
@@ -55,14 +56,10 @@ class ExportImport:
f
.
writelines
([
oid
,
p64
(
len
(
p
)),
p
])
if
supports_blobs
:
if
'Blob'
not
in
p
:
continue
#
filter out most non-blobs
if
not
isinstance
(
self
.
_reader
.
getGhost
(
p
),
Blob
)
:
continue
#
not a blob
blobfilename
=
self
.
_storage
.
loadBlob
(
oid
,
serial
)
if
blobfilename
is
None
:
# This could be a non-blob or a blob with unsaved data.
continue
f
.
write
(
blob_begin_marker
)
f
.
write
(
p64
(
os
.
stat
(
blobfilename
).
st_size
))
blobdata
=
open
(
blobfilename
,
"rb"
)
...
...
src/ZODB/blob.py
View file @
c2a8e340
...
...
@@ -245,6 +245,8 @@ class Blob(persistent.Persistent):
# hand uncommitted data to connection, relinquishing responsibility
# for it.
filename
=
self
.
_p_blob_uncommitted
if
filename
is
None
and
self
.
_p_blob_committed
is
None
:
filename
=
self
.
_create_uncommitted_file
()
self
.
_p_blob_uncommitted
=
self
.
_p_blob_ref
=
None
return
filename
...
...
@@ -413,22 +415,21 @@ class BlobStorage(SpecificationDecoratorBase):
# the user may not have called "open" on the blob object,
# in which case, the blob will not have a filename.
if
blobfilename
is
not
None
:
self
.
_lock_acquire
()
try
:
targetpath
=
self
.
fshelper
.
getPathForOID
(
oid
)
if
not
os
.
path
.
exists
(
targetpath
):
os
.
makedirs
(
targetpath
,
0700
)
self
.
_lock_acquire
()
try
:
targetpath
=
self
.
fshelper
.
getPathForOID
(
oid
)
if
not
os
.
path
.
exists
(
targetpath
):
os
.
makedirs
(
targetpath
,
0700
)
targetname
=
self
.
fshelper
.
getBlobFilename
(
oid
,
serial
)
utils
.
rename_or_copy
(
blobfilename
,
targetname
)
targetname
=
self
.
fshelper
.
getBlobFilename
(
oid
,
serial
)
utils
.
rename_or_copy
(
blobfilename
,
targetname
)
# XXX if oid already in there, something is really hosed.
# The underlying storage should have complained anyway
self
.
dirty_oids
.
append
((
oid
,
serial
))
finally
:
self
.
_lock_release
()
return
self
.
_tid
# XXX if oid already in there, something is really hosed.
# The underlying storage should have complained anyway
self
.
dirty_oids
.
append
((
oid
,
serial
))
finally
:
self
.
_lock_release
()
return
self
.
_tid
@
non_overridable
def
tpc_finish
(
self
,
*
arg
,
**
kw
):
...
...
@@ -456,7 +457,7 @@ class BlobStorage(SpecificationDecoratorBase):
"""
filename
=
self
.
fshelper
.
getBlobFilename
(
oid
,
serial
)
if
not
os
.
path
.
exists
(
filename
):
r
eturn
None
r
aise
POSKeyError
(
"No blob file"
,
oid
,
serial
)
return
filename
@
non_overridable
...
...
src/ZODB/interfaces.py
View file @
c2a8e340
...
...
@@ -946,7 +946,7 @@ class IBlobStorage(Interface):
def
loadBlob
(
oid
,
serial
):
"""Return the filename of the Blob data for this OID and serial.
Returns a filename
or None if no Blob data is connected with this OID
.
Returns a filename.
Raises POSKeyError if the blobfile cannot be found.
"""
...
...
src/ZODB/tests/blob_connection.txt
View file @
c2a8e340
...
...
@@ -44,7 +44,7 @@ Putting a Blob into a Connection works like every other object:
>>> transaction.commit()
We can also commit a transaction that seats a blob into place without
calling the blob's open method
(this currently fails)
:
calling the blob's open method:
>>> nothing = transaction.begin()
>>> anotherblob = Blob()
...
...
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