package quill

  1. Overview
  2. Docs

Source file quill_server.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
(*---------------------------------------------------------------------------
  Copyright (c) 2026 The Raven authors. All rights reserved.
  SPDX-License-Identifier: ISC
  ---------------------------------------------------------------------------*)

open Quill

(* Dedicated log channel: a dup of stderr taken at module init, before any FD
   redirection by the toplevel kernel. This ensures debug logging never writes
   to the capture pipe, avoiding feedback loops. *)
let log_fd = Unix.dup ~cloexec:true Unix.stderr
let log_oc = Unix.out_channel_of_descr log_fd

let log fmt =
  Printf.ksprintf
    (fun s ->
      output_string log_oc s;
      flush log_oc)
    fmt

let err_file_not_found : _ format = "Error: %s not found\n%!"

(* ───── File I/O ───── *)

let read_file path =
  let ic = open_in path in
  Fun.protect
    ~finally:(fun () -> close_in ic)
    (fun () -> really_input_string ic (in_channel_length ic))

let write_file path content =
  let oc = open_out path in
  Fun.protect
    ~finally:(fun () -> close_out oc)
    (fun () -> output_string oc content)

let get_mtime path =
  try (Unix.stat path).Unix.st_mtime with Unix.Unix_error _ -> 0.

(* Serve files from the notebook's directory (for images, figures, etc.).
   Security: rejects ".." segments, resolves symlinks with Unix.realpath, and
   verifies the canonical path is strictly under base_dir. *)
let file_loader base_dir rel_path =
  let segments = String.split_on_char '/' rel_path in
  if List.exists (fun s -> s = "" || s = "." || s = "..") segments then None
  else
    let path = Filename.concat base_dir rel_path in
    if Sys.file_exists path && not (Sys.is_directory path) then
      try
        let real = Unix.realpath path in
        let real_base = Unix.realpath base_dir in
        let prefix = real_base ^ "/" in
        if
          String.length real > String.length prefix
          && String.sub real 0 (String.length prefix) = prefix
        then Some (read_file real)
        else None
      with _ -> None
    else None

(* ───── Server state ───── *)

type state = {
  mutable session : Session.t;
  mutable kernel : Kernel.t;
  path : string;
  mutex : Mutex.t;
  mutable ws_clients : Httpd.ws list;
  mutable last_mtime : float;
  (* Execution queue: serializes all kernel.execute calls through a single
     worker thread. [exec_mutex] protects [exec_queue] and [exec_cancelled];
     [exec_cond] is signaled when new work is enqueued. Lock ordering: [mutex] >
     [exec_mutex] (never reversed). *)
  exec_queue : Cell.id Queue.t;
  exec_mutex : Mutex.t;
  exec_cond : Condition.t;
  mutable exec_cancelled : bool;
}

let locked st f =
  Mutex.lock st.mutex;
  Fun.protect ~finally:(fun () -> Mutex.unlock st.mutex) f

let send st msg =
  st.ws_clients <-
    List.filter
      (fun ws ->
        try
          Httpd.ws_send ws msg;
          true
        with _ -> false)
      st.ws_clients

let send_undo_redo st =
  send st
    (Protocol.undo_redo_to_json
       ~can_undo:(Session.can_undo st.session)
       ~can_redo:(Session.can_redo st.session))

let cells_with_status st =
  List.map
    (fun c -> (c, Session.cell_status (Cell.id c) st.session))
    (Doc.cells (Session.doc st.session))

let send_notebook st =
  send st
    (Protocol.notebook_to_json ~cells:(cells_with_status st)
       ~can_undo:(Session.can_undo st.session)
       ~can_redo:(Session.can_redo st.session))

(* ───── Execution queue ───── *)

