]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/binaries/transcript/grafite.ml
8776185b8b9451db0da72bb9ffa324b30a3187e3
[helm.git] / helm / software / components / binaries / transcript / grafite.ml
1 (* Copyright (C) 2000, 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://cs.unibo.it/helm/.
24  *)
25
26 module T = Types
27 module O = Options
28
29 module UM = UriManager
30 module NP = CicNotationPp
31 module GP = GrafiteAstPp
32 module G  = GrafiteAst
33 module H  = HExtlib
34 module HG = Http_getter
35
36 let floc = H.dummy_floc
37
38 let out_verbatim och s =
39    Printf.fprintf och "%s" s
40
41 let out_comment och s =
42    let s = if s <> "" && s.[0] = '*' then "#" ^ s else s in 
43    Printf.fprintf och "%s%s%s\n\n" "(*" s "*)"
44
45 let out_unexported och head s =
46    let s = Printf.sprintf " %s\n%s\n" head s in
47    out_comment och s
48
49 let out_line_comment och s =
50    let l = 70 - String.length s in
51    let l = if l < 0 then 0 else l in
52    let s = Printf.sprintf " %s %s" s (String.make l '*') in
53    out_comment och s
54
55 let out_preamble och (path, lines) =
56    let ich = open_in path in
57    let rec print i =
58       if i > 0 then 
59          let s = input_line ich in
60          begin Printf.fprintf och "%s\n" s; print (pred i) end
61    in 
62    print lines;
63    out_line_comment och "This file was automatically generated: do not edit"
64       
65 let out_command och cmd =
66    let term_pp = NP.pp_term in
67    let lazy_term_pp = NP.pp_term in
68    let obj_pp = NP.pp_obj NP.pp_term in
69    let s = GP.pp_statement ~map_unicode_to_tex:false ~term_pp ~lazy_term_pp ~obj_pp cmd in
70    Printf.fprintf och "%s\n\n" s
71
72 let command_of_obj obj =
73    G.Executable (floc, G.Command (floc, obj))
74
75 let command_of_macro macro =
76    G.Executable (floc, G.Macro (floc, macro))
77
78 let require value =
79    command_of_obj (G.Include (floc, value ^ ".ma"))
80
81 let coercion value =
82    command_of_obj (G.Coercion (floc, UM.uri_of_string value, true, 0, 0))
83
84 let inline kind uri prefix flavour =
85     let kind = match kind with
86        | T.Declarative -> G.Declarative
87        | T.Procedural  -> G.Procedural None 
88     in
89     command_of_macro (G.Inline (floc, kind, uri, prefix, flavour))
90
91 let out_alias och name uri =
92    Printf.fprintf och "alias id \"%s\" = \"%s\".\n\n" name uri
93
94 let check och src =
95    if HG.exists ~local:false src then () else
96    let msg = "UNAVAILABLE OBJECT: " ^ src in
97    out_line_comment och msg;
98    prerr_endline msg
99
100 let commit kind och items =
101    let trd (_, _, x) = x in
102    let commit = function
103       | T.Heading heading   -> out_preamble och heading
104       | T.Line line         ->
105          if !O.comments then out_line_comment och line
106       | T.Include script    -> out_command och (require script)
107       | T.Coercion specs    -> 
108          if !O.comments then out_unexported och "COERCION" (snd specs)
109       | T.Notation specs    -> 
110          if !O.comments then out_unexported och "NOTATION" (snd specs) (**)
111       | T.Inline (_, T.Var, src, _, _) ->
112          if !O.comments then out_unexported och "UNEXPORTED" src
113 (* FG: we do not export variables because we cook the other objects         
114  *       let name = UriManager.name_of_uri (UriManager.uri_of_string src) in
115  *       out_alias och name src
116  *)
117       | T.Inline (_, _, src, pre, fl) -> 
118          if !O.getter then check och src; 
119          out_command och (inline kind src pre fl)
120       | T.Section specs     -> 
121          if !O.comments then out_unexported och "UNEXPORTED" (trd specs)
122       | T.Comment comment   -> 
123          if !O.comments then out_comment och comment
124       | T.Unexport unexport -> 
125          if !O.comments then out_unexported och "UNEXPORTED" unexport 
126       | T.Verbatim verbatim -> out_verbatim och verbatim
127       | T.Discard _         -> ()
128    in 
129    List.iter commit (List.rev items)
130
131 let string_of_inline_kind = function
132    | T.Con -> ".con"
133    | T.Var -> ".var"
134    | T.Ind -> ".ind"