Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8394626
objstorage.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
objstorage.py
View Options
# Copyright (C) 2020 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from
typing
import
Dict
,
Generator
,
Iterable
from
swh.model.model
import
Content
,
MissingData
from
swh.objstorage
import
get_objstorage
from
swh.objstorage.exc
import
ObjNotFoundError
from
.exc
import
StorageArgumentException
class
ObjStorage
:
"""Objstorage collaborator in charge of adding objects to
the objstorage.
"""
def
__init__
(
self
,
objstorage_config
:
Dict
):
self
.
objstorage
=
get_objstorage
(
**
objstorage_config
)
def
__getattr__
(
self
,
key
):
if
key
==
"objstorage"
:
raise
AttributeError
(
key
)
return
getattr
(
self
.
objstorage
,
key
)
def
content_get
(
self
,
contents
:
Iterable
[
bytes
])
->
Generator
:
"""Retrieve content data from the objstorage
Args:
contents: List of contents to retrieve data from
"""
for
obj_id
in
contents
:
try
:
data
=
self
.
objstorage
.
get
(
obj_id
)
except
ObjNotFoundError
:
yield
None
continue
yield
{
"sha1"
:
obj_id
,
"data"
:
data
}
def
content_add
(
self
,
contents
:
Iterable
[
Content
])
->
Dict
:
"""Add contents to the objstorage.
Args:
contents: List of contents to add1
Returns:
The summary dict of content and content bytes added to the
objstorage.
"""
try
:
contents
=
[
c
.
with_data
()
for
c
in
contents
]
except
MissingData
:
raise
StorageArgumentException
(
"Missing data"
)
from
None
summary
=
self
.
objstorage
.
add_batch
({
cont
.
sha1
:
cont
.
data
for
cont
in
contents
})
return
{
"content:add"
:
summary
[
"object:add"
],
"content:add:bytes"
:
summary
[
"object:add:bytes"
],
}
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Wed, Jun 4, 7:27 PM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3288411
Attached To
rDSTO Storage manager
Event Timeline
Log In to Comment