Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
init.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
(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) (* <O___,, * (see CREDITS file for the list of authors) *) (* \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) *) (************************************************************************) (************************************************************************) (* Coq Language Server Protocol / SerAPI *) (* Copyright 2016-2019 MINES ParisTech -- Dual License LGPL 2.1 / GPL3+ *) (* Written by: Emilio J. Gallego Arias *) (************************************************************************) (**************************************************************************) (* Low-level, internal Coq initialization *) (**************************************************************************) type coq_opts = { fb_handler : Feedback.feedback -> unit (** callback to handle async feedback *) ; load_module : string -> unit (** callback to load cma/cmo files *) ; load_plugin : Mltop.PluginSpec.t -> unit (** callback to load findlib packages *) ; debug : bool (** Enable Coq Debug mode *) } let coq_init opts = (* Core Coq initialization *) Lib.init (); Global.set_impredicative_set false; Flags.set_native_compiler false; Global.set_native_compiler false; if opts.debug then CDebug.set_flags "backtrace"; (**************************************************************************) (* Feedback setup *) (**************************************************************************) (* Initialize logging. *) ignore (Feedback.add_feeder opts.fb_handler); (* SerAPI plugins *) let load_plugin = opts.load_plugin in let load_module = opts.load_module in (* Custom toplevel is used for bytecode-to-js dynlink *) let ser_mltop : Mltop.toplevel = let open Mltop in { load_plugin ; load_module ; add_dir = (fun _ -> ()) ; ml_loop = (fun _ -> ()) } in Mltop.set_top ser_mltop; (**************************************************************************) (* Add root state!! *) (**************************************************************************) Vernacstate.freeze_interp_state ~marshallable:false |> State.of_coq (* End of initialization *) let loadpath_from_coqproject () : Loadpath.vo_path list = if not (Sys.file_exists "_CoqProject") then [] else let (* Io.Log.error "init" "Parsing _CoqProject"; *) open CoqProject_file in let to_vo_loadpath f implicit = let open Loadpath in let unix_path, coq_path = f in (* Lsp.Io.log_error "init" * (Printf.sprintf "Path from _CoqProject: %s %s" unix_path.path coq_path); *) { implicit ; recursive = true ; has_ml = false ; unix_path = unix_path.path ; coq_path = Libnames.dirpath_of_string coq_path } in let { r_includes; q_includes; _ } = read_project_file ~warning_fn:(fun _ -> ()) "_CoqProject" in let vo_path = List.map (fun f -> to_vo_loadpath f.thing false) q_includes in List.append vo_path (List.map (fun f -> to_vo_loadpath f.thing true) r_includes) (* Inits the context for a document *) let doc_init ~root_state ~vo_load_path ~ml_include_path ~libname ~require_libs = (* Lsp.Io.log_error "init" "starting"; *) Vernacstate.unfreeze_interp_state (State.to_coq root_state); (* This should go away in Coq itself *) Safe_typing.allow_delayed_constants := true; let load_objs libs = let rq_file (dir, from, exp) = let mp = Libnames.qualid_of_string dir in let mfrom = Option.map Libnames.qualid_of_string from in Flags.silently (Vernacentries.vernac_require mfrom exp) [ (mp, Vernacexpr.ImportAll) ] in List.(iter rq_file (rev libs)) in (* Set load path; important, this has to happen before we declare the library below as [Declaremods/Library] will infer the module name by looking at the load path! *) List.iter Mltop.add_ml_dir ml_include_path; List.iter Loadpath.add_vo_path vo_load_path; List.iter Loadpath.add_vo_path (loadpath_from_coqproject ()); Declaremods.start_library libname; (* Import initial libraries. *) load_objs require_libs; (* We return the state at this point! *) Vernacstate.freeze_interp_state ~marshallable:false |> State.of_coq