Fix for SQLite PKs
[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",
19 namespace => "Data",
20 );
a78e3fed 21
22=head1 DESCRIPTION
23
18fca96a 24See L<DBIx::Class::Schema::Loader>.
a78e3fed 25
26=cut
27
28sub _db_classes {
29 return qw/DBIx::Class::PK::Auto::SQLite/;
30}
31
32sub _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
71 # CDBI doesn't have built-in support multi-col fks, so ignore them
72 next if $col =~ s/^\s*FOREIGN\s+KEY\s*//i && $col =~ /^\([^,)]+,/;
73
74 # Strip punctuations around key and table names
75 $col =~ s/[()\[\]'"]/ /g;
76 $col =~ s/^\s+//gs;
77
78 # Grab reference
79 if ( $col =~ /^(\w+).*REFERENCES\s+(\w+)\s*(\w+)?/i ) {
80 chomp $col;
81 warn qq/\# Found foreign key definition "$col"\n\n/
fbd83464 82 if $class->debug_loader;
a4a19f3c 83 eval { $class->_belongs_to_many( $table, $1, $2, $3 ) };
a78e3fed 84 warn qq/\# belongs_to_many failed "$@"\n\n/
fbd83464 85 if $@ && $class->debug_loader;
a78e3fed 86 }
87 }
88 }
89}
90
91sub _tables {
a4a19f3c 92 my $class = shift;
93 my $dbh = $class->storage->dbh;
a78e3fed 94 my $sth = $dbh->prepare("SELECT * FROM sqlite_master");
95 $sth->execute;
96 my @tables;
97 while ( my $row = $sth->fetchrow_hashref ) {
98 next unless lc( $row->{type} ) eq 'table';
99 push @tables, $row->{tbl_name};
100 }
a78e3fed 101 return @tables;
102}
103
104sub _table_info {
a4a19f3c 105 my ( $class, $table ) = @_;
a78e3fed 106
107 # find all columns.
a4a19f3c 108 my $dbh = $class->storage->dbh;
a78e3fed 109 my $sth = $dbh->prepare("PRAGMA table_info('$table')");
110 $sth->execute();
111 my @columns;
112 while ( my $row = $sth->fetchrow_hashref ) {
113 push @columns, $row->{name};
114 }
115 $sth->finish;
116
117 # find primary key. so complex ;-(
118 $sth = $dbh->prepare(<<'SQL');
119SELECT sql FROM sqlite_master WHERE tbl_name = ?
120SQL
121 $sth->execute($table);
122 my ($sql) = $sth->fetchrow_array;
123 $sth->finish;
a78e3fed 124 my ($primary) = $sql =~ m/
125 (?:\(|\,) # either a ( to start the definition or a , for next
126 \s* # maybe some whitespace
127 (\w+) # the col name
128 [^,]* # anything but the end or a ',' for next column
129 PRIMARY\sKEY/sxi;
130 my @pks;
131
132 if ($primary) {
133 @pks = ($primary);
134 }
135 else {
9a69e859 136 my ($pks) = $sql =~ m/PRIMARY\s+KEY\s*\(\s*([^)]+)\s*\)/i;
a78e3fed 137 @pks = split( m/\s*\,\s*/, $pks ) if $pks;
138 }
139 return ( \@columns, \@pks );
140}
141
142=head1 SEE ALSO
143
18fca96a 144L<DBIx::Schema::Class::Loader>
a78e3fed 145
146=cut
147
1481;