Moved some code around, fixed some POD, added checking of existing
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Schema.pm
CommitLineData
3c5de62a 1package SQL::Translator::Schema;
2
3# ----------------------------------------------------------------------
d0b43695 4# $Id: Schema.pm,v 1.4 2003-05-09 16:53:21 kycl4rk Exp $
3c5de62a 5# ----------------------------------------------------------------------
6# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>
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::Schema - SQL::Translator schema object
28
29=head1 SYNOPSIS
30
31 use SQL::Translator::Schema;
76dce619 32 my $schema = SQL::Translator::Schema->new;
33 my $table = $schema->add_table( name => 'foo' );
34 my $view = $schema->add_view( name => 'bar', sql => '...' );
3c5de62a 35
36=head1 DESCSIPTION
37
38C<SQL::Translator::Schema> is the object that accepts, validates, and
39returns the database structure.
40
41=head1 METHODS
42
43=cut
44
45use strict;
46use Class::Base;
47use SQL::Translator::Schema::Table;
48use SQL::Translator::Schema::View;
49
50use base 'Class::Base';
76dce619 51use vars qw[ $VERSION $TABLE_ORDER $VIEW_ORDER ];
3c5de62a 52
53$VERSION = 1.00;
54
55# ----------------------------------------------------------------------
56sub init {
57
58=pod
59
60=head2 new
61
62Object constructor.
63
99248301 64 my $schema = SQL::Translator->new(
65 name => 'Foo',
66 database => 'MySQL',
67 );
3c5de62a 68
69=cut
70
71 my ( $self, $config ) = @_;
99248301 72 $self->params( $config, qw[ name database ] ) || return undef;
3c5de62a 73 return $self;
74}
75
76# ----------------------------------------------------------------------
76dce619 77sub add_table {
3c5de62a 78
79=pod
80
76dce619 81=head2 add_table
3c5de62a 82
76dce619 83Add a table object. Returns the new SQL::Translator::Schema::Table object.
99248301 84The "name" parameter is required. If you try to create a table with the
85same name as an existing table, you will get an error and the table will
86not be created.
3c5de62a 87
99248301 88 my $table_foo = $schema->add_table( name => 'foo' ) or die $schema->error;
89
90 my $table_bar = SQL::Translator::Schema::Table->new( name => 'bar' );
91 $table_bar = $schema->add_table( $table_bar ) or die $schema->error;
3c5de62a 92
93=cut
94
99248301 95 my $self = shift;
96 my $table_class = 'SQL::Translator::Schema::Table';
97 my $table;
98
99 if ( UNIVERSAL::isa( $_[0], $table_class ) ) {
100 $table = shift;
101 $table->schema( $self );
102 }
103 else {
104 my %args = @_;
105 $args{'schema'} = $self;
106 $table = $table_class->new( \%args ) or return
107 $self->error( $table_class->error );
108 }
3c5de62a 109
d0b43695 110 $table->order( ++$TABLE_ORDER );
99248301 111 my $table_name = $table->name or return $self->error('No table name');
112
113 if ( defined $self->{'tables'}{ $table_name } ) {
114 return $self->error(qq[Can't create table: "$table_name" exists]);
115 }
116 else {
117 $self->{'tables'}{ $table_name } = $table;
99248301 118 }
3c5de62a 119
120 return $table;
121}
122
123# ----------------------------------------------------------------------
76dce619 124sub add_view {
3c5de62a 125
126=pod
127
76dce619 128=head2 add_view
3c5de62a 129
76dce619 130Add a view object. Returns the new SQL::Translator::Schema::View object.
99248301 131The "name" parameter is required. If you try to create a view with the
132same name as an existing view, you will get an error and the view will
133not be created.
134
135 my $view_foo = $schema->add_view( name => 'foo' );
3c5de62a 136
99248301 137 my $view_bar = SQL::Translator::Schema::View->new( name => 'bar' );
138 $view_bar = $schema->add_view( $view_bar ) or die $schema->error;
3c5de62a 139
140=cut
141
99248301 142 my $self = shift;
143 my $view_class = 'SQL::Translator::Schema::View';
144 my $view;
145
146 if ( UNIVERSAL::isa( $_[0], $view_class ) ) {
147 $view = shift;
148 }
149 else {
150 my %args = @_;
151 return $self->error('No view name') unless $args{'name'};
152 $view = $view_class->new( \%args ) or return $view_class->error;
153 }
3c5de62a 154
d0b43695 155 $view->order( ++$VIEW_ORDER );
99248301 156 my $view_name = $view->name or return $self->error('No view name');
157
158 if ( defined $self->{'views'}{ $view_name } ) {
159 return $self->error(qq[Can't create view: "$view_name" exists]);
160 }
161 else {
162 $self->{'views'}{ $view_name } = $view;
99248301 163 }
3c5de62a 164
76dce619 165 return $view;
3c5de62a 166}
167
168# ----------------------------------------------------------------------
99248301 169sub database {
170
171=pod
172
173=head2 database
174
175Get or set the schema's database. (optional)
176
177 my $database = $schema->database('PostgreSQL');
178
179=cut
180
181 my $self = shift;
182 $self->{'database'} = shift if @_;
183 return $self->{'database'} || '';
184}
185
186# ----------------------------------------------------------------------
76dce619 187sub is_valid {
3c5de62a 188
189=pod
190
76dce619 191=head2 is_valid
3c5de62a 192
76dce619 193Returns true if all the tables and views are valid.
3c5de62a 194
76dce619 195 my $ok = $schema->is_valid or die $schema->error;
196
197=cut
198
199 my $self = shift;
200
201 return $self->error('No tables') unless $self->get_tables;
202
203 for my $object ( $self->get_tables, $self->get_views ) {
204 return $object->error unless $object->is_valid;
205 }
206
207 return 1;
208}
209
210# ----------------------------------------------------------------------
211sub get_table {
212
213=pod
214
215=head2 get_table
216
217Returns a table by the name provided.
218
219 my $table = $schema->get_table('foo');
220
221=cut
222
223 my $self = shift;
224 my $table_name = shift or return $self->error('No table name');
99248301 225 return $self->error( qq[Table "$table_name" does not exist] ) unless
76dce619 226 exists $self->{'tables'}{ $table_name };
227 return $self->{'tables'}{ $table_name };
228}
229
230# ----------------------------------------------------------------------
231sub get_tables {
232
233=pod
234
235=head2 get_tables
236
237Returns all the tables as an array or array reference.
238
239 my @tables = $schema->get_tables;
240
241=cut
242
243 my $self = shift;
d0b43695 244 my @tables =
245 map { $_->[1] }
246 sort { $a->[0] <=> $b->[0] }
247 map { [ $_->order, $_ ] }
76dce619 248 values %{ $self->{'tables'} };
249
250 if ( @tables ) {
251 return wantarray ? @tables : \@tables;
252 }
253 else {
254 $self->error('No tables');
255 return wantarray ? () : undef;
256 }
257}
258
259# ----------------------------------------------------------------------
260sub get_view {
261
262=pod
263
264=head2 get_view
265
266Returns a view by the name provided.
267
268 my $view = $schema->get_view('foo');
3c5de62a 269
270=cut
271
272 my $self = shift;
76dce619 273 my $view_name = shift or return $self->error('No view name');
274 return $self->error('View "$view_name" does not exist') unless
275 exists $self->{'views'}{ $view_name };
276 return $self->{'views'}{ $view_name };
277}
3c5de62a 278
76dce619 279# ----------------------------------------------------------------------
280sub get_views {
3c5de62a 281
76dce619 282=pod
283
284=head2 get_views
285
286Returns all the views as an array or array reference.
287
288 my @views = $schema->get_views;
289
290=cut
291
292 my $self = shift;
d0b43695 293 my @views =
294 map { $_->[1] }
295 sort { $a->[0] <=> $b->[0] }
296 map { [ $_->order, $_ ] }
99248301 297 values %{ $self->{'views'} };
76dce619 298
299 if ( @views ) {
300 return wantarray ? @views : \@views;
301 }
302 else {
303 $self->error('No views');
304 return wantarray ? () : undef;
305 }
3c5de62a 306}
307
99248301 308# ----------------------------------------------------------------------
309sub name {
310
311=pod
312
313=head2 name
314
315Get or set the schema's name. (optional)
316
317 my $schema_name = $schema->name('Foo Database');
318
319=cut
320
321 my $self = shift;
322 $self->{'name'} = shift if @_;
323 return $self->{'name'} || '';
324}
325
d0b43695 326# ----------------------------------------------------------------------
327sub DESTROY {
328 my $self = shift;
329 undef $_ for values %{ $self->{'tables'} };
330 undef $_ for values %{ $self->{'views'} };
331}
332
3c5de62a 3331;
334
335# ----------------------------------------------------------------------
336
337=pod
338
339=head1 AUTHOR
340
341Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
342
343=cut