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

287 lines
11 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.spec.shell import SHELL_SPECS, parse_shell_options
from mirage.io import IOResult
from mirage.io.async_line_iterator import AsyncLineIterator
from mirage.io.stream import async_chain
from mirage.io.types import ByteSource
from mirage.shell.call_stack import CallStack
from mirage.shell.types import SET_FLAG_TO_OPTION
from mirage.workspace.executor.control import ReturnSignal
from mirage.workspace.session import Session
from mirage.workspace.types import ExecutionNode
async def handle_export(
assignments: list[str],
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
for assign in assignments:
if "=" in assign:
key, _, val = assign.partition("=")
if key in session.readonly_vars:
err = f"bash: {key}: readonly variable\n".encode()
return None, IOResult(exit_code=1, stderr=err), ExecutionNode(
command="export", exit_code=1, stderr=err)
session.env[key] = val
else:
session.env.setdefault(assign, "")
return None, IOResult(), ExecutionNode(command="export", exit_code=0)
async def handle_readonly(
assignments: list[str],
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
for assign in assignments:
if "=" in assign:
key, _, val = assign.partition("=")
if key in session.readonly_vars:
err = f"bash: {key}: readonly variable\n".encode()
return None, IOResult(exit_code=1, stderr=err), ExecutionNode(
command="readonly", exit_code=1, stderr=err)
session.env[key] = val
session.readonly_vars.add(key)
else:
session.readonly_vars.add(assign)
return None, IOResult(), ExecutionNode(command="readonly", exit_code=0)
async def handle_unset(
names: list[str],
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
for name in names:
if name in session.readonly_vars:
err = (f"bash: unset: {name}: cannot unset: "
f"readonly variable\n").encode()
return None, IOResult(exit_code=1,
stderr=err), ExecutionNode(command="unset",
exit_code=1,
stderr=err)
session.env.pop(name, None)
return None, IOResult(), ExecutionNode(command="unset", exit_code=0)
async def handle_printenv(
name: str | None,
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
if name:
val = session.env.get(name)
if val is None:
return None, IOResult(exit_code=1), ExecutionNode(
command="printenv", exit_code=1)
out = f"{val}\n".encode()
else:
lines = [f"{k}={v}" for k, v in session.env.items()]
out = ("\n".join(sorted(lines)) + "\n").encode()
return out, IOResult(), ExecutionNode(command="printenv", exit_code=0)
async def handle_whoami(
session: Session, # noqa: E125
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
user = session.env.get("USER")
if user is None:
err = b"whoami: USER not set\n"
return None, IOResult(exit_code=1,
stderr=err), ExecutionNode(command="whoami",
exit_code=1,
stderr=err)
out = f"{user}\n".encode()
return out, IOResult(), ExecutionNode(command="whoami", exit_code=0)
async def handle_read(
args: list[str],
session: Session,
stdin: ByteSource | None = None,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
"""Read one line into variables, with bash's option handling.
Only -r is accepted (our read is already raw, so it is consumed
with no effect); anything else errors like bash instead of being
treated as a variable name.
Args:
args (list[str]): words after the command name.
session (Session): shell session state.
stdin (ByteSource | None): line source.
"""
parse = parse_shell_options(SHELL_SPECS["read"], args)
if parse.invalid is not None:
token = (parse.invalid
if parse.invalid.startswith("--") else f"-{parse.invalid}")
err = f"read: {token}: invalid option\n".encode()
return None, IOResult(exit_code=2,
stderr=err), ExecutionNode(command="read",
exit_code=2)
variables = parse.operands or ["REPLY"]
if session._stdin_buffer is None and stdin is not None:
if isinstance(stdin, bytes):
session._stdin_buffer = AsyncLineIterator(async_chain(stdin))
elif hasattr(stdin, "__aiter__"):
session._stdin_buffer = AsyncLineIterator(stdin)
line_bytes: bytes | None = None
if session._stdin_buffer is not None:
line_bytes = await session._stdin_buffer.readline()
if line_bytes is None:
for var in variables:
session.env[var] = ""
return None, IOResult(exit_code=1), ExecutionNode(command="read",
exit_code=1)
line = line_bytes.decode(errors="replace").rstrip("\n")
ifs = session.env.get("IFS", " \t\n")
if ifs == " \t\n":
parts = line.split(None, len(variables) - 1) if variables else []
elif not ifs:
parts = [line]
else:
n_splits = max(0, len(variables) - 1)
chars = set(ifs)
out: list[str] = []
cur: list[str] = []
for ch in line:
if ch in chars and len(out) < n_splits:
out.append("".join(cur))
cur = []
continue
cur.append(ch)
out.append("".join(cur))
parts = out
for i, var in enumerate(variables):
session.env[var] = parts[i] if i < len(parts) else ""
return None, IOResult(), ExecutionNode(command="read", exit_code=0)
async def handle_local(
assignments: list[str],
session: Session,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
local_vars = getattr(session, "_local_vars", None)
for assign in assignments:
if "=" in assign:
key, _, val = assign.partition("=")
if local_vars is not None and key not in local_vars:
local_vars[key] = session.env.get(key)
session.env[key] = val
else:
if local_vars is not None and assign not in local_vars:
local_vars[assign] = session.env.get(assign)
session.env.setdefault(assign, "")
return None, IOResult(), ExecutionNode(command="local", exit_code=0)
async def handle_shift(
args: list[str],
call_stack: CallStack | None,
session: Session | None = None,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
"""Shift positional parameters, with bash's argument checks.
Args:
args (list[str]): words after the command name; at most one,
the shift count.
call_stack (CallStack | None): function-call positional frames.
session (Session | None): shell session state.
"""
if len(args) > 1:
err = b"shift: too many arguments\n"
return None, IOResult(exit_code=1,
stderr=err), ExecutionNode(command="shift",
exit_code=1)
if args and not _is_shift_count(args[0]):
err = f"shift: {args[0]}: numeric argument required\n".encode()
return None, IOResult(exit_code=1,
stderr=err), ExecutionNode(command="shift",
exit_code=1)
n = int(args[0]) if args else 1
shifted = False
if call_stack is not None and call_stack.get_all_positional():
call_stack.shift(n)
shifted = True
if not shifted and session is not None:
pos = getattr(session, "positional_args", None)
if pos is not None:
session.positional_args = pos[n:]
return None, IOResult(), ExecutionNode(command="shift", exit_code=0)
def _is_shift_count(word: str) -> bool:
body = word[1:] if word[:1] in ("-", "+") else word
return body.isdigit()
async def handle_set(
args: list[str],
session: Session,
call_stack: CallStack | None = None,
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
if not args:
lines = [f"{k}={v}" for k, v in session.env.items()]
out = ("\n".join(sorted(lines)) + "\n").encode()
return out, IOResult(), ExecutionNode(command="set", exit_code=0)
i = 0
while i < len(args):
tok = args[i]
if tok == "--":
session.positional_args = args[i + 1:]
return None, IOResult(), ExecutionNode(command="set", exit_code=0)
if tok in ("-o", "+o"):
if i + 1 < len(args):
session.shell_options[args[i + 1]] = (tok == "-o")
i += 2
continue
i += 1
continue
if (tok.startswith("-") or tok.startswith("+")) and len(tok) > 1:
enable = tok[0] == "-"
for ch in tok[1:]:
opt = SET_FLAG_TO_OPTION.get(ch)
if opt:
session.shell_options[opt] = enable
i += 1
continue
session.positional_args = args[i:]
break
return None, IOResult(), ExecutionNode(command="set", exit_code=0)
async def handle_trap(
session: Session, # noqa: E125
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
return None, IOResult(), ExecutionNode(command="trap", exit_code=0)
async def handle_return(
args: list[str], # noqa: E125
) -> tuple[ByteSource | None, IOResult, ExecutionNode]:
"""Return from a function, with bash's argument check.
Args:
args (list[str]): words after the command name; at most one,
the return status.
"""
if args and not _is_shift_count(args[0]):
# bash prints the error and the function returns 2.
raise ReturnSignal(
2,
stderr=f"return: {args[0]}: numeric argument required\n".encode())
raise ReturnSignal(int(args[0]) if args else 0)