import time from opendal.exceptions import NotFound from mirage.accessor.nextcloud import NextcloudAccessor from mirage.cache.context import invalidate_after_write from mirage.cache.index import IndexCacheStore from mirage.observe.context import record from mirage.types import PathSpec from mirage.utils.errors import enoent async def write_bytes(accessor: NextcloudAccessor, path: PathSpec, data: bytes, index: IndexCacheStore = None) -> None: if isinstance(path, str): path = PathSpec.from_str_path(path) raw = path.mount_path key = raw.lstrip("/") op = accessor.operator() start_ms = int(time.monotonic() * 1000) try: await op.write(key, data) except NotFound as exc: raise enoent(path) from exc record("write", path.virtual, "nextcloud", len(data), start_ms) await invalidate_after_write(path)