1 (* Copyright (C) 2000, 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://cs.unibo.it/helm/.
26 (* AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
30 try Mysql.quick_connect
31 ~host:"mowgli.cs.unibo.it" ~database:"mowgli" ~user:"helm" ()
32 with _ -> raise (Failure "mqi_connecion")
34 let close c = Mysql.disconnect c
39 let l = String.length s in
40 let i = String.index s '\'' in
41 String.sub s 0 i ^ "\\'" ^ quote_aux (String.sub s (succ i) (l - (succ i)))
44 "'" ^ quote_aux s ^ "'"
47 let g = function None -> "" | Some v -> v in
48 let f a = List.map g (Array.to_list a) in
49 out q; Mysql.map ~f:f (Mysql.exec c q)
51 let exec c table cols ct cfl =
52 let rec iter f last sep = function
55 | head :: tail -> f head ^ sep ^ iter f last sep tail
57 let pg_cols = iter (fun x -> x) "" ", " cols in
58 let pg_msval v = iter quote "" ", " v in
59 let pg_con (pat, col, v) =
61 let f s = col ^ " regexp " ^ quote ("^" ^ s ^ "$") in
62 if pat then "(" ^ iter f "0" " or " v ^ ")"
64 | [s] -> col ^ " = " ^ (quote s)
65 | v -> col ^ " in (" ^ pg_msval v ^ ")"
68 let pg_cons l = iter pg_con "1" " and " l in
69 let pg_cons_not l = "not (" ^ pg_cons l ^ ")" in
70 let pg_cons_not_l ll = iter pg_cons_not "1" " and " ll in
71 let pg_where = match ct, cfl with
73 | lt, [] -> " where " ^ pg_cons lt
74 | [], llf -> " where " ^ pg_cons_not_l llf
75 | lt, llf -> " where " ^ pg_cons lt ^ " and " ^ pg_cons_not_l llf
78 let r = exec c ("select count(source) from " ^ table ^ pg_where) in
80 | [[s]] when int_of_string s > 0 -> [[]]
83 exec c ("select " ^ pg_cols ^ " from " ^ table ^ pg_where ^
84 " order by " ^ List.hd cols ^ " asc")