1 (* Copyright (C) 2004, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
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
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"
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
54 let columns_of_position pos =
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
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]
70 type t = [ `Int of int | `String of string | `Null ]
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
77 (fun (sort_cols, rel_cols, obj_cols) metadata ->
80 let (p, d) = columns_of_position (p :> position) in
81 [source; p; d; sort s] :: sort_cols, rel_cols, obj_cols
83 let (p, d) = columns_of_position (p :> position) in
84 sort_cols, [source; p; d] :: rel_cols, obj_cols
86 let (p, d) = columns_of_position p in
88 [source; occurrence o; p; d] :: obj_cols)
91 let columns_of_metadata metadata =
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))
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))
108 let pp_columns ?(sep = "\n") (sort_cols, rel_cols, obj_cols) =
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))