remove ColumnSize and add MatchType
Justin Hunter [Sat, 3 Oct 2009 16:47:08 +0000 (09:47 -0700)]
lib/SQL/Translator/Object/Column.pm
lib/SQL/Translator/Object/Constraint.pm
lib/SQL/Translator/Types.pm

index d06923b..af973f2 100644 (file)
@@ -2,7 +2,7 @@ use MooseX::Declare;
 class SQL::Translator::Object::Column extends SQL::Translator::Object is dirty {
     use MooseX::Types::Moose qw(Bool Int Maybe ScalarRef Str);
     use MooseX::MultiMethods;
-    use SQL::Translator::Types qw(Bit ColumnSize Constraint Table Trigger);
+    use SQL::Translator::Types qw(Bit Constraint Table Trigger);
     clean;
 
     use overload
index 7ed4c71..d3ea621 100644 (file)
@@ -2,7 +2,7 @@ use MooseX::Declare;
 class SQL::Translator::Object::Constraint extends SQL::Translator::Object {
     use MooseX::Types::Moose qw(ArrayRef Bool HashRef Maybe Str Undef);
     use MooseX::MultiMethods;
-    use SQL::Translator::Types qw(Column Table);
+    use SQL::Translator::Types qw(Column MatchType Table);
 
     has 'table' => (
         is => 'rw',
@@ -61,8 +61,9 @@ class SQL::Translator::Object::Constraint extends SQL::Translator::Object {
     );
 
     has 'match_type' => (
-        isa => Str,
+        isa => MatchType,
         is => 'rw',
+        coerce => 1,
         lazy => 1,
         default => ''
     );
index 62cd428..89dc8cc 100644 (file)
@@ -2,7 +2,7 @@ use MooseX::Declare;
 class SQL::Translator::Types {
     use MooseX::Types::Moose qw(ArrayRef CodeRef HashRef Int Maybe Str Undef);
     use MooseX::Types -declare, [qw(Column Constraint ForeignKey Index PrimaryKey Procedure Schema Sequence Table Trigger View
-                                    Bit DBIHandle ColumnSize Parser Producer Translator)];
+                                    Bit DBIHandle MatchType Parser Producer Translator)];
     
     class_type Column, { class => 'SQL::Translator::Object::Column' };
     class_type Constraint, { class => 'SQL::Translator::Object::Constraint' };
@@ -32,17 +32,14 @@ class SQL::Translator::Types {
     coerce Trigger, from HashRef, via { SQL::Translator::Object::Trigger->new($_) };
     coerce View, from HashRef, via { SQL::Translator::Object::View->new($_) };
 
+    subtype MatchType, as Str, where { /^(full|partial|simple)$/ || $_ eq '' };
+    coerce MatchType, from Str, via { lc $_ };
+
     subtype Bit, as Int, where { $_ == 1 || $_ == 0 };
     coerce Bit,
         from Undef, via { 0 },
         from Str,  via { $_ eq '1' ? 1 : 0 };
 
-    subtype ColumnSize, as ArrayRef[Int];
-    coerce ColumnSize,
-        from Int, via { [ $_ ] },
-        from Str, via { [ split /,/ ] },
-        from Undef, via { [ 0 ] };
-
     subtype DBIHandle, as 'DBI::db';
     
     coerce DBIHandle,