# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= from mirage.io.types import ByteSource COMPOUND_EXTENSIONS = frozenset({ ".gdoc.json", ".gslide.json", ".gsheet.json", ".gmail.json", }) def get_extension(path: str | None) -> str | None: if path is None: return None basename = path.rsplit("/", 1)[-1] for ext in COMPOUND_EXTENSIONS: if basename.endswith(ext): return ext dot = path.rfind(".") if dot == -1 or "/" in path[dot:]: return None return path[dot:] async def materialize_stdout(stdout: ByteSource | None) -> bytes: if stdout is None: return b"" if isinstance(stdout, bytes): return stdout return b"".join([chunk async for chunk in stdout])