]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/metadata/metadataPp.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / metadata / metadataPp.ml
1 (* Copyright (C) 2004, 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 open Printf
27
28 open MetadataTypes
29
30 let pp_relation r = 
31   match r with
32   | Eq i -> sprintf "= %d" i
33   | Ge i -> sprintf ">= %d" i
34   | Gt i -> sprintf "> %d" i
35   | Le i -> sprintf "<= %d" i
36   | Lt i -> sprintf "< %d" i
37
38 let pp_position = function
39   | `MainConclusion (Some d) -> sprintf "MainConclusion(%s)" (pp_relation d)
40   | `MainConclusion None -> sprintf "MainConclusion"
41   | `MainHypothesis (Some d) -> sprintf "MainHypothesis(%s)" (pp_relation d)
42   | `MainHypothesis None -> "MainHypothesis"
43   | `InConclusion -> "InConclusion"
44   | `InHypothesis -> "InHypothesis"
45   | `InBody -> "InBody"
46
47 let pp_position_tag = function
48   | `MainConclusion _ -> mainconcl_pos
49   | `MainHypothesis _ -> mainhyp_pos
50   | `InConclusion -> inconcl_pos
51   | `InHypothesis -> inhyp_pos
52   | `InBody -> inbody_pos
53
54 let columns_of_position pos =
55   match pos with
56   | `MainConclusion (Some (Eq d)) -> `String mainconcl_pos, `Int d
57   | `MainConclusion None -> `String mainconcl_pos, `Null
58   | `MainHypothesis (Some (Eq d)) -> `String mainhyp_pos, `Int d
59   | `MainHypothesis None -> `String mainhyp_pos, `Null
60   | `InConclusion -> `String inconcl_pos, `Null
61   | `InHypothesis -> `String inhyp_pos, `Null
62   | `InBody -> `String inbody_pos, `Null
63   | _ -> assert false 
64
65 (*
66 let metadata_ns = "http://www.cs.unibo.it/helm/schemas/schema-helm"
67 let uri_of_pos pos = String.concat "#" [metadata_ns; pp_position pos]
68 *)
69
70 type t = [ `Int of int | `String of string | `Null ]
71
72 let columns_of_metadata_aux ~about metadata =
73   let sort s = `String (CicPp.ppsort s) in
74   let source = `String (UriManager.string_of_uri about) in
75   let occurrence u = `String (UriManager.string_of_uri u) in
76   List.fold_left
77     (fun (sort_cols, rel_cols, obj_cols) metadata ->
78       match metadata with
79       | `Sort (s, p) ->
80           let (p, d) = columns_of_position (p :> position) in
81           [source; p; d; sort s] :: sort_cols, rel_cols, obj_cols
82       | `Rel p ->
83           let (p, d) = columns_of_position (p :> position) in
84           sort_cols, [source; p; d] :: rel_cols, obj_cols
85       | `Obj (o, p) ->
86           let (p, d) = columns_of_position p in
87           sort_cols, rel_cols,
88           [source; occurrence o; p; d] :: obj_cols)
89     ([], [], []) metadata
90
91 let columns_of_metadata metadata =
92   List.fold_left
93     (fun (sort_cols, rel_cols, obj_cols) (uri, _, metadata) ->
94       let (s, r, o) = columns_of_metadata_aux ~about:uri metadata in
95       (List.append sort_cols s, List.append rel_cols r, List.append obj_cols o))
96     ([], [], []) metadata
97
98 let pp_constr =
99   function
100     | `Sort (sort, p) -> 
101         sprintf "Sort %s; [%s]" 
102           (CicPp.ppsort sort) (String.concat ";" (List.map pp_position p))
103     | `Rel p -> sprintf "Rel [%s]" (String.concat ";" (List.map pp_position p))
104     | `Obj (uri, p) -> sprintf "Obj %s; [%s]" 
105         (UriManager.string_of_uri uri) (String.concat ";" (List.map pp_position p))
106  
107 (*
108 let pp_columns ?(sep = "\n") (sort_cols, rel_cols, obj_cols) =
109   String.concat sep
110     ([ "Sort" ] @ List.map Dbi.sdebug (sort_cols :> Dbi.sql_t list list) @
111     [ "Rel" ] @ List.map Dbi.sdebug (rel_cols :> Dbi.sql_t list list) @
112     [ "Obj" ] @ List.map Dbi.sdebug (obj_cols :> Dbi.sql_t list list))
113 *)
114
115