File Coverage

blib/lib/SQL/Translator/Producer.pm
Criterion Covered Total %
statement 28 31 90.3
branch 11 12 91.6
condition 5 9 55.5
subroutine 5 6 83.3
pod 1 1 100.0
total 50 59 84.7


line stmt bran cond sub pod time code
1             package SQL::Translator::Producer;
2              
3 69     69   421 use strict;
  69         149  
  69         1956  
4 69     69   359 use warnings;
  69         132  
  69         1519  
5 69     69   313 use Scalar::Util ();
  69         136  
  69         24985  
6             our $VERSION = '1.6_3';
7              
8 0     0 1 0 sub produce { "" }
9              
10             # Do not rely on this if you are not bundled with SQL::Translator.
11             # -- rjbs, 2008-09-30
12             ## $exceptions contains an arrayref of paired values
13             ## Each pair contains a pattern match or string, and a value to be used as
14             ## the default if matched.
15             ## They are special per Producer, and provide support for the old 'now()'
16             ## default value exceptions
17             sub _apply_default_value {
18 413     413   937 my ($self, $field, $field_ref, $exceptions) = @_;
19 413         1176 my $default = $field->default_value;
20 413 100       1074 return if !defined $default;
21              
22 121 100 66     558 if ($exceptions and ! ref $default) {
23 113         369 for (my $i = 0; $i < @$exceptions; $i += 2) {
24 191         439 my ($pat, $val) = @$exceptions[ $i, $i + 1 ];
25 191 50 33     872 if (ref $pat and $default =~ $pat) {
    100          
26 0         0 $default = $val;
27 0         0 last;
28             } elsif (lc $default eq lc $pat) {
29 1         2 $default = $val;
30             last
31 1         2 }
32             }
33             }
34              
35 121         349 my $type = lc $field->data_type;
36 121         677 my $is_numeric_datatype = ($type =~ /^(?:(?:big|medium|small|tiny)?int(?:eger)?|decimal|double|float|num(?:ber|eric)?|real)$/);
37              
38 121 100 66     625 if (ref $default) {
    100          
39 9         31 $$field_ref .= " DEFAULT $$default";
40             } elsif ($is_numeric_datatype && Scalar::Util::looks_like_number ($default) ) {
41             # we need to check the data itself in addition to the datatype, for basic safety
42 42         198 $$field_ref .= " DEFAULT $default";
43             } else {
44 70         256 $default = $self->_quote_string($default);
45 70         234 $$field_ref .= " DEFAULT $default";
46             }
47              
48             }
49              
50             sub _quote_string {
51 132     132   347 my ($self, $string) = @_;
52 132         279 $string =~ s/'/''/g;
53 132         608 return qq{'$string'};
54             }
55              
56             1;
57              
58             # -------------------------------------------------------------------
59             # A burnt child loves the fire.
60             # Oscar Wilde
61             # -------------------------------------------------------------------
62              
63             =pod
64              
65             =head1 NAME
66              
67             SQL::Translator::Producer - describes how to write a producer
68              
69             =head1 DESCRIPTION
70              
71             Producer modules designed to be used with SQL::Translator need to
72             implement a single function, called B. B will be
73             called with the SQL::Translator object from which it is expected to
74             retrieve the SQL::Translator::Schema object which has been populated
75             by the parser. It is expected to return a string.
76              
77             =head1 METHODS
78              
79             =over 4
80              
81             =item produce
82              
83             =item create_table($table)
84              
85             =item create_field($field)
86              
87             =item create_view($view)
88              
89             =item create_index($index)
90              
91             =item create_constraint($constraint)
92              
93             =item create_trigger($trigger)
94              
95             =item alter_field($from_field, $to_field)
96              
97             =item add_field($table, $new_field)
98              
99             =item drop_field($table, $old_field)
100              
101             =back
102              
103             =head1 AUTHORS
104              
105             Darren Chamberlain Edarren@cpan.orgE,
106             Ken Y. Clark Ekclark@cpan.orgE.
107              
108             =head1 SEE ALSO
109              
110             perl(1), SQL::Translator, SQL::Translator::Schema.
111              
112             =cut