(* Enqueue cell IDs for execution. Called while [st.mutex] is held. *)
let enqueue_execution st cell_ids =
  st.session <- Session.checkpoint st.session;
  List.iter
    (fun cell_id ->
      st.session <- Session.mark_queued cell_id st.session;
      send st (Protocol.cell_status_to_json ~cell_id Session.Queued))
    cell_ids;
  Mutex.lock st.exec_mutex;
  List.iter (fun cell_id -> Queue.push cell_id st.exec_queue) cell_ids;
  Condition.signal st.exec_cond;
  Mutex.unlock st.exec_mutex

(* Long-lived worker thread: pops cell IDs one at a time and executes them.
   Checks [exec_cancelled] between cells to support interrupt-and-drain. *)
let exec_worker st =
  let rec loop () =
    Mutex.lock st.exec_mutex;
    while Queue.is_empty st.exec_queue do
      Condition.wait st.exec_cond st.exec_mutex
    done;
    let cell_id = Queue.pop st.exec_queue in
    if st.exec_cancelled then begin
      (* Drain remaining queued cells and mark all cancelled cells idle *)
      let cancelled =
        cell_id :: Queue.fold (fun acc id -> id :: acc) [] st.exec_queue
      in
      Queue.clear st.exec_queue;
      st.exec_cancelled <- false;
      Mutex.unlock st.exec_mutex;
      locked st (fun () ->
          List.iter
            (fun cid ->
              st.session <- Session.mark_idle cid st.session;
              send st (Protocol.cell_status_to_json ~cell_id:cid Session.Idle))
            cancelled);
      loop ()
    end
    else begin
      Mutex.unlock st.exec_mutex;
      let source =
        locked st (fun () ->
            match Doc.find cell_id (Session.doc st.session) with
            | Some (Cell.Code { source; _ }) ->
                st.session <- Session.clear_outputs cell_id st.session;
                st.session <- Session.mark_running cell_id st.session;
                send st (Protocol.cell_status_to_json ~cell_id Session.Running);
                log "[exec] %s running\n%!" cell_id;
                Some source
            | _ -> None)
      in
      (match source with
      | Some code -> st.kernel.execute ~cell_id ~code
      | None -> ());
      loop ()
    end
  in
  loop ()

(* ───── Kernel event handler ───── *)

let on_kernel_event st = function
  | Kernel.Output { cell_id; output } ->
      (match output with
      | Cell.Error msg -> log "[exec] %s error: %s\n%!" cell_id msg
      | _ -> ());
      locked st (fun () ->
          st.session <- Session.apply_output cell_id output st.session;
          send st (Protocol.cell_output_to_json ~cell_id output))
  | Kernel.Finished { cell_id; success } ->
      log "[exec] %s %s\n%!" cell_id (if success then "done" else "failed");
      locked st (fun () ->
          st.session <- Session.finish_execution cell_id ~success st.session;
          match Doc.find cell_id (Session.doc st.session) with
          | Some cell ->
              let status = Session.cell_status cell_id st.session in
              send st (Protocol.cell_updated_to_json cell status)
          | None -> log "[exec] %s not found after finish\n%!" cell_id)
  | Kernel.Status_changed _ -> ()

(* ───── Client message handler ───── *)

