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
|
package Alzabo::Create::Column;
use strict;
use vars qw($VERSION);
use Alzabo::Create;
use Alzabo::Exceptions ( abbr => 'params_exception' );
use Params::Validate qw( :all );
Params::Validate::validation_options
( on_fail => sub { params_exception join '', @_ } );
use base qw(Alzabo::Column);
$VERSION = 2.0;
1;
sub new
{
my $proto = shift;
my $class = ref $proto || $proto;
my $self = bless {}, $class;
$self->_init(@_);
return $self;
}
sub _init
{
my $self = shift;
my %p =
validate( @_, { table => { isa => 'Alzabo::Table' },
name => { type => SCALAR },
null => { optional => 1 },
nullable => { optional => 1 },
type => { type => SCALAR,
optional => 1 },
attributes => { type => ARRAYREF,
default => [] },
default => { type => UNDEF | SCALAR,
optional => 1 },
sequenced => { optional => 1 },
length => { type => UNDEF | SCALAR,
optional => 1 },
precision => { type => UNDEF | SCALAR,
optional => 1 },
definition => { isa => 'Alzabo::Create::ColumnDefinition',
optional => 1 },
comment => { type => UNDEF | SCALAR,
default => '' },
} );
$self->set_table( $p{table} );
$self->set_name( $p{name} );
$self->{nullable} = $p{nullable} || $p{null} || 0;
if ($p{definition})
{
$self->set_definition( $p{definition} );
}
else
{
$self->set_definition
( Alzabo::Create::ColumnDefinition->new
( owner => $self,
type => $p{type},
)
);
}
my %attr;
tie %{ $self->{attributes} }, 'Tie::IxHash';
$self->set_attributes( @{ $p{attributes} } );
$self->set_sequenced( $p{sequenced} || 0 );
$self->set_default( $p{default} )
if exists $p{default};
# We always set length, since not giving a length at all may be an
# error for some column types, unless we got a definition object,
# in which case it should contain the length & precision.
$self->set_length( length => $p{length}, precision => $p{precision} )
unless $p{definition};
$self->set_comment( $p{comment} );
}
sub set_table
{
my $self = shift;
validate_pos( @_, { isa => 'Alzabo::Create::Table' } );
$self->{table} = shift;
}
sub set_name
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $name = shift;
params_exception "Column $name already exists in table"
if $self->table->has_column($name);
my $old_name = $self->{name};
$self->{name} = $name;
eval
{
$self->table->schema->rules->validate_column_name($self);
};
if ($@)
{
$self->{name} = $old_name;
rethrow_exception($@);
}
$self->table->register_column_name_change( column => $self,
old_name => $old_name )
if $old_name;
}
sub set_nullable
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $n = shift;
params_exception "Invalid value for nullable attribute: $n"
unless $n eq '1' || $n eq '0';
params_exception "Primary key column cannot be nullable"
if $n eq '1' && $self->is_primary_key;
$self->{nullable} = $n;
}
sub set_default
{
my $self = shift;
validate_pos( @_, { type => UNDEF | SCALAR } );
$self->{default} = shift;
}
sub set_length
{
my $self = shift;
$self->{definition}->set_length(@_);
}
sub set_attributes
{
my $self = shift;
validate_pos( @_, ( { type => SCALAR } ) x @_ );
%{ $self->{attributes} } = ();
foreach (@_)
{
$self->add_attribute($_);
}
}
sub add_attribute
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $attr = shift;
$attr =~ s/^\s+//;
$attr =~ s/\s+$//;
$self->table->schema->rules->validate_column_attribute( column => $self,
attribute => $attr );
$self->{attributes}{$attr} = 1;
}
sub delete_attribute
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $attr = shift;
params_exception "Column " . $self->name . " doesn't have attribute $attr"
unless exists $self->{attributes}{$attr};
delete $self->{attributes}{$attr};
}
sub alter
{
my $self = shift;
$self->{definition}->alter(@_);
# this will force them to go through the rules code again.
# Attributes that don't work with the new type are silently
# discarded.
foreach ( $self->attributes )
{
$self->delete_attribute($_);
eval { $self->add_attribute($_) };
}
}
sub set_type
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $t = shift;
$self->{definition}->set_type($t);
# this will force them to go through the rules code again.
# Attributes that don't work with the new type are silently
# discarded.
foreach ( $self->attributes )
{
$self->delete_attribute($_);
eval { $self->add_attribute($_) };
}
if ( $self->length )
{
eval { $self->set_length( length => $self->length,
precision => $self->precision ) };
if ($@)
{
eval { $self->set_length( length => $self->length, precision => undef ) };
if ($@)
{
$self->set_length( length => undef,
precision => undef );
}
}
}
}
sub set_sequenced
{
my $self = shift;
validate_pos( @_, { type => SCALAR } );
my $s = shift;
params_exception "Invalid value for sequenced attribute: $s"
unless $s eq '1' || $s eq '0';
$self->table->schema->rules->validate_sequenced_attribute($self)
if $s eq '1';
$self->{sequenced} = $s;
}
sub set_definition
{
my $self = shift;
validate_pos( @_, { isa => 'Alzabo::Create::ColumnDefinition' } );
my $d = shift;
$self->{definition} = $d;
}
sub set_comment { $_[0]->{comment} = defined $_[1] ? $_[1] : '' }
sub save_current_name
{
my $self = shift;
$self->{last_instantiated_name} = $self->name;
}
sub former_name { $_[0]->{last_instantiated_name} }
__END__
=head1 NAME
Alzabo::Create::Column - Column objects for use in schema creation
=head1 SYNOPSIS
use Alzabo::Create::Column;
=head1 DESCRIPTION
This object represents a column. It holds data specific to a column.
Additional data is held in a
L<C<Alzabo::Create::ColumnDefinition>|Alzabo::Create::ColumnDefinition>
object, which is used to allow two columns to share a type (which is
good when two columns in different tables are related as it means that
if the type of one is changed, the other is also.)
=head1 INHERITS FROM
C<Alzabo::Column>
=for pod_merge merged
=head1 METHODS
=head2 new
The constructor accepts the following parameters:
=over 4
=item * table => C<Alzabo::Create::Table> object
=item * name => $name
=item * nullable => 0 or 1 (optional)
Defaults to false.
=item * sequenced => 0 or 1 (optional)
Defaults to false.
=item * default => $default (optional)
=item * attributes => \@attributes (optional)
=item * length => $length (optional)
=item * precision => $precision (optional)
One of either ...
=item * type => $type
... or ...
=item * definition => C<Alzabo::Create::ColumnDefinition> object
=item * comment => $comment
An optional comment.
=back
It returns a new C<Alzabo::Create::Column> object.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>
=for pod_merge type
=head2 alter
This method allows you to change a column's type, length, and
precision as a single operation. It should be instead of calling
C<set_type()> followed by C<set_length()>.
It takes the following parameters:
=over 4
=item * type => $type
=item * length => $length (optional)
=item * precision => $precision (optional)
=back
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 set_type ($type)
Sets the column's type.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 set_table (C<Alzabo::Create::Table> object)
Sets the L<C<Alzabo::Create::Table>|Alzabo::Create::Table> object in
which this column is located.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>
=for pod_merge name
=head2 set_name ($name)
Sets the column's name (a string).
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge nullable
=head2 set_nullable (0 or 1)
Sets the nullability of the column (this determines whether nulls are
allowed in the column or not). Must be 0 or 1.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>
=for pod_merge attributes
=for pod_merge has_attribute
=head2 set_attributes (@attributes)
Sets the column's attributes. These are strings describing the column
(for example, valid attributes in MySQL are "PRIMARY KEY" or
"AUTO_INCREMENT").
Throws: L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 add_attribute ($attribute)
Add an attribute to the column's list of attributes.
Throws: L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 delete_attribute ($attribute)
Delete the given attribute from the column's list of attributes.
Throws: Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge default
=head2 set_default ($default)
Sets the column's default value.
=for pod_merge length
=for pod_merge precision
=head2 set_length
This method takes the following parameters:
=over 4
=item * length => $length
=item * precision => $precision (optional)
=back
This method sets the column's length and precision. The precision
parameter is optional (though some column types may require it if the
length is set).
Throws: L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge sequenced
=head2 set_sequenced (0 or 1)
Sets the value of the column's sequenced attribute.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge is_primary_key
=for pod_merge is_numeric
=for pod_merge is_character
=for pod_merge is_blob
=for pod_merge definition
=head2 set_definition (C<Alzabo::Create::ColumnDefinition> object)
Sets the
L<C<Alzabo::Create::ColumnDefinition>|Alzabo::Create::ColumnDefinition>
object which holds this column's type information.
=head2 former_name
If the column's name has been changed since the last time the schema
was instantiated, this method returns the column's previous name.
=for pod_merge comment
=head2 set_comment ($comment)
Set the comment for the column object.
=cut
|