6225724440a721a61cfff1e35822d64f11144633
[dbsrgits/DBIx-Class.git] / lib / SQL / Translator / Parser / DBIx / Class.pm
1 package SQL::Translator::Parser::DBIx::Class;
2
3 # AUTHOR: Jess Robinson
4
5 # Some mistakes the fault of Matt S Trout
6
7 use strict;
8 use warnings;
9 use vars qw($DEBUG $VERSION @EXPORT_OK);
10 $DEBUG = 0 unless defined $DEBUG;
11 $VERSION = sprintf "%d.%02d", q$Revision 1.0$ =~ /(\d+)\.(\d+)/;
12
13 use Exporter;
14 use Data::Dumper;
15 use SQL::Translator::Utils qw(debug normalize_name);
16
17 use base qw(Exporter);
18
19 @EXPORT_OK = qw(parse);
20
21 # -------------------------------------------------------------------
22 # parse($tr, $data)
23 #
24 # Note that $data, in the case of this parser, is unuseful.
25 # We're working with DBIx::Class Schemas, not data streams.
26 # -------------------------------------------------------------------
27 sub parse {
28     my ($tr, $data) = @_;
29     my $args        = $tr->parser_args;
30     my $dbixschema  = $args->{'DBIx::Schema'} || $data;
31     
32     die 'No DBIx::Schema' unless ($dbixschema);
33     if (!ref $dbixschema) {
34       eval "use $dbixschema;";
35       die "Can't load $dbixschema ($@)" if($@);
36     }
37
38     my $schema      = $tr->schema;
39     my $table_no    = 0;
40
41 #    print Dumper($dbixschema->registered_classes);
42
43     #foreach my $tableclass ($dbixschema->registered_classes)
44     foreach my $moniker ($dbixschema->sources)
45     {
46         #eval "use $tableclass";
47         #print("Can't load $tableclass"), next if($@);
48         my $source = $dbixschema->source($moniker);
49
50         my $table = $schema->add_table(
51                                        name => $source->name,
52                                        type => 'TABLE',
53                                        ) || die $schema->error;
54         my $colcount = 0;
55         foreach my $col ($source->columns)
56         {
57             # assuming column_info in dbix is the same as DBI (?)
58             # data_type is a number, column_type is text?
59             my %colinfo = (
60               name => $col,
61               size => 0,
62               is_auto_increment => 0,
63               is_foreign_key => 0,
64               is_nullable => 0,
65               %{$source->column_info($col)}
66             );
67             if ($colinfo{is_nullable}) {
68               $colinfo{default} = '' unless exists $colinfo{default};
69             }
70             my $f = $table->add_field(%colinfo) || die $table->error;
71         }
72         $table->primary_key($source->primary_columns);
73
74
75         my @rels = $source->relationships();
76         foreach my $rel (@rels)
77         {
78             my $rel_info = $source->relationship_info($rel);
79             print "Accessor: $rel_info->{attrs}{accessor}\n";
80             next if(!exists $rel_info->{attrs}{accessor} ||
81                     $rel_info->{attrs}{accessor} eq 'multi');
82             # Going by the accessor type isn't such a good idea (yes, I know
83             # I suggested it). I think the best way to tell if something's a
84             # foreign key constraint is to assume if it doesn't include our
85             # primaries then it is (dumb but it'll do). Ignore any rel cond
86             # that isn't a straight hash, but get both sets of keys in full
87             # so you don't barf on multi-primaries. Oh, and a dog-simple
88             # deploy method to chuck the results of this exercise at a db
89             # for testing is
90             # $schema->storage->dbh->do($_) for split(";\n", $sql);
91             #         -- mst (03:42 local time, please excuse any mistakes)
92             my $rel_table = $rel_info->{class}->table();
93             my $cond = (keys (%{$rel_info->{cond}}))[0];
94             my ($refkey) = $cond =~ /^\w+\.(\w+)$/;
95             if($rel_table && $refkey)
96             { 
97                 $table->add_constraint(
98                             type             => 'foreign_key', 
99                             name             => "fk_${rel}_id",
100                             fields           => $rel,
101                             reference_fields => $refkey,
102                             reference_table  => $rel_table,
103                                        );
104             }
105         }
106     }
107
108 }    
109
110 1;