forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_memory.py
More file actions
250 lines (202 loc) · 7.76 KB
/
_memory.py
File metadata and controls
250 lines (202 loc) · 7.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
from __future__ import annotations
from logging import getLogger
from typing import TYPE_CHECKING, Self
from zarr.abc.store import ByteRequest, Store
from zarr.core.buffer import Buffer, gpu
from zarr.core.common import concurrent_map
from zarr.storage._utils import _normalize_byte_range_index
if TYPE_CHECKING:
from collections.abc import AsyncIterator, Iterable, MutableMapping
from zarr.core.buffer import BufferPrototype
logger = getLogger(__name__)
class MemoryStore(Store):
"""
Store for local memory.
Parameters
----------
store_dict : dict
Initial data
read_only : bool
Whether the store is read-only
Attributes
----------
supports_writes
supports_deletes
supports_partial_writes
supports_listing
"""
supports_writes: bool = True
supports_deletes: bool = True
supports_partial_writes: bool = True
supports_listing: bool = True
_store_dict: MutableMapping[str, Buffer]
def __init__(
self,
store_dict: MutableMapping[str, Buffer] | None = None,
*,
read_only: bool = False,
) -> None:
super().__init__(read_only=read_only)
if store_dict is None:
store_dict = {}
self._store_dict = store_dict
def with_read_only(self, read_only: bool = False) -> MemoryStore:
# docstring inherited
return type(self)(
store_dict=self._store_dict,
read_only=read_only,
)
async def clear(self) -> None:
# docstring inherited
self._store_dict.clear()
def __str__(self) -> str:
return f"memory://{id(self._store_dict)}"
def __repr__(self) -> str:
return f"MemoryStore('{self}')"
def __eq__(self, other: object) -> bool:
return (
isinstance(other, type(self))
and self._store_dict == other._store_dict
and self.read_only == other.read_only
)
async def get(
self,
key: str,
prototype: BufferPrototype,
byte_range: ByteRequest | None = None,
) -> Buffer | None:
# docstring inherited
if not self._is_open:
await self._open()
assert isinstance(key, str)
try:
value = self._store_dict[key]
start, stop = _normalize_byte_range_index(value, byte_range)
return prototype.buffer.from_buffer(value[start:stop])
except KeyError:
return None
async def get_partial_values(
self,
prototype: BufferPrototype,
key_ranges: Iterable[tuple[str, ByteRequest | None]],
) -> list[Buffer | None]:
# docstring inherited
# All the key-ranges arguments goes with the same prototype
async def _get(key: str, byte_range: ByteRequest | None) -> Buffer | None:
return await self.get(key, prototype=prototype, byte_range=byte_range)
return await concurrent_map(key_ranges, _get, limit=None)
async def exists(self, key: str) -> bool:
# docstring inherited
return key in self._store_dict
async def set(self, key: str, value: Buffer, byte_range: tuple[int, int] | None = None) -> None:
# docstring inherited
self._check_writable()
await self._ensure_open()
assert isinstance(key, str)
if not isinstance(value, Buffer):
raise TypeError(
f"MemoryStore.set(): `value` must be a Buffer instance. Got an instance of {type(value)} instead."
)
if byte_range is not None:
buf = self._store_dict[key]
buf[byte_range[0] : byte_range[1]] = value
self._store_dict[key] = buf
else:
self._store_dict[key] = value
async def set_if_not_exists(self, key: str, value: Buffer) -> None:
# docstring inherited
self._check_writable()
await self._ensure_open()
self._store_dict.setdefault(key, value)
async def delete(self, key: str) -> None:
# docstring inherited
self._check_writable()
try:
del self._store_dict[key]
except KeyError:
logger.debug("Key %s does not exist.", key)
async def set_partial_values(self, key_start_values: Iterable[tuple[str, int, bytes]]) -> None:
# docstring inherited
raise NotImplementedError
async def list(self) -> AsyncIterator[str]:
# docstring inherited
for key in self._store_dict:
yield key
async def list_prefix(self, prefix: str) -> AsyncIterator[str]:
# docstring inherited
# note: we materialize all dict keys into a list here so we can mutate the dict in-place (e.g. in delete_prefix)
for key in list(self._store_dict):
if key.startswith(prefix):
yield key
async def list_dir(self, prefix: str) -> AsyncIterator[str]:
# docstring inherited
prefix = prefix.rstrip("/")
if prefix == "":
keys_unique = {k.split("/")[0] for k in self._store_dict}
else:
# Our dictionary doesn't contain directory markers, but we want to include
# a pseudo directory when there's a nested item and we're listing an
# intermediate level.
keys_unique = {
key.removeprefix(prefix + "/").split("/")[0]
for key in self._store_dict
if key.startswith(prefix + "/") and key != prefix
}
for key in keys_unique:
yield key
class GpuMemoryStore(MemoryStore):
"""
Store for GPU memory.
Stores every chunk in GPU memory irrespective of the original location.
The dictionary of buffers to initialize this memory store with *must* be
GPU Buffers.
Writing data to this store through ``.set`` will move the buffer to the GPU
if necessary.
Parameters
----------
store_dict : MutableMapping, optional
A mutable mapping with string keys and :class:`zarr.core.buffer.gpu.Buffer`
values.
read_only : bool
Whether to open the store in read-only mode.
"""
_store_dict: MutableMapping[str, gpu.Buffer] # type: ignore[assignment]
def __init__(
self,
store_dict: MutableMapping[str, gpu.Buffer] | None = None,
*,
read_only: bool = False,
) -> None:
super().__init__(store_dict=store_dict, read_only=read_only) # type: ignore[arg-type]
def __str__(self) -> str:
return f"gpumemory://{id(self._store_dict)}"
def __repr__(self) -> str:
return f"GpuMemoryStore('{self}')"
@classmethod
def from_dict(cls, store_dict: MutableMapping[str, Buffer]) -> Self:
"""
Create a GpuMemoryStore from a dictionary of buffers at any location.
The dictionary backing the newly created ``GpuMemoryStore`` will not be
the same as ``store_dict``.
Parameters
----------
store_dict : mapping
A mapping of strings keys to arbitrary Buffers. The buffer data
will be moved into a :class:`gpu.Buffer`.
Returns
-------
GpuMemoryStore
"""
gpu_store_dict = {k: gpu.Buffer.from_buffer(v) for k, v in store_dict.items()}
return cls(gpu_store_dict)
async def set(self, key: str, value: Buffer, byte_range: tuple[int, int] | None = None) -> None:
# docstring inherited
self._check_writable()
assert isinstance(key, str)
if not isinstance(value, Buffer):
raise TypeError(
f"GpuMemoryStore.set(): `value` must be a Buffer instance. Got an instance of {type(value)} instead."
)
# Convert to gpu.Buffer
gpu_value = value if isinstance(value, gpu.Buffer) else gpu.Buffer.from_buffer(value)
await super().set(key, gpu_value, byte_range=byte_range)