X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftranscript%2Fgrafite.ml;h=d44a17c5897e40df09508101d852b3025a0c060a;hb=b519aa529779c0a4625eb43fa9557862d8cc6617;hp=374d3bda6c077cb3fe8e49f84c22f818e03c9315;hpb=438a29376390222b94c1fe9772917c3aad50d42e;p=helm.git diff --git a/helm/software/components/binaries/transcript/grafite.ml b/helm/software/components/binaries/transcript/grafite.ml index 374d3bda6..d44a17c58 100644 --- a/helm/software/components/binaries/transcript/grafite.ml +++ b/helm/software/components/binaries/transcript/grafite.ml @@ -24,11 +24,14 @@ *) module T = Types +module O = Options +module UM = UriManager module NP = CicNotationPp module GP = GrafiteAstPp -module G = GrafiteAst -module H = HExtlib +module G = GrafiteAst +module H = HExtlib +module HG = Http_getter let floc = H.dummy_floc @@ -45,6 +48,7 @@ let out_unexported och head s = let out_line_comment och s = let l = 70 - String.length s in + let l = if l < 0 then 0 else l in let s = Printf.sprintf " %s %s" s (String.make l '*') in out_comment och s @@ -61,8 +65,8 @@ 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 = @@ -71,26 +75,62 @@ let command_of_obj obj = let command_of_macro macro = G.Executable (floc, G.Macro (floc, macro)) -let set key value = - command_of_obj (G.Set (floc, key, value)) +let require moo value = + command_of_obj (G.Include (floc, moo, `OldAndNew, value ^ ".ma")) -let require value = - command_of_obj (G.Include (floc, value ^ ".ma")) +let coercion value = + command_of_obj (G.Coercion (floc, UM.uri_of_string value, true, 0, 0)) -let inline value = - command_of_macro (G.Inline (floc, value)) +let inline kind uri prefix flavour params = + let params = match prefix with + | "" -> params + | prefix -> G.IPPrefix prefix :: params + in + let params = match flavour with + | None -> params + | Some flavour -> G.IPAs flavour :: params + in + let params = match kind with + | T.Declarative -> params + | T.Procedural -> G.IPProcedural :: params + in + command_of_macro (G.Inline (floc, uri, params)) -let commit och items = +let out_alias och name uri = + Printf.fprintf och "alias id \"%s\" = \"%s\".\n\n" name uri + +let check och src = + if HG.exists ~local:false src then () else + let msg = "UNAVAILABLE OBJECT: " ^ src in + out_line_comment och msg; + prerr_endline msg + +let commit kind och items = + let trd (_, _, x) = x in let commit = function - | T.Heading heading -> out_preamble och heading - | T.Line line -> out_line_comment och line - | T.BaseUri baseuri -> out_command och (set "baseuri" baseuri) - | T.Include inc -> out_unexported och "INCLUDE" inc (**) - | T.Coercion coercion -> out_unexported och "COERCION" coercion (**) - | T.Notation notation -> out_unexported och "NOTATION" notation (**) - | T.Inline (_, uri) -> out_command och (inline uri) - | T.Comment comment -> out_comment och comment - | T.Unexport unexport -> out_unexported och "UNEXPORTED" unexport + | T.Heading heading -> out_preamble och heading + | T.Line line -> + if !O.comments then out_line_comment och line + | T.Include (moo, script) -> out_command och (require moo 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 objects + * let name = UriManager.name_of_uri (UriManager.uri_of_string src) in + * out_alias och name src + *) + | T.Inline (_, _, src, pre, fl, params) -> + if !O.getter then check och src; + out_command och (inline kind src pre fl params) + | 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