File Coverage

blib/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm
Criterion Covered Total %
statement 115 116 99.1
branch 39 46 84.7
condition 15 17 88.2
subroutine 12 12 100.0
pod 1 1 100.0
total 182 192 94.7


line stmt bran cond sub pod time code
1             package DBIx::Class::Schema::Loader::DBI::SQLite;
2              
3 16     16   11288 use strict;
  16         44  
  16         503  
4 16     16   86 use warnings;
  16         39  
  16         479  
5 16     16   110 use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
  16         43  
  16         8517  
6 16     16   132 use mro 'c3';
  16         45  
  16         71  
7 16     16   429 use DBIx::Class::Schema::Loader::Table ();
  16         53  
  16         23882  
8              
9             our $VERSION = '0.07051';
10              
11             =head1 NAME
12              
13             DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation.
14              
15             =head1 DESCRIPTION
16              
17             See L and L.
18              
19             =head1 METHODS
20              
21             =head2 rescan
22              
23             SQLite will fail all further commands on a connection if the underlying schema
24             has been modified. Therefore, any runtime changes requiring C also
25             require us to re-connect to the database. The C method here handles
26             that reconnection for you, but beware that this must occur for any other open
27             sqlite connections as well.
28              
29             =cut
30              
31             sub _setup {
32 115     115   429 my $self = shift;
33              
34 115         768 $self->next::method(@_);
35              
36 115 100       796 if (not defined $self->preserve_case) {
37 89         3823 $self->preserve_case(0);
38             }
39              
40 115 100       1135 if ($self->db_schema) {
41 6         226 warn <<'EOF';
42             db_schema is not supported on SQLite, the option is implemented only for qualify_objects testing.
43             EOF
44 6 50       121 if ($self->db_schema->[0] eq '%') {
45 0         0 $self->db_schema(undef);
46             }
47             }
48             }
49              
50             sub rescan {
51 5     5 1 197 my ($self, $schema) = @_;
52              
53 5 50       123 $schema->storage->disconnect if $schema->storage;
54 5         979 $self->next::method($schema);
55             }
56              
57             sub _columns_info_for {
58 766     766   1951 my $self = shift;
59 766         2180 my ($table) = @_;
60              
61 766         3510 my $result = $self->next::method(@_);
62              
63 766         3598 local $self->dbh->{FetchHashKeyName} = 'NAME_lc';
64              
65 766         224115 my $sth = $self->dbh->prepare(
66             "pragma table_info(" . $self->dbh->quote_identifier($table) . ")"
67             );
68 766         90299 $sth->execute;
69 766         7697 my $cols = $sth->fetchall_hashref('name');
70              
71             # copy and case according to preserve_case mode
72             # no need to check for collisions, SQLite does not allow them
73 766         117228 my %cols;
74 766         5595 while (my ($col, $info) = each %$cols) {
75 2156         6729 $cols{ $self->_lc($col) } = $info;
76             }
77              
78 766         2272 my ($num_pk, $pk_col) = (0);
79             # SQLite doesn't give us the info we need to do this nicely :(
80             # If there is exactly one column marked PK, and its type is integer,
81             # set it is_auto_increment. This isn't 100%, but it's better than the
82             # alternatives.
83 766         3483 while (my ($col_name, $info) = each %$result) {
84 2156 100       7889 if ($cols{$col_name}{pk}) {
85 840         1933 $num_pk++;
86 840 100       3614 if (lc($cols{$col_name}{type}) eq 'integer') {
87 826         3177 $pk_col = $col_name;
88             }
89             }
90             }
91              
92 766         3645 while (my ($col, $info) = each %$result) {
93 2156 100 100     4552 if ((eval { ${ $info->{default_value} } }||'') eq 'CURRENT_TIMESTAMP') {
94 80         306 ${ $info->{default_value} } = 'current_timestamp';
  80         459  
95             }
96 2156 100 100     15589 if ($num_pk == 1 and defined $pk_col and $pk_col eq $col) {
      100        
97 650         3304 $info->{is_auto_increment} = 1;
98             }
99             }
100              
101 766         22950 return $result;
102             }
103              
104             sub _table_fk_info {
105 1528     1528   4560 my ($self, $table) = @_;
106              
107 1528         5885 my $sth = $self->dbh->prepare(
108             "pragma foreign_key_list(" . $self->dbh->quote_identifier($table) . ")"
109             );
110 1528         158549 $sth->execute;
111              
112 1528         5561 my @rels;
113 1528         44881 while (my $fk = $sth->fetchrow_hashref) {
114             my $rel = $rels[ $fk->{id} ] ||= {
115             local_columns => [],
116             remote_columns => undef,
117             remote_table => DBIx::Class::Schema::Loader::Table->new(
118             loader => $self,
119             name => $fk->{table},
120 1326 100 100     17455 ($self->db_schema ? (
121             schema => $self->db_schema->[0],
122             ignore_schema => 1,
123             ) : ()),
124             ),
125             };
126              
127 1326         3420 push @{ $rel->{local_columns} }, $self->_lc($fk->{from});
  1326         6300  
128 1326 100       4982 push @{ $rel->{remote_columns} }, $self->_lc($fk->{to}) if defined $fk->{to};
  1298         4874  
129              
130             $rel->{attrs} ||= {
131             on_delete => uc $fk->{on_delete},
132             on_update => uc $fk->{on_update},
133 1326   100     12875 };
134              
135             warn "This is supposed to be the same rel but remote_table changed from ",
136             $rel->{remote_table}->name, " to ", $fk->{table}
137 1326 50       31612 if $rel->{remote_table}->name ne $fk->{table};
138             }
139 1528         9274 $sth->finish;
140              
141             # now we need to determine whether each FK is DEFERRABLE, this can only be
142             # done by parsing the DDL from sqlite_master
143              
144 1528         6508 my $ddl = $self->dbh->selectcol_arrayref(<<"EOF", undef, $table->name, $table->name)->[0];
145             select sql from sqlite_master
146             where name = ? and tbl_name = ?
147             EOF
148              
149 1528         711720 foreach my $fk (@rels) {
150 1228         3811 my $local_cols = '"?' . (join '"? \s* , \s* "?', map quotemeta, @{ $fk->{local_columns} }) . '"?';
  1228         8671  
151 1228 100       3278 my $remote_cols = '"?' . (join '"? \s* , \s* "?', map quotemeta, @{ $fk->{remote_columns} || [] }) . '"?';
  1228         7325  
152 1228         107695 my ($deferrable_clause) = $ddl =~ /
153             foreign \s+ key \s* \( \s* $local_cols \s* \) \s* references \s* (?:\S+|".+?(?
154             (?:\( \s* $remote_cols \s* \) \s*)?
155             (?:(?:
156             on \s+ (?:delete|update) \s+ (?:set \s+ null|set \s+ default|cascade|restrict|no \s+ action)
157             |
158             match \s* (?:\S+|".+?(?
159             ) \s*)*
160             ((?:not)? \s* deferrable)?
161             /sxi;
162              
163 1228 100       5185 if ($deferrable_clause) {
164 14 50       121 $fk->{attrs}{is_deferrable} = $deferrable_clause =~ /not/i ? 0 : 1;
165             }
166             else {
167             # check for inline constraint if 1 local column
168 1214 100       2791 if (@{ $fk->{local_columns} } == 1) {
  1214         4970  
169 1116         2366 my ($local_col) = @{ $fk->{local_columns} };
  1116         3443  
170 1116 100       2527 my ($remote_col) = @{ $fk->{remote_columns} || [] };
  1116         4586  
171 1116   100     3874 $remote_col ||= '';
172              
173 1116         594165 my ($deferrable_clause) = $ddl =~ /
174             "?\Q$local_col\E"? \s* (?:\w+\s*)* (?: \( \s* \d\+ (?:\s*,\s*\d+)* \s* \) )? \s*
175             references \s+ (?:\S+|".+?(?
176             (?:(?:
177             on \s+ (?:delete|update) \s+ (?:set \s+ null|set \s+ default|cascade|restrict|no \s+ action)
178             |
179             match \s* (?:\S+|".+?(?
180             ) \s*)*
181             ((?:not)? \s* deferrable)?
182             /sxi;
183              
184 1116 100       5208 if ($deferrable_clause) {
185 14 50       137 $fk->{attrs}{is_deferrable} = $deferrable_clause =~ /not/i ? 0 : 1;
186             }
187             else {
188 1102         6071 $fk->{attrs}{is_deferrable} = 0;
189             }
190             }
191             else {
192 98         485 $fk->{attrs}{is_deferrable} = 0;
193             }
194             }
195             }
196              
197 1528         23267 return \@rels;
198             }
199              
200             sub _table_uniq_info {
201 1528     1528   4307 my ($self, $table) = @_;
202              
203 1528         5825 my $sth = $self->dbh->prepare(
204             "pragma index_list(" . $self->dbh->quote($table) . ")"
205             );
206 1528         156887 $sth->execute;
207              
208 1528         6303 my @uniqs;
209 1528         33781 while (my $idx = $sth->fetchrow_hashref) {
210 544 50       2694 next unless $idx->{unique};
211              
212 544         1514 my $name = $idx->{name};
213              
214 544         2679 my $get_idx_sth = $self->dbh->prepare("pragma index_info(" . $self->dbh->quote($name) . ")");
215 544         190764 $get_idx_sth->execute;
216 544         2180 my @cols;
217 544         14840 while (my $idx_row = $get_idx_sth->fetchrow_hashref) {
218 776         4502 push @cols, $self->_lc($idx_row->{name});
219             }
220 544         2942 $get_idx_sth->finish;
221              
222             # Rename because SQLite complains about sqlite_ prefixes on identifiers
223             # and ignores constraint names in DDL.
224 544         2265 $name = (join '_', @cols) . '_unique';
225              
226 544         14755 push @uniqs, [ $name => \@cols ];
227             }
228 1528         8545 $sth->finish;
229 1528         21217 return [ sort { $a->[0] cmp $b->[0] } @uniqs ];
  100         1263  
230             }
231              
232             sub _tables_list {
233 118     118   417 my ($self) = @_;
234              
235 118         482 my $sth = $self->dbh->prepare("SELECT * FROM sqlite_master");
236 118         63102 $sth->execute;
237 118         655 my @tables;
238 118         5065 while ( my $row = $sth->fetchrow_hashref ) {
239 1049 100       8799 next unless $row->{type} =~ /^(?:table|view)\z/i;
240 777 100       2273 next if $row->{tbl_name} =~ /^sqlite_/;
241             push @tables, DBIx::Class::Schema::Loader::Table->new(
242             loader => $self,
243             name => $row->{tbl_name},
244 770 100       5161 ($self->db_schema ? (
245             schema => $self->db_schema->[0],
246             ignore_schema => 1, # for qualify_objects tests
247             ) : ()),
248             );
249             }
250 118         926 $sth->finish;
251 118         1016 return $self->_filter_tables(\@tables);
252             }
253              
254             sub _table_info_matches {
255 2278     2278   7327 my ($self, $table, $info) = @_;
256              
257 2278         8519 my $table_schema = $table->schema;
258 2278 50       8321 $table_schema = 'main' if !defined $table_schema;
259             return $info->{TABLE_SCHEM} eq $table_schema
260 2278   33     20334 && $info->{TABLE_NAME} eq $table->name;
261             }
262              
263             =head1 SEE ALSO
264              
265             L, L,
266             L
267              
268             =head1 AUTHORS
269              
270             See L.
271              
272             =head1 LICENSE
273              
274             This library is free software; you can redistribute it and/or modify it under
275             the same terms as Perl itself.
276              
277             =cut
278              
279             1;
280             # vim:et sts=4 sw=4 tw=0: