Source file eliom_comet.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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
# 1 "src/lib/eliom_comet.server.ml"
module Ecb = Eliom_comet_base
let section = Lwt_log.Section.make "eliom:comet"
type chan_id = string
let answer_to_string = Deriving_Json.to_string Eliom_comet_base.answer_json
let encode_downgoing s =
answer_to_string (Eliom_comet_base.Stateful_messages (Array.of_list s))
let encode_global_downgoing s =
answer_to_string (Eliom_comet_base.Stateless_messages (Array.of_list s))
let timeout_msg = answer_to_string Eliom_comet_base.Timeout
let state_closed_msg = answer_to_string Eliom_comet_base.State_closed
let error_msg s = answer_to_string (Eliom_comet_base.Comet_error s)
let json_content_type = "application/json"
let marshal (v : 'a) =
let wrapped = Eliom_wrap.wrap v in
let value : 'a Eliom_runtime.eliom_comet_data_type = wrapped in
Eliom_lib.Url.encode ~plus:false (Marshal.to_string value [])
exception New_connection
module Comet_param = struct
type page = string
let translate content = Lwt.return (content, json_content_type)
end
module Comet =
Eliom_registration.Customize (Eliom_registration.String) (Comet_param)
let comet_path = ["__eliom_comet__"]
let comet_global_path = ["__eliom_comet_global__"]
let fallback_service =
Eliom_common.lazy_site_value_from_fun @@ fun () ->
Comet.create ~meth:(Eliom_service.Get Eliom_parameter.unit)
~path:(Eliom_service.Path comet_path) (fun () () ->
Lwt.return state_closed_msg)
let fallback_global_service =
Eliom_common.lazy_site_value_from_fun @@ fun () ->
Comet.create ~meth:(Eliom_service.Get Eliom_parameter.unit)
~path:(Eliom_service.Path comet_global_path) (fun () () ->
Lwt.return
(error_msg
"request with no post parameters, or there isn't any registered site comet channel"))
let new_id = Eliom_lib.make_cryptographic_safe_string
let timeout_base = 20.
let timeout_jitter = 0.1
let timeout () =
timeout_base *. (1. +. (timeout_jitter *. (Random.float 2. -. 1.)))
module Stateless : sig
type channel
val create : ?name:string -> size:int -> string Lwt_stream.t -> channel
val get_id : channel -> string
val get_service : unit -> Eliom_comet_base.comet_service
val get_kind : newest:bool -> channel -> Eliom_comet_base.stateless_kind
val chan_id_of_string : string -> 'a Eliom_comet_base.chan_id
end = struct
type channel_id = string
module Dlist = Ocsigen_cache.Dlist
type channel =
{ ch_id : channel_id
; mutable ch_index : int
;
ch_content : (string * int) Dlist.t
; ch_wakeup : unit Lwt_condition.t
}
module Channel_hash = struct
type t = channel
let equal c1 c2 = c1.ch_id = c2.ch_id
let hash c = Hashtbl.hash c.ch_id
end
module Weak_channel_table = Weak.Make (Channel_hash)
let channels = Weak_channel_table.create 0
let find_channel =
let dummy_channel =
{ ch_id = ""
; ch_index = 0
; ch_content = Dlist.create 1
; ch_wakeup = Lwt_condition.create () }
in
fun ch_id ->
let dummy = {dummy_channel with ch_id} in
try Some (Weak_channel_table.find channels dummy) with Not_found -> None
let wakeup_waiters channel = Lwt_condition.broadcast channel.ch_wakeup ()
let run_channel channel stream =
let channel' = Weak.create 1 in
Weak.set channel' 0 (Some channel);
let channel = channel' in
let f msg =
match Weak.get channel 0 with
| None ->
Lwt.fail Not_found
| Some channel ->
channel.ch_index <- succ channel.ch_index;
ignore
(Dlist.add (msg, channel.ch_index) channel.ch_content : 'a option);
wakeup_waiters channel;
Lwt.return_unit
in
ignore
(Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt_stream.iter_s f stream
: unit Lwt.t)
let make_name name = "stateless:" ^ name
let chan_id_of_string name =
Eliom_comet_base.chan_id_of_string (make_name name)
let create ?(name = new_id ()) ~size stream =
let name = make_name name in
let channel =
{ ch_id = name
; ch_index = 0
; ch_content = Dlist.create size
; ch_wakeup = Lwt_condition.create () }
in
run_channel channel stream;
match find_channel name with
| Some _ ->
failwith
(Printf.sprintf
"can't create channel %s: a channel with the same name already exists"
name)
| None ->
Weak_channel_table.add channels channel;
channel
let get_channel (ch_id, position) =
match find_channel ch_id with
| Some channel -> Eliom_lib.Left (channel, position)
| None -> Right ch_id
exception
Finished of (channel_id * (string * int) Eliom_comet_base.channel_data) list
let queue_take channel last =
try
Dlist.fold
(fun l (v, index) ->
if index >= last
then (channel.ch_id, Eliom_comet_base.Data (v, index)) :: l
else raise (Finished l))
[] channel.ch_content
with Finished l -> l
let get_available_data = function
| Eliom_lib.Right ch_id -> [ch_id, Eliom_comet_base.Closed]
| Eliom_lib.Left (channel, position) -> (
match position with
| Eliom_comet_base.Newest i when i > channel.ch_index -> []
| Eliom_comet_base.Newest _ | Eliom_comet_base.Last None -> (
match Dlist.newest channel.ch_content with
| None -> []
| Some node -> [channel.ch_id, Eliom_comet_base.Data (Dlist.value node)]
)
| Eliom_comet_base.After i when i > channel.ch_index -> []
| Eliom_comet_base.After i
when i <= channel.ch_index - Dlist.size channel.ch_content ->
[channel.ch_id, Eliom_comet_base.Full]
| Eliom_comet_base.After i -> queue_take channel i
| Eliom_comet_base.Last (Some n) ->
let i = channel.ch_index - min (Dlist.size channel.ch_content) n in
queue_take channel i)
let has_data = function
| Eliom_lib.Right _ ->
true
| Eliom_lib.Left (channel, position) -> (
match position with
| Eliom_comet_base.Newest i when i > channel.ch_index -> false
| Eliom_comet_base.Newest _ -> true
| Eliom_comet_base.After i when i > channel.ch_index -> false
| Eliom_comet_base.After _ -> true
| Eliom_comet_base.Last _ when Dlist.size channel.ch_content > 0 -> true
| Eliom_comet_base.Last _ -> false)
let really_wait_data requests =
let rec make_list = function
| [] -> []
| Eliom_lib.Left (channel, _) :: q ->
Lwt_condition.wait channel.ch_wakeup :: make_list q
| Eliom_lib.Right _ :: _ -> assert false
in
Lwt.pick (make_list requests)
let wait_data requests =
if List.exists has_data requests
then Lwt.return_unit
else
Lwt_unix.with_timeout (timeout ()) (fun () -> really_wait_data requests)
let handle_request () (_, req) =
match req with
| Eliom_comet_base.Stateful _ ->
failwith
"attempting to request data on stateless service with a stateful request"
| Eliom_comet_base.Stateless requests ->
let requests = List.map get_channel (Array.to_list requests) in
let%lwt res =
try%lwt
let%lwt () = wait_data requests in
Lwt.return (List.flatten (List.map get_available_data requests))
with Lwt_unix.Timeout -> Lwt.return_nil
in
Lwt.return (encode_global_downgoing res)
let global_service =
Eliom_common.lazy_site_value_from_fun @@ fun () ->
Comet.create_attached_post
~post_params:
Eliom_parameter.(bool "idle" ** Eliom_comet_base.comet_request_param)
~fallback:(Eliom_common.force_lazy_site_value fallback_global_service)
handle_request
let get_service =
let queue = ref [] in
fun () ->
Eliom_comet_base.Comet_service
(Eliom_common.force_lazy_site_value global_service, queue)
let get_id {ch_id; _} = ch_id
let get_kind ~newest {ch_index; _} =
if newest
then Eliom_comet_base.Newest_kind (ch_index + 1)
else Eliom_comet_base.After_kind (ch_index + 1)
end
(** Register services at site initialization *)
let () =
Eliommod.register_site_init (fun () ->
ignore (Eliom_common.force_lazy_site_value fallback_global_service);
ignore (Eliom_common.force_lazy_site_value fallback_service);
ignore (Stateless.get_service ()))
(** String channels on which is build the module Channel *)
module Stateful : sig
type t
val create :
?scope:Eliom_common.client_process_scope
-> ?name:chan_id
-> size:int
-> _ React.event
-> t
val create_unlimited :
?scope:Eliom_common.client_process_scope
-> ?name:chan_id
-> _ Lwt_stream.t
-> t
val get_id : t -> string
type comet_service = Eliom_comet_base.comet_service
val get_service : t -> comet_service
val wait_timeout :
?scope:Eliom_common.client_process_scope
-> float
-> unit Lwt.t
end = struct
type chan_id = string
type comet_service = Eliom_comet_base.comet_service
type internal_comet_service = Eliom_comet_base.internal_comet_service
type end_request_waiters = unit Lwt.u
type activity =
| Active of end_request_waiters list
(** There is currently a request from the client *)
| Inactive of float
(** The last request from the client completed at that time *)
type waiter = [`Data | `Update] Lwt.t
type channel =
| Events of
{ queue : string Eliom_comet_base.channel_data Queue.t
;
mutable events : Obj.t option }
| Stream of
{ mutable stream : string Eliom_comet_base.channel_data Lwt_stream.t
; mutable waiter : waiter }
type handler =
{ hd_scope : Eliom_common.client_process_scope
;
mutable hd_active_channels : (chan_id * channel) list
(** streams that are currently sent to client *)
; mutable hd_unregistered_channels : (chan_id * channel) list
(** streams that are created on the server side, but client did not register *)
; mutable hd_registered_chan_id : chan_id list
(** the fusion of all the streams from hd_active_channels *)
; mutable hd_update_streams_w : [`Data | `Update] Lwt.u option
(** used to signal new data or new active streams. *)
; hd_service : internal_comet_service
; mutable hd_last : string * int
(** the last message sent to the client, if he sends a request
with the same number, this message is immediately sent
back.*)
; mutable hd_activity : activity }
exception Connection_closed
let set_active handler =
match handler.hd_activity with
| Active _ -> ()
| Inactive _ -> handler.hd_activity <- Active []
let set_inactive handler =
match handler.hd_activity with
| Active l ->
handler.hd_activity <- Inactive (Unix.gettimeofday ());
List.iter (fun waiter -> Lwt.wakeup waiter ()) l
| Inactive _ -> ()
let update_inactive handler =
match handler.hd_activity with
| Active _ -> ()
| Inactive _ -> handler.hd_activity <- Inactive (Unix.gettimeofday ())
let wait_handler_timeout handler t =
let rec run () =
match handler.hd_activity with
| Active l ->
let waiter, waker = Lwt.task () in
let t =
let%lwt () = waiter in
let%lwt () = Lwt_unix.sleep t in
run ()
in
handler.hd_activity <- Active (waker :: l);
t
| Inactive inactive_time ->
let now = Unix.gettimeofday () in
if now -. inactive_time > t
then Lwt.return_unit
else
let%lwt () = Lwt_unix.sleep (t -. (now -. inactive_time)) in
run ()
in
run ()
(** called when a connection is opened, it makes the other
connection terminate with no data. That way there is at most one
opened connection to the service. There are new connection
opened when the client wants to listen to new channels for
instance. *)
let new_connection handler =
set_active handler;
match handler.hd_update_streams_w with
| None -> ()
| Some wakener ->
handler.hd_update_streams_w <- None;
Lwt.wakeup_exn wakener New_connection
(** called when a new channel is made active. It restarts the thread
wainting for inputs ( wait_data ) such that it can receive the messages from
the new channel *)
let signal_update handler event =
match handler.hd_update_streams_w with
| None -> ()
| Some wakener ->
handler.hd_update_streams_w <- None;
Lwt.wakeup wakener event
let stream_waiter s =
Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt.no_cancel
(let%lwt _ = Lwt_stream.peek s in
Lwt.return `Data)
(** read up to [n] messages in the list of streams [streams] without blocking. *)
let read_channels n handler =
let rec take n acc channels =
if n = 0
then acc
else
match channels with
| [] -> acc
| (id, Events {queue; _}) :: rem ->
if Queue.is_empty queue
then take n acc rem
else take (n - 1) ((id, Queue.take queue) :: acc) channels
| (id, Stream ({stream; _} as s)) :: rem ->
let l =
Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt_stream.get_available_up_to n stream
in
if l <> [] then s.waiter <- stream_waiter stream;
take (n - List.length l) (List.rev_map (fun v -> id, v) l @ acc) rem
in
List.rev (take n [] handler.hd_active_channels)
let wait_channels handler =
List.fold_left
(fun acc (_, channel) ->
match channel with
| Events _ -> acc
| Stream {waiter; _} -> waiter :: acc)
[] handler.hd_active_channels
(** wait for data on any channel that the client asks. It correctly
handles new channels the server creates after that the client
registered them *)
let rec wait_data wait_closed_connection handler =
match%lwt
let hd_update_streams, hd_update_streams_w = Lwt.task () in
handler.hd_update_streams_w <- Some hd_update_streams_w;
Lwt.choose
(wait_closed_connection :: hd_update_streams :: wait_channels handler)
with
| `Data ->
handler.hd_update_streams_w <- None;
Lwt.return_unit
| `Update -> wait_data wait_closed_connection handler
let launch_channel handler chan_id channel =
handler.hd_active_channels <-
(chan_id, channel) :: handler.hd_active_channels;
match channel with
| Events _ -> ()
| Stream _ -> signal_update handler `Update
let register_channel handler chan_id =
Lwt_log.ign_info_f ~section "register channel %s" chan_id;
if not (List.mem_assoc chan_id handler.hd_active_channels)
then
try
let stream = List.assoc chan_id handler.hd_unregistered_channels in
handler.hd_unregistered_channels <-
List.remove_assoc chan_id handler.hd_unregistered_channels;
launch_channel handler chan_id stream
with Not_found ->
handler.hd_registered_chan_id <-
chan_id :: handler.hd_registered_chan_id
let close_channel' handler chan_id =
Lwt_log.ign_info_f ~section "close channel %s" chan_id;
handler.hd_active_channels <-
List.remove_assoc chan_id handler.hd_active_channels;
handler.hd_unregistered_channels <-
List.remove_assoc chan_id handler.hd_unregistered_channels;
handler.hd_registered_chan_id <-
List.filter (( <> ) chan_id) handler.hd_registered_chan_id
let wait_closed_connection () =
let%lwt () =
Ocsigen_request.connection_closed (Eliom_request_info.get_ri ())
in
Lwt.fail Connection_closed
let run_handler handler =
let f () (idle, req) =
match req with
| Eliom_comet_base.Stateless _ ->
failwith
"attempting to request data on stateful service with a stateless request"
| Eliom_comet_base.Stateful (Eliom_comet_base.Request_data number) ->
Lwt_log.ign_info_f ~section "received request %i" number;
new_connection handler;
if snd handler.hd_last = number
then Lwt.return (fst handler.hd_last)
else
Lwt.catch
(fun () ->
Lwt_unix.with_timeout (timeout ()) (fun () ->
let%lwt messages =
let messages = read_channels 100 handler in
if messages <> [] || idle
then Lwt.return messages
else
let%lwt () =
wait_data (wait_closed_connection ()) handler
in
Lwt.return (read_channels 100 handler)
in
let message = encode_downgoing messages in
handler.hd_last <- message, number;
set_inactive handler;
Lwt.return message))
(function
| New_connection -> Lwt.return (encode_downgoing [])
| Lwt_unix.Timeout ->
set_inactive handler; Lwt.return timeout_msg
| Connection_closed ->
set_inactive handler;
Lwt.return timeout_msg
| e -> set_inactive handler; Lwt.fail e)
| Eliom_comet_base.Stateful (Eliom_comet_base.Commands commands) ->
update_inactive handler;
List.iter
(function
| Eliom_comet_base.Register channel ->
register_channel handler channel
| Eliom_comet_base.Close channel ->
close_channel' handler channel)
(Array.to_list commands);
Lwt.return (encode_downgoing [])
in
let {hd_service = Eliom_comet_base.Internal_comet_service (service, _); _} =
handler
in
Comet.register ~scope:handler.hd_scope ~service f
(** For each scope there is a reference containing the handler. The
reference itself are stocked in [handler_ref_table]. This table
is never cleaned, but it is supposed that this won't be a
problem as scope should be used in limited number *)
type handler_ref_table =
( Eliom_common.scope_hierarchy
, handler option Eliom_reference.eref )
Hashtbl.t
let handler_ref_table : handler_ref_table = Hashtbl.create 1
let get_ref eref =
match Lwt.state (Eliom_reference.get eref) with
| Lwt.Return v -> v
| _ ->
failwith
"Eliom_comet: accessing channel references should not be blocking: this is an eliom bug"
let set_ref eref v =
match Lwt.state (Eliom_reference.set eref v) with
| Lwt.Return () -> ()
| _ ->
failwith
"Eliom_comet: accessing channel references should not be blocking: this is an eliom bug"
let get_handler_eref scope =
let scope_hierarchy =
Eliom_common_base.scope_hierarchy_of_user_scope scope
in
try Hashtbl.find handler_ref_table scope_hierarchy
with Not_found ->
let eref =
Eliom_reference.eref ~scope:(`Client_process scope_hierarchy) None
in
Hashtbl.add handler_ref_table scope_hierarchy eref;
eref
let get_handler scope =
let eref = get_handler_eref scope in
match get_ref eref with
| Some t -> t
| None ->
let hd_service =
Eliom_comet_base.Internal_comet_service
( Eliom_service.create_attached_post
~post_params:
Eliom_parameter.(
bool "idle" ** Eliom_comet_base.comet_request_param)
~fallback:(Eliom_common.force_lazy_site_value fallback_service)
()
, ref [] )
in
let handler =
{ hd_scope = scope
; hd_active_channels = []
; hd_unregistered_channels = []
; hd_registered_chan_id = []
; hd_service
; hd_update_streams_w = None
; hd_last = "", -1
; hd_activity = Inactive (Unix.gettimeofday ()) }
in
set_ref eref (Some handler);
run_handler handler;
handler
let wait_timeout ?(scope = Eliom_common.comet_client_process_scope) t =
let hd = get_handler scope in
wait_handler_timeout hd t
type t = {ch_handler : handler; ch_id : chan_id}
let name_of_scope (scope : Eliom_common.user_scope) =
let sp = Eliom_common.get_sp () in
let name =
Eliom_common.make_full_state_name ~sp ~secure:false
~scope
in
let pref =
match scope with
| `Session_group _ -> "sessiongroup:"
| `Session _ -> "session:"
| `Client_process _ -> "clientprocess:"
in
Eliom_common.make_full_cookie_name pref name
let create ?(scope = Eliom_common.comet_client_process_scope)
?(name = new_id ()) ~size events
=
let name = name_of_scope (scope :> Eliom_common.user_scope) ^ name in
let handler = get_handler scope in
Lwt_log.ign_info_f ~section "create channel %s" name;
let channel = Events {queue = Queue.create (); events = None} in
(match channel with
| Stream _ -> assert false
| Events channel ->
channel.events <-
Some
(Obj.repr
(React.E.fold
(fun full x ->
let queue = channel.queue in
full
||
if Queue.length queue > size
then (
channel.events <- None;
Queue.clear queue;
Queue.push Eliom_comet_base.Full queue;
signal_update handler `Data;
true)
else (
Queue.push (Eliom_comet_base.Data (marshal x)) queue;
signal_update handler `Data;
false))
false events)));
if List.mem name handler.hd_registered_chan_id
then (
handler.hd_registered_chan_id <-
List.filter (( <> ) name) handler.hd_registered_chan_id;
launch_channel handler name channel)
else
handler.hd_unregistered_channels <-
(name, channel) :: handler.hd_unregistered_channels;
{ch_handler = handler; ch_id = name}
let create_unlimited ?(scope = Eliom_common.comet_client_process_scope)
?(name = new_id ()) stream
=
let name = name_of_scope (scope :> Eliom_common.user_scope) ^ name in
let handler = get_handler scope in
Lwt_log.ign_info_f ~section "create channel %s" name;
let stream =
Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt_stream.map (fun x -> Eliom_comet_base.Data (marshal x)) stream
in
let channel = Stream {stream; waiter = stream_waiter stream} in
if List.mem name handler.hd_registered_chan_id
then (
handler.hd_registered_chan_id <-
List.filter (( <> ) name) handler.hd_registered_chan_id;
launch_channel handler name channel)
else
handler.hd_unregistered_channels <-
(name, channel) :: handler.hd_unregistered_channels;
{ch_handler = handler; ch_id = name}
let get_id {ch_id; _} = ch_id
let get_service {ch_handler; _} =
let {hd_service = Ecb.Internal_comet_service (srv, queue); _} =
ch_handler
in
Ecb.Comet_service (srv, queue)
end
module Channel : sig
type 'a t
type comet_scope =
[Eliom_common.site_scope | Eliom_common.client_process_scope]
val create_from_events :
?scope:[< comet_scope]
-> ?name:string
-> ?size:int
-> 'a React.event
-> 'a t
val create :
?scope:[< comet_scope]
-> ?name:string
-> ?size:int
-> 'a Lwt_stream.t
-> 'a t
val create_unlimited :
?scope:Eliom_common.client_process_scope
-> ?name:string
-> 'a Lwt_stream.t
-> 'a t
val create_newest : ?name:string -> 'a Lwt_stream.t -> 'a t
val get_wrapped : 'a t -> 'a Eliom_comet_base.wrapped_channel
val external_channel :
?history:int
-> ?newest:bool
-> prefix:string
-> name:string
-> unit
-> 'a t
val wait_timeout :
?scope:Eliom_common.client_process_scope
-> float
-> unit Lwt.t
end = struct
type 'a channel =
| Stateless of Stateless.channel
| Stateless_newest of Stateless.channel
| Stateful of Stateful.t
| External of 'a Eliom_comet_base.wrapped_channel
type 'a t = {channel : 'a channel; channel_mark : 'a t Eliom_common.wrapper}
[@@warning "-69"]
let get_wrapped t =
match t.channel with
| Stateful channel ->
Eliom_comet_base.Stateful_channel
( Stateful.get_service channel
, Eliom_comet_base.chan_id_of_string (Stateful.get_id channel) )
| Stateless channel ->
Eliom_comet_base.Stateless_channel
( Stateless.get_service ()
, Eliom_comet_base.chan_id_of_string (Stateless.get_id channel)
, Stateless.get_kind ~newest:false channel )
| Stateless_newest channel ->
Eliom_comet_base.Stateless_channel
( Stateless.get_service ()
, Eliom_comet_base.chan_id_of_string (Stateless.get_id channel)
, Stateless.get_kind ~newest:true channel )
| External wrapped -> wrapped
let internal_wrap c =
( get_wrapped c
, Eliom_common.make_unwrapper Eliom_common.comet_channel_unwrap_id )
let channel_mark () = Eliom_common.make_wrapper internal_wrap
let create_stateful_channel ?scope ?name ~size events =
Stateful (Stateful.create ?scope ?name ~size events)
let create_stateless_channel ?name ~size stream =
Stateless
(Stateless.create ?name ~size
( Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt_stream.map marshal stream ))
let create_stateless_newest_channel ?name stream =
Stateless_newest
(Stateless.create ?name ~size:1
( Lwt.with_value Eliom_common.sp_key None @@ fun () ->
Lwt_stream.map marshal stream ))
let create_stateful ?scope ?name ?(size = 1000) events =
{ channel = create_stateful_channel ?scope ?name ~size events
; channel_mark = channel_mark () }
let create_unlimited ?scope ?name events =
{ channel = Stateful (Stateful.create_unlimited ?scope ?name events)
; channel_mark = channel_mark () }
let create_stateless ?name ?(size = 1000) stream =
{ channel = create_stateless_channel ?name ~size stream
; channel_mark = channel_mark () }
let create_newest ?name stream =
{ channel = create_stateless_newest_channel ?name stream
; channel_mark = channel_mark () }
type comet_scope =
[Eliom_common.site_scope | Eliom_common.client_process_scope]
let create_from_events ?scope ?name ?(size = 1000) events =
match scope with
| None -> create_stateful ?name ~size events
| Some (`Client_process _ as scope) ->
create_stateful ~scope ?name ~size events
| Some `Site -> create_stateless ?name ~size (Lwt_react.E.to_stream events)
let create ?scope ?name ?(size = 1000) stream =
match scope with
| None -> create_stateful ?name ~size (Lwt_react.E.of_stream stream)
| Some (`Client_process _ as scope) ->
create_stateful ~scope ?name ~size (Lwt_react.E.of_stream stream)
| Some `Site -> create_stateless ?name ~size stream
let external_channel ?(history = 1) ?(newest = false) ~prefix ~name () =
let service =
Eliom_service.extern ~prefix ~path:comet_global_path
~meth:
(Eliom_service.Post
( Eliom_parameter.unit
, Eliom_parameter.(
bool "idle" ** Eliom_comet_base.comet_request_param) ))
()
in
let last = if newest then None else Some history in
{ channel =
External
(Eliom_comet_base.Stateless_channel
( Eliom_comet_base.Comet_service (service, ref [])
, Stateless.chan_id_of_string name
, Eliom_comet_base.Last_kind last ))
; channel_mark = channel_mark () }
let wait_timeout = Stateful.wait_timeout
end