X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Focaml%2Fcic_annotations%2FcicAnnotation2Xml.ml;fp=helm%2Focaml%2Fcic_annotations%2FcicAnnotation2Xml.ml;h=0000000000000000000000000000000000000000;hp=1961a2bc2c726ddd7c920729bd2998e6d7ea003d;hb=869549224eef6278a48c16ae27dd786376082b38;hpb=89262281b6e83bd2321150f81f1a0583645eb0c8 diff --git a/helm/ocaml/cic_annotations/cicAnnotation2Xml.ml b/helm/ocaml/cic_annotations/cicAnnotation2Xml.ml deleted file mode 100644 index 1961a2bc2..000000000 --- a/helm/ocaml/cic_annotations/cicAnnotation2Xml.ml +++ /dev/null @@ -1,150 +0,0 @@ -(* Copyright (C) 2000, HELM Team. - * - * This file is part of HELM, an Hypertextual, Electronic - * Library of Mathematics, developed at the Computer Science - * Department, University of Bologna, Italy. - * - * HELM is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * HELM is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with HELM; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. - * - * For details, see the HELM World-Wide-Web page, - * http://cs.unibo.it/helm/. - *) - -(*CSC codice cut & paste da cicPp e xmlcommand *) - -exception NotImplemented;; - -let dtdname = "http://www.cs.unibo.it/helm/dtd/annotations.dtd";; - -let get_ann ids_to_annotations = - CicXPath.get_annotation ids_to_annotations -;; - -let print_ann i2a id = - let module X = Xml in - let ann = get_ann i2a id in - match ann with - None -> [<>] - | Some ann -> (X.xml_nempty "Annotation" ["of", id] (X.xml_cdata ann)) -;; - -(*CSC ottimizzazione: al posto di curi cdepth (vedi codice) *) -(* It takes in input a hash table mapping ids to annotations, an annotated -term, and gives back a Xml.token Stream.t representing the .ann file *) -let print_term i2a = - let rec aux = - let module C = Cic in - let module X = Xml in - let module U = UriManager in - function - C.ARel (id,_,_) -> print_ann i2a id - | C.AVar (id,_) -> print_ann i2a id - | C.AMeta (id,_,_) -> print_ann i2a id - | C.ASort (id,_) -> print_ann i2a id - | C.AImplicit _ -> raise NotImplemented - | C.AProd (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >] - | C.ACast (id,v,t) -> [< print_ann i2a id ; aux v ; aux t >] - | C.ALambda (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >] - | C.ALetIn (id,_,s,t) -> [< print_ann i2a id ; aux s ; aux t >] - | C.AAppl (id,li) -> - [< print_ann i2a id ; - List.fold_right (fun x i -> [< (aux x) ; i >]) li [<>] - >] - | C.AConst (id,_,_) -> print_ann i2a id - | C.AMutInd (id,_,_,_) -> print_ann i2a id - | C.AMutConstruct (id,_,_,_,_) -> print_ann i2a id - | C.AMutCase (id,_,_,_,ty,te,patterns) -> - [< print_ann i2a id ; - aux ty ; - aux te ; - List.fold_right - (fun x i -> [< aux x ; i>]) - patterns [<>] - >] - | C.AFix (id,_,funs) -> - [< print_ann i2a id ; - List.fold_right - (fun (_,_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>] - >] - | C.ACoFix (id,no,funs) -> - [< print_ann i2a id ; - List.fold_right - (fun (_,ti,bi) i -> [< aux ti ; aux bi ; i >]) funs [<>] - >] - in - aux -;; - -let print_mutual_inductive_type i2a (_,_,arity,constructors) = - [< print_term i2a arity ; - List.fold_right - (fun (name,ty,_) i -> [< print_term i2a ty ; i >]) constructors [<>] - >] -;; - -let pp_annotation obj i2a curi = - let module C = Cic in - let module X = Xml in - [< X.xml_cdata "\n" ; - X.xml_cdata ("\n\n") ; - X.xml_nempty "Annotations" - ["of", UriManager.string_of_uri (UriManager.cicuri_of_uri curi)] - begin - match obj with - C.ADefinition (xid, _, te, ty, _) -> - [< print_ann i2a xid ; print_term i2a te ; print_term i2a ty >] - | C.AAxiom (xid, _, ty, _) -> [< print_ann i2a xid ; print_term i2a ty >] - | C.AVariable (xid, _, bo, ty) -> - [< print_ann i2a xid ; - (match bo with - None -> [<>] - | Some bo -> print_term i2a bo - ) ; - print_term i2a ty - >] - | C.ACurrentProof (xid, _, conjs, bo, ty) -> - [< print_ann i2a xid ; - List.fold_right - (fun (cid, _, context, t) i -> - [< print_ann i2a cid ; - List.fold_right - (fun (hid,context_entry) i -> - [ print_term i2a at - | Some (_,C.ADef at) -> print_term i2a at - | None -> [< >] - ) ; i - >] - ) context [< >]; - print_term i2a t ; i - >] - ) conjs [<>] ; - print_term i2a bo ; - print_term i2a ty - >] - | C.AInductiveDefinition (xid, tys, params, paramsno) -> - [< print_ann i2a xid ; - List.fold_right - (fun x i -> [< print_mutual_inductive_type i2a x ; i >]) - tys [< >] - >] - end - >] -;; - - -