Source file persistent_connection.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
open! Core
open! Async
open! Import
open! Require_explicit_time_source
include Persistent_connection_intf
module Make (Conn : Closable) = struct
include Persistent_connection_kernel.Make (Conn)
let create
(type address)
~server_name
?log
?(on_event = fun _ -> Deferred.unit)
?retry_delay
?random_state
?time_source
~connect
~address
get_address
=
let (module Address : Address with type t = address) = address in
let retry_delay =
Option.map retry_delay ~f:(fun f () ->
f () |> Time_ns.Span.of_span_float_round_nearest)
in
let on_event event =
Option.iter log ~f:(fun log ->
if Log.would_log log (Some (Event.log_level event))
then
Log.sexp
log
~tags:[ "persistent-connection-to", server_name ]
~level:(Event.log_level event)
[%sexp (event : Address.t Event.t)]);
on_event event
in
create
~server_name
~on_event
?retry_delay
?random_state
?time_source
~connect
~address
get_address
;;
end
let create_convenience_wrapper
~create
~connection_of_rpc_connection
~server_name
?log
?on_event
?retry_delay
?random_state
?time_source
?bind_to_address
?implementations
?max_message_size
?make_transport
?handshake_timeout
?heartbeat_config
get_address
=
let connect host_and_port =
let%bind.Deferred.Or_error conn =
Rpc.Connection.client
(Tcp.Where_to_connect.of_host_and_port ?bind_to_address host_and_port)
?implementations
?max_message_size
?make_transport
?handshake_timeout
?heartbeat_config
~description:(Info.of_string ("persistent connection to " ^ server_name))
>>| Or_error.of_exn_result
in
connection_of_rpc_connection conn
in
create
~server_name
?log
?on_event
?retry_delay
?random_state
?time_source
~connect
~address:(module Host_and_port : Address with type t = Host_and_port.t)
get_address
;;
module Versioned_rpc = struct
include Make (struct
type t = Versioned_rpc.Connection_with_menu.t
let rpc_connection = Versioned_rpc.Connection_with_menu.connection
let close t = Rpc.Connection.close (rpc_connection t)
let is_closed t = Rpc.Connection.is_closed (rpc_connection t)
let close_finished t = Rpc.Connection.close_finished (rpc_connection t)
end)
let create' ~server_name =
create_convenience_wrapper
~server_name
~create
~connection_of_rpc_connection:Versioned_rpc.Connection_with_menu.create
;;
end
module Rpc = struct
include Make (struct
type t = Rpc.Connection.t
let close t = Rpc.Connection.close t
let is_closed t = Rpc.Connection.is_closed t
let close_finished t = Rpc.Connection.close_finished t
end)
let create' ~server_name =
create_convenience_wrapper
~server_name
~create
~connection_of_rpc_connection:Deferred.Or_error.return
;;
end