retach 0.6.2

Persistent terminal sessions with native scrollback passthrough
use serde::{Deserialize, Serialize};

/// Connection mode for Connect message.
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub enum ConnectMode {
    /// Create or attach (Open subcommand)
    CreateOrAttach,
    /// Create only, fail if exists (New subcommand)
    CreateOnly,
    /// Attach only, fail if doesn't exist (Attach subcommand)
    AttachOnly,
}

/// Message sent from a client to the server.
#[derive(Serialize, Deserialize, Debug, PartialEq)]
pub enum ClientMsg {
    /// Keyboard input from client
    Input(Vec<u8>),
    /// Terminal resized
    Resize { cols: u16, rows: u16 },
    /// Client wants to detach
    Detach,
    /// Request session list
    ListSessions,
    /// Create or attach to session
    Connect { name: String, history: usize, cols: u16, rows: u16, mode: ConnectMode },
    /// Kill a session
    KillSession { name: String },
    /// Request a full screen refresh (e.g. on focus-in)
    RefreshScreen,
}

/// Message sent from the server to a client.
#[derive(Serialize, Deserialize, Debug, PartialEq)]
pub enum ServerMsg {
    /// Scrollback line (passthrough to terminal)
    ScrollbackLine(Vec<u8>),
    /// Full screen redraw (ANSI bytes)
    ScreenUpdate(Vec<u8>),
    /// Scrollback history on reattach
    History(Vec<Vec<u8>>),
    /// Session list response
    SessionList(Vec<SessionInfo>),
    /// Session ended (shell exited)
    SessionEnded,
    /// Error
    Error(String),
    /// Connected successfully
    Connected { name: String, new_session: bool },
    /// Session killed successfully
    SessionKilled { name: String },
    /// OSC passthrough (notifications, clipboard, etc.) — written directly to outer terminal
    Passthrough(Vec<u8>),
}

/// Snapshot of a session's metadata, used in list responses.
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct SessionInfo {
    pub name: String,
    pub pid: u32,
    pub cols: u16,
    pub rows: u16,
}