let handle_client_msg st = function
  | Protocol.Update_source { cell_id; source } ->
      st.session <- Session.update_source cell_id source st.session
  | Protocol.Checkpoint ->
      st.session <- Session.checkpoint st.session;
      send_undo_redo st
  | Protocol.Execute_cell { cell_id } -> enqueue_execution st [ cell_id ]
  | Protocol.Execute_cells { cell_ids } -> enqueue_execution st cell_ids
  | Protocol.Execute_all ->
      let cell_ids =
        List.filter_map
          (fun c ->
            match c with Cell.Code { id; _ } -> Some id | Text _ -> None)
          (Doc.cells (Session.doc st.session))
      in
      enqueue_execution st cell_ids
  | Protocol.Interrupt | Protocol.Complete _ | Protocol.Type_at _
  | Protocol.Diagnostics _ ->
      assert false (* dispatched by [handle_msg] before reaching here *)
  | Protocol.Insert_cell { pos; kind } ->
      let cell =
        match kind with `Code -> Cell.code "" | `Text -> Cell.text ""
      in
      st.session <- Session.insert_cell ~pos cell st.session;
      let status = Session.cell_status (Cell.id cell) st.session in
      let kind_s = match kind with `Code -> "code" | `Text -> "text" in
      log "[cell] insert %s %s at %d\n%!" kind_s (Cell.id cell) pos;
      send st (Protocol.cell_inserted_to_json ~pos cell status);
      send_undo_redo st
  | Protocol.Delete_cell { cell_id } ->
      log "[cell] delete %s\n%!" cell_id;
      st.session <- Session.remove_cell cell_id st.session;
      send st (Protocol.cell_deleted_to_json ~cell_id);
      send_undo_redo st
  | Protocol.Move_cell { cell_id; pos } ->
      log "[cell] move %s to %d\n%!" cell_id pos;
      st.session <- Session.move_cell cell_id ~pos st.session;
      send st (Protocol.cell_moved_to_json ~cell_id ~pos);
      send_undo_redo st
  | Protocol.Set_cell_kind { cell_id; kind } ->
      let kind_s = match kind with `Code -> "code" | `Text -> "text" in
      log "[cell] set %s to %s\n%!" cell_id kind_s;
      st.session <- Session.set_cell_kind cell_id kind st.session;
      (match Doc.find cell_id (Session.doc st.session) with
      | Some cell ->
          let status = Session.cell_status cell_id st.session in
          send st (Protocol.cell_updated_to_json cell status)
      | None -> ());
      send_undo_redo st
  | Protocol.Set_cell_attrs { cell_id; attrs } ->
      log "[cell] set attrs %s\n%!" cell_id;
      st.session <- Session.set_cell_attrs cell_id attrs st.session;
      (match Doc.find cell_id (Session.doc st.session) with
      | Some cell ->
          let status = Session.cell_status cell_id st.session in
          send st (Protocol.cell_updated_to_json cell status)
      | None -> ());
      send_undo_redo st
  | Protocol.Clear_outputs { cell_id } -> (
      st.session <- Session.clear_outputs cell_id st.session;
      match Doc.find cell_id (Session.doc st.session) with
      | Some cell ->
          let status = Session.cell_status cell_id st.session in
          send st (Protocol.cell_updated_to_json cell status)
      | None -> ())
  | Protocol.Clear_all_outputs ->
      st.session <- Session.clear_all_outputs st.session;
      send_notebook st
  | Protocol.Save ->
      st.session <- Session.checkpoint st.session;
      let content =
        Quill_markdown.to_string_with_outputs (Session.doc st.session)
      in
      write_file st.path content;
      st.last_mtime <- get_mtime st.path;
      log "[save] %s\n%!" st.path;
      send st (Protocol.saved_to_json ())
  | Protocol.Undo ->
      st.session <- Session.undo st.session;
      send_notebook st
  | Protocol.Redo ->
      st.session <- Session.redo st.session;
      send_notebook st

(* ───── WebSocket handler ───── *)

let handle_msg st = function
  | Protocol.Interrupt ->
      log "[exec] interrupt\n%!";
      Mutex.lock st.exec_mutex;
      st.exec_cancelled <- true;
      Mutex.unlock st.exec_mutex;
      st.kernel.interrupt ()
  | Protocol.Complete { request_id; code; pos } ->
      let items = st.kernel.complete ~code ~pos in
      locked st (fun () ->
          send st (Protocol.completions_to_json ~request_id items))
  | Protocol.Type_at { request_id; code; pos } ->
      let info =
        match st.kernel.type_at with Some f -> f ~code ~pos | None -> None
      in
      locked st (fun () -> send st (Protocol.type_at_to_json ~request_id info))
  | Protocol.Diagnostics { request_id; code } ->
      let items =
        match st.kernel.diagnostics with Some f -> f ~code | None -> []
      in
      locked st (fun () ->
          send st (Protocol.diagnostics_to_json ~request_id items))
  | msg -> locked st (fun () -> handle_client_msg st msg)

