1 (* Copyright (C) 2004-2005, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
32 (* lexicon file name * ma file name *)
33 exception IncludedFileNotCompiled of string * string
34 exception MetadataNotFound of string (* file name *)
36 type lexicon_status = {
37 aliases: L.alias_spec DisambiguateTypes.Environment.t;
38 multi_aliases: L.alias_spec list DisambiguateTypes.Environment.t;
39 lexicon_content_rev: LexiconMarshal.lexicon;
40 notation_ids: CicNotation.notation_id list; (** in-scope notation ids *)
43 let initial_status = {
44 aliases = DisambiguateTypes.Environment.empty;
45 multi_aliases = DisambiguateTypes.Environment.empty;
46 lexicon_content_rev = [];
52 method lstatus: lexicon_status
57 val lstatus = initial_status
58 method lstatus = lstatus
59 method set_lstatus v = {< lstatus = v >}
60 method set_lexicon_engine_status : 'status. #g_status as 'status -> 'self
61 = fun o -> self#set_lstatus o#lstatus
64 let dump_aliases out msg status =
65 out (if msg = "" then "aliases dump:" else msg ^ ": aliases dump:");
66 DisambiguateTypes.Environment.iter
67 (fun _ x -> out (LexiconAstPp.pp_alias x))
68 status#lstatus.aliases
70 let add_lexicon_content cmds status =
71 let content = status#lstatus.lexicon_content_rev in
78 | L.Notation _ -> cmd :: (List.filter ((<>) cmd) acc)
79 | L.Interpretation _ -> if List.exists ((=) cmd) acc then acc else cmd::acc)
83 prerr_endline ("new lexicon content: " ^
84 String.concat "; " (List.map LexiconAstPp.pp_command content')
88 { status#lstatus with lexicon_content_rev = content' }
90 let set_proof_aliases mode status new_aliases =
91 if mode = L.WithoutPreferences then
94 let commands_of_aliases =
96 (fun _,alias -> L.Alias (HExtlib.dummy_floc, alias))
99 List.fold_left (fun acc (d,c) -> DisambiguateTypes.Environment.add d c acc)
100 status#lstatus.aliases new_aliases in
102 List.fold_left (fun acc (d,c) ->
103 DisambiguateTypes.Environment.cons L.description_of_alias
105 status#lstatus.multi_aliases new_aliases
108 { status#lstatus with
109 multi_aliases = multi_aliases ; aliases = aliases} in
110 let new_status = status#set_lstatus new_status in
111 if new_aliases = [] then
114 add_lexicon_content (commands_of_aliases new_aliases) new_status
116 let rec eval_command ?(mode=L.WithPreferences) sstatus cmd =
118 let bmode = match mode with L.WithPreferences -> true | _ -> false in
119 Printf.eprintf "Include preferences: %b\n" bmode;
121 let status = sstatus#lstatus in
124 | L.Interpretation (loc, dsc, (symbol, args), cic_appl_pattern) ->
125 let rec disambiguate =
127 CicNotationPt.ApplPattern l ->
128 CicNotationPt.ApplPattern (List.map disambiguate l)
129 | CicNotationPt.VarPattern id
132 (function (CicNotationPt.IdentArg (_,id')) -> id'=id) args)
134 let item = DisambiguateTypes.Id id in
136 match DisambiguateTypes.Environment.find item status.aliases with
137 L.Ident_alias (_, uri) ->
139 CicNotationPt.NRefPattern
140 (NReference.reference_of_string uri)
142 NReference.IllFormedReference _ ->
143 CicNotationPt.UriPattern (UriManager.uri_of_string uri))
146 prerr_endline ("LexiconEngine.eval_command: domain item not found: " ^
147 (DisambiguateTypes.string_of_domain_item item));
148 dump_aliases prerr_endline "" sstatus;
150 (DisambiguateTypes.string_of_domain_item item) ^
156 (loc, dsc, (symbol, args), disambiguate cic_appl_pattern)
159 let notation_ids' = CicNotation.process_notation cmd in
161 { status with notation_ids = notation_ids' @ status.notation_ids } in
162 let sstatus = sstatus#set_lstatus status in
164 | L.Include (loc, baseuri, mode, fullpath) ->
165 let lexiconpath_rw, lexiconpath_r =
166 LibraryMisc.lexicon_file_of_baseuri
167 ~must_exist:false ~writable:true ~baseuri,
168 LibraryMisc.lexicon_file_of_baseuri
169 ~must_exist:false ~writable:false ~baseuri
172 if Sys.file_exists lexiconpath_rw then lexiconpath_rw else
173 if Sys.file_exists lexiconpath_r then lexiconpath_r else
174 raise (IncludedFileNotCompiled (lexiconpath_rw,fullpath))
176 let lexicon = LexiconMarshal.load_lexicon lexiconpath in
177 List.fold_left (eval_command ~mode) sstatus lexicon
178 | L.Alias (loc, spec) ->
180 (*CSC: Warning: this code should be factorized with the corresponding
181 code in DisambiguatePp *)
183 | L.Ident_alias (id,uri) ->
184 [DisambiguateTypes.Id id,spec]
185 | L.Symbol_alias (symb, instance, desc) ->
186 [DisambiguateTypes.Symbol (symb,instance),spec]
187 | L.Number_alias (instance,desc) ->
188 [DisambiguateTypes.Num instance,spec]
190 set_proof_aliases mode sstatus diff
191 | L.Interpretation (_, dsc, (symbol, _), _) as stm ->
192 let sstatus = add_lexicon_content [stm] sstatus in
195 [DisambiguateTypes.Symbol (symbol, 0),
196 L.Symbol_alias (symbol,0,dsc)]
198 DisambiguateChoices.Choice_not_found msg ->
199 prerr_endline (Lazy.force msg);
202 let sstatus = set_proof_aliases mode sstatus diff in
204 | L.Notation _ as stm ->
205 add_lexicon_content [stm] sstatus
207 let eval_command status cmd =
208 if !debug then dump_aliases prerr_endline "before eval_command" status;
209 let status = eval_command ?mode:None status cmd in
210 if !debug then dump_aliases prerr_endline "after eval_command" status;
213 let set_proof_aliases status aliases =
214 if !debug then dump_aliases prerr_endline "before set_proof_aliases" status;
215 let status = set_proof_aliases L.WithPreferences status aliases in
216 if !debug then dump_aliases prerr_endline "after set_proof_aliases" status;