]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/lexicon/lexiconEngine.ml
It is now possible to use identifiers in place of URI in "interpreation".
[helm.git] / helm / software / components / lexicon / lexiconEngine.ml
1 (* Copyright (C) 2004-2005, HELM Team.
2  * 
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.
6  * 
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.
11  * 
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.
16  *
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,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 (* $Id$ *)
27
28 let out = ref ignore
29
30 let set_callback f = out := f
31
32 (* lexicon file name * ma file name *)
33 exception IncludedFileNotCompiled of string * string 
34 exception MetadataNotFound of string        (* file name *)
35
36 type status = {
37   aliases: DisambiguateTypes.environment;         (** disambiguation aliases *)
38   multi_aliases: DisambiguateTypes.multiple_environment;
39   lexicon_content_rev: LexiconMarshal.lexicon;
40   notation_ids: CicNotation.notation_id list;      (** in-scope notation ids *)
41 }
42
43 let initial_status = {
44   aliases = DisambiguateTypes.Environment.empty;
45   multi_aliases = DisambiguateTypes.Environment.empty;
46   lexicon_content_rev = [];
47   notation_ids = [];
48 }
49
50 let add_lexicon_content cmds status =
51   let content = status.lexicon_content_rev in
52   let content' =
53     List.fold_right
54      (fun cmd acc -> cmd :: (List.filter ((<>) cmd) acc))
55      cmds content
56   in
57 (*   prerr_endline ("new lexicon content: " ^ String.concat " " (List.map
58     LexiconAstPp.pp_command content')); *)
59   { status with lexicon_content_rev = content' }
60
61 let set_proof_aliases mode status new_aliases =
62  if mode = LexiconAst.WithoutPreferences then
63    status 
64  else
65    let commands_of_aliases =
66      List.map
67       (fun alias -> LexiconAst.Alias (HExtlib.dummy_floc, alias))
68    in
69    let aliases =
70     List.fold_left (fun acc (d,c) -> DisambiguateTypes.Environment.add d c acc)
71      status.aliases new_aliases in
72    let multi_aliases =
73     List.fold_left (fun acc (d,c) -> DisambiguateTypes.Environment.cons d c acc)
74      status.multi_aliases new_aliases in
75    let new_status =
76      { status with multi_aliases = multi_aliases ; aliases = aliases}
77    in
78    if new_aliases = [] then
79      new_status
80    else
81      let aliases = 
82        DisambiguatePp.aliases_of_domain_and_codomain_items_list new_aliases
83      in
84      let status = 
85        add_lexicon_content (commands_of_aliases aliases) new_status 
86      in
87      status
88
89
90 let rec eval_command ?(mode=LexiconAst.WithPreferences) status cmd =
91  let cmd =
92   match cmd with
93   | LexiconAst.Interpretation (loc, dsc, (symbol, args), cic_appl_pattern) ->
94      let rec disambiguate =
95       function
96          CicNotationPt.ApplPattern l ->
97           CicNotationPt.ApplPattern (List.map disambiguate l)
98        | CicNotationPt.VarPattern id
99           when not
100            (List.exists
101             (function (CicNotationPt.IdentArg (_,id')) -> id'=id) args)
102           ->
103            let item = DisambiguateTypes.Id id in
104             (try
105               let t =
106                snd (DisambiguateTypes.Environment.find item status.aliases)
107                 status.aliases "" [] in
108               let uri = CicUtil.uri_of_term t in
109                CicNotationPt.UriPattern uri
110              with Not_found -> 
111               prerr_endline ("Domain item not found: " ^ 
112                (DisambiguateTypes.string_of_domain_item item));
113               assert false)
114        | p -> p
115      in
116       LexiconAst.Interpretation
117        (loc, dsc, (symbol, args), disambiguate cic_appl_pattern)
118   | _-> cmd
119  in
120  !out cmd;
121  let notation_ids' = CicNotation.process_notation cmd in
122  let status =
123    { status with notation_ids = notation_ids' @ status.notation_ids } in
124   match cmd with
125   | LexiconAst.Include (loc, baseuri, mode, fullpath) ->
126      let lexiconpath_rw, lexiconpath_r = 
127        LibraryMisc.lexicon_file_of_baseuri 
128          ~must_exist:false ~writable:true ~baseuri,
129        LibraryMisc.lexicon_file_of_baseuri 
130          ~must_exist:false ~writable:false ~baseuri
131      in
132      let lexiconpath = 
133        if Sys.file_exists lexiconpath_rw then lexiconpath_rw else
134          if Sys.file_exists lexiconpath_r then lexiconpath_r else
135           raise (IncludedFileNotCompiled (lexiconpath_rw,fullpath))
136      in
137      let lexicon = LexiconMarshal.load_lexicon lexiconpath in
138      let status = List.fold_left (eval_command ~mode) status lexicon in
139      status
140   | LexiconAst.Alias (loc, spec) -> 
141      let diff =
142       (*CSC: Warning: this code should be factorized with the corresponding
143              code in DisambiguatePp *)
144       match spec with
145       | LexiconAst.Ident_alias (id,uri) -> 
146          [DisambiguateTypes.Id id,
147           (uri,(fun _ _ _-> CicUtil.term_of_uri(UriManager.uri_of_string uri)))]
148       | LexiconAst.Symbol_alias (symb, instance, desc) ->
149          [DisambiguateTypes.Symbol (symb,instance),
150           DisambiguateChoices.lookup_symbol_by_dsc symb desc]
151       | LexiconAst.Number_alias (instance,desc) ->
152          [DisambiguateTypes.Num instance,
153           DisambiguateChoices.lookup_num_by_dsc desc]
154      in
155       set_proof_aliases mode status diff
156   | LexiconAst.Interpretation (_, dsc, (symbol, _), _) as stm ->
157       let status = add_lexicon_content [stm] status in
158       let diff =
159        [DisambiguateTypes.Symbol (symbol, 0),
160          DisambiguateChoices.lookup_symbol_by_dsc symbol dsc]
161       in
162       let status = set_proof_aliases mode status diff in
163       status
164   | LexiconAst.Notation _ as stm -> add_lexicon_content [stm] status
165
166 let eval_command = eval_command ?mode:None
167
168 let set_proof_aliases  = set_proof_aliases LexiconAst.WithPreferences
169