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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
|
package SQL::Translator::Producer::Diagram;
=head1 NAME
SQL::Translator::Producer::Diagram - ER diagram producer for SQL::Translator
=head1 SYNOPSIS
Use via SQL::Translator:
use SQL::Translator;
my $t = SQL::Translator->new(
from => 'MySQL',
to => 'Diagram',
producer_args => {
# All args are optional
out_file => 'schema.png',# if not provided will return from translate()
output_type => 'png', # is default or 'jpeg'
title => 'My Schema', # default is filename
font_size => 'medium', # is default or 'small,' 'large'
imap_file => '', # filename to write image map coords
imap_url => '', # base URL for image map
gutter => 30 # is default, px distance b/w cols
num_columns => 5, # the number of columns
no_lines => 1, # do not draw lines to show FKs
add_color => 1, # give it some color
show_fk_only => 1, # show only fields used in FKs
join_pk_only => 1, # use only primary keys to figure PKs
natural_join => 1, # intuit FKs if not defined
skip_fields => [...], # list* of field names to exclude
skip_tables => [...], # list* of table names to exclude
skip_tables_like => [...], # list* of regexen to exclude tables
}
) or die SQL::Translator->error;
$t->translate;
* "list" can be either an array-ref or a comma-separated string
=cut
use strict;
use warnings;
use GD;
use Data::Dumper;
use SQL::Translator::Schema::Constants;
use SQL::Translator::Utils qw(debug);
our $DEBUG;
our $VERSION = '1.59';
$DEBUG = 0 unless defined $DEBUG;
use constant VALID_FONT_SIZE => {
small => 1,
medium => 1,
large => 1,
huge => 1,
};
use constant VALID_IMAGE_TYPE => {
png => 1,
jpeg => 1,
};
sub produce {
my $t = shift;
my $schema = $t->schema;
my $args = $t->producer_args;
local $DEBUG = $t->debug;
debug("Schema =\n", Dumper( $schema ));
debug("Producer args =\n", Dumper( $args ));
my $out_file = $args->{'out_file'} || '';
my $output_type = $args->{'output_type'} || 'png';
my $title = $args->{'title'} || $t->filename;
my $font_size = $args->{'font_size'} || 'medium';
my $imap_file = $args->{'imap_file'} || '';
my $imap_url = $args->{'imap_url'} || '';
my $gutter = $args->{'gutter'} || 30; # distance b/w columns
my $num_columns = $args->{'num_columns'} || $args->{'no_columns'} || '';
my $no_lines = $args->{'no_lines'};
my $add_color = $args->{'add_color'};
my $show_fk_only = $args->{'show_fk_only'};
my $join_pk_only = $args->{'join_pk_only'};
my $natural_join = $args->{'natural_join'} || $join_pk_only;
my %skip_field = map { $_, 1 } (
ref $args->{'skip_fields'} eq 'ARRAY'
? @{ $args->{'skip_fields'} }
: split ( /\s*,\s*/, $args->{'skip_fields'}||'' )
);
my %skip_table = map { $_, 1 } (
ref $args->{'skip_tables'} eq 'ARRAY'
? @{ $args->{'skip_tables'} }
: split ( /\s*,\s*/, $args->{'skip_tables'}||'' )
);
my @skip_tables_like = map { qr/$_/ } (
ref $args->{'skip_tables_like'} eq 'ARRAY'
? @{ $args->{'skip_tables_like'} }
: split ( /\s*,\s*/, $args->{'skip_tables_like'}||'' )
);
my @table_names;
if ( $natural_join ) {
$schema->make_natural_joins(
join_pk_only => $join_pk_only,
skip_fields => $args->{'skip_fields'},
);
my $g = $schema->as_graph_pm;
my $d = Graph::Traversal::DFS->new( $g, next_alphabetic => 1 );
$d->preorder;
@table_names = $d->dfs;
}
else {
@table_names = map { $_->name } $schema->get_tables;
}
die "Invalid image type '$output_type'"
unless VALID_IMAGE_TYPE->{ $output_type };
die "Invalid font size '$font_size'"
unless VALID_FONT_SIZE->{ $font_size };
#
# Layout the image.
#
my $font
= $font_size eq 'small' ? gdTinyFont
: $font_size eq 'medium' ? gdSmallFont
: $font_size eq 'large' ? gdLargeFont
: gdGiantFont;
my $num_tables = scalar @table_names;
$num_columns = 0 unless $num_columns =~ /^\d+$/;
$num_columns ||= sprintf( "%.0f", sqrt( $num_tables ) + .5 );
$num_columns ||= .5;
my $no_per_col = sprintf( "%.0f", $num_tables/$num_columns + .5 );
my @shapes;
my ( $max_x, $max_y ); # the furthest x and y used
my $orig_y = 40; # used to reset y for each column
my ( $x, $y ) = (30,$orig_y); # where to start
my $cur_col = 1; # the current column
my $no_this_col = 0; # number of tables in current column
my $this_col_x = $x; # current column's x
my %nj_registry; # for locations of fields for natural joins
my @fk_registry; # for locations of fields for foreign keys
my %table_x; # for max x of each table
my $field_no; # counter to give distinct no. to each field
my %coords; # holds fields coordinates
my @imap_coords; # for making clickable image map
my %legend;
TABLE:
for my $table_name ( @table_names ) {
my $table = $schema->get_table( $table_name );
if ( @skip_tables_like or keys %skip_table ) {
next TABLE if $skip_table{ $table_name };
for my $regex ( @skip_tables_like ) {
next TABLE if $table_name =~ $regex;
}
}
my $top = $y;
push @shapes,
[ 'string', $font, $this_col_x, $y, $table_name, 'black' ];
$y += $font->height + 2;
my $below_table_name = $y;
$y += 2;
my $this_max_x =
$this_col_x + ($font->width * length($table_name));
debug("Processing table '$table_name'");
my @fields = $table->get_fields;
debug("Fields = ", join(', ', map { $_->name } @fields));
my ( @fld_desc, $max_name, $max_desc );
for my $f ( @fields ) {
my $name = $f->name or next;
my $is_pk = $f->is_primary_key;
my @attr;
#
# Decide if we should skip this field.
#
if ( $show_fk_only ) {
next unless $is_pk || $f->is_foreign_key;
}
if ( $is_pk ) {
push @attr, 'PK';
$legend{'Primary key'} = '[PK]';
}
if ( $f->is_unique ) {
push @attr, 'U';
$legend{'Unique constraint'} = '[U]';
}
if ( $f->is_foreign_key ) {
push @attr, 'FK';
$legend{'Foreign Key'} = '[FK]';
}
my $attr = '';
if ( @attr ) {
$attr .= '[' . join(', ', @attr) . ']';
}
my $desc = $f->data_type;
$desc .= '('.$f->size.')' if $f->size &&
$f->data_type =~ /^(VAR)?CHAR2?$/i;
my $nlen = length $name;
my $dlen = length $desc;
$max_name = $nlen if $nlen > ($max_name||0);
$max_desc = $dlen if $dlen > ($max_desc||0);
push @fld_desc, [ $name, $desc, $f->{'name'}, $is_pk, $attr ];
}
$max_name += 2;
$max_desc += 2;
for my $fld_desc ( @fld_desc ) {
my ( $name, $desc, $orig_name, $is_pk, $attr ) = @$fld_desc;
my $diff1 = $max_name - length $name;
my $diff2 = $max_desc - length $desc;
$name .= ' ' x $diff1;
$desc .= ' ' x $diff2;
$desc = $name . $desc . $attr;
push @shapes, [ 'string', $font, $this_col_x, $y, $desc, 'black' ];
$y += $font->height + 2;
my $length = $this_col_x + ( $font->width * length( $desc ) );
$this_max_x = $length if $length > $this_max_x;
my $constraints = $table->{'fields'}{ $orig_name }{'constraints'};
if ( $natural_join && !$skip_field{ $orig_name } ) {
push @{ $nj_registry{ $orig_name } }, $table_name;
}
my $y_link = $y - $font->height/2;
$coords{ $table_name }{ $orig_name }{'coords'} = {
left => [ $this_col_x - 6, $y_link ],
right => [ $length + 2 , $y_link ],
table => $table_name,
field_no => ++$field_no,
is_pk => $is_pk,
fld_name => $orig_name,
};
push @imap_coords, [
$imap_url."#$table_name-$orig_name",
$this_col_x, $y - $font->height, $length, $y_link,
];
}
unless ( $natural_join ) {
for my $c ( $table->get_constraints ) {
next unless $c->type eq FOREIGN_KEY;
my $fk_table = $c->reference_table or next;
for my $field_name ( $c->fields ) {
for my $fk_field ( $c->reference_fields ) {
next unless defined $schema->get_table( $fk_table );
push @fk_registry, [
[ $fk_table , $fk_field ],
[ $table_name, $field_name ],
];
}
}
}
}
$this_max_x += 5;
$table_x{ $table_name } = $this_max_x + 5;
push @shapes, [ 'line', $this_col_x - 5, $below_table_name,
$this_max_x, $below_table_name, 'black' ];
my @bounds = ( $this_col_x - 5, $top - 5, $this_max_x, $y + 5 );
if ( $add_color ) {
unshift @shapes, [
'filledRectangle',
$bounds[0], $bounds[1],
$this_max_x, $below_table_name,
'khaki'
];
unshift @shapes, [ 'filledRectangle', @bounds, 'white' ];
}
push @imap_coords, [
$imap_url."#$table_name",
$bounds[0], $bounds[1], $this_max_x, $below_table_name,
];
push @shapes, [ 'rectangle', @bounds, 'black' ];
$max_x = $this_max_x if $this_max_x > ($max_x||0);
$y += 25;
if ( ++$no_this_col == $no_per_col ) {# if we've filled up this column
$cur_col++; # up the column number
$no_this_col = 0; # reset the number of tables
$max_x += $gutter; # push the x over for next column
$this_col_x = $max_x; # remember the max x for this col
$max_y = $y if $y > ($max_y||0); # note the max y
$y = $orig_y; # reset the y for next column
}
}
#
# Connect the lines.
#
my %horz_taken;
my %done;
unless ( $no_lines ) {
my @position_bunches;
if ( $natural_join ) {
for my $field_name ( keys %nj_registry ) {
my @positions;
my @table_names =
@{ $nj_registry{ $field_name } || [] } or next;
next if scalar @table_names == 1;
for my $table_name ( @table_names ) {
push @positions,
$coords{ $table_name }{ $field_name }{'coords'};
}
push @position_bunches, [ @positions ];
}
}
else {
for my $pair ( @fk_registry ) {
push @position_bunches, [
$coords{$pair->[0][0]}{ $pair->[0][1] }{'coords'},
$coords{$pair->[1][0]}{ $pair->[1][1] }{'coords'},
];
}
}
my $is_directed = $natural_join ? 0 : 1;
for my $bunch ( @position_bunches ) {
my @positions = @$bunch;
for my $i ( 0 .. $#positions ) {
my $pos1 = $positions[ $i ];
my ( $ax, $ay ) = @{ $pos1->{'left'} || [] } or next;
my ( $bx, $by ) = @{ $pos1->{'right'} || [] } or next;
my $table1 = $pos1->{'table'};
my $fno1 = $pos1->{'field_no'};
my $is_pk = $pos1->{'is_pk'};
next if $join_pk_only and !$is_pk;
for my $j ( 0 .. $#positions ) {
my $pos2 = $positions[ $j ];
my ( $cx, $cy ) = @{ $pos2->{'left'} || [] } or next;
my ( $dx, $dy ) = @{ $pos2->{'right'} || [] } or next;
my $table2 = $pos2->{'table'};
my $fno2 = $pos2->{'field_no'};
next if $table1 eq $table2;
next if $done{ $fno1 }{ $fno2 };
next if $fno1 == $fno2;
my @distances = ();
push @distances, [
abs ( $ax - $cx ) + abs ( $ay - $cy ),
[ $ax, $ay, $cx, $cy ],
[ 'left', 'left' ]
];
push @distances, [
abs ( $ax - $dx ) + abs ( $ay - $dy ),
[ $ax, $ay, $dx, $dy ],
[ 'left', 'right' ],
];
push @distances, [
abs ( $bx - $cx ) + abs ( $by - $cy ),
[ $bx, $by, $cx, $cy ],
[ 'right', 'left' ],
];
push @distances, [
abs ( $bx - $dx ) + abs ( $by - $dy ),
[ $bx, $by, $dx, $dy ],
[ 'right', 'right' ],
];
@distances = sort { $a->[0] <=> $b->[0] } @distances;
my $shortest = $distances[0];
my ( $x1, $y1, $x2, $y2 ) = @{ $shortest->[1] };
my ( $side1, $side2 ) = @{ $shortest->[2] };
my ( $start, $end );
my $offset = 9;
my $col1_right = $table_x{ $table1 };
my $col2_right = $table_x{ $table2 };
my $diff = 0;
if ( $x1 == $x2 ) {
while ( $horz_taken{ $x1 + $diff } ) {
$diff = $side1 eq 'left' ? $diff - 2 : $diff + 2;
}
$horz_taken{ $x1 + $diff } = 1;
}
if ( $side1 eq 'left' ) {
$start = $x1 - $offset + $diff;
}
else {
$start = $col1_right + $diff;
}
if ( $side2 eq 'left' ) {
$end = $x2 - $offset + $diff;
}
else {
$end = $col2_right + $diff;
}
push @shapes,
[ 'line', $x1, $y1, $start, $y1, 'cadetblue' ];
push @shapes,
[ 'line', $start, $y1, $end, $y2, 'cadetblue' ];
push @shapes,
[ 'line', $end, $y2, $x2, $y2, 'cadetblue' ];
if ( $is_directed ) {
if (
$side1 eq 'right' && $side2 eq 'left'
||
$side1 eq 'left' && $side2 eq 'left'
) {
push @shapes, [
'line', $x2 - 3, $y2 - 3, $x2, $y2, 'cadetblue'
];
push @shapes, [
'line', $x2 - 3, $y2 + 3, $x2, $y2, 'cadetblue'
];
push @shapes, [
'line', $x2 - 3, $y2 - 3, $x2 - 3, $y2 +3,
'cadetblue'
];
}
else {
push @shapes, [
'line', $x2 + 3, $y2 - 3, $x2, $y2, 'cadetblue'
];
push @shapes, [
'line', $x2 + 3, $y2 + 3, $x2, $y2, 'cadetblue'
];
push @shapes, [
'line', $x2 + 3, $y2 - 3, $x2 + 3, $y2 +3,
'cadetblue'
];
}
}
$done{ $fno1 }{ $fno2 } = 1;
$done{ $fno2 }{ $fno1 } = 1;
}
}
}
}
#
# Add the title, legend and signature.
#
my $large_font = gdLargeFont;
my $title_len = $large_font->width * length $title;
push @shapes, [
'string', $large_font, $max_x/2 - $title_len/2, 10, $title, 'black'
];
if ( %legend ) {
$max_y += 5;
push @shapes, [
'string', $font, $x, $max_y - $font->height - 4, 'Legend', 'black'
];
$max_y += $font->height + 4;
my $longest;
for my $len ( map { length $_ } values %legend ) {
$longest = $len if $len > ($longest||0);
}
$longest += 2;
while ( my ( $key, $shape ) = each %legend ) {
my $space = $longest - length $shape;
push @shapes, [
'string', $font, $x, $max_y - $font->height - 4,
join( '', $shape, ' ' x $space, $key ), 'black'
];
$max_y += $font->height + 4;
}
}
my $sig = 'Created by SQL::Translator ' . $t->version;
my $sig_len = $font->width * length $sig;
push @shapes, [
'string', $font, $max_x - $sig_len, $max_y - $font->height - 4,
$sig, 'black'
];
#
# Render the image.
#
my $gd = GD::Image->new( $max_x + 30, $max_y );
unless ( $gd->can( $output_type ) ) {
die "GD can't create images of type '$output_type'\n";
}
my %colors = map { $_->[0], $gd->colorAllocate( @{$_->[1]} ) } (
[ white => [ 255, 255, 255 ] ],
[ beige => [ 245, 245, 220 ] ],
[ black => [ 0, 0, 0 ] ],
[ lightblue => [ 173, 216, 230 ] ],
[ cadetblue => [ 95, 158, 160 ] ],
[ lightgoldenrodyellow => [ 250, 250, 210 ] ],
[ khaki => [ 240, 230, 140 ] ],
[ red => [ 255, 0, 0 ] ],
);
$gd->interlaced( 'true' );
my $background_color = $add_color ? 'lightgoldenrodyellow' : 'white';
$gd->fill( 0, 0, $colors{ $background_color } );
for my $shape ( @shapes ) {
my $method = shift @$shape;
my $color = pop @$shape;
$gd->$method( @$shape, $colors{ $color } );
}
#
# Make image map.
#
debug("imap file = '$imap_file'");
if ( $imap_file && @imap_coords ) {
open my $fh, '>', $imap_file or die "Can't write '$imap_file': $!\n";
print $fh qq[<html><body><img src="" usemap="#imap" border="0">\n].
qq[<map name="imap">\n];
for my $rec ( @imap_coords ) {
my $href = shift @$rec;
print $fh q[<area coords="].join(',', @$rec).qq[" href="$href">\n];
}
print $fh qq[</body></html>];
close $fh;
}
#
# Print the image.
#
if ( $out_file ) {
open my $fh, '>', $out_file or die "Can't write '$out_file': $!\n";
binmode $fh;
print $fh $gd->$output_type;
close $fh;
}
else {
return $gd->$output_type;
}
}
1;
=pod
=head1 AUTHOR
Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
=cut
|