-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.ml
136 lines (119 loc) · 4.96 KB
/
build.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
(***********************************************************************)
(* build.ml - Executable: Builds up the key database from a multi-file *)
(* database dump. *)
(* Dump files are taken from the command-line. *)
(* *)
(* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, *)
(* 2011, 2012, 2013 Yaron Minsky and Contributors *)
(* *)
(* This file is part of SKS. SKS is free software; you can *)
(* redistribute it and/or modify it under the terms of the GNU General *)
(* Public License as published by the Free Software Foundation; either *)
(* version 2 of the License, or (at your option) any later version. *)
(* *)
(* This program is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *)
(* General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU General Public License *)
(* along with this program; if not, write to the Free Software *)
(* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *)
(* USA or see <http://www.gnu.org/licenses/>. *)
(***********************************************************************)
module F(M:sig end) = struct
open StdLabels
open MoreLabels
open Printf
open Arg
open Common
module Set = PSet.Set
open Packet
let settings = {
Keydb.withtxn = false;
Keydb.cache_bytes = !Settings.cache_bytes;
Keydb.pagesize = !Settings.pagesize;
Keydb.keyid_pagesize = !Settings.keyid_pagesize;
Keydb.meta_pagesize = !Settings.meta_pagesize;
Keydb.subkeyid_pagesize = !Settings.subkeyid_pagesize;
Keydb.time_pagesize = !Settings.time_pagesize;
Keydb.tqueue_pagesize = !Settings.tqueue_pagesize;
Keydb.word_pagesize = !Settings.word_pagesize;
Keydb.dbdir = Lazy.force Settings.dbdir;
Keydb.dumpdir = Lazy.force Settings.dumpdir;
}
module Keydb = Keydb.Safe
let n = match !Settings.n with 0 -> 1 | x -> x
let fnames = !Settings.anonlist
let get_keys nextkey start =
let rec loop acc = match nextkey () with
Some key -> loop
(try
(Fixkey.canonicalize key)::acc
with
Fixkey.Bad_key -> acc
)
| None -> acc
in
loop start
let timestr sec =
sprintf "%.2f min" (sec /. 60.)
let rec nsplit n list = match n with
0 -> ([],list)
| n -> match list with
[] -> ([],[])
| hd::tl ->
let (beginning,ending) = nsplit (n-1) tl in
(hd::beginning,ending)
let rec batch_iter ~f n list =
match nsplit n list with
([],_) -> ()
| (firstn,rest) -> f firstn; batch_iter ~f n rest
let get_keys_fname fname start =
let cin = new Channel.sys_in_channel (open_in fname) in
protect
~f:(fun () ->
let nextkey = Key.next_of_channel cin in
get_keys nextkey start
)
~finally:(fun () -> cin#close)
let get_keys_multi flist =
List.fold_left ~f:(fun keys fname -> get_keys_fname fname keys)
flist ~init:[]
let dbtimer = MTimer.create ()
let timer = MTimer.create ()
(***************************************************************)
let () = Sys.set_signal Sys.sigusr1 Sys.Signal_ignore
let () = Sys.set_signal Sys.sigusr2 Sys.Signal_ignore
(***************************************************************)
let run () =
set_logfile "build";
perror "Running SKS %s%s" Common.version Common.version_suffix;
if Sys.file_exists (Lazy.force Settings.dbdir) then (
printf "KeyDB directory already exists. Exiting.\n";
exit (-1)
);
Unix.mkdir (Lazy.force Settings.dbdir) 0o700;
Utils.initdbconf !Settings.basedir (Lazy.force Settings.dbdir);
Keydb.open_dbs settings;
Keydb.set_meta ~key:"filters" ~data:"yminsky.dedup";
protect
~f:(fun () ->
batch_iter n fnames
~f:(fun fnames ->
MTimer.start timer;
printf "Loading keys..."; flush stdout;
let keys = get_keys_multi fnames in
printf "done\n"; flush stdout;
MTimer.start dbtimer;
Keydb.add_keys keys;
MTimer.stop dbtimer;
MTimer.stop timer;
printf "DB time: %s. Total time: %s.\n"
(timestr (MTimer.read dbtimer))
(timestr (MTimer.read timer));
flush stdout;
)
)
~finally:(fun () -> Keydb.close_dbs ())
end