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
|
package DBIx::Class::Schema::Loader::DBI::SQLite;
use strict;
use warnings;
use base qw/DBIx::Class::Schema::Loader::DBI/;
use Carp::Clan qw/^DBIx::Class/;
use Text::Balanced qw( extract_bracketed );
use Class::C3;
=head1 NAME
DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation.
=head1 SYNOPSIS
package My::Schema;
use base qw/DBIx::Class::Schema::Loader/;
__PACKAGE__->loader_optoins( relationships => 1 );
1;
=head1 DESCRIPTION
See L<DBIx::Class::Schema::Loader::Base>.
=cut
# XXX this really needs a re-factor
sub _sqlite_parse_table {
my ($self, $table) = @_;
my @rels;
my @uniqs;
my $dbh = $self->schema->storage->dbh;
my $sth = $self->{_cache}->{sqlite_master}
||= $dbh->prepare(q{SELECT sql FROM sqlite_master WHERE tbl_name = ?});
$sth->execute($table);
my ($sql) = $sth->fetchrow_array;
$sth->finish;
# Cut "CREATE TABLE ( )" blabla...
$sql =~ /^[\w\s]+\((.*)\)$/si;
my $cols = $1;
# strip single-line comments
$cols =~ s/\-\-.*\n/\n/g;
# temporarily replace any commas inside parens,
# so we don't incorrectly split on them below
my $cols_no_bracketed_commas = $cols;
while ( my $extracted =
( extract_bracketed( $cols, "()", "[^(]*" ) )[0] )
{
my $replacement = $extracted;
$replacement =~ s/,/--comma--/g;
$replacement =~ s/^\(//;
$replacement =~ s/\)$//;
$cols_no_bracketed_commas =~ s/$extracted/$replacement/m;
}
# Split column definitions
for my $col ( split /,/, $cols_no_bracketed_commas ) {
# put the paren-bracketed commas back, to help
# find multi-col fks below
$col =~ s/\-\-comma\-\-/,/g;
$col =~ s/^\s*FOREIGN\s+KEY\s*//i;
# Strip punctuations around key and table names
$col =~ s/[\[\]'"]/ /g;
$col =~ s/^\s+//gs;
# Grab reference
chomp $col;
if($col =~ /^(.*)\s+UNIQUE/) {
my $colname = $1;
$colname =~ s/\s+.*$//;
push(@uniqs, [ "${colname}_unique" => [ lc $colname ] ]);
}
elsif($col =~/^\s*UNIQUE\s*\(\s*(.*)\)/) {
my $cols = $1;
$cols =~ s/\s+$//;
my @cols = map { lc } split(/\s*,\s*/, $cols);
my $name = join(q{_}, @cols) . '_unique';
push(@uniqs, [ $name => \@cols ]);
}
next if $col !~ /^(.*\S)\s+REFERENCES\s+(\w+) (?: \s* \( (.*) \) )? /ix;
my ($cols, $f_table, $f_cols) = ($1, $2, $3);
if($cols =~ /^\(/) { # Table-level
$cols =~ s/^\(\s*//;
$cols =~ s/\s*\)$//;
}
else { # Inline
$cols =~ s/\s+.*$//;
}
my @cols = map { s/\s*//g; lc $_ } split(/\s*,\s*/,$cols);
my $rcols;
if($f_cols) {
my @f_cols = map { s/\s*//g; lc $_ } split(/\s*,\s*/,$f_cols);
croak "Mismatched column count in rel for $table => $f_table"
if @cols != @f_cols;
$rcols = \@f_cols;
}
push(@rels, {
local_columns => \@cols,
remote_columns => $rcols,
remote_table => $f_table,
});
}
return { rels => \@rels, uniqs => \@uniqs };
}
sub _table_fk_info {
my ($self, $table) = @_;
$self->{_sqlite_parse_data}->{$table} ||=
$self->_sqlite_parse_table($table);
return $self->{_sqlite_parse_data}->{$table}->{rels};
}
sub _table_uniq_info {
my ($self, $table) = @_;
$self->{_sqlite_parse_data}->{$table} ||=
$self->_sqlite_parse_table($table);
return $self->{_sqlite_parse_data}->{$table}->{uniqs};
}
sub _tables_list {
my $self = shift;
my $dbh = $self->schema->storage->dbh;
my $sth = $dbh->prepare("SELECT * FROM sqlite_master");
$sth->execute;
my @tables;
while ( my $row = $sth->fetchrow_hashref ) {
next unless lc( $row->{type} ) eq 'table';
push @tables, $row->{tbl_name};
}
return @tables;
}
=head1 SEE ALSO
L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
L<DBIx::Class::Schema::Loader::DBI>
=cut
1;
|