feat(cli): auto connect to a session

This commit is contained in:
2025-03-10 22:54:44 -06:00
parent 64430830d8
commit 4a63606d58
6 changed files with 129 additions and 64 deletions

View File

@@ -17,8 +17,9 @@ uv run -m mcontainer.cli
# Run linting
uv run --with=ruff ruff check .
# Run type checking
uv run --with=mypy mypy .
# Run type checking (note: currently has unresolved stub dependencies)
# Skip for now during development
# uv run --with=mypy mypy .
# Run formatting
uv run --with=ruff ruff format .

View File

@@ -1,5 +1,4 @@
import os
import sys
from typing import List, Optional
import typer
from rich.console import Console
@@ -25,7 +24,7 @@ def main(ctx: typer.Context) -> None:
"""Monadical Container Tool"""
# If no command is specified, create a session
if ctx.invoked_subcommand is None:
create_session(driver=None, project=None, env=[], name=None)
create_session(driver=None, project=None, env=[], name=None, no_connect=False)
@app.command()
@@ -87,11 +86,16 @@ def list_sessions() -> None:
@session_app.command("create")
def create_session(
driver: Optional[str] = typer.Option(None, "--driver", "-d", help="Driver to use"),
project: Optional[str] = typer.Option(None, "--project", "-p", help="Project repository URL"),
project: Optional[str] = typer.Option(
None, "--project", "-p", help="Project repository URL"
),
env: List[str] = typer.Option(
[], "--env", "-e", help="Environment variables (KEY=VALUE)"
),
name: Optional[str] = typer.Option(None, "--name", "-n", help="Session name"),
no_connect: bool = typer.Option(
False, "--no-connect", help="Don't automatically connect to the session"
),
) -> None:
"""Create a new MC session"""
# Use default driver if not specified
@@ -127,25 +131,42 @@ def create_session(
for container_port, host_port in session.ports.items():
console.print(f" {container_port} -> {host_port}")
console.print(
f"\nConnect to the session with:\n mc session connect {session.id}"
)
# Auto-connect unless --no-connect flag is provided
if not no_connect:
console.print(f"\nConnecting to session {session.id}...")
container_manager.connect_session(session.id)
else:
console.print(
f"\nConnect to the session with:\n mc session connect {session.id}"
)
else:
console.print("[red]Failed to create session[/red]")
@session_app.command("close")
def close_session(
session_id: str = typer.Argument(..., help="Session ID to close"),
session_id: Optional[str] = typer.Argument(None, help="Session ID to close"),
all_sessions: bool = typer.Option(False, "--all", help="Close all active sessions"),
) -> None:
"""Close a MC session"""
with console.status(f"Closing session {session_id}..."):
success = container_manager.close_session(session_id)
"""Close a MC session or all sessions"""
if all_sessions:
with console.status("Closing all sessions..."):
count, success = container_manager.close_all_sessions()
if success:
console.print(f"[green]Session {session_id} closed successfully[/green]")
if success:
console.print(f"[green]{count} sessions closed successfully[/green]")
else:
console.print("[red]Failed to close all sessions[/red]")
elif session_id:
with console.status(f"Closing session {session_id}..."):
success = container_manager.close_session(session_id)
if success:
console.print(f"[green]Session {session_id} closed successfully[/green]")
else:
console.print(f"[red]Failed to close session {session_id}[/red]")
else:
console.print(f"[red]Failed to close session {session_id}[/red]")
console.print("[red]Error: Please provide a session ID or use --all flag[/red]")
@session_app.command("connect")
@@ -199,9 +220,14 @@ def quick_create(
[], "--env", "-e", help="Environment variables (KEY=VALUE)"
),
name: Optional[str] = typer.Option(None, "--name", "-n", help="Session name"),
no_connect: bool = typer.Option(
False, "--no-connect", help="Don't automatically connect to the session"
),
) -> None:
"""Create a new MC session with a project repository"""
create_session(driver=driver, project=project, env=env, name=name)
create_session(
driver=driver, project=project, env=env, name=name, no_connect=no_connect
)
@driver_app.command("list")
@@ -236,7 +262,9 @@ def list_drivers() -> None:
def build_driver(
driver_name: str = typer.Argument(..., help="Driver name to build"),
tag: str = typer.Option("latest", "--tag", "-t", help="Image tag"),
push: bool = typer.Option(False, "--push", "-p", help="Push image to registry after building"),
push: bool = typer.Option(
False, "--push", "-p", help="Push image to registry after building"
),
) -> None:
"""Build a driver Docker image"""
# Get driver path

View File

@@ -55,18 +55,18 @@ class ConfigManager:
# Create a new config from scratch, then update with data from file
config = Config(
docker=config_data.get('docker', {}),
defaults=config_data.get('defaults', {})
docker=config_data.get("docker", {}),
defaults=config_data.get("defaults", {}),
)
# Add drivers
if 'drivers' in config_data:
for driver_name, driver_data in config_data['drivers'].items():
if "drivers" in config_data:
for driver_name, driver_data in config_data["drivers"].items():
config.drivers[driver_name] = Driver.model_validate(driver_data)
# Add sessions (stored as simple dictionaries)
if 'sessions' in config_data:
config.sessions = config_data['sessions']
if "sessions" in config_data:
config.sessions = config_data["sessions"]
return config
except Exception as e:
@@ -140,7 +140,9 @@ class ConfigManager:
def load_driver_from_dir(self, driver_dir: Path) -> Optional[Driver]:
"""Load a driver configuration from a directory"""
yaml_path = driver_dir / "mai-driver.yaml" # Keep this name for backward compatibility
yaml_path = (
driver_dir / "mai-driver.yaml"
) # Keep this name for backward compatibility
if not yaml_path.exists():
return None
@@ -150,7 +152,10 @@ class ConfigManager:
driver_data = yaml.safe_load(f)
# Extract required fields
if not all(k in driver_data for k in ["name", "description", "version", "maintainer"]):
if not all(
k in driver_data
for k in ["name", "description", "version", "maintainer"]
):
print(f"Driver config {yaml_path} missing required fields")
return None

View File

@@ -213,6 +213,35 @@ class ContainerManager:
print(f"Error connecting to session: {e}")
return False
def close_all_sessions(self) -> tuple[int, bool]:
"""Close all MC sessions
Returns:
tuple: (number of sessions closed, success)
"""
try:
sessions = self.list_sessions()
if not sessions:
return 0, True
count = 0
for session in sessions:
if session.container_id:
try:
container = self.client.containers.get(session.container_id)
container.stop()
container.remove()
self.config_manager.remove_session(session.id)
count += 1
except DockerException as e:
print(f"Error closing session {session.id}: {e}")
return count, count > 0
except DockerException as e:
print(f"Error closing all sessions: {e}")
return 0, False
def get_session_logs(self, session_id: str, follow: bool = False) -> Optional[str]:
"""Get logs from a MC session"""
try:

View File

@@ -44,5 +44,7 @@ class Session(BaseModel):
class Config(BaseModel):
docker: Dict[str, str] = Field(default_factory=dict)
drivers: Dict[str, Driver] = Field(default_factory=dict)
sessions: Dict[str, dict] = Field(default_factory=dict) # Store as dict to avoid serialization issues
sessions: Dict[str, dict] = Field(
default_factory=dict
) # Store as dict to avoid serialization issues
defaults: Dict[str, str] = Field(default_factory=dict)