]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter_galax/diff.ml
No more useful
[helm.git] / helm / ocaml / mathql_interpreter_galax / diff.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  * implementazione del comando DIFF
28  *)
29
30 exception NotCompatible;;
31
32 (* intersect_attributes is successful iff there is no attribute with *)
33 (* two different values in the two lists. The returned list is the   *)
34 (* union of the two lists.                                           *)
35 let rec intersect_attributes (attr1, attr2) =
36  match attr1, attr2 with
37     [],_ -> attr2
38   | _,[] -> attr1
39   | (key1,value1)::tl1, (key2,_)::_ when key1 < key2 ->
40       (key1,value1)::(intersect_attributes (tl1,attr2))
41   | (key1,_)::_, (key2,value2)::tl2 when key2 < key1 ->
42       (key2,value2)::(intersect_attributes (attr1,tl2))
43   | entry1::tl1, entry2::tl2 when entry1 = entry2 ->
44      entry1::(intersect_attributes (tl1,tl2))
45   | _, _ -> raise NotCompatible  (* same keys, different values *)
46 ;;
47
48 (*
49  * implementazione del comando DIFF
50  *)
51 let rec diff_ex l1 l2 =
52  let module S = Mathql_semantics in
53   match (l1, l2) with
54      [],_ -> []
55    | l,[] -> l
56    | {S.uri = uri1}::_, {S.uri = uri2}::tl2 when uri2 < uri1 ->
57       (diff_ex l1 tl2)
58    | {S.uri = uri1 ; S.attributes = attributes1}::tl1,
59      {S.uri = uri2}::_ when uri1 < uri2 ->
60       {S.uri = uri1 ; S.attributes = attributes1 ; S.extra = ""}::(diff_ex tl1 l2)
61    | {S.uri = uri1 ; S.attributes = attributes1}::tl1,
62      {S.uri = uri2 ; S.attributes = attributes2}::tl2 ->
63        try
64         let attributes' = intersect_attributes (attributes1, attributes2) in 
65          diff_ex tl1 tl2
66        with
67         NotCompatible ->
68          {S.uri = uri1 ; S.attributes = attributes1 ; S.extra = ""}::(diff_ex tl1 tl2)
69 ;;
70
71 let diff_ex l1 l2 =
72  let before = Unix.time () in
73  let res = diff_ex l1 l2 in
74  let after = Unix.time () in
75   let ll1 = string_of_int (List.length l1) in
76   let ll2 = string_of_int (List.length l2) in
77   let diff = string_of_float (after -. before) in
78   prerr_endline
79    ("DIFF(" ^ ll1 ^ ", " ^ ll2 ^ ") = " ^ string_of_int (List.length res) ^
80     ": " ^ diff ^ "s") ;
81   flush stderr ;
82   res
83 ;;
84