Source file async_inotify.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
open Core
open Async
module Inotify = Ocaml_inotify.Inotify
type modify_event_selector =
[ `Any_change
| `Closed_writable_fd
]
module Event = struct
module Selector = struct
type t =
| Created
| Unlinked
| Modified
| Moved
[@@deriving enumerate, compare, sexp_of]
let inotify_selectors ts modify_event_selector =
List.dedup_and_sort ts ~compare
|> List.concat_map ~f:(function
| Created -> [ Inotify.S_Create ]
| Unlinked -> [ S_Delete ]
| Modified ->
(match modify_event_selector with
| `Any_change -> [ S_Modify ]
| `Closed_writable_fd -> [ S_Close_write ])
| Moved -> [ S_Move_self; S_Moved_from; S_Moved_to ])
;;
end
type move =
| Away of string
| Into of string
| Move of string * string
[@@deriving sexp_of, compare, equal]
type t =
| Created of string
| Unlinked of string
| Modified of string
| Moved of move
| Queue_overflow
[@@deriving sexp_of, compare, equal]
let move_to_string m =
match m with
| Away s -> sprintf "%s -> Unknown" s
| Into s -> sprintf "Unknown -> %s" s
| Move (f, t) -> sprintf "%s -> %s" f t
;;
let to_string t =
match t with
| Created s -> sprintf "created %s" s
| Unlinked s -> sprintf "unlinked %s" s
| Moved mv -> sprintf "moved %s" (move_to_string mv)
| Modified s -> sprintf "modified %s" s
| Queue_overflow -> "queue overflow"
;;
end
open Event
module Watch = struct
type t = Inotify.watch
let compare t1 t2 = Int.compare (Inotify.int_of_watch t1) (Inotify.int_of_watch t2)
let hash t = Int.hash (Inotify.int_of_watch t)
let sexp_of_t t = sexp_of_int (Inotify.int_of_watch t)
end
type t =
{ fd : Fd.t
; watch_table : (Inotify.watch, string) Hashtbl.t
; path_table : Inotify.watch String.Table.t
; modify_event_selector : modify_event_selector
; default_selectors : Inotify.selector list
; wait_to_consolidate_moves : Time_float.Span.t option
}
type file_info = string * Unix.Stats.t
let add ?events t path =
let watch =
Fd.with_file_descr_exn t.fd (fun fd ->
Inotify.add_watch
fd
path
(match events with
| None -> t.default_selectors
| Some e -> Event.Selector.inotify_selectors e t.modify_event_selector))
in
Hashtbl.set t.watch_table ~key:watch ~data:path;
Hashtbl.set t.path_table ~key:path ~data:watch;
return ()
;;
let add_all ?skip_dir ?events t path =
let options =
{ Async_find.Options.default with
on_open_errors = Print
; on_stat_errors = Print
; skip_dir
}
in
let%bind () = add ?events t path in
let f = Async_find.create ~options path in
Async_find.fold f ~init:[] ~f:(fun files (fn, stat) ->
match stat.kind with
| `Directory ->
let%map () = add ?events t fn in
(fn, stat) :: files
| _ -> return ((fn, stat) :: files))
;;
let remove t path =
match Hashtbl.find t.path_table path with
| None -> return ()
| Some watch ->
Fd.with_file_descr_exn t.fd (fun fd -> Inotify.rm_watch fd watch);
Hashtbl.remove t.watch_table watch;
Hashtbl.remove t.path_table path;
return ()
;;
let size_budget = 10_000_000
let raw_event_pipe t =
Pipe.create_reader ~size_budget ~close_on_exception:false (fun w ->
let report_pending_move = function
| None -> ()
| Some (_, fn) -> Pipe.write_without_pushback_if_open w (Moved (Away fn))
in
Deferred.repeat_until_finished None (fun pending_mv ->
let ready_to_read = Fd.ready_to t.fd `Read
and ready_to_write = Pipe.pushback w in
let%bind pending_mv =
match pending_mv with
| None -> return pending_mv
| Some _ ->
(match%map
match t.wait_to_consolidate_moves with
| None -> return `Timeout
| Some span ->
Clock.with_timeout span (Deferred.both ready_to_write ready_to_read)
with
| `Timeout ->
report_pending_move pending_mv;
None
| `Result _ -> pending_mv)
in
let%bind () = ready_to_write in
match%bind ready_to_read with
| `Bad_fd -> failwith "Bad Inotify file descriptor"
| `Closed ->
report_pending_move pending_mv;
return (`Finished ())
| `Ready ->
(match Fd.with_file_descr ~nonblocking:true t.fd Inotify.read with
| `Already_closed ->
report_pending_move pending_mv;
return (`Finished ())
| `Error exn -> raise_s [%sexp "Inotify.read failed", (exn : Exn.t)]
| `Ok events ->
if false
then print_s [%sexp (List.map events ~f:Inotify.string_of_event : string list)];
let ev_kinds =
List.concat_map events ~f:(fun (watch, ev_kinds, trans_id, fn) ->
if Inotify.int_of_watch watch = -1
then
List.filter_map ev_kinds ~f:(fun ev ->
match ev with
| Q_overflow -> Some (ev, trans_id, "<overflow>")
| _ -> None)
else (
match Hashtbl.find t.watch_table watch with
| None ->
Print.eprintf
"Events for an unknown watch (%d) [%s]\n"
(Inotify.int_of_watch watch)
(String.concat
~sep:", "
(List.map ev_kinds ~f:Inotify.string_of_event_kind));
[]
| Some path ->
let fn =
match fn with
| None -> path
| Some fn -> path ^/ fn
in
List.filter_map ev_kinds ~f:(function
| Isdir -> None
| ev -> Some (ev, trans_id, fn))))
in
let pending_mv, actions =
List.fold
ev_kinds
~init:(pending_mv, [])
~f:(fun (pending_mv, actions) (kind, trans_id, fn) ->
let add_pending lst =
match pending_mv with
| None -> lst
| Some (_, fn) -> Moved (Away fn) :: lst
in
match kind with
| Moved_from -> Some (trans_id, fn), add_pending actions
| Moved_to ->
(match pending_mv with
| None -> None, Moved (Into fn) :: actions
| Some (m_trans_id, m_fn) ->
if Int32.( = ) m_trans_id trans_id
then None, Moved (Move (m_fn, fn)) :: actions
else None, Moved (Away m_fn) :: Moved (Into fn) :: actions)
| Move_self -> Some (trans_id, fn), add_pending actions
| Create -> None, Created fn :: add_pending actions
| Delete -> None, Unlinked fn :: add_pending actions
| Modify | Close_write -> None, Modified fn :: add_pending actions
| Q_overflow -> None, Queue_overflow :: add_pending actions
| Delete_self -> None, add_pending actions
| Access | Attrib | Open | Ignored | Isdir | Unmount | Close_nowrite ->
None, add_pending actions)
in
List.iter (List.rev actions) ~f:(Pipe.write_without_pushback_if_open w);
return (`Repeat pending_mv))))
;;
let event_pipe ~watch_new_dirs ?events t =
if not watch_new_dirs
then raw_event_pipe t
else
Pipe.create_reader ~size_budget ~close_on_exception:false (fun w ->
Pipe.iter (raw_event_pipe t) ~f:(fun ev ->
let%bind () = Pipe.write_if_open w ev in
let new_path =
match ev with
| Moved (Move (_, path) | Into path) | Created path -> Some path
| Queue_overflow | Unlinked _ | Moved (Away _) | Modified _ -> None
in
match new_path with
| None -> return ()
| Some path ->
(match%bind Monitor.try_with (fun () -> Unix.stat path) with
| Error _ -> return ()
| Ok stat ->
(match stat.kind with
| `File | `Char | `Block | `Link | `Fifo | `Socket -> return ()
| `Directory ->
let%bind additions = add_all ?events t path in
List.iter additions ~f:(fun (file, _stat) ->
Pipe.write_without_pushback_if_open w (Created file));
Pipe.pushback w))))
;;
let create_internal ~wait_to_consolidate_moves ~modify_event_selector =
let fd = Inotify.create () in
let%map () = In_thread.run (fun () -> Core_unix.set_close_on_exec fd) in
let fd = Fd.create Fifo fd (Info.of_string "async_inotify") in
let watch_table = Hashtbl.create (module Watch) ~size:10 in
{ fd
; watch_table
; path_table = Hashtbl.create (module String) ~size:10
; modify_event_selector
; default_selectors =
Event.Selector.inotify_selectors Event.Selector.all modify_event_selector
; wait_to_consolidate_moves
}
;;
let create_empty ~modify_event_selector =
let%map t = create_internal ~wait_to_consolidate_moves:None ~modify_event_selector in
t, event_pipe ~watch_new_dirs:false t
;;
let create
?(modify_event_selector = `Any_change)
?(recursive = true)
?(watch_new_dirs = true)
?(events = Event.Selector.all)
?wait_to_consolidate_moves
path
=
let events =
if watch_new_dirs
then Event.Selector.Created :: Event.Selector.Moved :: events
else events
in
let%bind t = create_internal ~wait_to_consolidate_moves ~modify_event_selector in
let skip_dir = if recursive then None else Some (fun _ -> return true) in
let%map initial_files = add_all ?skip_dir ~events t path in
t, initial_files, event_pipe ~watch_new_dirs ~events t
;;
let stop t = Fd.close t.fd
let stopped t = Fd.is_closed t.fd