- Added some stuff to MANIFEST.SKIP
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / DiaUml.pm
CommitLineData
35a1938f 1package SQL::Translator::Producer::DiaUml;
2
3# -------------------------------------------------------------------
821a0fde 4# $Id$
35a1938f 5# -------------------------------------------------------------------
6# Copyright (C) 2002-4 SQLFairy Authors
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20# 02111-1307 USA
21# -------------------------------------------------------------------
22
23=pod
24
25=head1 NAME
26
27SQL::Translator::Producer::DiaUml -
28 Produces dia UML diagrams from schema.
29
30=head1 SYNOPSIS
31
32 use SQL::Translator;
33 my $translator = SQL::Translator->new(
34 from => 'MySQL',
35 filename => 'foo_schema.sql',
36 to => 'DiaUml',
37 );
38 print $translator->translate;
39
40=head1 DESCRIPTION
41
42Currently you will get one class (with the a table
43stereotype) generated per table in the schema. The fields are added as
44attributes of the classes and their datatypes set. It doesn't currently set any
45of the relationships. It doesn't do any layout, all the classses are in one big
46stack. However it is still useful as you can use the layout tools in Dia to
47automatically arrange them horizontally or vertically.
48
49=head2 Producer Args
50
51=over 4
52
53=back
54
55=cut
56
57# -------------------------------------------------------------------
58
59use strict;
60
61use vars qw[ $DEBUG $VERSION @EXPORT_OK ];
821a0fde 62$VERSION = sprintf "%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/;
35a1938f 63$DEBUG = 0 unless defined $DEBUG;
64
65use SQL::Translator::Utils 'debug';
35a1938f 66use base qw/SQL::Translator::Producer::TT::Base/;
67# Convert produce call into a method call on our class
68sub produce { return __PACKAGE__->new( translator => shift )->run; };
69
8fbe040d 70# Uses dir in lib with this mods name as the template dir
71my $_TEMPLATE_DIR = __FILE__;
72$_TEMPLATE_DIR =~ s/\.pm$//;
73
35a1938f 74sub tt_config {
8fbe040d 75 ( INCLUDE_PATH => $_TEMPLATE_DIR );
35a1938f 76}
77
78sub tt_schema { 'schema.tt2' }
79
801;
81
82# -------------------------------------------------------------------
83
84=pod
85
86=head1 AUTHOR
87
88Mark Addison E<lt>grommit@users.sourceforge.netE<gt>.
89
90=head1 TODO
91
92* Add the foriegn keys from the schema as UML relations.
93
94* Layout the classes.
95
96=head1 SEE ALSO
97
98SQL::Translator.
99
100=cut