Source file persistent_env.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
open Misc
open Cmi_format
module Consistbl = Consistbl.Make (Misc.String)
let add_delayed_check_forward = ref (fun _ -> assert false)
type error =
| Illegal_renaming of modname * modname * filepath
| Inconsistent_import of modname * filepath * filepath
| Need_recursive_types of modname
exception Error of error
let error err = raise (Error err)
module Persistent_signature = struct
type t =
{ filename : string;
cmi : Cmi_format.cmi_infos }
let load = ref (fun ~unit_name ->
match Load_path.find_uncap (unit_name ^ ".cmi") with
| filename ->
let cmi = Cmi_cache.read filename in
Some { filename; cmi }
| exception Not_found -> None)
end
type can_load_cmis =
| Can_load_cmis
| Cannot_load_cmis of Lazy_backtrack.log
type pers_struct = {
ps_name: string;
ps_crcs: (string * Digest.t option) list;
ps_filename: string;
ps_flags: pers_flags list;
}
module String = Misc.String
type 'a pers_struct_info =
| Missing
| Found of pers_struct * 'a
type 'a t = {
persistent_structures : (string, 'a pers_struct_info) Hashtbl.t;
imported_units: String.Set.t ref;
imported_opaque_units: String.Set.t ref;
crc_units: Consistbl.t;
can_load_cmis: can_load_cmis ref;
short_paths_basis: Short_paths.Basis.t ref;
}
let empty () = {
persistent_structures = Hashtbl.create 17;
imported_units = ref String.Set.empty;
imported_opaque_units = ref String.Set.empty;
crc_units = Consistbl.create ();
can_load_cmis = ref Can_load_cmis;
short_paths_basis = ref (Short_paths.Basis.create ());
}
let clear penv =
let {
persistent_structures;
imported_units;
imported_opaque_units;
crc_units;
can_load_cmis;
short_paths_basis;
} = penv in
Hashtbl.clear persistent_structures;
imported_units := String.Set.empty;
imported_opaque_units := String.Set.empty;
Consistbl.clear crc_units;
can_load_cmis := Can_load_cmis;
short_paths_basis := Short_paths.Basis.create ();
()
let clear_missing {persistent_structures; _} =
let missing_entries =
Hashtbl.fold
(fun name r acc -> if r = Missing then name :: acc else acc)
persistent_structures []
in
List.iter (Hashtbl.remove persistent_structures) missing_entries
let add_import {imported_units; _} s =
imported_units := String.Set.add s !imported_units
let register_import_as_opaque {imported_opaque_units; _} s =
imported_opaque_units := String.Set.add s !imported_opaque_units
let find_in_cache {persistent_structures; _} s =
match Hashtbl.find persistent_structures s with
| exception Not_found -> None
| Missing -> None
| Found (_ps, pm) -> Some pm
let import_crcs penv ~source crcs =
let {crc_units; _} = penv in
let import_crc (name, crco) =
match crco with
| None -> ()
| Some crc ->
add_import penv name;
Consistbl.check crc_units name crc source
in List.iter import_crc crcs
let check_consistency penv ps =
try import_crcs penv ~source:ps.ps_filename ps.ps_crcs
with Consistbl.Inconsistency {
unit_name = name;
inconsistent_source = source;
original_source = auth;
} ->
error (Inconsistent_import(name, auth, source))
let can_load_cmis penv =
!(penv.can_load_cmis)
let set_can_load_cmis penv setting =
penv.can_load_cmis := setting
let short_paths_basis penv =
!(penv.short_paths_basis)
let without_cmis penv f x =
let log = Lazy_backtrack.log () in
let res =
Misc.(protect_refs
[R (penv.can_load_cmis, Cannot_load_cmis log)]
(fun () -> f x))
in
Lazy_backtrack.backtrack log;
res
let fold {persistent_structures; _} f x =
Hashtbl.fold (fun modname pso x -> match pso with
| Missing -> x
| Found (_, pm) -> f modname pm x)
persistent_structures x
let register_pers_for_short_paths penv ps components =
let deps, alias_deps =
List.fold_left
(fun (deps, alias_deps) (name, digest) ->
Short_paths.Basis.add (short_paths_basis penv) name;
match digest with
| None -> deps, name :: alias_deps
| Some _ -> name :: deps, alias_deps)
([], []) ps.ps_crcs
in
let desc =
Short_paths.Desc.Module.(Fresh (Signature components))
in
let is_deprecated =
List.exists
(function
| Alerts alerts ->
String.Map.mem "deprecated" alerts ||
String.Map.mem "ocaml.deprecated" alerts
| _ -> false)
ps.ps_flags
in
let deprecated =
if is_deprecated then Short_paths.Desc.Deprecated
else Short_paths.Desc.Not_deprecated
in
Short_paths.Basis.load (short_paths_basis penv) ps.ps_name
deps alias_deps desc deprecated
let save_pers_struct penv crc ps pm =
let {persistent_structures; crc_units; _} = penv in
let modname = ps.ps_name in
Hashtbl.add persistent_structures modname (Found (ps, pm));
List.iter
(function
| Rectypes -> ()
| Alerts _ -> ()
| Opaque -> register_import_as_opaque penv modname)
ps.ps_flags;
Consistbl.check crc_units modname crc ps.ps_filename;
add_import penv modname
let acknowledge_pers_struct penv short_path_comps check modname pers_sig pm =
let { Persistent_signature.filename; cmi } = pers_sig in
let name = cmi.cmi_name in
let crcs = cmi.cmi_crcs in
let flags = cmi.cmi_flags in
let ps = { ps_name = name;
ps_crcs = crcs;
ps_filename = filename;
ps_flags = flags;
} in
if ps.ps_name <> modname then
error (Illegal_renaming(modname, ps.ps_name, filename));
List.iter
(function
| Rectypes ->
if not !Clflags.recursive_types then
error (Need_recursive_types(ps.ps_name))
| Alerts _ -> ()
| Opaque -> register_import_as_opaque penv modname)
ps.ps_flags;
if check then check_consistency penv ps;
let {persistent_structures; _} = penv in
Hashtbl.add persistent_structures modname (Found (ps, pm));
register_pers_for_short_paths penv ps (short_path_comps ps.ps_name pm);
ps
let read_pers_struct penv val_of_pers_sig short_path_comps check modname filename =
add_import penv modname;
let cmi = Cmi_cache.read filename in
let pers_sig = { Persistent_signature.filename; cmi } in
let pm = val_of_pers_sig pers_sig in
let ps = acknowledge_pers_struct penv short_path_comps check modname pers_sig pm in
(ps, pm)
let find_pers_struct penv val_of_pers_sig short_path_comps check name =
let {persistent_structures; _} = penv in
if name = "*predef*" then raise Not_found;
match Hashtbl.find persistent_structures name with
| Found (ps, pm) -> (ps, pm)
| Missing -> raise Not_found
| exception Not_found ->
match can_load_cmis penv with
| Cannot_load_cmis _ -> raise Not_found
| Can_load_cmis ->
let psig =
match !Persistent_signature.load ~unit_name:name with
| Some psig -> psig
| None ->
Hashtbl.add persistent_structures name Missing;
raise Not_found
in
add_import penv name;
let pm = val_of_pers_sig psig in
let ps = acknowledge_pers_struct penv short_path_comps check name psig pm in
(ps, pm)
let check_pers_struct penv f1 f2 ~loc name =
try
ignore (find_pers_struct penv f1 f2 false name)
with
| Not_found ->
let warn = Warnings.No_cmi_file(name, None) in
Location.prerr_warning loc warn
| Magic_numbers.Cmi.Error err ->
let msg = Format.asprintf "%a" Magic_numbers.Cmi.report_error err in
let warn = Warnings.No_cmi_file(name, Some msg) in
Location.prerr_warning loc warn
| Error err ->
let msg =
match err with
| Illegal_renaming(name, ps_name, filename) ->
Format.asprintf
" %a@ contains the compiled interface for @ \
%s when %s was expected"
Location.print_filename filename ps_name name
| Inconsistent_import _ -> assert false
| Need_recursive_types name ->
Format.sprintf
"%s uses recursive types"
name
in
let warn = Warnings.No_cmi_file(name, Some msg) in
Location.prerr_warning loc warn
let read penv f1 f2 modname filename =
snd (read_pers_struct penv f1 f2 true modname filename)
let find penv f1 f2 name =
snd (find_pers_struct penv f1 f2 true name)
let check penv f1 f2 ~loc name =
let {persistent_structures; _} = penv in
if not (Hashtbl.mem persistent_structures name) then begin
add_import penv name;
if (Warnings.is_active (Warnings.No_cmi_file("", None))) then
!add_delayed_check_forward
(fun () -> check_pers_struct penv f1 f2 ~loc name)
end
let crc_of_unit penv f1 f2 name =
let (ps, _pm) = find_pers_struct penv f1 f2 true name in
let crco =
try
List.assoc name ps.ps_crcs
with Not_found ->
assert false
in
match crco with
None -> assert false
| Some crc -> crc
let imports {imported_units; crc_units; _} =
Consistbl.extract (String.Set.elements !imported_units) crc_units
let looked_up {persistent_structures; _} modname =
Hashtbl.mem persistent_structures modname
let is_imported {imported_units; _} s =
String.Set.mem s !imported_units
let is_imported_opaque {imported_opaque_units; _} s =
String.Set.mem s !imported_opaque_units
let make_cmi penv modname sign alerts =
let flags =
List.concat [
if !Clflags.recursive_types then [Cmi_format.Rectypes] else [];
if !Clflags.opaque then [Cmi_format.Opaque] else [];
[Alerts alerts];
]
in
let crcs = imports penv in
{
cmi_name = modname;
cmi_sign = sign;
cmi_crcs = crcs;
cmi_flags = flags
}
let save_cmi penv psig pm =
let { Persistent_signature.filename; cmi } = psig in
Misc.try_finally (fun () ->
let {
cmi_name = modname;
cmi_sign = _;
cmi_crcs = imports;
cmi_flags = flags;
} = cmi in
let crc =
output_to_file_via_temporary
~mode: [Open_binary] filename
(fun temp_filename oc -> output_cmi temp_filename oc cmi) in
let ps =
{ ps_name = modname;
ps_crcs = (cmi.cmi_name, Some crc) :: imports;
ps_filename = filename;
ps_flags = flags;
} in
save_pers_struct penv crc ps pm
)
~exceptionally:(fun () -> remove_file filename)
let report_error ppf =
let open Format in
function
| Illegal_renaming(modname, ps_name, filename) -> fprintf ppf
"Wrong file naming: %a@ contains the compiled interface for@ \
%s when %s was expected"
Location.print_filename filename ps_name modname
| Inconsistent_import(name, source1, source2) -> fprintf ppf
"@[<hov>The files %a@ and %a@ \
make inconsistent assumptions@ over interface %s@]"
Location.print_filename source1 Location.print_filename source2 name
| Need_recursive_types(import) ->
fprintf ppf
"@[<hov>Invalid import of %s, which uses recursive types.@ %s@]"
import "The compilation flag -rectypes is required"
let () =
Location.register_error_of_exn
(function
| Error err ->
Some (Location.error_of_printer_file report_error err)
| _ -> None
)
let with_cmis penv f x =
Misc.(protect_refs
[R (penv.can_load_cmis, Can_load_cmis)]
(fun () -> f x))
let forall ~found ~missing t =
Std.Hashtbl.forall t.persistent_structures (fun name -> function
| Missing -> missing name
| Found (pers_struct, a) ->
found name pers_struct.ps_filename pers_struct.ps_name a
)