]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/lexicon/lexiconAstPp.ml
test branch
[helm.git] / helm / ocaml / lexicon / lexiconAstPp.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 Printf
29
30 open LexiconAst
31
32 let pp_l1_pattern = CicNotationPp.pp_term
33 let pp_l2_pattern = CicNotationPp.pp_term
34
35 let pp_alias = function
36   | Ident_alias (id, uri) -> sprintf "alias id \"%s\" = \"%s\"" id uri
37   | Symbol_alias (symb, instance, desc) ->
38       sprintf "alias symbol \"%s\" (instance %d) = \"%s\""
39         symb instance desc
40   | Number_alias (instance,desc) ->
41       sprintf "alias num (instance %d) = \"%s\"" instance desc
42   
43 let pp_associativity = function
44   | Gramext.LeftA -> "left associative"
45   | Gramext.RightA -> "right associative"
46   | Gramext.NonA -> "non associative"
47
48 let pp_precedence i = sprintf "with precedence %d" i
49
50 let pp_argument_pattern = function
51   | CicNotationPt.IdentArg (eta_depth, name) ->
52       let eta_buf = Buffer.create 5 in
53       for i = 1 to eta_depth do
54         Buffer.add_string eta_buf "\\eta."
55       done;
56       sprintf "%s%s" (Buffer.contents eta_buf) name
57
58 let pp_interpretation dsc symbol arg_patterns cic_appl_pattern = 
59   sprintf "interpretation \"%s\" '%s %s = %s"
60     dsc symbol
61     (String.concat " " (List.map pp_argument_pattern arg_patterns))
62     (CicNotationPp.pp_cic_appl_pattern cic_appl_pattern)
63  
64 let pp_dir_opt = function
65   | None -> ""
66   | Some `LeftToRight -> "> "
67   | Some `RightToLeft -> "< "
68
69 let pp_notation dir_opt l1_pattern assoc prec l2_pattern = 
70   sprintf "notation %s\"%s\" %s %s for %s"
71     (pp_dir_opt dir_opt)
72     (pp_l1_pattern l1_pattern)
73     (pp_associativity assoc)
74     (pp_precedence prec)
75     (pp_l2_pattern l2_pattern)
76     
77 let pp_command = function
78   | Include (_,path) -> "include " ^ path
79   | Alias (_,s) -> pp_alias s
80   | Interpretation (_, dsc, (symbol, arg_patterns), cic_appl_pattern) ->
81       pp_interpretation dsc symbol arg_patterns cic_appl_pattern
82   | Notation (_, dir_opt, l1_pattern, assoc, prec, l2_pattern) ->
83       pp_notation dir_opt l1_pattern assoc prec l2_pattern
84