X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftranscript%2Fgrafite.ml;h=f5c4a49f8ccabe1f2f95f89554904a2c9f2440be;hb=418b1f26ab67b824c79d1146fdb50ca29b34c1f6;hp=9900b8bc87bab7f1806572b2880941dc034653a3;hpb=c5e25191f05bb2662fc738bfb2742eb03b941510;p=helm.git diff --git a/helm/software/components/binaries/transcript/grafite.ml b/helm/software/components/binaries/transcript/grafite.ml index 9900b8bc8..f5c4a49f8 100644 --- a/helm/software/components/binaries/transcript/grafite.ml +++ b/helm/software/components/binaries/transcript/grafite.ml @@ -24,7 +24,9 @@ *) module T = Types +module O = Options +module UM = UriManager module NP = CicNotationPp module GP = GrafiteAstPp module G = GrafiteAst @@ -36,11 +38,17 @@ let out_verbatim och s = Printf.fprintf och "%s" s let out_comment och s = + let s = if s <> "" && s.[0] = '*' then "#" ^ s else s in Printf.fprintf och "%s%s%s\n\n" "(*" s "*)" +let out_unexported och head s = + let s = Printf.sprintf " %s\n%s\n" head s in + out_comment och s + let out_line_comment och s = let l = 70 - String.length s in - Printf.fprintf och "%s %s %s%s\n\n" "(*" s (String.make l '*') "*)" + let s = Printf.sprintf " %s %s" s (String.make l '*') in + out_comment och s let out_preamble och (path, lines) = let ich = open_in path in @@ -55,30 +63,63 @@ let out_preamble och (path, lines) = let out_command och cmd = let term_pp = NP.pp_term in let lazy_term_pp = NP.pp_term in - let obj_pp = NP.pp_obj in - let s = GP.pp_statement ~term_pp ~lazy_term_pp ~obj_pp cmd in + let obj_pp = NP.pp_obj NP.pp_term in + let s = GP.pp_statement ~map_unicode_to_tex:false ~term_pp ~lazy_term_pp ~obj_pp cmd in Printf.fprintf och "%s\n\n" s let command_of_obj obj = G.Executable (floc, G.Command (floc, obj)) -let set key value = - command_of_obj (G.Set (floc, key, value)) +let command_of_macro macro = + G.Executable (floc, G.Macro (floc, macro)) let require value = command_of_obj (G.Include (floc, value ^ ".ma")) -let commit och items = +let coercion value = + command_of_obj (G.Coercion (floc, UM.uri_of_string value, true, 0, 0)) + +let inline (kind, uri, prefix, flavour) = + let kind = match kind with + | T.Declarative -> G.Declarative + | T.Procedural -> G.Procedural None + in + command_of_macro (G.Inline (floc, kind, uri, prefix, flavour)) + +let out_alias och name uri = + Printf.fprintf och "alias id \"%s\" = \"%s\".\n\n" name uri + +let commit kind och items = + let trd (_, _, x) = x in + let trd_rth kind (_, _, x, y, z) = kind, x, y, z in let commit = function | T.Heading heading -> out_preamble och heading - | T.BaseUri baseuri -> out_command och (set "baseuri" baseuri) - | T.Include inc -> () (* *) - | T.Coercion coercion -> () (* *) - | T.Notation notation -> () (* *) - | T.Inline iniline -> () (* *) - | T.Comment comment -> () (* out_comment och comment *) - | T.Unexport unexport -> () (* *) + | T.Line line -> + if !O.comments then out_line_comment och line + | T.Include script -> out_command och (require script) + | T.Coercion specs -> + if !O.comments then out_unexported och "COERCION" (snd specs) + | T.Notation specs -> + if !O.comments then out_unexported och "NOTATION" (snd specs) (**) + | T.Inline (_, T.Var, src, _, _) -> + if !O.comments then out_unexported och "UNEXPORTED" src +(* FG: we do not export variables because we cook the other object + * let name = UriManager.name_of_uri (UriManager.uri_of_string src) in + * out_alias och name src + *) + | T.Inline specs -> out_command och (inline (trd_rth kind specs)) + | T.Section specs -> + if !O.comments then out_unexported och "UNEXPORTED" (trd specs) + | T.Comment comment -> + if !O.comments then out_comment och comment + | T.Unexport unexport -> + if !O.comments then out_unexported och "UNEXPORTED" unexport | T.Verbatim verbatim -> out_verbatim och verbatim | T.Discard _ -> () in List.iter commit (List.rev items) + +let string_of_inline_kind = function + | T.Con -> ".con" + | T.Var -> ".var" + | T.Ind -> ".ind"