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

123 lines
4.6 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. =========
import asyncio
import re
import shlex
from collections.abc import Callable
from mirage.commands.spec.shell import SHELL_SPECS, parse_shell_options
from mirage.io import IOResult
from mirage.io.stream import materialize
from mirage.io.types import ByteSource
from mirage.workspace.session import Session
from mirage.workspace.types import ExecutionNode
_DURATION = re.compile(r"(\d+(?:\.\d*)?|\.\d+)([smhd]?)")
_UNIT_SECONDS = {"": 1.0, "s": 1.0, "m": 60.0, "h": 3600.0, "d": 86400.0}
_UNSUPPORTED = ("s", "k", "preserve-status")
def _usage_error(message: str) -> tuple[None, IOResult, ExecutionNode]:
# GNU timeout reserves 125 for its own failures; 124 means the
# command was killed at the deadline.
stderr = f"timeout: {message}\n".encode()
return None, IOResult(exit_code=125,
stderr=stderr), ExecutionNode(command="timeout",
exit_code=125)
def parse_duration(raw: str) -> float | None:
"""Parse a GNU timeout duration (float plus optional s/m/h/d).
Args:
raw (str): duration operand as typed.
"""
match = _DURATION.fullmatch(raw)
if match is None:
return None
return float(match.group(1)) * _UNIT_SECONDS[match.group(2)]
async def handle_timeout(
execute_fn: Callable,
args: list[str],
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
"""Run `timeout DURATION COMMAND [ARG...]`, killing at the deadline.
The inner line is built with shlex.join so already-expanded words
survive re-parsing as one token each (GNU timeout execs the command
without a shell). On overrun the inner run is cancelled and the
exit code is 124 like GNU. Signal options (-s, -k,
--preserve-status) are parsed but rejected: the inner run is a
coroutine, not a process, so there is nothing to signal.
Args:
execute_fn (Callable): shell evaluator for the inner line.
args (list[str]): options, duration operand, then the command.
session (Session): shell session state.
"""
parse = parse_shell_options(SHELL_SPECS["timeout"], args or [])
if parse.invalid is not None:
if parse.invalid.startswith("--"):
return _usage_error(f"unrecognized option '{parse.invalid}'")
return _usage_error(f"invalid option -- '{parse.invalid}'")
if parse.needs_value is not None:
return _usage_error(
f"option requires an argument -- '{parse.needs_value}'")
for name in _UNSUPPORTED:
if name in parse.flags:
dashes = "--" if len(name) > 1 else "-"
return _usage_error(f"unsupported option -- '{dashes}{name}'")
if len(parse.operands) < 2:
return _usage_error("missing operand")
raw = parse.operands[0]
seconds = parse_duration(raw)
if seconds is None:
return _usage_error(f"invalid time interval '{raw}'")
inner = shlex.join(parse.operands[1:])
try:
stdout, io = await asyncio.wait_for(
_execute_drained(execute_fn, inner, session.session_id),
timeout=seconds if seconds > 0 else None,
)
except asyncio.TimeoutError:
return None, IOResult(exit_code=124), ExecutionNode(command="timeout",
exit_code=124)
return stdout, io, ExecutionNode(command="timeout", exit_code=io.exit_code)
async def _execute_drained(
execute_fn: Callable,
inner: str,
session_id: str,
) -> tuple[bytes | None, IOResult]:
"""Run the inner line and drain its stdout under the same deadline.
A lazy inner pipeline produces bytes only when consumed; draining
inside the wait_for scope keeps the whole run under the limit.
Args:
execute_fn (Callable): shell evaluator for the inner line.
inner (str): the joined command line.
session_id (str): session to run in.
"""
io = await execute_fn(inner, session_id=session_id)
stdout = await materialize(io.stdout)
return stdout, io