package miaou-driver-web
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Miaou web driver (xterm.js over WebSocket)
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.5.2.tar.gz
md5=60a3b9f181f24572a06a9492532bfdda
sha512=fcc35a275066be2900e6201782faf47503076fa4640f08cf78067835a6f447b74613009e55b2ac799adb7ca46f1bffa261fc5971753f2cc3c6bef327511c7ef6
doc/src/miaou-driver-web.driver/web_driver.ml.html
Source file web_driver.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557(*****************************************************************************) (* *) (* SPDX-License-Identifier: MIT *) (* Copyright (c) 2025 Nomadic Labs <contact@nomadic-labs.com> *) (* *) (*****************************************************************************) (** Web backend for the Matrix driver. Serves a xterm.js-based web terminal over HTTP/WebSocket and delegates the main loop to {!Matrix_main_loop}. *) open Miaou_core open Miaou_driver_matrix [@@@warning "-32-34-37-69"] module Fibers = Miaou_helpers.Fiber_runtime let available = true (* Thread-safe output buffer. The render domain writes ANSI strings here; an Eio fiber flushes them over the WebSocket connection. *) module Output_buffer = struct type t = {mutex : Mutex.t; buf : Buffer.t; has_data : bool Atomic.t} let create () = { mutex = Mutex.create (); buf = Buffer.create 4096; has_data = Atomic.make false; } let write t s = Mutex.lock t.mutex ; Buffer.add_string t.buf s ; Atomic.set t.has_data true ; Mutex.unlock t.mutex let take t = if not (Atomic.get t.has_data) then None else begin Mutex.lock t.mutex ; let data = Buffer.contents t.buf in Buffer.clear t.buf ; Atomic.set t.has_data false ; Mutex.unlock t.mutex ; if String.length data = 0 then None else Some data end end (* Session tracks the controller and read-only viewers. *) module Session = struct type t = { mutex : Mutex.t; mutable viewers : Web_websocket.t list; mutable active : bool; } let create () = {mutex = Mutex.create (); viewers = []; active = true} let add_viewer t ws = Mutex.lock t.mutex ; t.viewers <- ws :: t.viewers ; Mutex.unlock t.mutex let remove_viewer t ws = Mutex.lock t.mutex ; t.viewers <- List.filter (fun v -> v != ws) t.viewers ; Mutex.unlock t.mutex let broadcast t data = Mutex.lock t.mutex ; t.viewers <- List.filter (fun ws -> if Web_websocket.is_closed ws then false else begin (try Web_websocket.send_text ws data with _ -> ()) ; not (Web_websocket.is_closed ws) end) t.viewers ; Mutex.unlock t.mutex let close_all_viewers t = Mutex.lock t.mutex ; List.iter (fun ws -> try Web_websocket.close ws with _ -> ()) t.viewers ; t.viewers <- [] ; t.active <- false ; Mutex.unlock t.mutex end type auth = { controller_password : string option; viewer_password : string option; } type extra_asset = {path : string; content_type : string; body : string} let send_role_message ws role = let msg = Printf.sprintf {|{"type":"role","role":"%s"}|} role in Web_websocket.send_text ws msg (* Extract path (without query string) from an HTTP request line like "GET /path?key=val HTTP/1.1" *) let extract_path request_line = let raw = match String.split_on_char ' ' request_line with | _ :: path :: _ -> path | _ -> "/" in match String.split_on_char '?' raw with first :: _ -> first | [] -> "/" (* Extract a query parameter value from the raw URI in an HTTP request line. Returns [Some value] for "?password=value" or [None] if missing. *) let extract_query_param request_line param = let raw = match String.split_on_char ' ' request_line with | _ :: path :: _ -> path | _ -> "/" in match String.split_on_char '?' raw with | _ :: qs_parts -> ( let qs = String.concat "?" qs_parts in let pairs = String.split_on_char '&' qs in let prefix = param ^ "=" in let plen = String.length prefix in match List.find_opt (fun p -> String.length p >= plen && String.sub p 0 plen = prefix) pairs with | Some pair -> Some (String.sub pair plen (String.length pair - plen)) | None -> None) | _ -> None (* Send an HTTP response directly to a flow *) let serve_response conn ~status ~content_type body = let len = String.length body in let headers = Printf.sprintf "%s\r\n\ Content-Type: %s\r\n\ Content-Length: %d\r\n\ Connection: close\r\n\ \r\n" status content_type len in Eio.Flow.write (conn :> Eio.Flow.sink_ty Eio.Resource.t) [Cstruct.of_string (headers ^ body)] let serve_200 conn ~content_type body = serve_response conn ~status:"HTTP/1.1 200 OK" ~content_type body let serve_404 conn = serve_response conn ~status:"HTTP/1.1 404 Not Found" ~content_type:"text/plain" "Not Found" let serve_403 conn = serve_response conn ~status:"HTTP/1.1 403 Forbidden" ~content_type:"text/plain" "Forbidden" let serve_409 conn msg = serve_response conn ~status:"HTTP/1.1 409 Conflict" ~content_type:"text/plain" msg (* Check a supplied password against an expected password. Returns [true] if no password is required or if it matches. *) let check_password ~expected ~supplied = match expected with None -> true | Some exp -> supplied = Some exp (* Parse a JSON client message and push the corresponding event *) let parse_client_message events ~current_rows ~current_cols msg = match Yojson.Safe.from_string msg with | json -> ( let open Yojson.Safe.Util in match member "type" json |> to_string with | "key" -> let key = member "key" json |> to_string in Eio.Stream.add events (Matrix_io.Key key) | "resize" -> let rows = member "rows" json |> to_int in let cols = member "cols" json |> to_int in current_rows := rows ; current_cols := cols ; Eio.Stream.add events Matrix_io.Resize | "mouse" -> let row = member "row" json |> to_int in let col = member "col" json |> to_int in (* Web driver doesn't report button, default to left (0) *) Eio.Stream.add events (Matrix_io.Mouse (row, col, 0)) | _ -> () | exception _ -> ()) | exception _ -> () exception Tui_done of ([`Quit | `Back | `SwitchTo of string] * (int * int)) (* Run the TUI over an established WebSocket connection. [~initial_size] can be passed to skip waiting for resize on page switch. *) let run_tui (env : Eio_unix.Stdenv.base) config session ws br ?(initial_size : (int * int) option) initial_page = Printf.eprintf "[web] WebSocket TUI session starting\n%!" ; let events = Eio.Stream.create 256 in let current_rows, current_cols = match initial_size with | Some (r, c) -> Printf.eprintf "[web] Using passed size: %dx%d\n%!" r c ; (ref r, ref c) | None -> (ref 24, ref 80) in let last_refresh = ref (Unix.gettimeofday ()) in let output = Output_buffer.create () in let config = match config with Some c -> c | None -> Matrix_config.load () in let buffer = Matrix_buffer.create ~rows:!current_rows ~cols:!current_cols in let parser = Matrix_ansi_parser.create () in let writer = Matrix_ansi_writer.create () in let render_loop = Matrix_render_loop.create ~config ~buffer ~writer ~write:(Output_buffer.write output) in let flush_count = ref 0 in let flush_output () = match Output_buffer.take output with | Some data -> incr flush_count ; if !flush_count <= 3 then Printf.eprintf "[web] Flushing %d bytes (frame #%d)\n%!" (String.length data) !flush_count ; Web_websocket.send_text ws data ; Session.broadcast session data | None -> () in let refresh_interval = config.frame_time_ms /. 1000.0 in let io : Matrix_io.t = { write = Output_buffer.write output; drain = (fun () -> let acc = ref [] in let rec take () = match Eio.Stream.take_nonblocking events with | Some ev -> acc := ev :: !acc ; take () | None -> () in take () ; (* Inject periodic Refresh so service_cycle runs when idle *) let now = Unix.gettimeofday () in if now -. !last_refresh >= refresh_interval then begin last_refresh := now ; acc := Matrix_io.Refresh :: !acc end ; List.rev !acc); size = (fun () -> (!current_rows, !current_cols)); invalidate_size_cache = (fun () -> ()); } in let ctx : Matrix_main_loop.context = {config; buffer; parser; render_loop; io} in try Eio.Switch.run (fun sw -> (* WebSocket reader fiber *) Eio.Fiber.fork ~sw (fun () -> try let rec loop () = match Web_websocket.recv_text ws br with | None -> Printf.eprintf "[web] WebSocket closed by client\n%!" ; Eio.Stream.add events Matrix_io.Quit | Some msg -> Printf.eprintf "[web] Client msg: %s\n%!" msg ; parse_client_message events ~current_rows ~current_cols msg ; loop () in loop () with exn -> Printf.eprintf "[web] Reader fiber error: %s\n%!" (Printexc.to_string exn) ; Eio.Stream.add events Matrix_io.Quit) ; (* Output flusher fiber: drains the thread-safe buffer over WebSocket *) Eio.Fiber.fork ~sw (fun () -> try let rec loop () = flush_output () ; Eio.Time.sleep env#clock 0.016 ; loop () in loop () with exn -> Printf.eprintf "[web] Flusher fiber error: %s\n%!" (Printexc.to_string exn)) ; (* Wait briefly for the client to send initial dimensions. On first connection the client sends resize after role assignment. On page switch within the same connection, no resize is sent, so we use a short timeout and fall back to default size. *) Printf.eprintf "[web] Waiting for initial resize from client...\n%!" ; let rec drain_until_resize_or_timeout deadline = let now = Unix.gettimeofday () in if now >= deadline then Printf.eprintf "[web] Resize timeout, using %dx%d\n%!" !current_rows !current_cols else match Eio.Stream.take_nonblocking events with | Some Matrix_io.Resize -> Printf.eprintf "[web] Got initial resize: %dx%d\n%!" !current_rows !current_cols ; Matrix_buffer.resize buffer ~rows:!current_rows ~cols:!current_cols | Some Matrix_io.Quit -> raise (Tui_done (`Quit, (!current_rows, !current_cols))) | Some _ -> drain_until_resize_or_timeout deadline | None -> Eio.Time.sleep env#clock 0.01 ; drain_until_resize_or_timeout deadline in drain_until_resize_or_timeout (Unix.gettimeofday () +. 0.5) ; (* Hide cursor and clear the screen so old content from a previous page doesn't bleed through in xterm.js *) let init = Matrix_ansi_writer.cursor_hide ^ "\027[2J\027[H" in Web_websocket.send_text ws init ; Session.broadcast session init ; (* Start the render domain and run the shared main loop *) Printf.eprintf "[web] Starting render loop and main loop\n%!" ; Matrix_render_loop.start render_loop ; let result = Matrix_main_loop.run ctx ~env initial_page in Printf.eprintf "[web] Main loop exited\n%!" ; Matrix_render_loop.shutdown render_loop ; flush_output () ; let cleanup = Matrix_ansi_writer.cursor_show ^ "\027[0m" in Web_websocket.send_text ws cleanup ; Session.broadcast session cleanup ; let final_size = (!current_rows, !current_cols) in raise (Tui_done (result, final_size))) with Tui_done (result, size) -> Printf.eprintf "[web] TUI session ended\n%!" ; (result, size) let run ?(config = None) ?(port = 8080) ?auth ?(controller_html = Web_assets.index_html) ?(viewer_html = Web_assets.viewer_html) ?(extra_assets = []) (initial_page : (module Tui_page.PAGE_SIG)) : [`Quit | `Back | `SwitchTo of string] = Fibers.with_page_switch (fun env page_sw -> Printf.eprintf "Miaou web driver: http://127.0.0.1:%d\n%!" port ; let socket = Eio.Net.listen env#net ~sw:page_sw ~reuse_addr:true ~backlog:5 (`Tcp (Eio.Net.Ipaddr.V4.any, port)) in let session : Session.t option ref = ref None in (* Accept loop: serve HTTP requests and manage controller/viewer WebSocket connections. *) let rec accept_loop () = let conn, _addr = Eio.Net.accept ~sw:page_sw socket in (* Disable Nagle's algorithm so small frames (e.g. the 101 upgrade response) are sent immediately rather than buffered. *) (match Eio_unix.Resource.fd_opt (conn :> _ Eio.Resource.t) with | Some fd -> Eio_unix.Fd.use_exn "nodelay" fd (fun unix_fd -> Unix.setsockopt unix_fd Unix.TCP_NODELAY true) | None -> ()) ; (try let br = Eio.Buf_read.of_flow ~max_size:(1024 * 1024) conn in let request_line = Eio.Buf_read.line br in let headers = Web_websocket.parse_headers br in let path = extract_path request_line in Printf.eprintf "[web] %s\n%!" request_line ; match path with | "/" -> ( serve_200 conn ~content_type:"text/html" controller_html ; try Eio.Flow.close conn with _ -> ()) | "/viewer" -> ( serve_200 conn ~content_type:"text/html" viewer_html ; try Eio.Flow.close conn with _ -> ()) | "/client.js" -> ( serve_200 conn ~content_type:"application/javascript" Web_assets.client_js ; try Eio.Flow.close conn with _ -> ()) | "/ws" -> ( (* Controller WebSocket endpoint *) let password = extract_query_param request_line "password" in let required_password = match auth with | None -> None | Some a -> a.controller_password in if not (check_password ~expected:required_password ~supplied:password) then begin Printf.eprintf "[web] Auth failed for /ws\n%!" ; serve_403 conn ; try Eio.Flow.close conn with _ -> () end else if Option.is_some !session then begin Printf.eprintf "[web] Controller slot taken, returning 409\n%!" ; serve_409 conn "Controller slot already taken" ; try Eio.Flow.close conn with _ -> () end else let sink = (conn :> Eio.Flow.sink_ty Eio.Resource.t) in let write s = Eio.Flow.write sink [Cstruct.of_string s] in match Web_websocket.upgrade headers ~write with | None -> ( Printf.eprintf "[web] WebSocket upgrade failed\n%!" ; serve_404 conn ; try Eio.Flow.close conn with _ -> ()) | Some ws -> Printf.eprintf "[web] WebSocket upgraded (controller)\n%!" ; let sess = Session.create () in session := Some sess ; send_role_message ws "controller" ; Eio.Fiber.fork ~sw:page_sw (fun () -> let page_stack = ref [] in let rec page_loop ?initial_size current_page = let result, final_size = run_tui env config sess ws br ?initial_size current_page in match result with | `Quit -> Web_websocket.close ws | `Back -> ( match !page_stack with | [] -> Web_websocket.close ws | prev :: rest -> page_stack := rest ; page_loop ~initial_size:final_size prev) | `SwitchTo next -> ( match Registry.find next with | Some p -> page_stack := current_page :: !page_stack ; page_loop ~initial_size:final_size p | None -> Printf.eprintf "[web] Page %S not found, closing\n%!" next ; Web_websocket.close ws) in (try page_loop initial_page with exn -> Printf.eprintf "[web] Controller error: %s\n%!" (Printexc.to_string exn)) ; Printf.eprintf "[web] Controller disconnected, closing viewers\n%!" ; Session.close_all_viewers sess ; session := None ; try Eio.Flow.close conn with _ -> ())) | "/ws/viewer" -> ( (* Viewer WebSocket endpoint *) let password = extract_query_param request_line "password" in let required_password = match auth with None -> None | Some a -> a.viewer_password in if not (check_password ~expected:required_password ~supplied:password) then begin Printf.eprintf "[web] Auth failed for /ws/viewer\n%!" ; serve_403 conn ; try Eio.Flow.close conn with _ -> () end else match !session with | None -> ( Printf.eprintf "[web] No controller yet, returning 409\n%!" ; serve_409 conn "No controller connected yet" ; try Eio.Flow.close conn with _ -> ()) | Some sess -> ( let sink = (conn :> Eio.Flow.sink_ty Eio.Resource.t) in let write s = Eio.Flow.write sink [Cstruct.of_string s] in match Web_websocket.upgrade headers ~write with | None -> ( Printf.eprintf "[web] WebSocket upgrade failed\n%!" ; serve_404 conn ; try Eio.Flow.close conn with _ -> ()) | Some ws -> Printf.eprintf "[web] WebSocket upgraded (viewer)\n%!" ; Session.add_viewer sess ws ; send_role_message ws "viewer" ; Eio.Fiber.fork ~sw:page_sw (fun () -> (try let rec loop () = match Web_websocket.recv_text ws br with | None -> () | Some _ -> loop () in loop () with _ -> ()) ; Printf.eprintf "[web] Viewer disconnected\n%!" ; Session.remove_viewer sess ws ; try Eio.Flow.close conn with _ -> ()))) | _ -> ( (* Check extra_assets, then 404 *) match List.find_opt (fun a -> a.path = path) extra_assets with | Some asset -> ( serve_200 conn ~content_type:asset.content_type asset.body ; try Eio.Flow.close conn with _ -> ()) | None -> ( serve_404 conn ; try Eio.Flow.close conn with _ -> ())) with | Eio.Io _ as exn -> Printf.eprintf "[web] I/O error: %s\n%!" (Printexc.to_string exn) | End_of_file -> Printf.eprintf "[web] Connection closed (EOF)\n%!" | exn -> Printf.eprintf "[web] Unexpected error: %s\n%!" (Printexc.to_string exn)) ; accept_loop () in accept_loop ())
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>