fixed multi-fk checking for postgres (misdetection of multiple single-fks on one...
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / SQLite.pm
CommitLineData
18fca96a 1package DBIx::Class::Schema::Loader::SQLite;
a78e3fed 2
3use strict;
a4a19f3c 4use base qw/DBIx::Class::Schema::Loader::Generic/;
a78e3fed 5use Text::Balanced qw( extract_bracketed );
a78e3fed 6use Carp;
7
8=head1 NAME
9
18fca96a 10DBIx::Class::Schema::Loader::SQLite - DBIx::Class::Schema::Loader SQLite Implementation.
a78e3fed 11
12=head1 SYNOPSIS
13
18fca96a 14 use DBIx::Class::Schema::Loader;
a78e3fed 15
18fca96a 16 # $loader is a DBIx::Class::Schema::Loader::SQLite
17 my $loader = DBIx::Class::Schema::Loader->new(
a78e3fed 18 dsn => "dbi:SQLite:dbname=/path/to/dbfile",
a78e3fed 19 );
a78e3fed 20
21=head1 DESCRIPTION
22
18fca96a 23See L<DBIx::Class::Schema::Loader>.
a78e3fed 24
25=cut
26
3385ac62 27sub _loader_db_classes {
a78e3fed 28 return qw/DBIx::Class::PK::Auto::SQLite/;
29}
30
708c0939 31# XXX this really needs a re-factor
3385ac62 32sub _loader_relationships {
a4a19f3c 33 my $class = shift;
34 foreach my $table ( $class->tables ) {
a78e3fed 35
a4a19f3c 36 my $dbh = $class->storage->dbh;
a78e3fed 37 my $sth = $dbh->prepare(<<"");
38SELECT sql FROM sqlite_master WHERE tbl_name = ?
39
40 $sth->execute($table);
41 my ($sql) = $sth->fetchrow_array;
42 $sth->finish;
43
44 # Cut "CREATE TABLE ( )" blabla...
45 $sql =~ /^[\w\s]+\((.*)\)$/si;
46 my $cols = $1;
47
48 # strip single-line comments
49 $cols =~ s/\-\-.*\n/\n/g;
50
51 # temporarily replace any commas inside parens,
52 # so we don't incorrectly split on them below
53 my $cols_no_bracketed_commas = $cols;
54 while ( my $extracted =
55 ( extract_bracketed( $cols, "()", "[^(]*" ) )[0] )
56 {
57 my $replacement = $extracted;
58 $replacement =~ s/,/--comma--/g;
59 $replacement =~ s/^\(//;
60 $replacement =~ s/\)$//;
61 $cols_no_bracketed_commas =~ s/$extracted/$replacement/m;
62 }
63
64 # Split column definitions
65 for my $col ( split /,/, $cols_no_bracketed_commas ) {
66
67 # put the paren-bracketed commas back, to help
68 # find multi-col fks below
69 $col =~ s/\-\-comma\-\-/,/g;
70
708c0939 71 $col =~ s/^\s*FOREIGN\s+KEY\s*//i;
a78e3fed 72
73 # Strip punctuations around key and table names
708c0939 74 $col =~ s/[\[\]'"]/ /g;
a78e3fed 75 $col =~ s/^\s+//gs;
76
77 # Grab reference
4ce22656 78 chomp $col;
79 if( $col =~ /^(.*)\s+REFERENCES\s+(\w+) (?: \s* \( (.*) \) )? /ix ) {
708c0939 80
81 my ($cols, $f_table, $f_cols) = ($1, $2, $3);
132694df 82
83 if($cols =~ /^\(/) { # Table-level
84 $cols =~ s/^\(\s*//;
85 $cols =~ s/\s*\)$//;
86 }
87 else { # Inline
88 $cols =~ s/\s+.*$//;
89 }
90
4ce22656 91 my $cond;
92
93 if($f_cols) {
94 my @cols = map { s/\s*//g; $_ } split(/\s*,\s*/,$cols);
95 my @f_cols = map { s/\s*//g; $_ } split(/\s*,\s*/,$f_cols);
96 die "Mismatched column count in rel for $table => $f_table"
97 if @cols != @f_cols;
98 $cond = {};
99 for(my $i = 0 ; $i < @cols; $i++) {
100 $cond->{$f_cols[$i]} = $cols[$i];
101 }
102 }
103 else {
104 $cond = $cols;
708c0939 105 }
106
3385ac62 107 eval { $class->_loader_make_relations( $table, $f_table, $cond ) };
a78e3fed 108 warn qq/\# belongs_to_many failed "$@"\n\n/
3385ac62 109 if $@ && $class->_loader_debug;
a78e3fed 110 }
111 }
112 }
113}
114
3385ac62 115sub _loader_tables {
a4a19f3c 116 my $class = shift;
117 my $dbh = $class->storage->dbh;
a78e3fed 118 my $sth = $dbh->prepare("SELECT * FROM sqlite_master");
119 $sth->execute;
120 my @tables;
121 while ( my $row = $sth->fetchrow_hashref ) {
122 next unless lc( $row->{type} ) eq 'table';
123 push @tables, $row->{tbl_name};
124 }
a78e3fed 125 return @tables;
126}
127
3385ac62 128sub _loader_table_info {
a4a19f3c 129 my ( $class, $table ) = @_;
a78e3fed 130
131 # find all columns.
a4a19f3c 132 my $dbh = $class->storage->dbh;
a78e3fed 133 my $sth = $dbh->prepare("PRAGMA table_info('$table')");
134 $sth->execute();
135 my @columns;
136 while ( my $row = $sth->fetchrow_hashref ) {
137 push @columns, $row->{name};
138 }
139 $sth->finish;
140
141 # find primary key. so complex ;-(
142 $sth = $dbh->prepare(<<'SQL');
143SELECT sql FROM sqlite_master WHERE tbl_name = ?
144SQL
145 $sth->execute($table);
146 my ($sql) = $sth->fetchrow_array;
147 $sth->finish;
a78e3fed 148 my ($primary) = $sql =~ m/
149 (?:\(|\,) # either a ( to start the definition or a , for next
150 \s* # maybe some whitespace
151 (\w+) # the col name
152 [^,]* # anything but the end or a ',' for next column
153 PRIMARY\sKEY/sxi;
154 my @pks;
155
156 if ($primary) {
157 @pks = ($primary);
158 }
159 else {
9a69e859 160 my ($pks) = $sql =~ m/PRIMARY\s+KEY\s*\(\s*([^)]+)\s*\)/i;
a78e3fed 161 @pks = split( m/\s*\,\s*/, $pks ) if $pks;
162 }
163 return ( \@columns, \@pks );
164}
165
166=head1 SEE ALSO
167
18fca96a 168L<DBIx::Schema::Class::Loader>
a78e3fed 169
170=cut
171
1721;