Files
wehub-resource-sync bcbd1bdb22
Integ / changes (push) Has been skipped
Pre-commit / pre-commit (push) Failing after 1s
CLI exit codes / changes (push) Has been skipped
Test (Install) / changes (push) Has been skipped
Test (Python) / changes (push) Has been skipped
Test (TypeScript) / changes (push) Has been skipped
CLI exit codes / cli-gate (push) Has been cancelled
Test (Install) / test-install-gate (push) Has been cancelled
Integ / integ-gate (push) Has been cancelled
Test (Python) / test-python-gate (push) Has been cancelled
Test (TypeScript) / test-typescript-gate (push) Has been cancelled
Test (Install) / python-minimal (3.12) (push) Has been cancelled
Test (Install) / python-minimal (3.11) (push) Has been cancelled
Test (Install) / python-extra (agno, mirage.agents.agno) (push) Has been cancelled
Test (Install) / python-extra (chroma, mirage.resource.chroma) (push) Has been cancelled
Test (Install) / python-extra (pdf, mirage.core.filetype.pdf) (push) Has been cancelled
Integ / integ (push) Has been cancelled
Integ / integ-database (push) Has been cancelled
Integ / integ-database-ts (push) Has been cancelled
Integ / integ-data (push) Has been cancelled
Integ / integ-ssh (push) Has been cancelled
Integ / integ-ssh-ts (push) Has been cancelled
Test (Python) / audit (push) Has been cancelled
Test (TypeScript) / test (push) Has been cancelled
Test (TypeScript) / python-fs-shim (push) Has been cancelled
CLI exit codes / Python CLI (push) Has been cancelled
CLI exit codes / TypeScript CLI (push) Has been cancelled
CLI exit codes / Cross-language snapshot interop (push) Has been cancelled
Test (Python) / test (push) Has been cancelled
Test (Python) / import-isolation (deepagents, openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Python) / import-isolation (deepagents, pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Integ / integ-ts (push) Has been cancelled
Integ / integ-fuse (push) Has been cancelled
Test (Install) / python-extra (databricks, mirage.resource.databricks_volume) (push) Has been cancelled
Test (Install) / python-extra (deepagents, mirage.agents.langchain) (push) Has been cancelled
Test (Install) / python-extra (email, mirage.resource.email) (push) Has been cancelled
Test (Install) / python-extra (fuse, mirage.fuse.mount) (push) Has been cancelled
Test (Install) / python-extra (hdf5, mirage.core.filetype.hdf5) (push) Has been cancelled
Test (Install) / python-extra (hf, mirage.resource.hf_buckets) (push) Has been cancelled
Test (Install) / python-extra (lancedb, mirage.resource.lancedb) (push) Has been cancelled
Test (Install) / python-extra (langfuse, mirage.resource.langfuse) (push) Has been cancelled
Test (Install) / python-extra (mongodb, mirage.resource.mongodb) (push) Has been cancelled
Test (Install) / python-extra (nextcloud, mirage.resource.nextcloud) (push) Has been cancelled
Test (Install) / python-extra (openai, mirage.agents.openai_agents) (push) Has been cancelled
Test (Install) / python-extra (openhands, mirage.agents.openhands, 3.12) (push) Has been cancelled
Test (Install) / python-extra (parquet, mirage.core.filetype.parquet) (push) Has been cancelled
Test (Install) / python-extra (postgres, mirage.resource.postgres) (push) Has been cancelled
Test (Install) / python-extra (pydantic-ai, mirage.agents.pydantic_ai) (push) Has been cancelled
Test (Install) / python-extra (qdrant, mirage.resource.qdrant) (push) Has been cancelled
Test (Install) / python-extra (redis, mirage.resource.redis) (push) Has been cancelled
Test (Install) / python-extra (s3, mirage.resource.s3) (push) Has been cancelled
Test (Install) / python-extra (ssh, mirage.resource.ssh) (push) Has been cancelled
Test (Install) / ts-minimal (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:44 +08:00

96 lines
4.1 KiB
Python

# ========= 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.commands.builtin.generic.crossmount.types import (Cmd, CrossResult,
RunSingle)
from mirage.io import IOResult
from mirage.io.stream import async_chain, materialize
from mirage.io.types import ByteSource
from mirage.types import PathSpec
def _has_active_flags(flag_kwargs: dict) -> bool:
return any(v not in (None, False) for v in flag_kwargs.values())
def _respell_fetch_stderr(stderr: bytes, cmd_name: str) -> bytes:
# The per-operand fetch is a native Cmd.CAT sub-run, so its error lines
# carry the fetch command's prefix; respell them to the real command so
# the cross-mount bytes match single-mount.
fetch_prefix = Cmd.CAT.encode() + b": "
prefix = cmd_name.encode() + b": "
return b"\n".join(
prefix +
line[len(fetch_prefix):] if line.startswith(fetch_prefix) else line
for line in stderr.split(b"\n"))
async def run_stream(cmd_name: str, scopes: list[PathSpec],
text_args: list[str], flag_kwargs: dict,
run_single: RunSingle) -> CrossResult:
"""Run a stream command (``cmd files...`` == ``cat files... | cmd``).
Each operand's raw bytes come from a native flagless ``cat`` on its
owning mount (which also expands the operand's glob natively); one
native run of the real command then consumes the merged stream in its
stdin mode, so every flag keeps its single-invocation semantics
(continuous ``cat -n``/``nl`` numbering, one global ``sort`` order, one
``sed`` address space). A failed operand is skipped and reported on
stderr, cat-style; the merged exit code is then non-zero.
Args:
cmd_name (str): One of the STREAM_COMMANDS.
scopes (list[PathSpec]): Path operands in command-line order.
text_args (list[str]): Positional text operands (sed script).
flag_kwargs (dict): Flags parsed against the shared command spec.
run_single (RunSingle): Executor-injected single-mount runner.
"""
merged_io = IOResult()
sources: list[ByteSource] = []
failed = False
for scope in scopes:
out, io = await run_single(Cmd.CAT, [scope], [], {})
if io.exit_code != 0:
failed = True
if cmd_name != Cmd.CAT and io.stderr is not None:
io.stderr = _respell_fetch_stderr(await materialize(io.stderr),
cmd_name)
merged_io = await merged_io.merge(io)
continue
merged_io = await merged_io.merge(io)
if out is not None:
sources.append(out)
# sort aborts on any failed operand like GNU (it needs every input
# before emitting anything), matching the single-mount builder.
if failed and cmd_name == Cmd.SORT:
merged_io.exit_code = merged_io.exit_code or 1
return None, merged_io
body: ByteSource = async_chain(*sources)
if cmd_name == Cmd.CAT and not _has_active_flags(flag_kwargs):
if failed:
merged_io.exit_code = merged_io.exit_code or 1
return body, merged_io
out, io = await run_single(cmd_name, [],
list(text_args),
flag_kwargs,
stdin=body,
resolve_hint=scopes[0])
merged_io = await merged_io.merge(io)
if failed:
merged_io.exit_code = merged_io.exit_code or 1
return out, merged_io