let ws_handler st _req ws =
  locked st (fun () ->
      st.ws_clients <- ws :: st.ws_clients;
      log "[ws] connected (%d active)\n%!" (List.length st.ws_clients);
      (* Reload document from disk only if the file changed since we last loaded
         or saved it. Re-parsing a file without cell ID markers generates new
         random IDs, which would invalidate the session. *)
      let mtime = get_mtime st.path in
      (if mtime > st.last_mtime then
         try
           let md = read_file st.path in
           let doc = Quill_markdown.of_string md in
           st.session <- Session.create doc;
           st.last_mtime <- mtime;
           log "[ws] reloaded %s\n%!" st.path
         with exn -> log "[ws] reload failed: %s\n%!" (Printexc.to_string exn));
      send_notebook st);
  let rec loop () =
    match Httpd.ws_recv ws with
    | Some msg -> (
        match Protocol.client_msg_of_json msg with
        | Ok client_msg ->
            (try handle_msg st client_msg
             with exn -> log "[error] %s\n%!" (Printexc.to_string exn));
            loop ()
        | Error err ->
            log "[error] bad message: %s\n%!" err;
            locked st (fun () -> send st (Protocol.error_to_json err));
            loop ())
    | None ->
        locked st (fun () ->
            st.ws_clients <- List.filter (fun w -> w != ws) st.ws_clients;
            log "[ws] disconnected (%d active)\n%!" (List.length st.ws_clients))
  in
  loop ()

(* ───── Entry point ───── *)

let make_state ~create_kernel path =
  let md = read_file path in
  let doc = Quill_markdown.of_string md in
  let session = Session.create doc in
  let st =
    {
      session;
      kernel =
        {
          execute = (fun ~cell_id:_ ~code:_ -> ());
          interrupt = ignore;
          complete = (fun ~code:_ ~pos:_ -> []);
          type_at = None;
          diagnostics = None;
          is_complete = None;
          status = (fun () -> Kernel.Starting);
          shutdown = ignore;
        };
      path;
      mutex = Mutex.create ();
      ws_clients = [];
      last_mtime = get_mtime path;
      exec_queue = Queue.create ();
      exec_mutex = Mutex.create ();
      exec_cond = Condition.create ();
      exec_cancelled = false;
    }
  in
  let on_event ev = on_kernel_event st ev in
  st.kernel <- create_kernel ~on_event;
  ignore (Thread.create exec_worker st : Thread.t);
  st

let serve ~create_kernel ?(addr = "127.0.0.1") ?(port = 8888) ?on_ready path =
  if not (Sys.file_exists path) then (
    Printf.eprintf err_file_not_found path;
    exit 1);
  let st = make_state ~create_kernel path in
  let server = Httpd.create ~addr ~port () in
  Httpd.route server GET "/" (fun _req ->
      Httpd.response
        ~headers:[ ("Content-Type", "text/html; charset=utf-8") ]
        Assets.index_html);
  Httpd.static server ~prefix:"/assets/" ~loader:Assets.lookup ();
  Httpd.websocket server "/ws" (ws_handler st);
  let base_dir =
    let abs =
      if Filename.is_relative path then Filename.concat (Sys.getcwd ()) path
      else path
    in
    Filename.dirname abs
  in
  Httpd.static server ~prefix:"/" ~loader:(file_loader base_dir) ();
  let after_start () =
    Printf.printf "Quill: http://%s:%d (Ctrl-C to stop)\n%!" addr port;
    match on_ready with Some f -> f () | None -> ()
  in
  Httpd.run ~after_start server;
  st.kernel.shutdown ()

(* ───── Directory mode ───── *)

let notebook_url_path (nb : Quill_project.notebook) =
  let dir = Filename.dirname nb.path in
  if dir = "." then "/" ^ nb.path ^ "/" else "/" ^ dir ^ "/"

