Improve overview and experiment naming
[khatus.git] / x3 / src / lib / khatus_cache.ml
CommitLineData
6f35286a
SK
1open Printf
2
c6a7396e
SK
3module Hashtbl = MoreLabels.Hashtbl
4
5module Msg = Khatus_msg
6module Time = Khatus_time
7
8type t =
9 { values : ((string * string * string list), string) Hashtbl.t
10 ; mtimes : ((string * string * string list), Time.t) Hashtbl.t
11 }
12
13let create () =
14 { values = Hashtbl.create 256
15 ; mtimes = Hashtbl.create 256
16 }
17
18let update {values; mtimes} ~node ~modul ~key ~value:data ~time =
19 let key = (node, modul, key) in
20 Hashtbl.replace values ~key ~data;
21 Hashtbl.replace mtimes ~key ~data:time
22
6f35286a 23let dump_to_channel {values; mtimes} ~node ~modul ~oc =
c6a7396e
SK
24 Hashtbl.iter values ~f:(fun ~key ~data:value ->
25 let mtime =
26 match Hashtbl.find_opt mtimes key with
27 | Some mtime -> mtime
28 | None -> assert false (* Implies update was incorrect *)
29 in
30 let (node', modul', key) = key in
31 let msg =
32 Msg.(to_string
33 { node
34 ; modul
35 ; content = Cache {mtime; node = node'; modul = modul'; key; value}
36 }
37 )
38 in
0f81c6a8
SK
39 output_string oc msg;
40 output_string oc "\n"
c6a7396e 41 )
6f35286a
SK
42
43let (/) = Filename.concat
44
45let mkdir_p dir =
46 match Sys.command("mkdir -p " ^ dir) with
47 | 0 -> ()
48 | n ->
49 failwith
50 (sprintf "Failed to create directory: %S. mkdir status: %d\n" dir n)
51
52let gzip path =
53 match Sys.command("gzip " ^ path) with
54 | 0 -> ()
55 | n ->
56 failwith
57 (sprintf "Failed to gzip path: %S. gzip status: %d\n" path n)
58
59let dump_to_dir t ~time ~node ~modul ~dir =
60 (* TODO: Just log the errors and keep it moving, instead of failing. *)
61 mkdir_p dir;
62 let dump_filename = dir / "khatus-cache-dump.psv.gz" in
63 let tmp_filename = "khatus-cache-dump-" ^ (Time.to_string time) in
64 let oc = open_out tmp_filename in
65 dump_to_channel t ~node ~modul ~oc;
66 close_out oc;
67 gzip tmp_filename;
68 Sys.rename (tmp_filename ^ ".gz") dump_filename
This page took 0.022978 seconds and 4 git commands to generate.