1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
(**************************************************************************)
(* *)
(* Ocamlgraph: a generic graph library for OCaml *)
(* Copyright (C) 2004-2010 *)
(* Sylvain Conchon, Jean-Christophe Filliatre and Julien Signoles *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Library General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
(*
module T =
struct
type t = DirTree.t
type label = DirTree.t
let id = DirTree.id
let edges = Hashtbl.create 97
let children t =
let l = DirTree.children t in
List.iter (fun i -> Hashtbl.replace edges (DirTree.id t, DirTree.id i) ()) l;
l
let label x = x
let string_of_label x = DirTree.string_of_label (DirTree.label x)
let root = DirTree.from_dir "" Sys.argv.(1)
end
*)
let debug = ref false
type drag_box =
{
db_nom : string;
db_noeud : GnoCanvas.ellipse;
mutable db_x : float;
mutable db_y : float;
db_w : float;
db_h : float;
mutable db_viewable : bool;
}
let drag_boxes = Hashtbl.create 97
module T =
struct
open Graph.Pack.Graph
let g = parse_gml_file Sys.argv.(1)
exception Choose of V.t
let root =
try
iter_vertex (fun v -> raise (Choose v)) g;
Format.eprintf "empty graph@."; exit 0
with Choose v ->
v
type t = V.t
type label = V.t
module H = Hashtbl.Make(V)
let ids = H.create 97
let id =
let r = ref 0 in
fun v -> try H.find ids v with Not_found -> incr r; H.add ids v !r; !r
let edges = Hashtbl.create 97
let make_subgraph l =
let edge v w = mem_edge g v w || mem_edge g w v in
let gl = create () in
List.iter (fun v -> add_vertex gl v) l;
List.iter
(fun v -> List.iter (fun w -> if edge v w then add_edge gl v w) l)
l;
(* TODO: efficacite *)
gl
let order_children l =
let gl = make_subgraph l in
let scc = Components.scc_list gl in
let order_component c =
let gc = make_subgraph c in
let v = match c with
| v :: l ->
List.fold_left
(fun m v -> if out_degree gc v < out_degree gc m then v else m)
v l
| [] ->
assert false
in
let l = ref [] in
Dfs.prefix_component (fun w -> l := w :: !l) gc v;
!l
in
let scc = List.map order_component scc in
List.flatten scc
let children v =
let l = succ g v in
List.iter (fun i -> Hashtbl.replace edges (id v, id i) ()) l;
let l =
List.filter
(fun w ->
try not (Hashtbl.find drag_boxes (id w)).db_viewable
with Not_found -> true)
l
in
let l = order_children l in
if !debug then
(
Format.printf "children %d: " (V.label v);
List.iter (fun w -> Format.printf "%d " (V.label w)) l;
Format.printf "@.";
);
l
let label x = x
let string_of_label x = string_of_int (V.label x)
end
module HT = Htree.Make(T)
let step = ref 0
let lines = Hashtbl.create 97
let show_tree canvas t width height =
let rlimit = 0.98 in
let xzoom = float(width)/.2.0
and yzoom = float(height)/.2.0 in
let origin = ref (-0.5,0.0) in
let xy2gtk x y = float x -. 300., float(height)/.2. -. float y +. 50. in
let gtk2xy gx gy = truncate (gx +. 300.), truncate ((float height)/.2. +. 50. -. gy) in
let xy2c (x, y) =
let zx = (float(x) -. xzoom)/.xzoom
and zy = (float(y) -. yzoom)/.yzoom in
let zn = sqrt(zx*.zx +. zy*.zy) in
if zn > rlimit then
(rlimit*.zx/.zn, rlimit*.zy/.zn)
else
(zx, zy)
in
let draw_edges () =
let draw_edge (i,j) () =
try
let dbi = Hashtbl.find drag_boxes i in
let dbj = Hashtbl.find drag_boxes j in
let l =
try
Hashtbl.find lines (i,j);
(*
if !debug
then Format.printf "find edge %s ---- %s@." (dbi.db_nom)(dbj.db_nom)
else ();
*)
with Not_found->
try
Hashtbl.find lines (j,i);
(* if !debug
then Format.printf "find edge %s ---- %s@." (dbi.db_nom)(dbj.db_nom)
else ();
*)
with Not_found ->
let l = GnoCanvas.line canvas ~props:[ `FILL_COLOR "black" ;`WIDTH_PIXELS 1; `SMOOTH true] in
Hashtbl.add lines (i,j) l;
if !debug
then Format.printf "draw_edge %s ---- %s@." (dbi.db_nom)(dbj.db_nom)
else ();
l
in
let p = [| dbi.db_x; dbi.db_y; dbj.db_x; dbj.db_y |] in
l#set [`POINTS p];
l#lower_to_bottom ()
with Not_found ->
try
let l= Hashtbl.find lines (i,j) in
l#destroy();
Hashtbl.remove lines (i,j)
with Not_found ->
()
in
Hashtbl.iter draw_edge T.edges
in
let rec draw_label lab (zx,zy) facteur_reduction =
if !debug then
Format.printf "draw_label %d@." (T.id lab);
let x = truncate (zx*.xzoom +. xzoom)
and y = truncate (zy*.yzoom +. yzoom) in
let name = T.string_of_label lab in
let (w,h) = (40,15) in
let x0 = x - w/2
and y0 = y - h/2 in
let fx,fy = xy2gtk x0 y0 in
try
let db = Hashtbl.find drag_boxes (T.id lab) in
db.db_x <- fx;
db.db_y <- fy;
db.db_viewable <- true;
db.db_noeud#parent#set [ `X fx; `Y fy; ];
db.db_noeud#parent#move ~x:zx ~y:zy;
with Not_found ->
let noeud = GnoCanvas.group ~x:fx ~y:fy canvas in
let ellipse = GnoCanvas.ellipse
~props:[ `X1 ( float (-w/2)); `Y1 (float (-h/2)); `X2 (float (w/2)) ; `Y2 ( float (h/2)) ;
`FILL_COLOR "grey" ; `OUTLINE_COLOR "black" ; `WIDTH_PIXELS 0 ] noeud
in
let _ = GnoCanvas.text ~props:[`X 0.0; `Y 0.0 ; `TEXT name; `FILL_COLOR "blue"] noeud in
let sigs = noeud#connect in
let db = { db_nom = name; db_noeud = ellipse; db_x = fx; db_y = fy; db_w = float w; db_h = float h; db_viewable = true } in
let _ = sigs#event (drag_label db) in
Hashtbl.add drag_boxes (T.id lab) db;
and draw_drv =
{ HT.rlimit = rlimit ;
HT.moveto = (fun _ -> ());
HT.lineto = (fun _ -> ());
HT.curveto = (fun _ _ _ -> ());
HT.draw_label = draw_label ;
HT.init_edge_pass = (fun () -> ());
HT.init_label_pass = (fun () -> ());
HT.finalize = (fun () -> ())
}
and draw_linear_tree t c f =
(* mettre toutes les boites faux *)
Hashtbl.iter (fun _ db -> db.db_viewable <- false) drag_boxes;
HT.draw_linear_tree draw_drv t c f;
(* dtruire toutes les boites restes faux et les aretes correspondantes *)
let l = Hashtbl.fold
(fun i db acc ->
if not db.db_viewable
then
begin
db.db_noeud#parent#destroy ();
db.db_noeud#destroy ();
i::acc
end
else acc)
drag_boxes []
in
List.iter (fun i -> Hashtbl.remove drag_boxes i) l;
draw_edges ()
and drag_label db ev =
let item = db.db_noeud in
begin match ev with
| `ENTER_NOTIFY _ ->
item#set [ `FILL_COLOR "steelblue" ]
| `LEAVE_NOTIFY ev ->
let state = GdkEvent.Crossing.state ev in
if not (Gdk.Convert.test_modifier `BUTTON1 state)
then item#set [ `FILL_COLOR "grey" ; ]
| `BUTTON_RELEASE ev ->
item#parent#ungrab (GdkEvent.Button.time ev)
| `MOTION_NOTIFY ev ->
incr step;
let state = GdkEvent.Motion.state ev in
if Gdk.Convert.test_modifier `BUTTON1 state && !step mod 10=0 then
begin
let curs = Gdk.Cursor.create `FLEUR in
item#parent#grab [`POINTER_MOTION; `BUTTON_RELEASE] curs
(GdkEvent.Button.time ev);
let z1 = xy2c (gtk2xy db.db_x db.db_y) in
let mx = GdkEvent.Motion.x ev in
let my = GdkEvent.Motion.y ev in
let z2 = xy2c (gtk2xy mx my) in
item#parent#move ~x:mx ~y:my;
item#parent#set [`X mx; `Y my]; (* inutil ? *)
db.db_x <- mx;
db.db_y <- my;
origin := HT.drag_origin !origin z1 z2;
draw_linear_tree t !origin 0.0;
end
| _ ->
()
end;
true
in
draw_linear_tree t !origin 0.0
|