Source file internal_event_unix.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
open Error_monad
module Configuration = struct
type t = {active_sinks : Uri.t list}
let default =
{
active_sinks = [Uri.make ~scheme:Internal_event.Lwt_log_sink.uri_scheme ()];
}
let encoding =
let open Data_encoding in
let object_1 key_name =
obj1
(dft
key_name
~description:"List of URIs to activate/configure sinks."
(list string)
[])
in
union
[
case
~title:"Active-Sinks"
~description:"List of sinks to make sure are activated."
(Tag 0)
(object_1 "active_sinks")
(fun {active_sinks} -> Some (List.map Uri.to_string active_sinks))
(fun active_sinks ->
{active_sinks = List.map Uri.of_string active_sinks});
case
~title:"Active-Sinks-Deprecated"
~description:
"List of sinks to make sure are activated, deprecated \
backwards-compatibility encoding."
(Tag 1)
(object_1 "activate")
(fun {active_sinks = _} -> None)
(fun active_sinks ->
{active_sinks = List.map Uri.of_string active_sinks});
]
let of_file path =
let open Lwt_tzresult_syntax in
let* json = Lwt_utils_unix.Json.read_file path in
protect (fun () -> return (Data_encoding.Json.destruct encoding json))
let apply {active_sinks} =
List.iter_es Internal_event.All_sinks.activate active_sinks
let reapply config =
let except u = Uri.scheme u = Some "lwt-log" in
Internal_event.All_sinks.close ~except () >>=? fun () -> apply config
end
let env_var_name = "TEZOS_EVENTS_CONFIG"
let init ?lwt_log_sink ?(configuration = Configuration.default) () =
let _ =
[
File_descriptor_sink.Sink_implementation_path.uri_scheme;
File_event_sink.Sink_implementation.uri_scheme;
]
in
Lwt_tzresult_syntax.(
let* () =
Lwt_result.ok @@ Lwt_log_sink_unix.initialize ?cfg:lwt_log_sink ()
in
let* () =
match Sys.(getenv_opt env_var_name) with
| None -> return_unit
| Some s ->
let uris =
TzString.split ' ' s
|> List.map (TzString.split '\n')
|> List.concat
|> List.map (TzString.split '\t')
|> List.concat
|> List.filter (( <> ) "")
|> List.map Uri.of_string
in
let* () =
List.iter_es
(fun uri ->
match Uri.scheme uri with
| None ->
let* cfg = Configuration.of_file (Uri.path uri) in
Configuration.apply cfg
| Some _ -> Internal_event.All_sinks.activate uri)
uris
in
Internal_event.Debug_event.(
emit
(make
"Loaded URIs from environment"
~attach:
(`O
[("variable", `String env_var_name); ("value", `String s)])))
in
Configuration.apply configuration)
>>= function
| Ok () -> Lwt.return_unit
| Error el ->
Format.kasprintf
Lwt.fail_with
"ERROR@ Initializing Internal_event_unix:@ %a\n%!"
Error_monad.pp_print_trace
el
let close () =
Internal_event.All_sinks.close () >>= function
| Ok () -> Lwt.return_unit
| Error el ->
Format.kasprintf
Lwt.fail_with
"ERROR@ closing Internal_event_unix:@ %a\n%!"
Error_monad.pp_print_trace
el