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
|
package Alzabo::Create::Index;
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::Index);
$VERSION = 2.0;
1;
sub new
{
my $proto = shift;
my $class = ref $proto || $proto;
validate( @_, { table => { isa => 'Alzabo::Create::Table' },
columns => { type => ARRAYREF },
unique => { type => BOOLEAN, default => 0 },
fulltext => { type => BOOLEAN, default => 0 },
function => { type => UNDEF | SCALAR, default => undef },
} );
my %p = @_;
my $self = bless {}, $class;
$self->{table} = $p{table};
$self->{unique} = $p{unique} || 0;
$self->{fulltext} = $p{fulltext} || 0;
$self->{function} = $p{function};
$self->{columns} = Tie::IxHash->new;
foreach my $c (@{ $p{columns} })
{
my %p = UNIVERSAL::isa( $c, 'Alzabo::Column' ) ? ( column => $c ) : %$c;
$self->add_column(%p);
}
$self->table->schema->rules->validate_index($self);
return $self;
}
sub add_column
{
my $self = shift;
validate( @_, { column => { isa => 'Alzabo::Create::Column' },
prefix => { type => SCALAR,
optional => 1 } } );
my %p = @_;
my $new_name = $p{column}->name;
params_exception "Column $new_name already exists in index."
if $self->{columns}->EXISTS($new_name);
$self->{columns}->STORE( $new_name, \%p );
eval { $self->table->schema->rules->validate_index($self); };
if ($@)
{
$self->{columns}->DELETE($new_name);
rethrow_exception($@);
}
}
sub delete_column
{
my $self = shift;
validate_pos( @_, { isa => 'Alzabo::Create::Column' } );
my $c = shift;
params_exception "Column " . $c->name . " is not part of index."
unless $self->{columns}->EXISTS( $c->name );
$self->{columns}->DELETE( $c->name );
}
sub set_prefix
{
my $self = shift;
validate( @_, { column => { isa => 'Alzabo::Create::Column' },
prefix => { type => SCALAR } } );
my %p = @_;
params_exception "Column " . $p{column}->name . " is not part of index."
unless $self->{columns}->EXISTS( $p{column}->name );
my $col = $self->{columns}->FETCH( $p{column}->name );
my $old_val = delete $col->{prefix};
$col->{prefix} = $p{prefix};
eval { $self->table->schema->rules->validate_index($self); };
if ($@)
{
if ($old_val)
{
$col->{prefix} = $old_val;
}
else
{
delete $col->{prefix};
}
rethrow_exception($@);
}
}
sub set_unique
{
my $self = shift;
validate_pos( @_, 1 );
$self->{unique} = shift;
}
sub set_fulltext
{
my $self = shift;
validate_pos( @_, 1 );
my $old_val = $self->{fulltext};
$self->{fulltext} = shift;
eval { $self->table->schema->rules->validate_index($self); };
if ($@)
{
$self->{fulltext} = $old_val;
rethrow_exception($@);
}
}
sub register_column_name_change
{
my $self = shift;
validate( @_, { column => { isa => 'Alzabo::Create::Column' },
old_name => { type => SCALAR } } );
my %p = @_;
return unless $self->{columns}->EXISTS( $p{old_name} );
my $new_name = $p{column}->name;
my $index = $self->{columns}->Indices( $p{old_name} );
my $val = $self->{columns}->Values($index);
$val->{column} = $p{column};
$self->{columns}->Replace( $index, $val, $new_name );
}
__END__
=head1 NAME
Alzabo::Create::Index - Index objects for schema creation
=head1 SYNOPSIS
use Alzabo::Create::Index;
=for pod_merge DESCRIPTION
=head1 INHERITS FROM
C<Alzabo::Index>
=for pod_merge merged
=head1 METHODS
=head2 new
The constructor takes the following parameters:
=over 4
=item * table => C<Alzabo::Create::Table> object
The table that this index is indexing.
=item * columns => [ C<Alzabo::Create::Column> object, .. ]
=item * columns => [ { column => C<Alzabo::Create::Column> object,
prefix => $prefix },
repeat as needed ...
]
This parameter indicates which columns that are being indexed. It can
either be an array reference of column objects, or an array reference
of hash references, each with a key called column and one called
prefix.
The prefix key is optional.
=item * unique => $boolean
Indicates whether or not this is a unique index.
=item * fulltext => $boolean
Indicates whether or not this is a fulltext index.
=back
Returns a new C<Alzabo::Create::Index> object.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge table
=for pod_merge columns
=head2 add_column
Adds a column to the index.
This method takes the following parameters:
=over 4
=item * column => C<Alzabo::Create::Column> object
=item * prefix => $prefix (optional)
=back
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 delete_column (C<Alzabo::Create::Column> object)
Deletes the given column from the index.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge prefix
=head2 set_prefix
This method takes the following parameters:
=over 4
=item * column => C<Alzabo::Create::Column> object
=item * prefix => $prefix
=back
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=for pod_merge unique
=head2 set_unique ($boolean)
Sets whether or not the index is a unique index.
=for pod_merge fulltext
=head2 set_fulltext ($boolean)
Set whether or not the index is a fulltext index.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>,
L<C<Alzabo::Exception::RDBMSRules>|Alzabo::Exceptions>
=head2 register_column_name_change
This method takes the following parameters:
=over 4
=item * column => C<Alzabo::Create::Column> object
The column (with the new name already set).
=item * old_name => $old_name
=back
This method is called by the table object which owns the index when a
column name changes. You should never need to call this yourself.
Throws: L<C<Alzabo::Exception::Params>|Alzabo::Exceptions>
=for pod_merge id
=head1 AUTHOR
Dave Rolsky, <autarch@urth.org>
=cut
|