Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F7066391
D2276.id7834.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
D2276.id7834.diff
View Options
diff --git a/swh/storage/__init__.py b/swh/storage/__init__.py
--- a/swh/storage/__init__.py
+++ b/swh/storage/__init__.py
@@ -27,7 +27,7 @@
- args (dict): dictionary with keys
Returns:
- an instance of swh.storage.Storage (either local or remote)
+ an instance of swh.storage.Storage or compatible class
Raises:
ValueError if passed an unknown storage class.
@@ -49,3 +49,38 @@
from .buffer import BufferingProxyStorage as Storage
return Storage(**args)
+
+
+def get_storage_pipeline(steps):
+ """Recursively get a storage object that may use other storage objects
+ as backends.
+
+ Args:
+ steps (List[dict]): List of dicts that may be used as kwargs for
+ `get_storage`.
+
+ Returns:
+ an instance of swh.storage.Storage or compatible class
+
+ Raises:
+ ValueError if passed an unknown storage class.
+ """
+ if not isinstance(steps, list):
+ steps = [steps]
+
+ storage_config = None
+ for step in reversed(steps):
+ if isinstance(step, str):
+ cls = step
+ args = {}
+ else:
+ cls = step['cls']
+ args = step.get('args', {})
+ if storage_config:
+ args['storage'] = storage_config
+ storage_config = {
+ 'cls': cls,
+ 'args': args,
+ }
+
+ return get_storage(**storage_config)
diff --git a/swh/storage/tests/test_init.py b/swh/storage/tests/test_init.py
--- a/swh/storage/tests/test_init.py
+++ b/swh/storage/tests/test_init.py
@@ -7,7 +7,7 @@
from unittest.mock import patch
-from swh.storage import get_storage
+from swh.storage import get_storage, get_storage_pipeline
from swh.storage.api.client import RemoteStorage
from swh.storage.storage import Storage as DbStorage
@@ -48,3 +48,59 @@
"""
with pytest.raises(ValueError, match='Unknown storage class `unknown`'):
get_storage('unknown', args=[])
+
+
+def test_get_storage_pipeline():
+ config = [
+ {
+ 'cls': 'filter',
+ },
+ {
+ 'cls': 'buffer',
+ 'args': {
+ 'min_batch_size': {
+ 'content': 10,
+ },
+ }
+ },
+ {
+ 'cls': 'memory',
+ }
+ ]
+
+ storage = get_storage_pipeline(config)
+
+ assert isinstance(storage, FilteringProxyStorage)
+ assert isinstance(storage.storage, BufferingProxyStorage)
+ assert isinstance(storage.storage.storage, MemoryStorage)
+
+
+def test_get_storage_pipeline_omit_keys():
+ config = [
+ 'filter',
+ {
+ 'cls': 'buffer',
+ 'args': {
+ 'min_batch_size': {
+ 'content': 10,
+ },
+ }
+ },
+ 'memory',
+ ]
+
+ storage = get_storage_pipeline(config)
+
+ assert isinstance(storage, FilteringProxyStorage)
+ assert isinstance(storage.storage, BufferingProxyStorage)
+ assert isinstance(storage.storage.storage, MemoryStorage)
+
+
+def test_get_storage_pipeline_single():
+ config = {
+ 'cls': 'memory',
+ }
+
+ storage = get_storage_pipeline(config)
+
+ assert isinstance(storage, MemoryStorage)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Nov 5 2024, 7:31 AM (8 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3231506
Attached To
D2276: Add get_storage_pipeline utility function for more readable configurations.
Event Timeline
Log In to Comment