165
|
1 package IMPL::SQL::Schema::Traits;
|
49
|
2 use strict;
|
163
|
3 use IMPL::_core::version;
|
|
4 use IMPL::Exception();
|
|
5
|
165
|
6 use parent qw(IMPL::Object);
|
|
7 use IMPL::Code::Loader();
|
|
8
|
|
9 BEGIN {
|
|
10 IMPL::Code::Loader->Provide(__PACKAGE__);
|
|
11 }
|
49
|
12
|
164
|
13 ###################################################
|
|
14
|
165
|
15 package IMPL::SQL::Schema::Traits::Table;
|
|
16 use base qw(IMPL::Object::Fields);
|
163
|
17
|
164
|
18 use fields qw(
|
|
19 name
|
|
20 columns
|
|
21 constraints
|
|
22 options
|
|
23 );
|
|
24
|
|
25 sub CTOR {
|
|
26 my ($this,$table,$columns,$constraints,$options) = @_;
|
|
27
|
165
|
28 $this->{name} = $table or die new IMPL::InvalidArgumentException(table => "A table name is required");
|
|
29 $this->{columns} = $columns if defined $columns;
|
|
30 $this->{constraints} = $constraints if defined $constraints;
|
|
31 $this->{options} = $options if defined $options;
|
164
|
32 }
|
|
33
|
|
34 ###################################################
|
|
35
|
165
|
36 package IMPL::SQL::Schema::Traits::Column;
|
|
37 use base qw(IMPL::Object::Fields);
|
164
|
38
|
|
39 use fields qw(
|
|
40 name
|
|
41 type
|
|
42 isNullable
|
|
43 defaultValue
|
|
44 tag
|
|
45 );
|
|
46
|
|
47 sub CTOR {
|
|
48 my ($this, $name, $type, %args) = @_;
|
|
49
|
|
50 $this->{name} = $name or die new IMPL::InvalidArgumentException("name");
|
|
51 $this->{type} = $type or die new IMPL::InvalidArgumentException("type");
|
|
52 $this->{isNullable} = $args{isNullable} if exists $args{isNullable};
|
|
53 $this->{defaultValue} = $args{defaultValue} if exists $args{defaultValue};
|
|
54 $this->{tag} = $args{tag} if exists $args{tag};
|
|
55 }
|
|
56
|
|
57 ##################################################
|
|
58
|
165
|
59 package IMPL::SQL::Schema::Traits::Constraint;
|
|
60 use base qw(IMPL::Object::Fields);
|
167
|
61
|
164
|
62 use fields qw(
|
|
63 name
|
|
64 columns
|
|
65 );
|
|
66
|
|
67 sub CTOR {
|
167
|
68 my ($this, $name, $columns) = @_;
|
164
|
69
|
|
70 $this->{name} = $name;
|
167
|
71 $$this->{columns} = $columns; # list of columnNames
|
164
|
72 }
|
|
73
|
|
74 ##################################################
|
|
75
|
165
|
76 package IMPL::SQL::Schema::Traits::PrimaryKey;
|
164
|
77
|
165
|
78 use base qw(IMPL::SQL::Schema::Traits::Constraint);
|
164
|
79
|
|
80 __PACKAGE__->PassThroughArgs;
|
|
81
|
|
82 ##################################################
|
|
83
|
165
|
84 package IMPL::SQL::Schema::Traits::Index;
|
164
|
85
|
165
|
86 use base qw(IMPL::SQL::Schema::Traits::Constraint);
|
164
|
87
|
|
88 __PACKAGE__->PassThroughArgs;
|
|
89
|
|
90 ##################################################
|
|
91
|
165
|
92 package IMPL::SQL::Schema::Traits::Unique;
|
164
|
93
|
165
|
94 use base qw(IMPL::SQL::Schema::Traits::Constraint);
|
164
|
95
|
|
96 __PACKAGE__->PassThroughArgs;
|
163
|
97
|
164
|
98 ##################################################
|
|
99
|
165
|
100 package IMPL::SQL::Schema::Traits::ForeignKey;
|
164
|
101
|
165
|
102 use base qw(IMPL::SQL::Schema::Traits::Constraint);
|
164
|
103 use fields qw(
|
|
104 foreignTable
|
|
105 foreignColumns
|
|
106 );
|
|
107
|
|
108 our %CTOR = (
|
167
|
109 'IMPL::SQL::Schema::Traits::Constraint' => sub { @_[0..1] }
|
164
|
110 );
|
|
111
|
|
112 sub CTOR {
|
167
|
113 my ($this,$foreignTable,$foreignColumns) = @_[0,3,4];
|
164
|
114
|
|
115 $this->{foreignTable} = $foreignTable;
|
|
116 $this->{foreignColunms} = $foreignColumns;
|
|
117 }
|
|
118
|
|
119
|
|
120 ##################################################
|
|
121
|
165
|
122 package IMPL::SQL::Schema::Traits::CreateTable;
|
164
|
123
|
165
|
124 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
125 use IMPL::Class::Property;
|
|
126 use IMPL::lang;
|
|
127
|
|
128 BEGIN {
|
|
129 public property table => prop_get | owner_set;
|
|
130 }
|
|
131
|
|
132 sub CTOR {
|
|
133 my ($this,$table) = @_;
|
|
134
|
165
|
135 die new IMPL::InvalidArgumentException("table", "An object of IMPL::SQL::Schema::Traits::Table type is required")
|
|
136 unless is $table, typeof IMPL::SQL::Schema::Traits::Table;
|
164
|
137
|
|
138 $this->table($table);
|
|
139 }
|
|
140
|
|
141 sub apply {
|
|
142 my ($this,$schema) = @_;
|
|
143
|
|
144 return 0 if ( $schema->GetTable( $this->table->{name} ) );
|
|
145
|
|
146 $schema->AddTable($this->table);
|
|
147 return 1;
|
|
148 }
|
|
149
|
|
150 ##################################################
|
|
151
|
165
|
152 package IMPL::SQL::Schema::Traits::DropTable;
|
|
153 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
154 use IMPL::Class::Property;
|
|
155
|
|
156 BEGIN {
|
|
157 public property tableName => prop_get | owner_set;
|
|
158 }
|
|
159
|
|
160 sub CTOR {
|
|
161 my ($this,$tableName) = @_;
|
|
162
|
|
163 $this->tableName($tableName) or die new IMPL::InvalidArgumentException("tableName is required");
|
|
164 }
|
|
165
|
|
166 sub apply {
|
|
167 my ($this,$schema) = @_;
|
|
168
|
|
169 return 0 if $schema->GetTable( $this->tableName );
|
|
170
|
|
171 $schema->RemoveTable($this->tableName);
|
|
172
|
|
173 return 1;
|
|
174 }
|
|
175
|
|
176 ##################################################
|
|
177
|
165
|
178 package IMPL::SQL::Schema::Traits::RenameTable;
|
|
179 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
163
|
180 use IMPL::Class::Property;
|
49
|
181
|
|
182 BEGIN {
|
164
|
183 public property tableName => prop_get | owner_set;
|
|
184 public property tableNewName => prop_get | owner_set;
|
|
185 }
|
|
186
|
|
187 sub CTOR {
|
|
188 my ($this, $oldName, $newName) = @_;
|
|
189
|
|
190 $this->tableName($oldName) or die new IMPL::InvalidArgumentException("A table name is required");
|
|
191 $this->tableNewName($newName) or die new IMPL::InvalidArgumentException("A new table name is required");
|
|
192 }
|
|
193
|
|
194 sub apply {
|
|
195 my ($this,$schema) = @_;
|
|
196
|
|
197 return 0 if not $schema->GetTable($this->tableName) or $schema->GetTable($this->tableNewName);
|
|
198
|
|
199 $this->RenameTable($this->tableName, $this->tableNewName);
|
|
200
|
|
201 return 1;
|
|
202 }
|
|
203
|
|
204 #################################################
|
|
205
|
165
|
206 package IMPL::SQL::Schema::Traits::AlterTableAddColumn;
|
|
207 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
208 use IMPL::Class::Property;
|
|
209 use IMPL::lang;
|
|
210
|
|
211 BEGIN {
|
|
212 public property tableName => prop_get | owner_set;
|
|
213 public property column => prop_get | owner_set;
|
49
|
214 }
|
|
215
|
164
|
216 sub CTOR {
|
|
217 my ($this,$tableName,$column) = @_;
|
|
218
|
|
219 $this->tableName($tableName) or die new IMPL::InvalidArgumentException("A table name is required");
|
|
220
|
165
|
221 die new IMPL::InvalidArgumentException("A column should be a IMPL::SQL::Schema::Traits::Column object")
|
|
222 unless is $column, typeof IMPL::SQL::Schema::Traits::Column;
|
164
|
223
|
|
224 $this->column($column);
|
|
225 }
|
|
226
|
|
227 sub apply {
|
|
228 my ($this,$schema) = @_;
|
|
229
|
|
230 my $table = $schema->GetTable($this->tableName) or return 0;
|
|
231
|
|
232 return 0 if $table->GetColumn( $this->column->{name} );
|
|
233
|
|
234 $table->AddColumn($this->column);
|
|
235
|
|
236 return 1;
|
|
237 }
|
|
238
|
|
239 #################################################
|
|
240
|
165
|
241 package IMPL::SQL::Schema::Traits::AlterTableDropColumn;
|
|
242 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
243 use IMPL::Class::Property;
|
|
244
|
|
245 BEGIN {
|
|
246 public property tableName => prop_get | owner_set;
|
|
247 public property columnName => prop_get | owner_set;
|
|
248 }
|
|
249
|
|
250 sub CTOR {
|
|
251 my ($this,$table,$column) = @_;
|
|
252
|
|
253 $this->tableName($table) or die new IMPL::InvalidArgumentException(tableName => "A table name should be specified");
|
|
254 $this->columnName($column) or die new IMPL::InvalidArgumentException(columnName => "A column name should be specified");
|
|
255 }
|
|
256
|
|
257 sub apply {
|
|
258 my ($this,$schema) = @_;
|
|
259
|
|
260 local $@;
|
|
261
|
|
262 return eval {
|
|
263 $schema->GetTable($this->tableName)->RemoveColumn($this->columnName);
|
|
264 return 1;
|
|
265 } || 0;
|
49
|
266 }
|
|
267
|
164
|
268 #################################################
|
163
|
269
|
165
|
270 package IMPL::SQL::Schema::Traits::AlterTableChangeColumn;
|
|
271 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
272 use IMPL::Class::Property;
|
49
|
273
|
164
|
274 BEGIN {
|
|
275 public property tableName => prop_get | owner_set;
|
|
276 public property columnName => prop_get | owner_set;
|
|
277 public property columnType => prop_get | owner_set;
|
|
278 public property defaultValue => prop_get | owner_set;
|
|
279 public property isNullable => prop_get | owner_set;
|
|
280 public property options => prop_get | owner_set;
|
|
281 }
|
49
|
282
|
164
|
283 sub CTOR {
|
|
284 my ($this, $table,$column,%args) = @_;
|
|
285
|
|
286 $this->tableName($table) or die new IMPL::InvalidArgumentException(tableName => "A table name is required");
|
|
287 $this->columnName($column) or die new IMPL::InvalidArgumentException(columnName => "A column name is required");
|
|
288
|
|
289 $this->$_($args{$_})
|
|
290 for (grep exists $args{$_}, qw(columnType defaultValue isNullable options));
|
|
291 }
|
49
|
292
|
164
|
293 sub apply {
|
|
294 my ($this,$schema) = @_;
|
|
295
|
|
296 local $@;
|
|
297
|
|
298 return eval {
|
|
299 my $column = $schema->GetTable($this->tableName)->GetColumn($this->columnName);
|
|
300 $column->SetType($this->columnType) if $this->columnType;
|
|
301 $column->SetNullable($this->isNullable) if $this->isNullable;
|
|
302 $column->SetDefaultValue($this->defaultValue) if $this->defaultValue;
|
|
303 $column->SetOptions($this->options) if $this->options;
|
|
304
|
|
305 return 1;
|
|
306 } || 0;
|
|
307 }
|
49
|
308
|
164
|
309 #################################################
|
163
|
310
|
165
|
311 package IMPL::SQL::Schema::Traits::AlterTableAddConstraint;
|
|
312 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
313 use IMPL::Class::Property;
|
|
314 use IMPL::lang;
|
49
|
315
|
164
|
316 BEGIN {
|
|
317 public property tableName => prop_get | owner_set;
|
|
318 public property constraint => prop_get | owner_set;
|
|
319 }
|
49
|
320
|
164
|
321 sub CTOR {
|
|
322 my ($this,$table,$constraint) = @_;
|
|
323
|
|
324 $this->tableName($table) or die new IMPL::InvalidArgumentException( tableName => "A table name is required");
|
|
325
|
165
|
326 die new IMPL::InvalidArgumentException(constaraint => "A valid IMPL::SQL::Schema::Traits::Constarint is required")
|
|
327 unless is $constraint, typeof IMPL::SQL::Schema::Traits::Constraint;
|
164
|
328
|
|
329 $this->constraint($constraint);
|
|
330 }
|
49
|
331
|
164
|
332 sub apply {
|
|
333 my ($this,$schema) = @_;
|
|
334
|
|
335 local $@;
|
|
336
|
|
337 return eval {
|
|
338 $schema->GetTable($this->tableName)->AddConstraint($this->constraint);
|
|
339 return 1;
|
|
340 } || 0;
|
|
341
|
|
342 }
|
49
|
343
|
164
|
344 #################################################
|
49
|
345
|
165
|
346 package IMPL::SQL::Schema::Traits::AlterTableDropConstraint;
|
|
347 use parent qw(-norequire IMPL::SQL::Schema::Traits);
|
164
|
348 use IMPL::Class::Property;
|
|
349
|
|
350 BEGIN {
|
|
351 public property tableName => prop_get | owner_set;
|
|
352 public property constraintName => prop_get | owner_set;
|
|
353 }
|
163
|
354
|
164
|
355 sub CTOR {
|
|
356 my ($this,$table,$constraint) = @_;
|
|
357
|
|
358 die new IMPL::InvalidArgumentException( tableName => "A table name is required" ) unless $table;
|
|
359 die new IMPL::InvalidArgumentException( constraintName => "A constraint name is required" ) unless $constraint;
|
|
360 }
|
49
|
361
|
164
|
362 sub apply {
|
|
363 my ($this,$schema) = @_;
|
|
364
|
|
365 my $table = $schema->GetTable($this->tableName) or return 0;
|
|
366
|
|
367 return 0 unless $table->GetConstraint($this->constraintName);
|
|
368
|
|
369 $table->RemoveConstraint($this->constraintName);
|
|
370 return 1;
|
|
371 }
|
163
|
372
|
49
|
373
|
|
374 1;
|
163
|
375
|
|
376 __END__
|
|
377
|
|
378 =pod
|
|
379
|
|
380 =head1 NAME
|
|
381
|
|
382 C<IMPL::SQL::Traits> - Операции над объектками SQL схемы.
|
|
383
|
|
384 =head1 DESCRIPTION
|
|
385
|
|
386 Изменения схемы могу быть представлены в виде последовательности примитивных операций.
|
164
|
387 Правила выполнения последовательности примитывных действий могут варьироваться
|
165
|
388 в зависимости от процессора, который их выполняет. Например C<IMPL::SQL::Schema::Traits::Processor>.
|
163
|
389
|
164
|
390 Данные, которые содержаться в примитивных операциях не могут существовать независимо от схемы.
|
|
391
|
|
392 =head1 OPEARATIONS
|
|
393
|
|
394 =head2 General
|
|
395
|
|
396 Методы обще для всех примитивных операций.
|
|
397
|
|
398 =over
|
|
399
|
|
400 =item C<apply($schema)>
|
|
401
|
|
402 Пытается приминить операцию к указанной схеме.
|
|
403
|
|
404 Возвращаемое значение:
|
|
405
|
|
406 =over
|
|
407
|
|
408 =item C<true>
|
|
409
|
|
410 Операция успешно применена к схеме.
|
|
411
|
|
412 =item C<false>
|
|
413
|
|
414 Операция не может быть применена к схеме.
|
|
415
|
|
416 =back
|
|
417
|
|
418 =back
|
|
419
|
|
420 =head2 Primitive operations
|
|
421
|
|
422 =over
|
|
423
|
165
|
424 =item C<IMPL::SQL::Schema::Traits::CreateTable>
|
164
|
425
|
|
426 Создает таблицу
|
|
427
|
|
428 =over
|
|
429
|
|
430 =item C<CTOR($table)>
|
|
431
|
|
432 =item C<[get]table>
|
|
433
|
165
|
434 C<IMPL::SQL::Schema::Traits::Table> - описание создаваемой таблицы
|
164
|
435
|
|
436 =back
|
|
437
|
165
|
438 =item C<IMPL::SQL::Schema::Traits::DropTable>
|
164
|
439
|
|
440 Удалает таблицу по имени
|
|
441
|
|
442 =over
|
|
443
|
|
444 =item C<CTOR($tableName)>
|
|
445
|
|
446 =item C<[get]tableName>
|
|
447
|
|
448 Имя удаляемой таблицы
|
|
449
|
|
450 =back
|
|
451
|
165
|
452 =item C<IMPL::SQL::Schema::Traits::RenameTable>
|
164
|
453
|
|
454 =over
|
|
455
|
|
456 =item C<CTOR($tableName,$tableNewName)>
|
|
457
|
|
458 =item C<[get]tableName>
|
|
459
|
|
460 Имя таблицы, которую требуется переименовать
|
|
461
|
|
462 =item C<[get]tableNewName>
|
|
463
|
|
464 Новое имя таблицы
|
|
465
|
|
466 =back
|
|
467
|
165
|
468 =item C<IMPL::SQL::Schema::Traits::AlterTableAddColumn>
|
164
|
469
|
|
470 Добавляет столбец в таблицу
|
|
471
|
|
472 =over
|
|
473
|
|
474 =item C<CTOR($tableName,$column)>
|
|
475
|
|
476 =item C<[get]tableName>
|
|
477
|
|
478 Имя таблицы в которую нужно добавить столбец
|
|
479
|
|
480 =item C<[get]column>
|
|
481
|
165
|
482 C<IMPL::SQL::Schema::Traits::Column> - описание столбца который нужно добавить
|
164
|
483
|
|
484 =back
|
|
485
|
165
|
486 =item C<IMPL::SQL::Schema::Traits::AlterTableDropColumn>
|
164
|
487
|
|
488 Удаляет столбец из таблицы
|
|
489
|
|
490 =over
|
|
491
|
|
492 =item C<CTOR($tableName,$columnName)>
|
|
493
|
|
494 =item C<[get]tableName>
|
|
495
|
|
496 Имя таблицы в которой нужно удалить столбец
|
|
497
|
|
498 =item C<[get]columnName>
|
|
499
|
|
500 Имя столбца для удаления
|
|
501
|
|
502 =back
|
|
503
|
165
|
504 =item C<IMPL::SQL::Schema::Traits::AlterTableChangeColumn>
|
164
|
505
|
|
506 Меняет описание столбца
|
|
507
|
|
508 =over
|
|
509
|
|
510 =item C<CTOR($tableName,$columnName,%args)>
|
|
511
|
|
512 C<%args> - хеш, ключами которого являются оставшиеся свойства создаваемого объекта.
|
|
513
|
|
514 =item C<[get]tableName>
|
|
515
|
|
516 Имя таблицы в которой находится столбец.
|
|
517
|
|
518 =item C<[get]columnName>
|
|
519
|
|
520 Имя столбца для изменения
|
|
521
|
|
522 =item C<[get]columnType>
|
|
523
|
|
524 Новый тип столбца. Не задан, если тип не меняется
|
|
525
|
|
526 =item C<[get]defaultValue>
|
|
527
|
|
528 Значение по умолчанию. Не задано, если не меняется
|
|
529
|
|
530 =item C<[get]isNullable>
|
|
531
|
|
532 Может ли столбец содержать C<NULL>. Не задано, если не меняется.
|
|
533
|
|
534 =item C<[get]options>
|
|
535
|
|
536 Хеш опций, не задан, если опции не меняются
|
|
537
|
|
538 =back
|
|
539
|
165
|
540 =item C<IMPL::SQL::Schema::Traits::AlterTableAddConstraint>
|
164
|
541
|
|
542 Базовый класс для операций по добавлению ограничений
|
|
543
|
|
544 =over
|
|
545
|
|
546 =item C<CTOR($tableName,$constraint)>
|
|
547
|
|
548 =item C<[get]tableName>
|
|
549
|
|
550 Имя таблицы в которую добавляется ограничение.
|
|
551
|
|
552 =item C<[get]constraint>
|
|
553
|
165
|
554 C<IMPL::SQL::Schema::Traits::Constraint> - описние ограничения, которое нужно добавить.
|
164
|
555
|
|
556 =back
|
|
557
|
165
|
558 =item C<IMPL::SQL::Schema::Traits::AlterTableDropConstraint>
|
164
|
559
|
|
560 Удаляет ограничение на таблицу
|
|
561
|
|
562 =over
|
|
563
|
|
564 =item C<CTOR($tableName,$constraintName)>
|
|
565
|
|
566 =item C<[get]tableName>
|
|
567
|
|
568 Имя таблицы в которой требуется удалить ограничение.
|
|
569
|
|
570 =item C<[get]constraintName>
|
|
571
|
|
572 Имя ограничения для удаления.
|
|
573
|
|
574 =back
|
|
575
|
|
576 =back
|
163
|
577
|
|
578 =cut |