Skip 0-sized files in the shell version
[dups.git] / dups.ml
... / ...
CommitLineData
1open Printf
2
3module Array = ArrayLabels
4module List = ListLabels
5module StrSet = Set.Make(String)
6module Unix = UnixLabels
7
8module Metrics : sig
9 type t
10
11 val init
12 : unit -> t
13 val report
14 : t
15 -> wall_time_all:float
16 -> wall_time_group_by_size:float
17 -> wall_time_group_by_head:float
18 -> wall_time_group_by_digest:float
19 -> proc_time_all:float
20 -> proc_time_group_by_size:float
21 -> proc_time_group_by_head:float
22 -> proc_time_group_by_digest:float
23 -> unit
24
25 val file_considered
26 : t -> size:int -> unit
27 val file_ignored
28 : t -> size:int -> unit
29 val file_empty
30 : t -> unit
31 val file_sampled
32 : t -> unit
33 val chunk_read
34 : t -> size:int -> unit
35 val file_unique_size
36 : t -> size:int -> unit
37 val file_unique_sample
38 : t -> size:int -> unit
39 val file_hashed
40 : t -> size:int -> unit
41 val digest
42 : t -> unit
43 val redundant_data
44 : t -> size:int -> unit
45end = struct
46 type t =
47 { considered_files : int ref
48 ; considered_bytes : int ref
49 ; empty : int ref
50 ; ignored_files : int ref
51 ; ignored_bytes : int ref
52 ; unique_size_files : int ref
53 ; unique_size_bytes : int ref
54 ; unique_sample_files : int ref
55 ; unique_sample_bytes : int ref
56 ; sampled_files : int ref
57 ; sampled_bytes : int ref
58 ; hashed_files : int ref
59 ; hashed_bytes : int ref
60 ; digests : int ref
61 ; redundant_data : int ref
62 }
63
64 let init () =
65 { considered_files = ref 0
66 ; considered_bytes = ref 0
67 ; empty = ref 0
68 ; ignored_files = ref 0
69 ; ignored_bytes = ref 0
70 ; unique_size_files = ref 0
71 ; unique_size_bytes = ref 0
72 ; sampled_files = ref 0
73 ; sampled_bytes = ref 0
74 ; hashed_files = ref 0
75 ; hashed_bytes = ref 0
76 ; unique_sample_files = ref 0
77 ; unique_sample_bytes = ref 0
78 ; digests = ref 0
79 ; redundant_data = ref 0
80 }
81
82 let add sum addend =
83 sum := !sum + addend
84
85 let file_considered t ~size =
86 incr t.considered_files;
87 add t.considered_bytes size
88
89 let file_ignored {ignored_files; ignored_bytes; _} ~size =
90 incr ignored_files;
91 add ignored_bytes size
92
93 let file_empty t =
94 incr t.empty
95
96 let chunk_read t ~size =
97 add t.sampled_bytes size
98
99 let file_sampled t =
100 incr t.sampled_files
101
102 let file_unique_size t ~size =
103 incr t.unique_size_files;
104 add t.unique_size_bytes size
105
106 let file_unique_sample t ~size =
107 incr t.unique_sample_files;
108 add t.unique_sample_bytes size
109
110 let file_hashed t ~size =
111 incr t.hashed_files;
112 add t.hashed_bytes size
113
114 let digest t =
115 incr t.digests
116
117 let redundant_data t ~size =
118 add t.redundant_data size
119
120 let report
121 t
122 ~wall_time_all
123 ~wall_time_group_by_size
124 ~wall_time_group_by_head
125 ~wall_time_group_by_digest
126 ~proc_time_all
127 ~proc_time_group_by_size
128 ~proc_time_group_by_head
129 ~proc_time_group_by_digest
130 =
131 let b_to_mb b = (float_of_int b) /. 1024. /. 1024. in
132 let b_to_gb b = (b_to_mb b) /. 1024. in
133 eprintf "Total time : %.2f wall sec %.2f proc sec\n%!"
134 wall_time_all
135 proc_time_all;
136 eprintf "Considered : %8d files %6.2f Gb\n%!"
137 !(t.considered_files)
138 (b_to_gb !(t.considered_bytes));
139 eprintf "Sampled : %8d files %6.2f Gb\n%!"
140 !(t.sampled_files)
141 (b_to_gb !(t.sampled_bytes));
142 eprintf "Hashed : %8d files %6.2f Gb %6.2f wall sec %6.2f proc sec\n%!"
143 !(t.hashed_files)
144 (b_to_gb !(t.hashed_bytes))
145 wall_time_group_by_digest
146 proc_time_group_by_digest;
147 eprintf "Digests : %8d\n%!"
148 !(t.digests);
149 eprintf "Duplicates (Hashed - Digests): %8d files %6.2f Gb\n%!"
150 (!(t.hashed_files) - !(t.digests))
151 (b_to_gb !(t.redundant_data));
152 eprintf "Skipped due to 0 size : %8d files\n%!" !(t.empty);
153 eprintf "Skipped due to unique size : %8d files %6.2f Gb %6.2f wall sec %6.2f proc sec\n%!"
154 !(t.unique_size_files)
155 (b_to_gb !(t.unique_size_bytes))
156 wall_time_group_by_size
157 proc_time_group_by_size;
158 eprintf "Skipped due to unique sample : %8d files %6.2f Gb %6.2f wall sec %6.2f proc sec\n%!"
159 !(t.unique_sample_files)
160 (b_to_gb !(t.unique_sample_bytes))
161 wall_time_group_by_head
162 proc_time_group_by_head;
163 eprintf "Ignored due to regex match : %8d files %6.2f Gb\n%!"
164 !(t.ignored_files)
165 (b_to_gb !(t.ignored_bytes))
166end
167
168module M = Metrics
169
170module Stream : sig
171 type 'a t
172
173 val create : (unit -> 'a option) -> 'a t
174
175 val of_queue : 'a Queue.t -> 'a t
176
177 val iter : 'a t -> f:('a -> unit) -> unit
178
179 val bag_map : 'a t -> njobs:int -> f:('a -> 'b) -> ('a * 'b) t
180 (** Parallel map with arbitrarily-reordered elements. *)
181
182 val map : 'a t -> f:('a -> 'b) -> 'b t
183
184 val filter : 'a t -> f:('a -> bool) -> 'a t
185
186 val concat : ('a t) list -> 'a t
187
188 val group_by : 'a t -> f:('a -> 'b) -> ('b * int * 'a list) t
189end = struct
190 module S = Stream
191
192 type 'a t =
193 {mutable streams : ('a S.t) list}
194
195 type ('input, 'output) msg_from_vassal =
196 | Ready of int
197 | Result of (int * ('input * 'output))
198 | Exiting of int
199
200 type 'input msg_from_lord =
201 | Job of 'input option
202
203 let create f =
204 {streams = [S.from (fun _ -> f ())]}
205
206 let of_queue q =
207 create (fun () ->
208 match Queue.take q with
209 | exception Queue.Empty ->
210 None
211 | x ->
212 Some x
213 )
214
215 let rec next t =
216 match t.streams with
217 | [] ->
218 None
219 | s :: streams ->
220 (match S.next s with
221 | exception Stream.Failure ->
222 t.streams <- streams;
223 next t
224 | x ->
225 Some x
226 )
227
228 let map t ~f =
229 create (fun () ->
230 match next t with
231 | None -> None
232 | Some x -> Some (f x)
233 )
234
235 let filter t ~f =
236 let rec filter () =
237 match next t with
238 | None ->
239 None
240 | Some x when f x ->
241 Some x
242 | Some _ ->
243 filter ()
244 in
245 create filter
246
247 let iter t ~f =
248 List.iter t.streams ~f:(S.iter f)
249
250 let concat ts =
251 {streams = List.concat (List.map ts ~f:(fun {streams} -> streams))}
252
253 let group_by t ~f =
254 let groups_tbl = Hashtbl.create 1_000_000 in
255 let group_update x =
256 let group = f x in
257 let members =
258 match Hashtbl.find_opt groups_tbl group with
259 | None ->
260 (1, [x])
261 | Some (n, xs) ->
262 (succ n, x :: xs)
263 in
264 Hashtbl.replace groups_tbl group members
265 in
266 iter t ~f:group_update;
267 let groups = Queue.create () in
268 Hashtbl.iter
269 (fun name (length, members) -> Queue.add (name, length, members) groups)
270 groups_tbl;
271 of_queue groups
272
273 module Ipc : sig
274 val send : out_channel -> 'a -> unit
275 val recv : in_channel -> 'a
276 end = struct
277 let send oc msg =
278 Marshal.to_channel oc msg [];
279 flush oc
280
281 let recv ic =
282 Marshal.from_channel ic
283 end
284
285 let lord t ~njobs ~vassals ~ic ~ocs =
286 let active_vassals = ref njobs in
287 let results = Queue.create () in
288 let rec loop () =
289 match ((Ipc.recv ic) : ('input, 'output) msg_from_vassal) with
290 | Exiting i ->
291 close_out ocs.(i);
292 decr active_vassals;
293 if !active_vassals = 0 then () else loop ()
294 | Ready i ->
295 Ipc.send ocs.(i) (Job (next t));
296 loop ()
297 | Result (i, result) ->
298 Queue.add result results;
299 Ipc.send ocs.(i) (Job (next t));
300 loop ()
301 in
302 let rec wait = function
303 | [] ->
304 ()
305 | vassals ->
306 let pid, _process_status = Unix.wait () in
307 (* TODO: handle process_status *)
308 wait (List.filter vassals ~f:(fun p -> p <> pid))
309 in
310 loop ();
311 close_in ic;
312 wait vassals;
313 of_queue results
314
315 let vassal i ~f ~vassal_pipe_r ~lord_pipe_w =
316 let ic = Unix.in_channel_of_descr vassal_pipe_r in
317 let oc = Unix.out_channel_of_descr lord_pipe_w in
318 let rec loop () =
319 match (Ipc.recv ic : 'input msg_from_lord) with
320 | Job (Some x) ->
321 Ipc.send oc (Result (i, (x, f x)));
322 loop ()
323 | Job None ->
324 Ipc.send oc (Exiting i)
325 in
326 Ipc.send oc (Ready i);
327 loop ();
328 close_in ic;
329 close_out oc;
330 exit 0
331
332 let bag_map t ~njobs ~f =
333 let lord_pipe_r, lord_pipe_w = Unix.pipe () in
334 let vassal_pipes = Array.init njobs ~f:(fun _ -> Unix.pipe ()) in
335 let vassal_pipes_r = Array.map vassal_pipes ~f:(fun (r, _) -> r) in
336 let vassal_pipes_w = Array.map vassal_pipes ~f:(fun (_, w) -> w) in
337 let vassals = ref [] in
338 for i=0 to (njobs - 1) do
339 begin match Unix.fork () with
340 | 0 ->
341 Unix.close lord_pipe_r;
342 vassal i ~f ~lord_pipe_w ~vassal_pipe_r:vassal_pipes_r.(i)
343 | pid ->
344 vassals := pid :: !vassals
345 end
346 done;
347 Unix.close lord_pipe_w;
348 lord
349 t
350 ~njobs
351 ~vassals:!vassals
352 ~ic:(Unix.in_channel_of_descr lord_pipe_r)
353 ~ocs:(Array.map vassal_pipes_w ~f:Unix.out_channel_of_descr)
354end
355
356module In_channel : sig
357 val lines : ?delim_null:bool -> in_channel -> string Stream.t
358end = struct
359 let read_until_newline ic () =
360 match input_line ic with
361 | exception End_of_file ->
362 None
363 | line ->
364 Some line
365
366 let read_until_null ic =
367 let lexbuf = Lexing.from_channel ic in
368 fun () -> Input_delim.by_null lexbuf
369
370 let lines ?(delim_null=false) ic =
371 let reader =
372 if delim_null then
373 read_until_null ic
374 else
375 read_until_newline ic
376 in
377 Stream.create reader
378end
379
380module File : sig
381 type t =
382 { path : string
383 ; size : int
384 }
385
386 val find : string -> t Stream.t
387 (** Find all files in the directory tree, starting from the given root path *)
388
389 val lookup : string Stream.t -> t Stream.t
390 (** Lookup file info for given paths *)
391
392 val head : t -> len:int -> metrics:M.t -> string
393
394 val filter_out_unique_sizes : t Stream.t -> metrics:M.t -> t Stream.t
395 val filter_out_unique_heads : t Stream.t -> len:int -> metrics:M.t -> t Stream.t
396end = struct
397 type t =
398 { path : string
399 ; size : int
400 }
401
402 let lookup paths =
403 Stream.map paths ~f:(fun path ->
404 let {Unix.st_size = size; _} = Unix.lstat path in
405 {path; size}
406 )
407
408 let find root =
409 let dirs = Queue.create () in
410 let files = Queue.create () in
411 let explore parent =
412 Array.iter (Sys.readdir parent) ~f:(fun child ->
413 let path = Filename.concat parent child in
414 let {Unix.st_kind = file_kind; st_size; _} = Unix.lstat path in
415 match file_kind with
416 | Unix.S_REG ->
417 let file = {path; size = st_size} in
418 Queue.add file files
419 | Unix.S_DIR ->
420 Queue.add path dirs
421 | Unix.S_CHR
422 | Unix.S_BLK
423 | Unix.S_LNK
424 | Unix.S_FIFO
425 | Unix.S_SOCK ->
426 ()
427 )
428 in
429 explore root;
430 let rec next () =
431 match Queue.is_empty files, Queue.is_empty dirs with
432 | false, _ -> Some (Queue.take files)
433 | true , true -> None
434 | true , false ->
435 explore (Queue.take dirs);
436 next ()
437 in
438 Stream.create next
439
440 let filter_out_singletons files ~group ~handle_singleton =
441 let q = Queue.create () in
442 Stream.iter (Stream.group_by files ~f:group) ~f:(fun group ->
443 let (_, n, members) = group in
444 if n > 1 then
445 List.iter members ~f:(fun m -> Queue.add m q)
446 else
447 handle_singleton group
448 );
449 Stream.of_queue q
450
451 let filter_out_unique_sizes files ~metrics =
452 filter_out_singletons
453 files
454 ~group:(fun {size; _} -> size)
455 ~handle_singleton:(fun (size, _, _) -> M.file_unique_size metrics ~size)
456
457 let head {path; _} ~len ~metrics =
458 M.file_sampled metrics;
459 let buf = Bytes.make len ' ' in
460 let ic = open_in_bin path in
461 let rec read pos len =
462 assert (len >= 0);
463 if len = 0 then
464 ()
465 else begin
466 let chunk_size = input ic buf pos len in
467 M.chunk_read metrics ~size:chunk_size;
468 if chunk_size = 0 then (* EOF *)
469 ()
470 else
471 read (pos + chunk_size) (len - chunk_size)
472 end
473 in
474 read 0 len;
475 close_in ic;
476 Bytes.to_string buf
477
478 let filter_out_unique_heads files ~len ~metrics =
479 filter_out_singletons
480 files
481 ~group:(head ~len ~metrics)
482 ~handle_singleton:(fun (_, _, files) ->
483 let {size; _} = List.hd files in (* Guaranteed non-empty *)
484 M.file_unique_sample metrics ~size
485 )
486end
487
488type input =
489 | Stdin
490 | Directories of string list
491
492type output =
493 | Stdout
494 | Directory of string
495
496type opt =
497 { input : input
498 ; output : output
499 ; ignore : string -> bool
500 ; sample : int
501 ; njobs : int
502 ; delim_null : bool
503 }
504
505let make_input_stream input ignore ~metrics ~delim_null =
506 let input =
507 match input with
508 | Stdin ->
509 File.lookup (In_channel.lines stdin ~delim_null)
510 | Directories paths ->
511 let paths = StrSet.elements (StrSet.of_list paths) in
512 Stream.concat (List.map paths ~f:File.find)
513 in
514 Stream.filter input ~f:(fun {File.path; size} ->
515 M.file_considered metrics ~size;
516 let empty = size = 0 in
517 let ignored = ignore path in
518 if empty then M.file_empty metrics;
519 if ignored then M.file_ignored metrics ~size;
520 (not empty) && (not ignored)
521 )
522
523let make_output_fun = function
524 | Stdout ->
525 fun digest n_files files ->
526 printf "%s %d\n%!" (Digest.to_hex digest) n_files;
527 List.iter files ~f:(fun {File.path; _} ->
528 printf " %S\n%!" path
529 )
530 | Directory dir ->
531 fun digest _ files ->
532 let digest = Digest.to_hex digest in
533 let dir = Filename.concat dir (String.sub digest 0 2) in
534 Unix.mkdir dir ~perm:0o700;
535 let oc = open_out (Filename.concat dir digest) in
536 List.iter files ~f:(fun {File.path; _} ->
537 output_string oc (sprintf "%S\n%!" path)
538 );
539 close_out oc
540
541let time_wall () =
542 Unix.gettimeofday ()
543
544let time_proc () =
545 Sys.time ()
546
547let main {input; output; ignore; sample = sample_len; njobs; delim_null} =
548 let wt0_all = time_wall () in
549 let pt0_all = time_proc () in
550 let metrics = M.init () in
551 let output = make_output_fun output in
552 let input = make_input_stream input ignore ~metrics ~delim_null in
553 (* TODO: Make a nice(r) abstraction to re-assemble pieces in the pipeline:
554 *
555 * from input to files_by_size
556 * from files_by_size to files_by_sample
557 * from files_by_sample to files_by_digest
558 * from files_by_digest to output
559 *
560 * input |> files_by_size |> files_by_sample |> files_by_digest |> output
561 *)
562
563 let files = input in
564
565 let wt0_group_by_size = time_wall () in
566 let pt0_group_by_size = time_proc () in
567 eprintf "[debug] filtering-out files with unique size\n%!";
568 let files = File.filter_out_unique_sizes files ~metrics in
569 let pt1_group_by_size = time_proc () in
570 let wt1_group_by_size = time_wall () in
571
572 let wt0_group_by_sample = wt1_group_by_size in
573 let pt0_group_by_sample = pt1_group_by_size in
574 eprintf "[debug] filtering-out files with unique heads\n%!";
575 let files =
576 if njobs > 1 then begin
577 let q = Queue.create () in
578 files
579 |> Stream.bag_map ~njobs ~f:(File.head ~len:sample_len ~metrics)
580 |> Stream.group_by ~f:snd
581 |> Stream.map ~f:(fun (d, n, pairs) -> (d, n, List.map pairs ~f:fst))
582 |> Stream.filter ~f:(fun (_, n, _) -> n > 1)
583 |> Stream.iter ~f:(fun (_, _, fs) -> List.iter fs ~f:(fun f -> Queue.add f q))
584 ;
585 Stream.of_queue q
586 end else
587 File.filter_out_unique_heads files ~len:sample_len ~metrics
588 in
589 let pt1_group_by_sample = time_proc () in
590 let wt1_group_by_sample = time_wall () in
591
592 let wt0_group_by_digest = wt1_group_by_sample in
593 let pt0_group_by_digest = pt1_group_by_sample in
594 eprintf "[debug] hashing\n%!";
595 let groups =
596 if njobs > 1 then
597 let with_digests =
598 Stream.bag_map files ~njobs ~f:(fun {File.path; _} -> Digest.file path)
599 in
600 Stream.map (Stream.group_by with_digests ~f:snd) ~f:(
601 fun (digest, n, file_digest_pairs) ->
602 let files =
603 List.map file_digest_pairs ~f:(fun (file, _) ->
604 M.file_hashed metrics ~size:file.File.size;
605 file
606 )
607 in
608 (digest, n, files)
609 )
610 else
611 Stream.group_by files ~f:(fun {File.path; size} ->
612 M.file_hashed metrics ~size;
613 Digest.file path
614 )
615 in
616 let pt1_group_by_digest = time_proc () in
617 let wt1_group_by_digest = time_wall () in
618
619 eprintf "[debug] reporting\n%!";
620 Stream.iter groups ~f:(fun (d, n, files) ->
621 M.digest metrics;
622 if n > 1 then begin
623 M.redundant_data metrics ~size:(n * (List.hd files).File.size);
624 output d n files
625 end
626 );
627
628 let pt1_all = time_proc () in
629 let wt1_all = time_wall () in
630
631 M.report metrics
632 ~wall_time_all: (wt1_all -. wt0_all)
633 ~wall_time_group_by_size: (wt1_group_by_size -. wt0_group_by_size)
634 ~wall_time_group_by_head: (wt1_group_by_sample -. wt0_group_by_sample)
635 ~wall_time_group_by_digest:(wt1_group_by_digest -. wt0_group_by_digest)
636 ~proc_time_all: (pt1_all -. pt0_all)
637 ~proc_time_group_by_size: (pt1_group_by_size -. pt0_group_by_size)
638 ~proc_time_group_by_head: (pt1_group_by_sample -. pt0_group_by_sample)
639 ~proc_time_group_by_digest:(pt1_group_by_digest -. pt0_group_by_digest)
640
641let get_opt () : opt =
642 let assert_ test x msg =
643 if not (test x) then begin
644 eprintf "%s\n%!" msg;
645 exit 1
646 end
647 in
648 let assert_file_exists path =
649 assert_ Sys.file_exists path (sprintf "File does not exist: %S" path)
650 in
651 let assert_file_is_dir path =
652 assert_ Sys.is_directory path (sprintf "File is not a directory: %S" path)
653 in
654 let input = ref Stdin in
655 let output = ref Stdout in
656 let ignore = ref (fun _ -> false) in
657 let sample = ref 512 in
658 let njobs = ref 6 in
659 let input_delim_null = ref false in
660 let spec =
661 [ ( "-out"
662 , Arg.String (fun path ->
663 assert_file_exists path;
664 assert_file_is_dir path;
665 output := Directory path
666 )
667 , " Output to this directory instead of stdout."
668 )
669 ; ( "-ignore"
670 , Arg.String (fun regexp ->
671 let regexp = Str.regexp regexp in
672 ignore := fun string -> Str.string_match regexp string 0)
673 , " Ignore file paths which match this regexp pattern (see Str module)."
674 )
675 ; ( "-sample"
676 , Arg.Set_int sample
677 , (sprintf " Byte size of file samples to use. Default: %d" !sample)
678 )
679 ; ( "-j"
680 , Arg.Set_int njobs
681 , (sprintf " Number of parallel jobs. Default: %d" !njobs)
682 )
683 ; ( "-0"
684 , Arg.Set input_delim_null
685 , ( sprintf
686 ( " Delimit input paths by null character instead of a newline."
687 ^^" Meaningful only when reading candidate paths from stdin."
688 ^^" Default: %B"
689 )
690 !input_delim_null
691 )
692 )
693 ]
694 in
695 Arg.parse
696 (Arg.align spec)
697 (fun path ->
698 assert_file_exists path;
699 assert_file_is_dir path;
700 match !input with
701 | Stdin ->
702 input := Directories [path]
703 | Directories paths ->
704 input := Directories (path :: paths)
705 )
706 "";
707 assert_
708 (fun x -> x > 0)
709 !sample
710 (sprintf "Sample size cannot be negative: %d" !sample);
711 { input = !input
712 ; output = !output
713 ; ignore = !ignore
714 ; sample = !sample
715 ; njobs = !njobs
716 ; delim_null = !input_delim_null
717 }
718
719let () =
720 main (get_opt ())
This page took 0.020222 seconds and 4 git commands to generate.