(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************)
(* The file format is a header * ("COQAUX%d %s %s\n" version hex_hash path) * followed by an arbitrary number of entries
* ("%d %d %s %S\n" loc_begin loc_end key value) *)
open Filename
let version = 1
let oc = ref None
let aux_file_name_for vfile = let fn = Printf.sprintf ".%s.aux" (chop_extension(basename vfile)) in
Filename.concat (dirname vfile) fn
let mk_absolute vfile = let vfile = CUnix.remove_path_dot vfile in if Filename.is_relative vfile then CUnix.correct_path vfile (Sys.getcwd ()) else vfile
let start_aux_file ~aux_file:output_file ~v_file = let vfile = mk_absolute v_file in try
oc := Some (open_out output_file);
Printf.fprintf (Option.get !oc) "COQAUX%d %s %s\n"
version (Digest.to_hex (Digest.file vfile)) vfile with Sys_error _ -> ()
let stop_aux_file () = Option.iter close_out !oc;
oc := None
let recording () = not (Option.is_empty !oc)
module H = Map.Make(structtype t = int * int let compare = compare end)
module M = Map.Make(String) type data = string M.t type aux_file = data H.t
let contents x = x
let empty_aux_file = H.empty
let get ?loc aux key = M.find key (H.find (Option.cata Loc.unloc (0,0) loc) aux)
let record_in_aux_at ?loc key v = Option.iter (fun oc -> match loc with
| Some loc -> let i, j = Loc.unloc loc in
Printf.fprintf oc "%d %d %s %S\n" i j key v
| None -> Printf.fprintf oc "0 0 %s %S\n" key v
) !oc
let current_loc : Loc.t optionref = ref None
let record_in_aux_set_at ?loc () = current_loc := loc
let record_in_aux key v = record_in_aux_at ?loc:!current_loc key v
letset h loc k v = let m = try H.find loc h with Not_found -> M.empty in
H.add loc (M.add k v m) h
let load_aux_file_for vfile = let vfile = mk_absolute vfile in let ret3 x y z = x, y, z in let ret4 x y z t = x, y, z, t in let h = ref empty_aux_file in let add loc k v = h := set !h loc k v in let aux_fname = aux_file_name_for vfile in try let ch = open_in aux_fname in
Util.try_finally (fun () -> let ib = Scanf.Scanning.from_channel ch in let ver, hash, fname =
Scanf.bscanf ib "COQAUX%d %s %s\n" ret3 in if ver <> version thenraise (Failure "aux file version mismatch"); if fname <> vfile then raise (Failure "aux file name mismatch"); let only_dummyloc = Digest.to_hex (Digest.file vfile) <> hash in whiletruedo let i, j, k, v = Scanf.bscanf ib "%d %d %s %S\n" ret4 in ifnot only_dummyloc || (i = 0 && j = 0) then add (i,j) k v;
done; raise End_of_file)
()
(fun () -> close_in ch)
() with
| End_of_file -> !h
| Sys_error s | Scanf.Scan_failure s
| Failure s | Invalid_argument s ->
CDebug.pp_misc Pp.(fun () -> str"Loading file "++str aux_fname++str": "++str s);
empty_aux_file
letset ?loc h k v = set h (Option.cata Loc.unloc (0,0) loc) k v
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.