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
a4c46daf
Commit
a4c46daf
authored
Oct 17, 2008
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Noted that storeBlob and consumeFile take ownership of the file passed
in and that the file must not be open.
parent
408be8ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
src/ZODB/interfaces.py
src/ZODB/interfaces.py
+15
-3
No files found.
src/ZODB/interfaces.py
View file @
a4c46daf
##############################################################################
##############################################################################
#
#
# Copyright (c)
2004
Zope Corporation and Contributors.
# Copyright (c) Zope Corporation and Contributors.
# All Rights Reserved.
# All Rights Reserved.
#
#
# This software is subject to the provisions of the Zope Public License,
# This software is subject to the provisions of the Zope Public License,
...
@@ -801,7 +801,8 @@ class IStorageTransactionInformation(Interface):
...
@@ -801,7 +801,8 @@ class IStorageTransactionInformation(Interface):
status
=
Attribute
(
"Transaction Status"
)
# XXX what are valid values?
status
=
Attribute
(
"Transaction Status"
)
# XXX what are valid values?
user
=
Attribute
(
"Transaction user"
)
user
=
Attribute
(
"Transaction user"
)
description
=
Attribute
(
"Transaction Description"
)
description
=
Attribute
(
"Transaction Description"
)
extension
=
Attribute
(
"A dictionary carrying the transaction's extension data"
)
extension
=
Attribute
(
"A dictionary carrying the transaction's extension data"
)
def
__iter__
():
def
__iter__
():
"""Iterate over the transaction's records given as
"""Iterate over the transaction's records given as
...
@@ -974,6 +975,10 @@ class IBlob(Interface):
...
@@ -974,6 +975,10 @@ class IBlob(Interface):
The blob must not be opened for reading or writing when consuming a
The blob must not be opened for reading or writing when consuming a
file.
file.
The blob will take over ownership of the file and will either
rename or copy and remove it. The file must not be open.
"""
"""
...
@@ -981,7 +986,14 @@ class IBlobStorage(Interface):
...
@@ -981,7 +986,14 @@ class IBlobStorage(Interface):
"""A storage supporting BLOBs."""
"""A storage supporting BLOBs."""
def
storeBlob
(
oid
,
oldserial
,
data
,
blobfilename
,
version
,
transaction
):
def
storeBlob
(
oid
,
oldserial
,
data
,
blobfilename
,
version
,
transaction
):
"""Stores data that has a BLOB attached."""
"""Stores data that has a BLOB attached.
The blobfilename argument names a file containing blob data.
The storage will take ownership of the file and will rename it
(or copy and remove it) immediately, or at transaction-commit
time. The file must not be open.
"""
def
loadBlob
(
oid
,
serial
):
def
loadBlob
(
oid
,
serial
):
"""Return the filename of the Blob data for this OID and serial.
"""Return the filename of the Blob data for this OID and serial.
...
...
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