X-Git-Url: https://git.xandkar.net/?p=dups.git;a=blobdiff_plain;f=dups.ml;h=b6782b68f9021bdbc81522d75ca236dc029a8a02;hp=0bcc83a8a312f52ff3dbd91dab32493e67538dd8;hb=e09dff7f9b5875b81cf50b33dcf97635518f7c28;hpb=e13e9ef5acbfd0affadcf6d23223fa61ffd8cd6b diff --git a/dups.ml b/dups.ml index 0bcc83a..b6782b6 100644 --- a/dups.ml +++ b/dups.ml @@ -2,6 +2,8 @@ open Printf module Array = ArrayLabels module List = ListLabels +module StrSet= Set.Make(String) +module Unix = UnixLabels module Stream : sig type 'a t @@ -9,17 +11,22 @@ module Stream : sig val create : (unit -> 'a option) -> 'a t val iter : 'a t -> f:('a -> unit) -> unit + + val concat : ('a t) list -> 'a t end = struct module S = Stream type 'a t = - 'a S.t + ('a S.t) list let create f = - S.from (fun _ -> f ()) + [S.from (fun _ -> f ())] let iter t ~f = - S.iter f t + List.iter t ~f:(S.iter f) + + let concat ts = + List.concat ts end module In_channel : sig @@ -35,13 +42,12 @@ end = struct ) end -module Directory : sig +module Directory_tree : sig val find_files : string -> string Stream.t end = struct let find_files root = let dirs = Queue.create () in let files = Queue.create () in - Queue.add root dirs; let explore parent = Array.iter (Sys.readdir parent) ~f:(fun child -> let path = Filename.concat parent child in @@ -59,67 +65,114 @@ end = struct () ) in - let next_dir () = - match Queue.take dirs with - | exception Queue.Empty -> - () - | dir -> - explore dir + explore root; + let rec next () = + match Queue.is_empty files, Queue.is_empty dirs with + | false, _ -> Some (Queue.take files) + | true , true -> None + | true , false -> + explore (Queue.take dirs); + next () in - let next_file () = - match Queue.take files with - | exception Queue.Empty -> - None - | file_path -> - Some file_path - in - Stream.create (fun () -> - next_dir (); - next_file () - ) + Stream.create next end type input = - | Root_path of string + | Root_paths of string list | Paths_on_stdin -let main input = - let paths = - match input with - | Paths_on_stdin -> In_channel.lines stdin - | Root_path root -> Directory.find_files root - in +type output = + | Stdout + | Directory of string + +let make_input_stream = function + | Paths_on_stdin -> + In_channel.lines stdin + | Root_paths paths -> + let paths = StrSet.elements (StrSet.of_list paths) in + Stream.concat (List.map paths ~f:Directory_tree.find_files) + +let make_output_fun = function + | Stdout -> + fun digest n_paths paths -> + printf "%s %d\n%!" (Digest.to_hex digest) n_paths; + List.iter (StrSet.elements paths) ~f:(printf " %S\n%!") + | Directory dir -> + fun digest _ paths -> + let digest = Digest.to_hex digest in + let dir = Filename.concat dir (String.sub digest 0 2) in + Unix.mkdir dir ~perm:0o700; + let oc = open_out (Filename.concat dir digest) in + List.iter (StrSet.elements paths) ~f:(fun path -> + output_string oc (sprintf "%S\n%!" path) + ); + close_out oc + +let main input output = + let output = make_output_fun output in + let input = make_input_stream input in let paths_by_digest = Hashtbl.create 1_000_000 in let path_count = ref 0 in let t0 = Sys.time () in - Stream.iter paths ~f:(fun path -> + Stream.iter input ~f:(fun path -> incr path_count; try let digest = Digest.file path in - let paths = + let count, paths = match Hashtbl.find_opt paths_by_digest digest with | None -> - [] - | Some paths -> - paths + (0, StrSet.empty) + | Some (n, paths) -> + (n, paths) in - Hashtbl.replace paths_by_digest digest (path :: paths) + Hashtbl.replace paths_by_digest digest (count + 1, StrSet.add path paths) with Sys_error e -> eprintf "WARNING: Failed to process %S: %S\n%!" path e ); - Hashtbl.iter - (fun digest paths -> - let n_paths = List.length paths in - if n_paths > 1 then begin - printf "%s %d\n%!" (Digest.to_hex digest) n_paths; - List.iter paths ~f:(fun path -> printf " %s\n%!" path) - end - ) - paths_by_digest; + Hashtbl.iter (fun d (n, ps) -> if n > 1 then output d n ps) paths_by_digest; let t1 = Sys.time () in eprintf "Processed %d files in %f seconds.\n%!" !path_count (t1 -. t0) let () = - let input = ref Paths_on_stdin in - Arg.parse [] (fun path -> input := Root_path path) ""; - main !input + let input = ref Paths_on_stdin in + let output = ref Stdout in + let assert_file_exists path = + if Sys.file_exists path then + () + else begin + eprintf "File does not exist: %S\n%!" path; + exit 1 + end + in + let assert_file_is_dir path = + if Sys.is_directory path then + () + else begin + eprintf "File is not a directory: %S\n%!" path; + exit 1 + end + in + let spec = + [ ( "-out" + , Arg.String (fun path -> + assert_file_exists path; + assert_file_is_dir path; + output := Directory path + ) + , " Output to this directory instead of stdout." + ) + ] + in + Arg.parse + (Arg.align spec) + (fun path -> + assert_file_exists path; + assert_file_is_dir path; + match !input with + | Paths_on_stdin -> + input := Root_paths [path] + | Root_paths paths -> + input := Root_paths (path :: paths) + ) + ""; + main !input !output