Skip to content

Commit a992298

Browse files
authored
Pass failures through to next layer (#36)
1 parent 84b0287 commit a992298

5 files changed

+50
-12
lines changed

bossphorus/__init__.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
import numpy as np
2929

3030
from . import storagemanager
31-
from .storagemanager import FilesystemStorageManager, RelayStorageManager
31+
from .storagemanager import (
32+
FilesystemStorageManager,
33+
RelayStorageManager,
34+
ChunkedFilesystemStorageManager,
35+
)
3236
from . import version
3337

3438
__version__ = version.__version__
@@ -43,12 +47,12 @@ def create_app(mgr: storagemanager.StorageManager = None):
4347
if mgr:
4448
manager = mgr
4549
else:
46-
manager = FilesystemStorageManager(
50+
manager = ChunkedFilesystemStorageManager(
4751
"./uploads",
4852
(256, 256, 256),
4953
next_layer=(
5054
RelayStorageManager(
51-
upstream_uri="api.bossdb.org", protocol="https", token="PUBLIC"
55+
upstream_uri="api.bossdb.io", protocol="https", token="public"
5256
)
5357
),
5458
)

bossphorus/storagemanager/_ChunkedFilesystemStorageManager.py

+32-5
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,16 @@ def store(
9191
)
9292
return np.save(fname, data)
9393

94+
def hasfile(self, col: str, exp: str, chan: str, res: int, b: Tuple[int, int, int]) -> bool:
95+
if not (
96+
os.path.isdir("{}/{}".format(self.storage_path, col))
97+
and os.path.isdir("{}/{}/{}".format(self.storage_path, col, exp))
98+
and os.path.isdir("{}/{}/{}/{}".format(self.storage_path, col, exp, chan))
99+
):
100+
return False
101+
return True
102+
103+
94104
def retrieve(
95105
self, col: str, exp: str, chan: str, res: int, b: Tuple[int, int, int]
96106
):
@@ -163,6 +173,10 @@ def hasdata(
163173
):
164174
# TODO: Should know when it has data and return false even if it's
165175
# in terminal mode
176+
try:
177+
self.getdata(col, exp, chan, res, xs, ys, zs)
178+
except:
179+
return False
166180
return self.is_terminal
167181

168182
def setdata(
@@ -223,20 +237,33 @@ def getdata(
223237
files = file_compute(
224238
xs[0], xs[1], ys[0], ys[1], zs[0], zs[1], block_size=self.block_size
225239
)
240+
226241
indices = blockfile_indices(xs, ys, zs, block_size=self.block_size)
227242

228243
payload = np.zeros(
229244
((xs[1] - xs[0]), (ys[1] - ys[0]), (zs[1] - zs[0])), dtype="uint8"
230245
)
246+
231247
for f, i in zip(files, indices):
232-
try:
248+
print(f)
249+
if self.fs.hasfile(col, exp, chan, res, f):
233250
data_partial = self.fs.retrieve(col, exp, chan, res, f)[
234251
i[0][0] : i[0][1], i[1][0] : i[1][1], i[2][0] : i[2][1]
235252
]
236-
except:
237-
data_partial = np.zeros(self.block_size, dtype="uint8")[
238-
i[0][0] : i[0][1], i[1][0] : i[1][1], i[2][0] : i[2][1]
239-
]
253+
else:
254+
# what to do if the file doesn't exist
255+
if self.is_terminal:
256+
# this is a terminal; must return something, so return 0s
257+
data_partial = np.zeros(self.block_size, dtype="uint8")[
258+
i[0][0] : i[0][1], i[1][0] : i[1][1], i[2][0] : i[2][1]
259+
]
260+
else:
261+
# we can cascade to a downstream:
262+
# TODO: Should just fetch the data-partial instead of
263+
# aborting the whole download and getting it from a
264+
# remote.
265+
return self._next.getdata(col, exp, chan, res, xs, ys, zs)
266+
240267
payload[
241268
(f[0] + i[0][0]) - xs[0] : (f[0] + i[0][1]) - xs[0],
242269
(f[1] + i[1][0]) - ys[0] : (f[1] + i[1][1]) - ys[0],

bossphorus/storagemanager/_FilesystemStorageManager.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,11 @@ def hasdata(
135135
zs: Tuple[int, int],
136136
):
137137
fname = f"{self.storage_path}/{col}/{exp}/{chan}/{res}.h5"
138+
if not os.path.isfile(fname):
139+
return False
138140
return h5py.File(fname, "r")["mask"][
139141
xs[0] : xs[1], ys[0] : ys[1], zs[0] : zs[1]
140-
]
142+
].all()
141143

142144

143145
class FilesystemStorageManager(StorageManager):
@@ -166,6 +168,7 @@ def __init__(
166168
self.is_terminal = True
167169
self.storage_path = storage_path
168170
self.block_size = block_size
171+
self._cache = kwargs.get("cache", True)
169172

170173
self.fs = ({"h5": H5FileInterface}.get(kwargs.get("preferred_format", "h5")))(
171174
self.storage_path
@@ -184,7 +187,7 @@ def hasdata(
184187
if self.is_terminal:
185188
return True
186189

187-
return self.fs.hasdata(col, exp, chan, res, xs, ys, zs).all()
190+
return self.fs.hasdata(col, exp, chan, res, xs, ys, zs)
188191

189192
def setdata(
190193
self,
@@ -226,7 +229,10 @@ def getdata(
226229
return self.fs.retrieve(col, exp, chan, res, xs, ys, zs)
227230
if self.is_terminal:
228231
raise IndexError("Cannot find data at: ", (col, exp, chan, res, xs, ys, zs))
229-
return self._next.getdata(col, exp, chan, res, xs, ys, zs)
232+
data = self._next.getdata(col, exp, chan, res, xs, ys, zs)
233+
if self._cache:
234+
self.setdata(data, col, exp, chan, res, xs, ys, zs)
235+
return data
230236

231237
def __str__(self):
232238
return f"<FilesystemStorageManager [{str(self.fs)}]>"

bossphorus/storagemanager/_RelayStorageManager.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ def __init__(self, **kwargs):
4646
if "boss_remote" in kwargs:
4747
self.boss_remote = kwargs["boss_remote"]
4848
elif "upstream_uri" in kwargs:
49+
self.token = kwargs.get("token", "public")
4950
self.boss_remote = BossRemote(
5051
{
5152
"host": kwargs["upstream_uri"],
5253
"protocol": kwargs.get("protocol", "http"),
53-
"token": kwargs.get("token", "no-token"),
54+
"token": kwargs.get("token", "public"),
5455
}
5556
)
5657

bossphorus/storagemanager/_S3DirectStorageManager.py

Whitespace-only changes.

0 commit comments

Comments
 (0)