-
-
Notifications
You must be signed in to change notification settings - Fork 398
Expand file tree
/
Copy path_memory.py
More file actions
478 lines (401 loc) · 15.8 KB
/
_memory.py
File metadata and controls
478 lines (401 loc) · 15.8 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
from __future__ import annotations
from logging import getLogger
from typing import TYPE_CHECKING, Any, Self
from zarr.abc.store import ByteRequest, Store
from zarr.core.buffer import Buffer, gpu
from zarr.core.buffer.core import default_buffer_prototype
from zarr.core.common import concurrent_map
from zarr.storage._utils import _normalize_byte_range_index, _normalize_prefix
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_listing
"""
supports_writes: bool = True
supports_deletes: 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 | None = None,
byte_range: ByteRequest | None = None,
) -> Buffer | None:
# docstring inherited
if prototype is None:
prototype = default_buffer_prototype()
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 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)
prefix = _normalize_prefix(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
async def _get_bytes(
self,
key: str = "",
*,
prototype: BufferPrototype | None = None,
byte_range: ByteRequest | None = None,
) -> bytes:
"""
Retrieve raw bytes from the memory store asynchronously.
This is a convenience override that makes the ``prototype`` parameter optional
by defaulting to the standard buffer prototype. See the base ``Store.get_bytes``
for full documentation.
Parameters
----------
key : str, optional
The key identifying the data to retrieve. Defaults to an empty string.
prototype : BufferPrototype, optional
The buffer prototype to use for reading the data. If None, uses
``default_buffer_prototype()``.
byte_range : ByteRequest, optional
If specified, only retrieve a portion of the stored data.
Returns
-------
bytes
The raw bytes stored at the given key.
Raises
------
FileNotFoundError
If the key does not exist in the store.
See Also
--------
Store.get_bytes : Base implementation with full documentation.
get_bytes_sync : Synchronous version of this method.
Examples
--------
>>> store = await MemoryStore.open()
>>> await store.set("data", Buffer.from_bytes(b"hello"))
>>> # No need to specify prototype for MemoryStore
>>> data = await store.get_bytes("data")
>>> print(data)
b'hello'
"""
if prototype is None:
prototype = default_buffer_prototype()
return await super()._get_bytes(key, prototype=prototype, byte_range=byte_range)
def _get_bytes_sync(
self,
key: str = "",
*,
prototype: BufferPrototype | None = None,
byte_range: ByteRequest | None = None,
) -> bytes:
"""
Retrieve raw bytes from the memory store synchronously.
This is a convenience override that makes the ``prototype`` parameter optional
by defaulting to the standard buffer prototype. See the base ``Store.get_bytes``
for full documentation.
Parameters
----------
key : str, optional
The key identifying the data to retrieve. Defaults to an empty string.
prototype : BufferPrototype, optional
The buffer prototype to use for reading the data. If None, uses
``default_buffer_prototype()``.
byte_range : ByteRequest, optional
If specified, only retrieve a portion of the stored data.
Returns
-------
bytes
The raw bytes stored at the given key.
Raises
------
FileNotFoundError
If the key does not exist in the store.
Warnings
--------
Do not call this method from async functions. Use ``get_bytes()`` instead.
See Also
--------
Store.get_bytes_sync : Base implementation with full documentation.
get_bytes : Asynchronous version of this method.
Examples
--------
>>> store = MemoryStore()
>>> store.set("data", Buffer.from_bytes(b"hello"))
>>> # No need to specify prototype for MemoryStore
>>> data = store.get_bytes("data")
>>> print(data)
b'hello'
"""
if prototype is None:
prototype = default_buffer_prototype()
return super()._get_bytes_sync(key, prototype=prototype, byte_range=byte_range)
async def _get_json(
self,
key: str = "",
*,
prototype: BufferPrototype | None = None,
byte_range: ByteRequest | None = None,
) -> Any:
"""
Retrieve and parse JSON data from the memory store asynchronously.
This is a convenience override that makes the ``prototype`` parameter optional
by defaulting to the standard buffer prototype. See the base ``Store.get_json``
for full documentation.
Parameters
----------
key : str, optional
The key identifying the JSON data to retrieve. Defaults to an empty string.
prototype : BufferPrototype, optional
The buffer prototype to use for reading the data. If None, uses
``default_buffer_prototype()``.
byte_range : ByteRequest, optional
If specified, only retrieve a portion of the stored data.
Note: Using byte ranges with JSON may result in invalid JSON.
Returns
-------
Any
The parsed JSON data. This follows the behavior of ``json.loads()`` and
can be any JSON-serializable type: dict, list, str, int, float, bool, or None.
Raises
------
FileNotFoundError
If the key does not exist in the store.
json.JSONDecodeError
If the stored data is not valid JSON.
See Also
--------
Store.get_json : Base implementation with full documentation.
get_json_sync : Synchronous version of this method.
get_bytes : Method for retrieving raw bytes without parsing.
Examples
--------
>>> store = await MemoryStore.open()
>>> import json
>>> metadata = {"zarr_format": 3, "node_type": "array"}
>>> await store.set("zarr.json", Buffer.from_bytes(json.dumps(metadata).encode()))
>>> # No need to specify prototype for MemoryStore
>>> data = await store.get_json("zarr.json")
>>> print(data)
{'zarr_format': 3, 'node_type': 'array'}
"""
if prototype is None:
prototype = default_buffer_prototype()
return await super()._get_json(key, prototype=prototype, byte_range=byte_range)
def _get_json_sync(
self,
key: str = "",
*,
prototype: BufferPrototype | None = None,
byte_range: ByteRequest | None = None,
) -> Any:
"""
Retrieve and parse JSON data from the memory store synchronously.
This is a convenience override that makes the ``prototype`` parameter optional
by defaulting to the standard buffer prototype. See the base ``Store.get_json``
for full documentation.
Parameters
----------
key : str, optional
The key identifying the JSON data to retrieve. Defaults to an empty string.
prototype : BufferPrototype, optional
The buffer prototype to use for reading the data. If None, uses
``default_buffer_prototype()``.
byte_range : ByteRequest, optional
If specified, only retrieve a portion of the stored data.
Note: Using byte ranges with JSON may result in invalid JSON.
Returns
-------
Any
The parsed JSON data. This follows the behavior of ``json.loads()`` and
can be any JSON-serializable type: dict, list, str, int, float, bool, or None.
Raises
------
FileNotFoundError
If the key does not exist in the store.
json.JSONDecodeError
If the stored data is not valid JSON.
Warnings
--------
Do not call this method from async functions. Use ``get_json()`` instead.
See Also
--------
Store.get_json_sync : Base implementation with full documentation.
get_json : Asynchronous version of this method.
get_bytes_sync : Method for retrieving raw bytes without parsing.
Examples
--------
>>> store = MemoryStore()
>>> import json
>>> metadata = {"zarr_format": 3, "node_type": "array"}
>>> store.set("zarr.json", Buffer.from_bytes(json.dumps(metadata).encode()))
>>> # No need to specify prototype for MemoryStore
>>> data = store.get_json("zarr.json")
>>> print(data)
{'zarr_format': 3, 'node_type': 'array'}
"""
if prototype is None:
prototype = default_buffer_prototype()
return super()._get_json_sync(key, prototype=prototype, byte_range=byte_range)
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 [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 [`gpu.Buffer`][zarr.core.buffer.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)