Source file doc.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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
let hd_opt ~default l =
match l with
| [] -> default
| h :: _ -> h
type node =
{ loc : Loc.t
; ast : Coq.Ast.t option (** Ast of node *)
; state : Coq.State.t (** (Full) State of node *)
; diags : Types.Diagnostic.t list
; messages : Coq.Message.t list
; memo_info : string
}
module Completion = struct
type t =
| Yes of Loc.t (** Location of the last token in the document *)
| Stopped of Loc.t (** Location of the last valid token *)
end
type t =
{ uri : string
; version : int
; contents : string
; end_loc : int * int * int
; root : Coq.State.t
; nodes : node list
; diags_dirty : bool (** Used to optimize `eager_diagnostics` *)
; completed : Completion.t
}
let mk_doc root_state workspace =
let libname = Names.(DirPath.make [ Id.of_string "foo" ]) in
Coq.Init.doc_init ~root_state ~workspace ~libname
let init_loc ~uri = Loc.initial (InFile { dirpath = None; file = uri })
let get_last_text text =
let lines = CString.split_on_char '\n' text in
let last_line = hd_opt ~default:"" (List.rev lines) in
(List.length lines, String.length last_line, String.length text)
let create ~state ~workspace ~uri ~version ~contents =
let end_loc = get_last_text contents in
{ uri
; contents
; end_loc
; version
; root = mk_doc state workspace
; nodes = []
; diags_dirty = false
; completed = Stopped (init_loc ~uri)
}
let recover_up_to_offset doc offset =
Io.Log.trace "prefix"
(Format.asprintf "common prefix offset found at %d" offset);
let rec find acc_nodes acc_loc nodes =
match nodes with
| [] -> (List.rev acc_nodes, acc_loc)
| n :: ns ->
if Debug.scan then
Io.Log.trace "scan"
(Format.asprintf "consider node at %s" (Coq.Ast.pr_loc n.loc));
if n.loc.Loc.ep >= offset then (List.rev acc_nodes, acc_loc)
else find (n :: acc_nodes) n.loc ns
in
let loc = init_loc ~uri:doc.uri in
find [] loc doc.nodes
let compute_common_prefix ~contents doc =
let s1 = doc.contents in
let l1 = String.length s1 in
let s2 = contents in
let l2 = String.length s2 in
let rec match_or_stop i =
if i = l1 || i = l2 then i
else if Char.equal s1.[i] s2.[i] then match_or_stop (i + 1)
else i
in
let common_idx = match_or_stop 0 in
let nodes, loc = recover_up_to_offset doc common_idx in
Io.Log.trace "prefix" ("resuming from " ^ Coq.Ast.pr_loc loc);
let completed = Completion.Stopped loc in
(nodes, completed)
let bump_version ~version ~contents doc =
let nodes, completed = compute_common_prefix ~contents doc in
let end_loc = get_last_text contents in
{ doc with
version
; nodes
; contents
; end_loc
; diags_dirty = true
; completed
}
let add_node ~node doc =
let diags_dirty = if node.diags <> [] then true else doc.diags_dirty in
{ doc with nodes = node :: doc.nodes; diags_dirty }
let concat_diags doc = List.concat_map (fun node -> node.diags) doc.nodes
let send_eager_diagnostics ~uri ~version ~doc =
if doc.diags_dirty && !Config.v.eager_diagnostics then (
let diags = concat_diags doc in
Io.Report.diagnostics ~uri ~version diags;
{ doc with diags_dirty = false })
else doc
let set_completion ~completed doc = { doc with completed }
let compute_progress end_loc last_done =
let start =
{ Types.Point.line = last_done.Loc.line_nb_last - 1
; character = last_done.ep - last_done.bol_pos_last
; offset = last_done.ep
}
in
let end_line, end_col, end_offset = end_loc in
let end_ =
{ Types.Point.line = end_line - 1
; character = end_col
; offset = end_offset
}
in
let range = Types.Range.{ start; end_ } in
(range, 1)
let report_progress ~doc last_tok =
let progress = compute_progress doc.end_loc last_tok in
Io.Report.fileProgress ~uri:doc.uri ~version:doc.version [ progress ]
let bp_ = ref 0
let undamage_jf loc =
Loc.
{ loc with
bol_pos = loc.bol_pos - !bp_
; bp = loc.bp - !bp_
; ep = loc.ep - !bp_
}
let undamage_jf_opt loc = Option.map undamage_jf loc
let parse_stm ~st ps =
let mode = Coq.State.mode ~st in
let st = Coq.State.parsing ~st in
let parse ps =
Control.check_for_interrupt ();
Vernacstate.Parser.parse st Pvernac.(main_entry mode) ps
|> Option.map (fun { CAst.loc; v } ->
CAst.make ?loc:(undamage_jf_opt loc) v)
|> Option.map Coq.Ast.of_coq
in
Stats.record ~kind:Stats.Kind.Parsing ~f:(Coq.Protect.eval ~f:parse) ps
let parse_to_terminator : unit Pcoq.Entry.t =
let rec dot st =
match LStream.next st with
| Tok.KEYWORD ("." | "..." | "Qed" | "Defined" | "Admitted") | Tok.BULLET _
-> ()
| Tok.EOI -> ()
| _ -> dot st
in
Pcoq.Entry.of_parser "Coqtoplevel.dot" { parser_fun = dot }
let rec discard_to_dot ps =
try Pcoq.Entry.parse parse_to_terminator ps with
| CLexer.Error.E _ -> discard_to_dot ps
| e when CErrors.noncritical e -> ()
let rec find_recovery_for_failed_qed ~default nodes =
match nodes with
| [] -> (default, None)
| { ast = None; _ } :: ns -> find_recovery_for_failed_qed ~default ns
| { ast = Some ast; state; loc; _ } :: ns -> (
match (Coq.Ast.to_coq ast).CAst.v.Vernacexpr.expr with
| Vernacexpr.VernacStartTheoremProof _ -> (
if !Config.v.admit_on_bad_qed then
let state = Memo.interp_admitted ~st:state in
(state, Some loc)
else
match ns with
| [] -> (default, None)
| n :: _ -> (n.state, Some n.loc))
| _ -> find_recovery_for_failed_qed ~default ns)
let state_recovery_heuristic doc st v =
match (Coq.Ast.to_coq v).CAst.v.Vernacexpr.expr with
| Vernacexpr.VernacEndProof _ ->
let st, loc = find_recovery_for_failed_qed ~default:st doc.nodes in
let loc_msg = Option.cata Coq.Ast.pr_loc "no loc" loc in
Io.Log.trace "recovery" (loc_msg ^ " " ^ Memo.input_info (v, st));
st
| _ -> st
let debug_parsed_sentence ~ast =
let loc = Coq.Ast.loc ast |> Option.get in
let line = "[l: " ^ string_of_int loc.Loc.line_nb ^ "] " in
Io.Log.trace "coq"
("parsed sentence: " ^ line ^ Pp.string_of_ppcmds (Coq.Ast.print ast))
type process_action =
| EOF of Completion.t
| Skip of Loc.t * Loc.t
| Process of Coq.Ast.t
let _pp_located fmt (_loc, pp) = Pp.pp_with fmt pp
let pp_words fmt w =
if w < 1024.0 then Format.fprintf fmt "%.0f w" w
else if w < 1024.0 *. 1024.0 then Format.fprintf fmt "%.2f Kw" (w /. 1024.0)
else Format.fprintf fmt "%.2f Mw" (w /. (1024.0 *. 1024.0))
let mk_diag ?( = []) range severity message =
let range = Types.to_range range in
let message = Pp.string_of_ppcmds message in
Types.Diagnostic.{ range; severity; message; extra }
let mk_error_diagnostic ~loc ~msg ~ast =
match (Coq.Ast.to_coq ast).v with
| Vernacexpr.{ expr = VernacRequire (prefix, _export, module_refs); _ } ->
let refs = List.map fst module_refs in
let = [ Types.Diagnostic.Extra.FailedRequire { prefix; refs } ] in
mk_diag ~extra loc 1 msg
| _ -> mk_diag loc 1 msg
let feed_to_diag ~loc (range, severity, message) =
let range = Option.default loc range in
mk_diag range severity message
let process_feedback ~loc fbs =
let diags, messages = List.partition (fun (_, lvl, _) -> lvl < 3) fbs in
let diags =
if !Config.v.show_notices_as_diagnostics then
diags @ List.filter (fun (_, lvl, _) -> lvl = 3) fbs
else diags
in
(List.map (feed_to_diag ~loc) diags, messages)
let interp_and_info ~parsing_time ~st ~fb_queue ast =
let { Gc.major_words = mw_prev; _ } = Gc.quick_stat () in
let { Memo.Stats.res; cache_hit; memory = _; time } =
Memo.interp_command ~st ~fb_queue ast
in
let cptime = Stats.get ~kind:Stats.Kind.Parsing in
let cetime = Stats.get ~kind:Stats.Kind.Exec in
let { Gc.major_words = mw_after; _ } = Gc.quick_stat () in
let memo_info =
Format.asprintf
"Cache Hit: %b | Parse (s/c): %.4f / %.2f | Exec (s/c): %.4f / %.2f"
cache_hit parsing_time cptime time cetime
in
let mem_info =
Format.asprintf "major words: %a | diff %a" pp_words mw_after pp_words
(mw_after -. mw_prev)
in
(res, memo_info ^ "\n___\n" ^ mem_info)
let build_span start_loc end_loc =
Loc.
{ start_loc with
line_nb_last = end_loc.line_nb_last
; bol_pos_last = end_loc.bol_pos_last
; ep = end_loc.ep
}
let clexer_after loc =
Loc.
{ loc with
line_nb = loc.line_nb_last
; bol_pos = loc.bol_pos_last
; bp = loc.ep
}
let stream_of_string ~offset text =
let pad = String.make offset ' ' in
let str = Stream.of_string (pad ^ text) in
for _i = 1 to offset do
Stream.junk str
done;
str
module PCoqHack = struct
type t =
{ pa_tok_strm : Tok.t LStream.t
; lexer_state : CLexer.Lexer.State.t ref
}
let loc (p : Pcoq.Parsable.t) : Loc.t =
let p : t = Obj.magic p in
LStream.current_loc p.pa_tok_strm |> undamage_jf
end
let process_and_parse ~uri ~version ~fb_queue doc last_tok doc_handle =
let rec stm doc st last_tok =
let doc = send_eager_diagnostics ~uri ~version ~doc in
report_progress ~doc last_tok;
if Debug.parsing then Io.Log.trace "coq" "parsing sentence";
let action, parsing_diags, parsing_time =
let start_loc = PCoqHack.loc doc_handle |> clexer_after in
match parse_stm ~st doc_handle with
| Coq.Protect.R.Interrupted, time -> (EOF (Stopped last_tok), [], time)
| Coq.Protect.R.Completed res, time -> (
match res with
| Ok None ->
let last_tok = PCoqHack.loc doc_handle in
(EOF (Yes last_tok), [], time)
| Ok (Some ast) ->
let () = if Debug.parsing then debug_parsed_sentence ~ast in
(Process ast, [], time)
| Error (loc, msg) ->
let err_loc = Option.get loc in
let diags = [ mk_diag err_loc 1 msg ] in
discard_to_dot doc_handle;
let last_tok = PCoqHack.loc doc_handle in
let span_loc = build_span start_loc last_tok in
(Skip (span_loc, last_tok), diags, time))
in
match action with
| EOF completed -> set_completion ~completed doc
| Skip (span_loc, last_tok) ->
let node =
{ loc = span_loc
; ast = None
; diags = parsing_diags
; messages = []
; state = st
; memo_info = ""
}
in
let doc = add_node ~node doc in
stm doc st last_tok
| Process ast -> (
let ast_loc = Coq.Ast.loc ast |> Option.get in
let res, memo_info = interp_and_info ~parsing_time ~st ~fb_queue ast in
match res with
| Coq.Protect.R.Interrupted ->
set_completion ~completed:(Stopped last_tok) doc
| Coq.Protect.R.Completed res -> (
let last_tok_new = PCoqHack.loc doc_handle in
match res with
| Ok { res = state; feedback } ->
let diags =
if !Config.v.ok_diagnostics then
let ok_diag = mk_diag ast_loc 3 (Pp.str "OK") in
[ ok_diag ]
else []
in
let fb_diags, messages = process_feedback ~loc:ast_loc feedback in
let diags = parsing_diags @ fb_diags @ diags in
let node =
{ loc = ast_loc; ast = Some ast; diags; messages; state; memo_info }
in
let doc = add_node ~node doc in
stm doc state last_tok_new
| Error (err_loc, msg) ->
let err_loc = Option.default ast_loc err_loc in
let diags = [ mk_error_diagnostic ~loc:err_loc ~msg ~ast ] in
let fb_diags, messages =
List.rev !fb_queue |> process_feedback ~loc:err_loc
in
fb_queue := [];
let diags = parsing_diags @ fb_diags @ diags in
let st = state_recovery_heuristic doc st ast in
let node =
{ loc = ast_loc
; ast = Some ast
; diags
; messages
; state = st
; memo_info
}
in
let doc = add_node ~node doc in
stm doc st last_tok_new))
in
(match doc.nodes with
| [] -> ()
| n :: _ -> Io.Log.trace "resume" ("last node :" ^ Coq.Ast.pr_loc n.loc));
let st =
hd_opt ~default:doc.root (List.map (fun { state; _ } -> state) doc.nodes)
in
stm doc st last_tok
let print_stats () =
(if !Config.v.mem_stats then
let size = Memo.mem_stats () in
Io.Log.trace "stats" (string_of_int size));
Io.Log.trace "cache" (Stats.dump ());
Io.Log.trace "cache" (Memo.CacheStats.stats ());
Memo.CacheStats.reset ();
Stats.reset ()
let gen l = String.make (String.length l) ' '
let rec md_map_lines coq l =
match l with
| [] -> []
| l :: ls ->
if String.equal "```" l then gen l :: md_map_lines (not coq) ls
else (if coq then l else gen l) :: md_map_lines coq ls
let markdown_process text =
let lines = String.split_on_char '\n' text in
let lines = md_map_lines false lines in
String.concat "\n" lines
let process_contents ~uri ~contents =
let ext = Filename.extension uri in
let is_markdown = String.equal ext ".mv" in
if is_markdown then markdown_process contents else contents
let log_resume last_tok =
Io.Log.trace "check"
Format.(
asprintf "resuming, from: %d l: %d" last_tok.Loc.ep
last_tok.Loc.line_nb_last)
let check ~ofmt:_ ~doc ~fb_queue =
match doc.completed with
| Yes _ ->
Io.Log.trace "check" "resuming, completed=yes, nothing to do";
doc
| Stopped last_tok ->
log_resume last_tok;
let uri, version, contents = (doc.uri, doc.version, doc.contents) in
let processed_content = process_contents ~uri ~contents in
let resume_loc = clexer_after last_tok in
let offset = resume_loc.bp in
let processed_content =
String.(sub processed_content offset (length processed_content - offset))
in
bp_ := resume_loc.bp;
let handle =
Pcoq.Parsable.make ~loc:resume_loc
(stream_of_string ~offset processed_content)
in
let doc =
{ doc with contents = processed_content; nodes = List.rev doc.nodes }
in
let doc = process_and_parse ~uri ~version ~fb_queue doc last_tok handle in
let doc = { doc with nodes = List.rev doc.nodes; contents } in
let end_msg =
let timestamp = Unix.gettimeofday () in
let loc =
match doc.completed with
| Yes loc -> loc
| Stopped loc -> loc
in
Format.asprintf "done [%.2f]: document fully checked %s" timestamp
(Coq.Ast.pr_loc loc)
in
Io.Log.trace "check" end_msg;
print_stats ();
doc