let rec toc_notebooks toc =
  List.concat_map
    (fun e ->
      match e with
      | Quill_project.Notebook (nb, children) ->
          if Quill_project.is_placeholder nb then toc_notebooks children
          else nb :: toc_notebooks children
      | _ -> [])
    toc

let toc_to_json toc =
  let rec entry_json = function
    | Quill_project.Notebook (nb, children) ->
        let fields =
          [
            ("type", Jsont.Json.string "notebook");
            ("title", Jsont.Json.string nb.title);
            ("path", Jsont.Json.string nb.path);
            ("url", Jsont.Json.string (notebook_url_path nb));
            ( "number",
              Jsont.Json.string
                (Quill_project.number_string (Quill_project.number toc nb)) );
            ("placeholder", Jsont.Json.bool (Quill_project.is_placeholder nb));
            ("children", Jsont.Json.list (List.map entry_json children));
          ]
        in
        Protocol.json_obj fields
    | Quill_project.Section title ->
        Protocol.json_obj
          [
            ("type", Jsont.Json.string "section");
            ("title", Jsont.Json.string title);
          ]
    | Quill_project.Separator ->
        Protocol.json_obj [ ("type", Jsont.Json.string "separator") ]
  in
  Protocol.json_to_string (Jsont.Json.list (List.map entry_json toc))

let serve_dir ~create_kernel ?(addr = "127.0.0.1") ?(port = 8888) ?on_ready
    ?(prelude = fun _ -> None) ~(toc : Quill_project.toc_item list) root =
  let notebooks = toc_notebooks toc in
  let states : (string, state) Hashtbl.t = Hashtbl.create 16 in
  let states_mutex = Mutex.create () in
  let get_or_create_state nb_path =
    Mutex.lock states_mutex;
    let st =
      match Hashtbl.find_opt states nb_path with
      | Some st -> st
      | None ->
          let abs_path = Filename.concat root nb_path in
          let create_kernel ~on_event =
            let k = create_kernel ~on_event in
            (match prelude nb_path with
            | Some code -> k.Kernel.execute ~cell_id:"__prelude__" ~code
            | None -> ());
            k
          in
          let st = make_state ~create_kernel abs_path in
          Hashtbl.replace states nb_path st;
          log "[dir] created state for %s\n%!" nb_path;
          st
    in
    Mutex.unlock states_mutex;
    st
  in
  let server = Httpd.create ~addr ~port () in
  let serve_html _req =
    Httpd.response
      ~headers:[ ("Content-Type", "text/html; charset=utf-8") ]
      Assets.index_html
  in
  Httpd.route server GET "/" serve_html;
  List.iter
    (fun (nb : Quill_project.notebook) ->
      let url = notebook_url_path nb in
      Httpd.route server GET url serve_html;
      let url_noslash = String.sub url 0 (String.length url - 1) in
      if url_noslash <> "" then Httpd.route server GET url_noslash serve_html)
    notebooks;
  Httpd.route server GET "/api/notebooks" (fun _req ->
      Httpd.json (toc_to_json toc));
  Httpd.static server ~prefix:"/assets/" ~loader:Assets.lookup ();
  Httpd.websocket server "/ws" (fun req ws ->
      let nb_path =
        match List.assoc_opt "path" req.query with
        | Some p -> p
        | None -> (
            match notebooks with
            | nb :: _ -> nb.path
            | [] ->
                log "[ws] no notebooks and no path param\n%!";
                Httpd.ws_close ws;
                failwith "no notebooks")
      in
      let st = get_or_create_state nb_path in
      ws_handler st req ws);
  Httpd.static server ~prefix:"/" ~loader:(file_loader root) ();
  let after_start () =
    Printf.printf "Quill: http://%s:%d (Ctrl-C to stop)\n%!" addr port;
    match on_ready with Some f -> f () | None -> ()
  in
  Httpd.run ~after_start server;
  Hashtbl.iter (fun _ st -> st.kernel.shutdown ()) states