]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/lexicon/cicNotation.ml
test branch
[helm.git] / helm / ocaml / lexicon / cicNotation.ml
1 (* Copyright (C) 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 open LexiconAst
29
30 type notation_id =
31   | RuleId of CicNotationParser.rule_id
32   | InterpretationId of TermAcicContent.interpretation_id
33   | PrettyPrinterId of TermContentPres.pretty_printer_id
34
35 let process_notation st =
36   match st with
37   | Notation (loc, dir, l1, associativity, precedence, l2) ->
38       let rule_id =
39         if dir <> Some `RightToLeft then
40           [ RuleId (CicNotationParser.extend l1 ?precedence ?associativity
41               (fun env loc ->
42                 CicNotationPt.AttributedTerm
43                  (`Loc loc,TermContentPres.instantiate_level2 env l2))) ]
44         else
45           []
46       in
47       let pp_id =
48         if dir <> Some `LeftToRight then
49           [ PrettyPrinterId
50               (TermContentPres.add_pretty_printer ?precedence ?associativity
51                 l2 l1) ]
52         else
53           []
54       in
55        rule_id @ pp_id
56   | Interpretation (loc, dsc, l2, l3) ->
57       let interp_id = TermAcicContent.add_interpretation dsc l2 l3 in
58        [InterpretationId interp_id]
59   | st -> []
60
61 let remove_notation = function
62   | RuleId id -> CicNotationParser.delete id
63   | PrettyPrinterId id -> TermContentPres.remove_pretty_printer id
64   | InterpretationId id -> TermAcicContent.remove_interpretation id
65
66 let get_all_notations () =
67   List.map
68     (fun (interp_id, dsc) ->
69       InterpretationId interp_id, "interpretation: " ^ dsc)
70     (TermAcicContent.get_all_interpretations ())
71
72 let get_active_notations () =
73   List.map (fun id -> InterpretationId id)
74     (TermAcicContent.get_active_interpretations ())
75
76 let set_active_notations ids =
77   let interp_ids =
78     HExtlib.filter_map
79       (function InterpretationId interp_id -> Some interp_id | _ -> None)
80       ids
81   in
82   TermAcicContent.set_active_interpretations interp_ids
83