X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultSource%2FView.pm;h=c053009a2f31fcf53d43e7ec86af600993e3c999;hb=0353535690d973b3ad10e1476d5d0c5692655d11;hp=ea37971b0357bf1803fff100140dbb1b14644f0c;hpb=b46642502590b35e47f30ed5b3584e94ba4f27af;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/ResultSource/View.pm b/lib/DBIx/Class/ResultSource/View.pm index ea37971..c053009 100644 --- a/lib/DBIx/Class/ResultSource/View.pm +++ b/lib/DBIx/Class/ResultSource/View.pm @@ -8,8 +8,7 @@ use DBIx::Class::ResultSet; use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/ResultSource/); __PACKAGE__->mk_group_accessors( - 'simple' => qw(is_virtual view_definition) -); + 'simple' => qw(is_virtual view_definition deploy_depends_on) ); =head1 NAME @@ -19,10 +18,8 @@ DBIx::Class::ResultSource::View - ResultSource object representing a view package MyDB::Schema::Result::Year2000CDs; - use base qw/DBIx::Class/; - use DBIx::Class::ResultSource::View; + use base qw/DBIx::Class::Core/; - __PACKAGE__->load_components('Core'); __PACKAGE__->table_class('DBIx::Class::ResultSource::View'); __PACKAGE__->table('year2000cds'); @@ -79,7 +76,7 @@ above, you can then: If you modified the schema to include a placeholder __PACKAGE__->result_source_instance->view_definition( - "SELECT cdid, artist, title FROM cd WHERE year ='?'" + "SELECT cdid, artist, title FROM cd WHERE year = ?" ); and ensuring you have is_virtual set to true: @@ -132,6 +129,14 @@ database-based view. An SQL query for your view. Will not be translated across database syntaxes. +=head2 deploy_depends_on + + __PACKAGE__->result_source_instance->deploy_depends_on( + ["MyDB::Schema::Result::Year","MyDB::Schema::Result::CD"] + ); + +Specify the views (and only the views) that this view depends on. +Pass this an array reference of fully qualified result classes. =head1 OVERRIDDEN METHODS @@ -143,24 +148,34 @@ or the SQL as a subselect if this is a virtual view. =cut sub from { - my $self = shift; - return \"(${\$self->view_definition})" if $self->is_virtual; - return $self->name; + my $self = shift; + return \"(${\$self->view_definition})" if $self->is_virtual; + return $self->name; } -1; +=head1 OTHER METHODS -=head1 AUTHORS +=head2 new -Matt S. Trout +The constructor. -With Contributions from: +=cut -Guillermo Roditi Egroditi@cpan.orgE +sub new { + my ( $self, @args ) = @_; + my $new = $self->next::method(@args); + $new->{deploy_depends_on} = + { map { $_ => 1 } + @{ $new->{deploy_depends_on} || [] } } + unless ref $new->{deploy_depends_on} eq 'HASH'; + return $new; +} -Jess Robinson +1; + +=head1 AUTHORS -Wallace Reis +See L. =head1 LICENSE