]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/lexicon/cicNotation.ml
notation on steroids: 'term 40 x' is a valid variable name in notation and
[helm.git] / helm / software / components / 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 parser_ref_counter = RefCounter.create ()
36 let rule_ids_to_items = Hashtbl.create 113
37
38 let process_notation st =
39   match st with
40   | Notation (loc, dir, l1, associativity, precedence, l2) ->
41       let l1 = 
42         CicNotationParser.check_l1_pattern l1 precedence associativity
43       in
44       let item = (l1, precedence, associativity, l2) in
45       let rule_id = ref [] in
46       let _ =
47         if dir <> Some `RightToLeft then
48           let create_cb (l1, precedence, associativity, l2) =
49             let id =
50               CicNotationParser.extend l1 
51                 (fun env loc ->
52                   CicNotationPt.AttributedTerm
53                    (`Loc loc,TermContentPres.instantiate_level2 env l2)) in
54             rule_id := [ RuleId id ];
55             Hashtbl.add rule_ids_to_items id item
56           in
57           RefCounter.incr ~create_cb parser_ref_counter item
58       in
59       let pp_id =
60         if dir <> Some `LeftToRight then
61           [ PrettyPrinterId
62               (TermContentPres.add_pretty_printer 
63                 l2 l1) ]
64         else
65           []
66       in
67       !rule_id @ pp_id
68   | Interpretation (loc, dsc, l2, l3) ->
69       let interp_id = TermAcicContent.add_interpretation dsc l2 l3 in
70        [InterpretationId interp_id]
71   | st -> []
72
73 let remove_notation = function
74   | RuleId id ->
75       let item =
76         try
77           Hashtbl.find rule_ids_to_items id
78         with Not_found -> assert false in
79       RefCounter.decr ~delete_cb:(fun _ -> CicNotationParser.delete id)
80         parser_ref_counter item
81   | PrettyPrinterId id -> TermContentPres.remove_pretty_printer id
82   | InterpretationId id -> TermAcicContent.remove_interpretation id
83
84 let get_all_notations () =
85   List.map
86     (fun (interp_id, dsc) ->
87       InterpretationId interp_id, "interpretation: " ^ dsc)
88     (TermAcicContent.get_all_interpretations ())
89
90 let get_active_notations () =
91   List.map (fun id -> InterpretationId id)
92     (TermAcicContent.get_active_interpretations ())
93
94 let set_active_notations ids =
95   let interp_ids =
96     HExtlib.filter_map
97       (function InterpretationId interp_id -> Some interp_id | _ -> None)
98       ids
99   in
100   TermAcicContent.set_active_interpretations interp_ids
101
102 let reset () =
103   TermContentPres.reset ();
104   TermAcicContent.reset ()
105 ;;