]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql/mQueryUtil.ml
09759cc4536dfd8962ae825de25c9375c998895c
[helm.git] / helm / ocaml / mathql / mQueryUtil.ml
1 (* Copyright (C) 2000, 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://cs.unibo.it/helm/.
24  *)
25
26 (******************************************************************************)
27 (*                                                                            *)
28 (*                               PROJECT HELM                                 *)
29 (*                                                                            *)
30 (*                     Ferruccio Guidi <fguidi@cs.unibo.it>                   *)
31 (*                                 30/04/2002                                 *)
32 (*                                                                            *)
33 (*                                                                            *)
34 (******************************************************************************)
35
36
37 (* text linearization and parsing *******************************************)
38
39 let rec txt_list f s = function
40    | []        -> ""
41    | [a]       -> f a
42    | a :: tail -> f a ^ s ^ txt_list f s tail
43    
44 let txt_qstr s = "\"" ^ s ^ "\""
45
46 let text_of_query x =
47    let module M = MathQL in
48    let txt_svar sv = "%" ^ sv in
49    let txt_rvar rv = "@" ^ rv in
50    let txt_vvar vv = "$" ^ vv in
51    let txt_inv i = if i then "inverse " else "" in
52    let txt_ref = function
53       | M.ExactOp -> ""
54       | M.SubOp   -> "sub "
55       | M.SuperOp -> "super "
56    in
57    let txt_refpath i r p = txt_inv i ^ txt_ref r ^ txt_list txt_qstr "/" p ^ " " in
58    let rec txt_val = function
59       | M.Const [s]              -> txt_qstr s
60       | M.Const l                -> "{" ^ txt_list txt_qstr ", " l ^ "}"
61       | M.VVar vv                -> txt_vvar vv
62       | M.Record (rv, vv)        -> txt_rvar rv ^ "." ^ txt_vvar vv
63       | M.Fun (s, x)             -> "fun " ^ txt_qstr s ^ " " ^ txt_val x
64       | M.Attribute (i, r, p, x) -> "attribute " ^ txt_refpath i r p ^ txt_val x
65       | M.RefOf x                -> "refof " ^ txt_set x
66    and txt_boole = function
67       | M.False       -> "false"
68       | M.True        -> "true"
69       | M.Ex b x      -> "ex " ^ txt_boole x
70 (*    | M.Ex b x      -> "ex [" ^ txt_list txt_rvar "," b ^ "] " ^ txt_boole x
71 *)    | M.Not x       -> "not " ^ txt_boole x
72       | M.And (x, y)  -> "(" ^ txt_boole x ^ " and " ^ txt_boole y ^ ")"
73       | M.Or (x, y)   -> "(" ^ txt_boole x ^ " or " ^ txt_boole y ^ ")"
74       | M.Sub (x, y)  -> "(" ^ txt_val x ^ " sub " ^ txt_val y ^ ")"
75       | M.Meet (x, y) -> "(" ^ txt_val x ^ " meet " ^ txt_val y ^ ")"
76       | M.Eq (x, y)   -> "(" ^ txt_val x ^ " eq " ^ txt_val y ^ ")"
77    and txt_set = function
78       | M.SVar sv                   -> txt_svar sv
79       | M.RVar rv                   -> txt_rvar rv
80       | M.Relation (i, r, p, x, []) -> "relation " ^ txt_refpath i r p ^ txt_set x
81       | M.Relation (i, r, p, x, l)  -> "relation " ^ txt_refpath i r p ^ txt_set x ^ " attr " ^ txt_list txt_vvar ", " l
82       | M.Union (x, y)              -> "(" ^ txt_set x ^ " union " ^ txt_set y ^ ")"
83       | M.Intersect (x, y)          -> "(" ^ txt_set x ^ " intersect " ^ txt_set y ^ ")"
84       | M.Diff (x, y)               -> "(" ^ txt_set x ^ " diff " ^ txt_set y ^ ")"
85       | M.LetSVar (sv, x, y)        -> "let " ^ txt_svar sv ^ " be " ^ txt_set x ^ " in " ^ txt_set y
86       | M.LetVVar (vv, x, y)        -> "let " ^ txt_vvar vv ^ " be " ^ txt_val x ^ " in " ^ txt_set y
87       | M.Select (rv, x, y)         -> "select " ^ txt_rvar rv ^ " in " ^ txt_set x ^ " where " ^ txt_boole y
88       | M.Pattern x                 -> "pattern " ^ txt_val x
89       | M.Ref x                     -> "ref " ^ txt_val x
90    in 
91    txt_set x
92
93 let text_of_result x sep =
94    let txt_attr = function
95       | (s, []) -> txt_qstr s
96       | (s, l)  -> txt_qstr s ^ "=" ^ txt_list txt_qstr ", " l
97    in
98    let txt_group l = "{" ^ txt_list txt_attr "; " l ^ "}" in
99    let txt_res = function
100       | (s, []) -> txt_qstr s 
101       | (s, l)  -> txt_qstr s ^ " attr " ^ txt_list txt_group ", " l
102    in   
103    let txt_set l = txt_list txt_res ("; " ^ sep) l ^ sep in
104    txt_set x
105
106 let query_of_text lexbuf =
107    MQueryTParser.query MQueryTLexer.query_token lexbuf 
108
109 let result_of_text lexbuf =
110    MQueryTParser.result MQueryTLexer.result_token lexbuf 
111
112 (* conversion functions *****************************************************)
113
114 type uriref = UriManager.uri * (int list)
115
116 let string_of_uriref (uri, fi) =
117    let module UM = UriManager in
118    let str = UM.string_of_uri uri in
119    let xp t = "#xpointer(1/" ^ string_of_int (t + 1) in
120    match fi with
121       | []          -> str 
122       | [t]         -> str ^ xp t ^ ")" 
123       | t :: c :: _ -> str ^ xp t ^ "/" ^ string_of_int c ^ ")"