Minor cleanup of ResultSource attributes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSource.pm
1 package DBIx::Class::ResultSource;
2
3 use strict;
4 use warnings;
5
6 use DBIx::Class::ResultSet;
7 use DBIx::Class::ResultSourceHandle;
8
9 use DBIx::Class::Exception;
10 use DBIx::Class::Carp;
11 use Try::Tiny;
12 use List::Util 'first';
13 use Scalar::Util qw/blessed weaken isweak/;
14 use namespace::clean;
15
16 use base qw/DBIx::Class/;
17
18 __PACKAGE__->mk_group_accessors(simple => qw/
19   source_name name source_info
20   _ordered_columns _columns _primaries _unique_constraints
21   _relationships resultset_attributes
22   column_info_from_storage
23 /);
24
25 __PACKAGE__->mk_group_accessors(component_class => qw/
26   resultset_class
27   result_class
28 /);
29
30 __PACKAGE__->mk_classdata( sqlt_deploy_callback => 'default_sqlt_deploy_hook' );
31
32 =head1 NAME
33
34 DBIx::Class::ResultSource - Result source object
35
36 =head1 SYNOPSIS
37
38   # Create a table based result source, in a result class.
39
40   package MyApp::Schema::Result::Artist;
41   use base qw/DBIx::Class::Core/;
42
43   __PACKAGE__->table('artist');
44   __PACKAGE__->add_columns(qw/ artistid name /);
45   __PACKAGE__->set_primary_key('artistid');
46   __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD');
47
48   1;
49
50   # Create a query (view) based result source, in a result class
51   package MyApp::Schema::Result::Year2000CDs;
52   use base qw/DBIx::Class::Core/;
53
54   __PACKAGE__->load_components('InflateColumn::DateTime');
55   __PACKAGE__->table_class('DBIx::Class::ResultSource::View');
56
57   __PACKAGE__->table('year2000cds');
58   __PACKAGE__->result_source_instance->is_virtual(1);
59   __PACKAGE__->result_source_instance->view_definition(
60       "SELECT cdid, artist, title FROM cd WHERE year ='2000'"
61       );
62
63
64 =head1 DESCRIPTION
65
66 A ResultSource is an object that represents a source of data for querying.
67
68 This class is a base class for various specialised types of result
69 sources, for example L<DBIx::Class::ResultSource::Table>. Table is the
70 default result source type, so one is created for you when defining a
71 result class as described in the synopsis above.
72
73 More specifically, the L<DBIx::Class::Core> base class pulls in the
74 L<DBIx::Class::ResultSourceProxy::Table> component, which defines
75 the L<table|DBIx::Class::ResultSourceProxy::Table/table> method.
76 When called, C<table> creates and stores an instance of
77 L<DBIx::Class::ResultSoure::Table>. Luckily, to use tables as result
78 sources, you don't need to remember any of this.
79
80 Result sources representing select queries, or views, can also be
81 created, see L<DBIx::Class::ResultSource::View> for full details.
82
83 =head2 Finding result source objects
84
85 As mentioned above, a result source instance is created and stored for
86 you when you define a L<Result Class|DBIx::Class::Manual::Glossary/Result Class>.
87
88 You can retrieve the result source at runtime in the following ways:
89
90 =over
91
92 =item From a Schema object:
93
94    $schema->source($source_name);
95
96 =item From a Row object:
97
98    $row->result_source;
99
100 =item From a ResultSet object:
101
102    $rs->result_source;
103
104 =back
105
106 =head1 METHODS
107
108 =pod
109
110 =cut
111
112 sub new {
113   my ($class, $attrs) = @_;
114   $class = ref $class if ref $class;
115
116   my $new = bless { %{$attrs || {}} }, $class;
117   $new->{resultset_class} ||= 'DBIx::Class::ResultSet';
118   $new->{resultset_attributes} = { %{$new->{resultset_attributes} || {}} };
119   $new->{_ordered_columns} = [ @{$new->{_ordered_columns}||[]}];
120   $new->{_columns} = { %{$new->{_columns}||{}} };
121   $new->{_relationships} = { %{$new->{_relationships}||{}} };
122   $new->{name} ||= "!!NAME NOT SET!!";
123   $new->{_columns_info_loaded} ||= 0;
124   return $new;
125 }
126
127 =pod
128
129 =head2 add_columns
130
131 =over
132
133 =item Arguments: @columns
134
135 =item Return value: The ResultSource object
136
137 =back
138
139   $source->add_columns(qw/col1 col2 col3/);
140
141   $source->add_columns('col1' => \%col1_info, 'col2' => \%col2_info, ...);
142
143 Adds columns to the result source. If supplied colname => hashref
144 pairs, uses the hashref as the L</column_info> for that column. Repeated
145 calls of this method will add more columns, not replace them.
146
147 The column names given will be created as accessor methods on your
148 L<DBIx::Class::Row> objects. You can change the name of the accessor
149 by supplying an L</accessor> in the column_info hash.
150
151 If a column name beginning with a plus sign ('+col1') is provided, the
152 attributes provided will be merged with any existing attributes for the
153 column, with the new attributes taking precedence in the case that an
154 attribute already exists. Using this without a hashref
155 (C<< $source->add_columns(qw/+col1 +col2/) >>) is legal, but useless --
156 it does the same thing it would do without the plus.
157
158 The contents of the column_info are not set in stone. The following
159 keys are currently recognised/used by DBIx::Class:
160
161 =over 4
162
163 =item accessor
164
165    { accessor => '_name' }
166
167    # example use, replace standard accessor with one of your own:
168    sub name {
169        my ($self, $value) = @_;
170
171        die "Name cannot contain digits!" if($value =~ /\d/);
172        $self->_name($value);
173
174        return $self->_name();
175    }
176
177 Use this to set the name of the accessor method for this column. If unset,
178 the name of the column will be used.
179
180 =item data_type
181
182    { data_type => 'integer' }
183
184 This contains the column type. It is automatically filled if you use the
185 L<SQL::Translator::Producer::DBIx::Class::File> producer, or the
186 L<DBIx::Class::Schema::Loader> module.
187
188 Currently there is no standard set of values for the data_type. Use
189 whatever your database supports.
190
191 =item size
192
193    { size => 20 }
194
195 The length of your column, if it is a column type that can have a size
196 restriction. This is currently only used to create tables from your
197 schema, see L<DBIx::Class::Schema/deploy>.
198
199 =item is_nullable
200
201    { is_nullable => 1 }
202
203 Set this to a true value for a columns that is allowed to contain NULL
204 values, default is false. This is currently only used to create tables
205 from your schema, see L<DBIx::Class::Schema/deploy>.
206
207 =item is_auto_increment
208
209    { is_auto_increment => 1 }
210
211 Set this to a true value for a column whose value is somehow
212 automatically set, defaults to false. This is used to determine which
213 columns to empty when cloning objects using
214 L<DBIx::Class::Row/copy>. It is also used by
215 L<DBIx::Class::Schema/deploy>.
216
217 =item is_numeric
218
219    { is_numeric => 1 }
220
221 Set this to a true or false value (not C<undef>) to explicitly specify
222 if this column contains numeric data. This controls how set_column
223 decides whether to consider a column dirty after an update: if
224 C<is_numeric> is true a numeric comparison C<< != >> will take place
225 instead of the usual C<eq>
226
227 If not specified the storage class will attempt to figure this out on
228 first access to the column, based on the column C<data_type>. The
229 result will be cached in this attribute.
230
231 =item is_foreign_key
232
233    { is_foreign_key => 1 }
234
235 Set this to a true value for a column that contains a key from a
236 foreign table, defaults to false. This is currently only used to
237 create tables from your schema, see L<DBIx::Class::Schema/deploy>.
238
239 =item default_value
240
241    { default_value => \'now()' }
242
243 Set this to the default value which will be inserted into a column by
244 the database. Can contain either a value or a function (use a
245 reference to a scalar e.g. C<\'now()'> if you want a function). This
246 is currently only used to create tables from your schema, see
247 L<DBIx::Class::Schema/deploy>.
248
249 See the note on L<DBIx::Class::Row/new> for more information about possible
250 issues related to db-side default values.
251
252 =item sequence
253
254    { sequence => 'my_table_seq' }
255
256 Set this on a primary key column to the name of the sequence used to
257 generate a new key value. If not specified, L<DBIx::Class::PK::Auto>
258 will attempt to retrieve the name of the sequence from the database
259 automatically.
260
261 =item retrieve_on_insert
262
263   { retrieve_on_insert => 1 }
264
265 For every column where this is set to true, DBIC will retrieve the RDBMS-side
266 value upon a new row insertion (normally only the autoincrement PK is
267 retrieved on insert). C<INSERT ... RETURNING> is used automatically if
268 supported by the underlying storage, otherwise an extra SELECT statement is
269 executed to retrieve the missing data.
270
271 =item auto_nextval
272
273    { auto_nextval => 1 }
274
275 Set this to a true value for a column whose value is retrieved automatically
276 from a sequence or function (if supported by your Storage driver.) For a
277 sequence, if you do not use a trigger to get the nextval, you have to set the
278 L</sequence> value as well.
279
280 Also set this for MSSQL columns with the 'uniqueidentifier'
281 L<data_type|DBIx::Class::ResultSource/data_type> whose values you want to
282 automatically generate using C<NEWID()>, unless they are a primary key in which
283 case this will be done anyway.
284
285 =item extra
286
287 This is used by L<DBIx::Class::Schema/deploy> and L<SQL::Translator>
288 to add extra non-generic data to the column. For example: C<< extra
289 => { unsigned => 1} >> is used by the MySQL producer to set an integer
290 column to unsigned. For more details, see
291 L<SQL::Translator::Producer::MySQL>.
292
293 =back
294
295 =head2 add_column
296
297 =over
298
299 =item Arguments: $colname, \%columninfo?
300
301 =item Return value: 1/0 (true/false)
302
303 =back
304
305   $source->add_column('col' => \%info);
306
307 Add a single column and optional column info. Uses the same column
308 info keys as L</add_columns>.
309
310 =cut
311
312 sub add_columns {
313   my ($self, @cols) = @_;
314   $self->_ordered_columns(\@cols) unless $self->_ordered_columns;
315
316   my @added;
317   my $columns = $self->_columns;
318   while (my $col = shift @cols) {
319     my $column_info = {};
320     if ($col =~ s/^\+//) {
321       $column_info = $self->column_info($col);
322     }
323
324     # If next entry is { ... } use that for the column info, if not
325     # use an empty hashref
326     if (ref $cols[0]) {
327       my $new_info = shift(@cols);
328       %$column_info = (%$column_info, %$new_info);
329     }
330     push(@added, $col) unless exists $columns->{$col};
331     $columns->{$col} = $column_info;
332   }
333   push @{ $self->_ordered_columns }, @added;
334   return $self;
335 }
336
337 sub add_column { shift->add_columns(@_); } # DO NOT CHANGE THIS TO GLOB
338
339 =head2 has_column
340
341 =over
342
343 =item Arguments: $colname
344
345 =item Return value: 1/0 (true/false)
346
347 =back
348
349   if ($source->has_column($colname)) { ... }
350
351 Returns true if the source has a column of this name, false otherwise.
352
353 =cut
354
355 sub has_column {
356   my ($self, $column) = @_;
357   return exists $self->_columns->{$column};
358 }
359
360 =head2 column_info
361
362 =over
363
364 =item Arguments: $colname
365
366 =item Return value: Hashref of info
367
368 =back
369
370   my $info = $source->column_info($col);
371
372 Returns the column metadata hashref for a column, as originally passed
373 to L</add_columns>. See L</add_columns> above for information on the
374 contents of the hashref.
375
376 =cut
377
378 sub column_info {
379   my ($self, $column) = @_;
380   $self->throw_exception("No such column $column")
381     unless exists $self->_columns->{$column};
382
383   if ( ! $self->_columns->{$column}{data_type}
384        and ! $self->{_columns_info_loaded}
385        and $self->column_info_from_storage
386        and my $stor = try { $self->storage } )
387   {
388     $self->{_columns_info_loaded}++;
389
390     # try for the case of storage without table
391     try {
392       my $info = $stor->columns_info_for( $self->from );
393       my $lc_info = { map
394         { (lc $_) => $info->{$_} }
395         ( keys %$info )
396       };
397
398       foreach my $col ( keys %{$self->_columns} ) {
399         $self->_columns->{$col} = {
400           %{ $self->_columns->{$col} },
401           %{ $info->{$col} || $lc_info->{lc $col} || {} }
402         };
403       }
404     };
405   }
406
407   return $self->_columns->{$column};
408 }
409
410 =head2 columns
411
412 =over
413
414 =item Arguments: None
415
416 =item Return value: Ordered list of column names
417
418 =back
419
420   my @column_names = $source->columns;
421
422 Returns all column names in the order they were declared to L</add_columns>.
423
424 =cut
425
426 sub columns {
427   my $self = shift;
428   $self->throw_exception(
429     "columns() is a read-only accessor, did you mean add_columns()?"
430   ) if @_;
431   return @{$self->{_ordered_columns}||[]};
432 }
433
434 =head2 columns_info
435
436 =over
437
438 =item Arguments: \@colnames ?
439
440 =item Return value: Hashref of column name/info pairs
441
442 =back
443
444   my $columns_info = $source->columns_info;
445
446 Like L</column_info> but returns information for the requested columns. If
447 the optional column-list arrayref is omitted it returns info on all columns
448 currently defined on the ResultSource via L</add_columns>.
449
450 =cut
451
452 sub columns_info {
453   my ($self, $columns) = @_;
454
455   my $colinfo = $self->_columns;
456
457   if (
458     first { ! $_->{data_type} } values %$colinfo
459       and
460     ! $self->{_columns_info_loaded}
461       and
462     $self->column_info_from_storage
463       and
464     my $stor = try { $self->storage }
465   ) {
466     $self->{_columns_info_loaded}++;
467
468     # try for the case of storage without table
469     try {
470       my $info = $stor->columns_info_for( $self->from );
471       my $lc_info = { map
472         { (lc $_) => $info->{$_} }
473         ( keys %$info )
474       };
475
476       foreach my $col ( keys %$colinfo ) {
477         $colinfo->{$col} = {
478           %{ $colinfo->{$col} },
479           %{ $info->{$col} || $lc_info->{lc $col} || {} }
480         };
481       }
482     };
483   }
484
485   my %ret;
486
487   if ($columns) {
488     for (@$columns) {
489       if (my $inf = $colinfo->{$_}) {
490         $ret{$_} = $inf;
491       }
492       else {
493         $self->throw_exception( sprintf (
494           "No such column '%s' on source %s",
495           $_,
496           $self->source_name,
497         ));
498       }
499     }
500   }
501   else {
502     %ret = %$colinfo;
503   }
504
505   return \%ret;
506 }
507
508 =head2 remove_columns
509
510 =over
511
512 =item Arguments: @colnames
513
514 =item Return value: undefined
515
516 =back
517
518   $source->remove_columns(qw/col1 col2 col3/);
519
520 Removes the given list of columns by name, from the result source.
521
522 B<Warning>: Removing a column that is also used in the sources primary
523 key, or in one of the sources unique constraints, B<will> result in a
524 broken result source.
525
526 =head2 remove_column
527
528 =over
529
530 =item Arguments: $colname
531
532 =item Return value: undefined
533
534 =back
535
536   $source->remove_column('col');
537
538 Remove a single column by name from the result source, similar to
539 L</remove_columns>.
540
541 B<Warning>: Removing a column that is also used in the sources primary
542 key, or in one of the sources unique constraints, B<will> result in a
543 broken result source.
544
545 =cut
546
547 sub remove_columns {
548   my ($self, @to_remove) = @_;
549
550   my $columns = $self->_columns
551     or return;
552
553   my %to_remove;
554   for (@to_remove) {
555     delete $columns->{$_};
556     ++$to_remove{$_};
557   }
558
559   $self->_ordered_columns([ grep { not $to_remove{$_} } @{$self->_ordered_columns} ]);
560 }
561
562 sub remove_column { shift->remove_columns(@_); } # DO NOT CHANGE THIS TO GLOB
563
564 =head2 set_primary_key
565
566 =over 4
567
568 =item Arguments: @cols
569
570 =item Return value: undefined
571
572 =back
573
574 Defines one or more columns as primary key for this source. Must be
575 called after L</add_columns>.
576
577 Additionally, defines a L<unique constraint|add_unique_constraint>
578 named C<primary>.
579
580 Note: you normally do want to define a primary key on your sources
581 B<even if the underlying database table does not have a primary key>.
582 See
583 L<DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
584 for more info.
585
586 =cut
587
588 sub set_primary_key {
589   my ($self, @cols) = @_;
590   # check if primary key columns are valid columns
591   foreach my $col (@cols) {
592     $self->throw_exception("No such column $col on table " . $self->name)
593       unless $self->has_column($col);
594   }
595   $self->_primaries(\@cols);
596
597   $self->add_unique_constraint(primary => \@cols);
598 }
599
600 =head2 primary_columns
601
602 =over 4
603
604 =item Arguments: None
605
606 =item Return value: Ordered list of primary column names
607
608 =back
609
610 Read-only accessor which returns the list of primary keys, supplied by
611 L</set_primary_key>.
612
613 =cut
614
615 sub primary_columns {
616   return @{shift->_primaries||[]};
617 }
618
619 # a helper method that will automatically die with a descriptive message if
620 # no pk is defined on the source in question. For internal use to save
621 # on if @pks... boilerplate
622 sub _pri_cols {
623   my $self = shift;
624   my @pcols = $self->primary_columns
625     or $self->throw_exception (sprintf(
626       "Operation requires a primary key to be declared on '%s' via set_primary_key",
627       # source_name is set only after schema-registration
628       $self->source_name || $self->result_class || $self->name || 'Unknown source...?',
629     ));
630   return @pcols;
631 }
632
633 =head2 sequence
634
635 Manually define the correct sequence for your table, to avoid the overhead
636 associated with looking up the sequence automatically. The supplied sequence
637 will be applied to the L</column_info> of each L<primary_key|/set_primary_key>
638
639 =over 4
640
641 =item Arguments: $sequence_name
642
643 =item Return value: undefined
644
645 =back
646
647 =cut
648
649 sub sequence {
650   my ($self,$seq) = @_;
651
652   my @pks = $self->primary_columns
653     or return;
654
655   $_->{sequence} = $seq
656     for values %{ $self->columns_info (\@pks) };
657 }
658
659
660 =head2 add_unique_constraint
661
662 =over 4
663
664 =item Arguments: $name?, \@colnames
665
666 =item Return value: undefined
667
668 =back
669
670 Declare a unique constraint on this source. Call once for each unique
671 constraint.
672
673   # For UNIQUE (column1, column2)
674   __PACKAGE__->add_unique_constraint(
675     constraint_name => [ qw/column1 column2/ ],
676   );
677
678 Alternatively, you can specify only the columns:
679
680   __PACKAGE__->add_unique_constraint([ qw/column1 column2/ ]);
681
682 This will result in a unique constraint named
683 C<table_column1_column2>, where C<table> is replaced with the table
684 name.
685
686 Unique constraints are used, for example, when you pass the constraint
687 name as the C<key> attribute to L<DBIx::Class::ResultSet/find>. Then
688 only columns in the constraint are searched.
689
690 Throws an error if any of the given column names do not yet exist on
691 the result source.
692
693 =cut
694
695 sub add_unique_constraint {
696   my $self = shift;
697
698   if (@_ > 2) {
699     $self->throw_exception(
700         'add_unique_constraint() does not accept multiple constraints, use '
701       . 'add_unique_constraints() instead'
702     );
703   }
704
705   my $cols = pop @_;
706   if (ref $cols ne 'ARRAY') {
707     $self->throw_exception (
708       'Expecting an arrayref of constraint columns, got ' . ($cols||'NOTHING')
709     );
710   }
711
712   my $name = shift @_;
713
714   $name ||= $self->name_unique_constraint($cols);
715
716   foreach my $col (@$cols) {
717     $self->throw_exception("No such column $col on table " . $self->name)
718       unless $self->has_column($col);
719   }
720
721   my %unique_constraints = $self->unique_constraints;
722   $unique_constraints{$name} = $cols;
723   $self->_unique_constraints(\%unique_constraints);
724 }
725
726 =head2 add_unique_constraints
727
728 =over 4
729
730 =item Arguments: @constraints
731
732 =item Return value: undefined
733
734 =back
735
736 Declare multiple unique constraints on this source.
737
738   __PACKAGE__->add_unique_constraints(
739     constraint_name1 => [ qw/column1 column2/ ],
740     constraint_name2 => [ qw/column2 column3/ ],
741   );
742
743 Alternatively, you can specify only the columns:
744
745   __PACKAGE__->add_unique_constraints(
746     [ qw/column1 column2/ ],
747     [ qw/column3 column4/ ]
748   );
749
750 This will result in unique constraints named C<table_column1_column2> and
751 C<table_column3_column4>, where C<table> is replaced with the table name.
752
753 Throws an error if any of the given column names do not yet exist on
754 the result source.
755
756 See also L</add_unique_constraint>.
757
758 =cut
759
760 sub add_unique_constraints {
761   my $self = shift;
762   my @constraints = @_;
763
764   if ( !(@constraints % 2) && first { ref $_ ne 'ARRAY' } @constraints ) {
765     # with constraint name
766     while (my ($name, $constraint) = splice @constraints, 0, 2) {
767       $self->add_unique_constraint($name => $constraint);
768     }
769   }
770   else {
771     # no constraint name
772     foreach my $constraint (@constraints) {
773       $self->add_unique_constraint($constraint);
774     }
775   }
776 }
777
778 =head2 name_unique_constraint
779
780 =over 4
781
782 =item Arguments: \@colnames
783
784 =item Return value: Constraint name
785
786 =back
787
788   $source->table('mytable');
789   $source->name_unique_constraint(['col1', 'col2']);
790   # returns
791   'mytable_col1_col2'
792
793 Return a name for a unique constraint containing the specified
794 columns. The name is created by joining the table name and each column
795 name, using an underscore character.
796
797 For example, a constraint on a table named C<cd> containing the columns
798 C<artist> and C<title> would result in a constraint name of C<cd_artist_title>.
799
800 This is used by L</add_unique_constraint> if you do not specify the
801 optional constraint name.
802
803 =cut
804
805 sub name_unique_constraint {
806   my ($self, $cols) = @_;
807
808   my $name = $self->name;
809   $name = $$name if (ref $name eq 'SCALAR');
810
811   return join '_', $name, @$cols;
812 }
813
814 =head2 unique_constraints
815
816 =over 4
817
818 =item Arguments: None
819
820 =item Return value: Hash of unique constraint data
821
822 =back
823
824   $source->unique_constraints();
825
826 Read-only accessor which returns a hash of unique constraints on this
827 source.
828
829 The hash is keyed by constraint name, and contains an arrayref of
830 column names as values.
831
832 =cut
833
834 sub unique_constraints {
835   return %{shift->_unique_constraints||{}};
836 }
837
838 =head2 unique_constraint_names
839
840 =over 4
841
842 =item Arguments: None
843
844 =item Return value: Unique constraint names
845
846 =back
847
848   $source->unique_constraint_names();
849
850 Returns the list of unique constraint names defined on this source.
851
852 =cut
853
854 sub unique_constraint_names {
855   my ($self) = @_;
856
857   my %unique_constraints = $self->unique_constraints;
858
859   return keys %unique_constraints;
860 }
861
862 =head2 unique_constraint_columns
863
864 =over 4
865
866 =item Arguments: $constraintname
867
868 =item Return value: List of constraint columns
869
870 =back
871
872   $source->unique_constraint_columns('myconstraint');
873
874 Returns the list of columns that make up the specified unique constraint.
875
876 =cut
877
878 sub unique_constraint_columns {
879   my ($self, $constraint_name) = @_;
880
881   my %unique_constraints = $self->unique_constraints;
882
883   $self->throw_exception(
884     "Unknown unique constraint $constraint_name on '" . $self->name . "'"
885   ) unless exists $unique_constraints{$constraint_name};
886
887   return @{ $unique_constraints{$constraint_name} };
888 }
889
890 =head2 sqlt_deploy_callback
891
892 =over
893
894 =item Arguments: $callback_name | \&callback_code
895
896 =item Return value: $callback_name | \&callback_code
897
898 =back
899
900   __PACKAGE__->sqlt_deploy_callback('mycallbackmethod');
901
902    or
903
904   __PACKAGE__->sqlt_deploy_callback(sub {
905     my ($source_instance, $sqlt_table) = @_;
906     ...
907   } );
908
909 An accessor to set a callback to be called during deployment of
910 the schema via L<DBIx::Class::Schema/create_ddl_dir> or
911 L<DBIx::Class::Schema/deploy>.
912
913 The callback can be set as either a code reference or the name of a
914 method in the current result class.
915
916 Defaults to L</default_sqlt_deploy_hook>.
917
918 Your callback will be passed the $source object representing the
919 ResultSource instance being deployed, and the
920 L<SQL::Translator::Schema::Table> object being created from it. The
921 callback can be used to manipulate the table object or add your own
922 customised indexes. If you need to manipulate a non-table object, use
923 the L<DBIx::Class::Schema/sqlt_deploy_hook>.
924
925 See L<DBIx::Class::Manual::Cookbook/Adding Indexes And Functions To
926 Your SQL> for examples.
927
928 This sqlt deployment callback can only be used to manipulate
929 SQL::Translator objects as they get turned into SQL. To execute
930 post-deploy statements which SQL::Translator does not currently
931 handle, override L<DBIx::Class::Schema/deploy> in your Schema class
932 and call L<dbh_do|DBIx::Class::Storage::DBI/dbh_do>.
933
934 =head2 default_sqlt_deploy_hook
935
936 This is the default deploy hook implementation which checks if your
937 current Result class has a C<sqlt_deploy_hook> method, and if present
938 invokes it B<on the Result class directly>. This is to preserve the
939 semantics of C<sqlt_deploy_hook> which was originally designed to expect
940 the Result class name and the
941 L<$sqlt_table instance|SQL::Translator::Schema::Table> of the table being
942 deployed.
943
944 =cut
945
946 sub default_sqlt_deploy_hook {
947   my $self = shift;
948
949   my $class = $self->result_class;
950
951   if ($class and $class->can('sqlt_deploy_hook')) {
952     $class->sqlt_deploy_hook(@_);
953   }
954 }
955
956 sub _invoke_sqlt_deploy_hook {
957   my $self = shift;
958   if ( my $hook = $self->sqlt_deploy_callback) {
959     $self->$hook(@_);
960   }
961 }
962
963 =head2 resultset
964
965 =over 4
966
967 =item Arguments: None
968
969 =item Return value: $resultset
970
971 =back
972
973 Returns a resultset for the given source. This will initially be created
974 on demand by calling
975
976   $self->resultset_class->new($self, $self->resultset_attributes)
977
978 but is cached from then on unless resultset_class changes.
979
980 =head2 resultset_class
981
982 =over 4
983
984 =item Arguments: $classname
985
986 =item Return value: $classname
987
988 =back
989
990   package My::Schema::ResultSet::Artist;
991   use base 'DBIx::Class::ResultSet';
992   ...
993
994   # In the result class
995   __PACKAGE__->resultset_class('My::Schema::ResultSet::Artist');
996
997   # Or in code
998   $source->resultset_class('My::Schema::ResultSet::Artist');
999
1000 Set the class of the resultset. This is useful if you want to create your
1001 own resultset methods. Create your own class derived from
1002 L<DBIx::Class::ResultSet>, and set it here. If called with no arguments,
1003 this method returns the name of the existing resultset class, if one
1004 exists.
1005
1006 =head2 resultset_attributes
1007
1008 =over 4
1009
1010 =item Arguments: \%attrs
1011
1012 =item Return value: \%attrs
1013
1014 =back
1015
1016   # In the result class
1017   __PACKAGE__->resultset_attributes({ order_by => [ 'id' ] });
1018
1019   # Or in code
1020   $source->resultset_attributes({ order_by => [ 'id' ] });
1021
1022 Store a collection of resultset attributes, that will be set on every
1023 L<DBIx::Class::ResultSet> produced from this result source. For a full
1024 list see L<DBIx::Class::ResultSet/ATTRIBUTES>.
1025
1026 =cut
1027
1028 sub resultset {
1029   my $self = shift;
1030   $self->throw_exception(
1031     'resultset does not take any arguments. If you want another resultset, '.
1032     'call it on the schema instead.'
1033   ) if scalar @_;
1034
1035   $self->resultset_class->new(
1036     $self,
1037     {
1038       try { %{$self->schema->default_resultset_attributes} },
1039       %{$self->{resultset_attributes}},
1040     },
1041   );
1042 }
1043
1044 =head2 source_name
1045
1046 =over 4
1047
1048 =item Arguments: $source_name
1049
1050 =item Result value: $source_name
1051
1052 =back
1053
1054 Set an alternate name for the result source when it is loaded into a schema.
1055 This is useful if you want to refer to a result source by a name other than
1056 its class name.
1057
1058   package ArchivedBooks;
1059   use base qw/DBIx::Class/;
1060   __PACKAGE__->table('books_archive');
1061   __PACKAGE__->source_name('Books');
1062
1063   # from your schema...
1064   $schema->resultset('Books')->find(1);
1065
1066 =head2 from
1067
1068 =over 4
1069
1070 =item Arguments: None
1071
1072 =item Return value: FROM clause
1073
1074 =back
1075
1076   my $from_clause = $source->from();
1077
1078 Returns an expression of the source to be supplied to storage to specify
1079 retrieval from this source. In the case of a database, the required FROM
1080 clause contents.
1081
1082 =cut
1083
1084 sub from { die 'Virtual method!' }
1085
1086 =head2 schema
1087
1088 =over 4
1089
1090 =item Arguments: $schema
1091
1092 =item Return value: A schema object
1093
1094 =back
1095
1096   my $schema = $source->schema();
1097
1098 Sets and/or returns the L<DBIx::Class::Schema> object to which this
1099 result source instance has been attached to.
1100
1101 =cut
1102
1103 sub schema {
1104   if (@_ > 1) {
1105     $_[0]->{schema} = $_[1];
1106   }
1107   else {
1108     $_[0]->{schema} || do {
1109       my $name = $_[0]->{source_name} || '_unnamed_';
1110       my $err = 'Unable to perform storage-dependent operations with a detached result source '
1111               . "(source '$name' is not associated with a schema).";
1112
1113       $err .= ' You need to use $schema->thaw() or manually set'
1114             . ' $DBIx::Class::ResultSourceHandle::thaw_schema while thawing.'
1115         if $_[0]->{_detached_thaw};
1116
1117       DBIx::Class::Exception->throw($err);
1118     };
1119   }
1120 }
1121
1122 =head2 storage
1123
1124 =over 4
1125
1126 =item Arguments: None
1127
1128 =item Return value: A Storage object
1129
1130 =back
1131
1132   $source->storage->debug(1);
1133
1134 Returns the storage handle for the current schema.
1135
1136 See also: L<DBIx::Class::Storage>
1137
1138 =cut
1139
1140 sub storage { shift->schema->storage; }
1141
1142 =head2 add_relationship
1143
1144 =over 4
1145
1146 =item Arguments: $relname, $related_source_name, \%cond, [ \%attrs ]
1147
1148 =item Return value: 1/true if it succeeded
1149
1150 =back
1151
1152   $source->add_relationship('relname', 'related_source', $cond, $attrs);
1153
1154 L<DBIx::Class::Relationship> describes a series of methods which
1155 create pre-defined useful types of relationships. Look there first
1156 before using this method directly.
1157
1158 The relationship name can be arbitrary, but must be unique for each
1159 relationship attached to this result source. 'related_source' should
1160 be the name with which the related result source was registered with
1161 the current schema. For example:
1162
1163   $schema->source('Book')->add_relationship('reviews', 'Review', {
1164     'foreign.book_id' => 'self.id',
1165   });
1166
1167 The condition C<$cond> needs to be an L<SQL::Abstract>-style
1168 representation of the join between the tables. For example, if you're
1169 creating a relation from Author to Book,
1170
1171   { 'foreign.author_id' => 'self.id' }
1172
1173 will result in the JOIN clause
1174
1175   author me JOIN book foreign ON foreign.author_id = me.id
1176
1177 You can specify as many foreign => self mappings as necessary.
1178
1179 Valid attributes are as follows:
1180
1181 =over 4
1182
1183 =item join_type
1184
1185 Explicitly specifies the type of join to use in the relationship. Any
1186 SQL join type is valid, e.g. C<LEFT> or C<RIGHT>. It will be placed in
1187 the SQL command immediately before C<JOIN>.
1188
1189 =item proxy
1190
1191 An arrayref containing a list of accessors in the foreign class to proxy in
1192 the main class. If, for example, you do the following:
1193
1194   CD->might_have(liner_notes => 'LinerNotes', undef, {
1195     proxy => [ qw/notes/ ],
1196   });
1197
1198 Then, assuming LinerNotes has an accessor named notes, you can do:
1199
1200   my $cd = CD->find(1);
1201   # set notes -- LinerNotes object is created if it doesn't exist
1202   $cd->notes('Notes go here');
1203
1204 =item accessor
1205
1206 Specifies the type of accessor that should be created for the
1207 relationship. Valid values are C<single> (for when there is only a single
1208 related object), C<multi> (when there can be many), and C<filter> (for
1209 when there is a single related object, but you also want the relationship
1210 accessor to double as a column accessor). For C<multi> accessors, an
1211 add_to_* method is also created, which calls C<create_related> for the
1212 relationship.
1213
1214 =back
1215
1216 Throws an exception if the condition is improperly supplied, or cannot
1217 be resolved.
1218
1219 =cut
1220
1221 sub add_relationship {
1222   my ($self, $rel, $f_source_name, $cond, $attrs) = @_;
1223   $self->throw_exception("Can't create relationship without join condition")
1224     unless $cond;
1225   $attrs ||= {};
1226
1227   # Check foreign and self are right in cond
1228   if ( (ref $cond ||'') eq 'HASH') {
1229     for (keys %$cond) {
1230       $self->throw_exception("Keys of condition should be of form 'foreign.col', not '$_'")
1231         if /\./ && !/^foreign\./;
1232     }
1233   }
1234
1235   my %rels = %{ $self->_relationships };
1236   $rels{$rel} = { class => $f_source_name,
1237                   source => $f_source_name,
1238                   cond  => $cond,
1239                   attrs => $attrs };
1240   $self->_relationships(\%rels);
1241
1242   return $self;
1243
1244 # XXX disabled. doesn't work properly currently. skip in tests.
1245
1246   my $f_source = $self->schema->source($f_source_name);
1247   unless ($f_source) {
1248     $self->ensure_class_loaded($f_source_name);
1249     $f_source = $f_source_name->result_source;
1250     #my $s_class = ref($self->schema);
1251     #$f_source_name =~ m/^${s_class}::(.*)$/;
1252     #$self->schema->register_class(($1 || $f_source_name), $f_source_name);
1253     #$f_source = $self->schema->source($f_source_name);
1254   }
1255   return unless $f_source; # Can't test rel without f_source
1256
1257   try { $self->_resolve_join($rel, 'me', {}, []) }
1258   catch {
1259     # If the resolve failed, back out and re-throw the error
1260     delete $rels{$rel};
1261     $self->_relationships(\%rels);
1262     $self->throw_exception("Error creating relationship $rel: $_");
1263   };
1264
1265   1;
1266 }
1267
1268 =head2 relationships
1269
1270 =over 4
1271
1272 =item Arguments: None
1273
1274 =item Return value: List of relationship names
1275
1276 =back
1277
1278   my @relnames = $source->relationships();
1279
1280 Returns all relationship names for this source.
1281
1282 =cut
1283
1284 sub relationships {
1285   return keys %{shift->_relationships};
1286 }
1287
1288 =head2 relationship_info
1289
1290 =over 4
1291
1292 =item Arguments: $relname
1293
1294 =item Return value: Hashref of relation data,
1295
1296 =back
1297
1298 Returns a hash of relationship information for the specified relationship
1299 name. The keys/values are as specified for L</add_relationship>.
1300
1301 =cut
1302
1303 sub relationship_info {
1304   my ($self, $rel) = @_;
1305   return $self->_relationships->{$rel};
1306 }
1307
1308 =head2 has_relationship
1309
1310 =over 4
1311
1312 =item Arguments: $rel
1313
1314 =item Return value: 1/0 (true/false)
1315
1316 =back
1317
1318 Returns true if the source has a relationship of this name, false otherwise.
1319
1320 =cut
1321
1322 sub has_relationship {
1323   my ($self, $rel) = @_;
1324   return exists $self->_relationships->{$rel};
1325 }
1326
1327 =head2 reverse_relationship_info
1328
1329 =over 4
1330
1331 =item Arguments: $relname
1332
1333 =item Return value: Hashref of relationship data
1334
1335 =back
1336
1337 Looks through all the relationships on the source this relationship
1338 points to, looking for one whose condition is the reverse of the
1339 condition on this relationship.
1340
1341 A common use of this is to find the name of the C<belongs_to> relation
1342 opposing a C<has_many> relation. For definition of these look in
1343 L<DBIx::Class::Relationship>.
1344
1345 The returned hashref is keyed by the name of the opposing
1346 relationship, and contains its data in the same manner as
1347 L</relationship_info>.
1348
1349 =cut
1350
1351 sub reverse_relationship_info {
1352   my ($self, $rel) = @_;
1353
1354   my $rel_info = $self->relationship_info($rel)
1355     or $self->throw_exception("No such relationship '$rel'");
1356
1357   my $ret = {};
1358
1359   return $ret unless ((ref $rel_info->{cond}) eq 'HASH');
1360
1361   my $stripped_cond = $self->__strip_relcond ($rel_info->{cond});
1362
1363   my $rsrc_schema_moniker = $self->source_name
1364     if try { $self->schema };
1365
1366   # this may be a partial schema or something else equally esoteric
1367   my $other_rsrc = try { $self->related_source($rel) }
1368     or return $ret;
1369
1370   # Get all the relationships for that source that related to this source
1371   # whose foreign column set are our self columns on $rel and whose self
1372   # columns are our foreign columns on $rel
1373   foreach my $other_rel ($other_rsrc->relationships) {
1374
1375     # only consider stuff that points back to us
1376     # "us" here is tricky - if we are in a schema registration, we want
1377     # to use the source_names, otherwise we will use the actual classes
1378
1379     # the schema may be partial
1380     my $roundtrip_rsrc = try { $other_rsrc->related_source($other_rel) }
1381       or next;
1382
1383     if ($rsrc_schema_moniker and try { $roundtrip_rsrc->schema } ) {
1384       next unless $rsrc_schema_moniker eq $roundtrip_rsrc->source_name;
1385     }
1386     else {
1387       next unless $self->result_class eq $roundtrip_rsrc->result_class;
1388     }
1389
1390     my $other_rel_info = $other_rsrc->relationship_info($other_rel);
1391
1392     # this can happen when we have a self-referential class
1393     next if $other_rel_info eq $rel_info;
1394
1395     next unless ref $other_rel_info->{cond} eq 'HASH';
1396     my $other_stripped_cond = $self->__strip_relcond($other_rel_info->{cond});
1397
1398     $ret->{$other_rel} = $other_rel_info if (
1399       $self->_compare_relationship_keys (
1400         [ keys %$stripped_cond ], [ values %$other_stripped_cond ]
1401       )
1402         and
1403       $self->_compare_relationship_keys (
1404         [ values %$stripped_cond ], [ keys %$other_stripped_cond ]
1405       )
1406     );
1407   }
1408
1409   return $ret;
1410 }
1411
1412 # all this does is removes the foreign/self prefix from a condition
1413 sub __strip_relcond {
1414   +{
1415     map
1416       { map { /^ (?:foreign|self) \. (\w+) $/x } ($_, $_[1]{$_}) }
1417       keys %{$_[1]}
1418   }
1419 }
1420
1421 sub compare_relationship_keys {
1422   carp 'compare_relationship_keys is a private method, stop calling it';
1423   my $self = shift;
1424   $self->_compare_relationship_keys (@_);
1425 }
1426
1427 # Returns true if both sets of keynames are the same, false otherwise.
1428 sub _compare_relationship_keys {
1429 #  my ($self, $keys1, $keys2) = @_;
1430   return
1431     join ("\x00", sort @{$_[1]})
1432       eq
1433     join ("\x00", sort @{$_[2]})
1434   ;
1435 }
1436
1437 # Returns the {from} structure used to express JOIN conditions
1438 sub _resolve_join {
1439   my ($self, $join, $alias, $seen, $jpath, $parent_force_left) = @_;
1440
1441   # we need a supplied one, because we do in-place modifications, no returns
1442   $self->throw_exception ('You must supply a seen hashref as the 3rd argument to _resolve_join')
1443     unless ref $seen eq 'HASH';
1444
1445   $self->throw_exception ('You must supply a joinpath arrayref as the 4th argument to _resolve_join')
1446     unless ref $jpath eq 'ARRAY';
1447
1448   $jpath = [@$jpath]; # copy
1449
1450   if (not defined $join) {
1451     return ();
1452   }
1453   elsif (ref $join eq 'ARRAY') {
1454     return
1455       map {
1456         $self->_resolve_join($_, $alias, $seen, $jpath, $parent_force_left);
1457       } @$join;
1458   }
1459   elsif (ref $join eq 'HASH') {
1460
1461     my @ret;
1462     for my $rel (keys %$join) {
1463
1464       my $rel_info = $self->relationship_info($rel)
1465         or $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
1466
1467       my $force_left = $parent_force_left;
1468       $force_left ||= lc($rel_info->{attrs}{join_type}||'') eq 'left';
1469
1470       # the actual seen value will be incremented by the recursion
1471       my $as = $self->storage->relname_to_table_alias(
1472         $rel, ($seen->{$rel} && $seen->{$rel} + 1)
1473       );
1474
1475       push @ret, (
1476         $self->_resolve_join($rel, $alias, $seen, [@$jpath], $force_left),
1477         $self->related_source($rel)->_resolve_join(
1478           $join->{$rel}, $as, $seen, [@$jpath, { $rel => $as }], $force_left
1479         )
1480       );
1481     }
1482     return @ret;
1483
1484   }
1485   elsif (ref $join) {
1486     $self->throw_exception("No idea how to resolve join reftype ".ref $join);
1487   }
1488   else {
1489     my $count = ++$seen->{$join};
1490     my $as = $self->storage->relname_to_table_alias(
1491       $join, ($count > 1 && $count)
1492     );
1493
1494     my $rel_info = $self->relationship_info($join)
1495       or $self->throw_exception("No such relationship $join on " . $self->source_name);
1496
1497     my $rel_src = $self->related_source($join);
1498     return [ { $as => $rel_src->from,
1499                -rsrc => $rel_src,
1500                -join_type => $parent_force_left
1501                   ? 'left'
1502                   : $rel_info->{attrs}{join_type}
1503                 ,
1504                -join_path => [@$jpath, { $join => $as } ],
1505                -is_single => (
1506                   $rel_info->{attrs}{accessor}
1507                     &&
1508                   first { $rel_info->{attrs}{accessor} eq $_ } (qw/single filter/)
1509                 ),
1510                -alias => $as,
1511                -relation_chain_depth => $seen->{-relation_chain_depth} || 0,
1512              },
1513              $self->_resolve_condition($rel_info->{cond}, $as, $alias, $join)
1514           ];
1515   }
1516 }
1517
1518 sub pk_depends_on {
1519   carp 'pk_depends_on is a private method, stop calling it';
1520   my $self = shift;
1521   $self->_pk_depends_on (@_);
1522 }
1523
1524 # Determines whether a relation is dependent on an object from this source
1525 # having already been inserted. Takes the name of the relationship and a
1526 # hashref of columns of the related object.
1527 sub _pk_depends_on {
1528   my ($self, $relname, $rel_data) = @_;
1529
1530   my $relinfo = $self->relationship_info($relname);
1531
1532   # don't assume things if the relationship direction is specified
1533   return $relinfo->{attrs}{is_foreign_key_constraint}
1534     if exists ($relinfo->{attrs}{is_foreign_key_constraint});
1535
1536   my $cond = $relinfo->{cond};
1537   return 0 unless ref($cond) eq 'HASH';
1538
1539   # map { foreign.foo => 'self.bar' } to { bar => 'foo' }
1540   my $keyhash = { map { my $x = $_; $x =~ s/.*\.//; $x; } reverse %$cond };
1541
1542   # assume anything that references our PK probably is dependent on us
1543   # rather than vice versa, unless the far side is (a) defined or (b)
1544   # auto-increment
1545   my $rel_source = $self->related_source($relname);
1546
1547   foreach my $p ($self->primary_columns) {
1548     if (exists $keyhash->{$p}) {
1549       unless (defined($rel_data->{$keyhash->{$p}})
1550               || $rel_source->column_info($keyhash->{$p})
1551                             ->{is_auto_increment}) {
1552         return 0;
1553       }
1554     }
1555   }
1556
1557   return 1;
1558 }
1559
1560 sub resolve_condition {
1561   carp 'resolve_condition is a private method, stop calling it';
1562   my $self = shift;
1563   $self->_resolve_condition (@_);
1564 }
1565
1566 our $UNRESOLVABLE_CONDITION = \ '1 = 0';
1567
1568 # Resolves the passed condition to a concrete query fragment and a flag
1569 # indicating whether this is a cross-table condition. Also an optional
1570 # list of non-triviail values (notmally conditions) returned as a part
1571 # of a joinfree condition hash
1572 sub _resolve_condition {
1573   my ($self, $cond, $as, $for, $relname) = @_;
1574
1575   my $obj_rel = !!blessed $for;
1576
1577   if (ref $cond eq 'CODE') {
1578     my $relalias = $obj_rel ? 'me' : $as;
1579
1580     my ($crosstable_cond, $joinfree_cond) = $cond->({
1581       self_alias => $obj_rel ? $as : $for,
1582       foreign_alias => $relalias,
1583       self_resultsource => $self,
1584       foreign_relname => $relname || ($obj_rel ? $as : $for),
1585       self_rowobj => $obj_rel ? $for : undef
1586     });
1587
1588     my $cond_cols;
1589     if ($joinfree_cond) {
1590
1591       # FIXME sanity check until things stabilize, remove at some point
1592       $self->throw_exception (
1593         "A join-free condition returned for relationship '$relname' without a row-object to chain from"
1594       ) unless $obj_rel;
1595
1596       # FIXME another sanity check
1597       if (
1598         ref $joinfree_cond ne 'HASH'
1599           or
1600         first { $_ !~ /^\Q$relalias.\E.+/ } keys %$joinfree_cond
1601       ) {
1602         $self->throw_exception (
1603           "The join-free condition returned for relationship '$relname' must be a hash "
1604          .'reference with all keys being valid columns on the related result source'
1605         );
1606       }
1607
1608       # normalize
1609       for (values %$joinfree_cond) {
1610         $_ = $_->{'='} if (
1611           ref $_ eq 'HASH'
1612             and
1613           keys %$_ == 1
1614             and
1615           exists $_->{'='}
1616         );
1617       }
1618
1619       # see which parts of the joinfree cond are conditionals
1620       my $relcol_list = { map { $_ => 1 } $self->related_source($relname)->columns };
1621
1622       for my $c (keys %$joinfree_cond) {
1623         my ($colname) = $c =~ /^ (?: \Q$relalias.\E )? (.+)/x;
1624
1625         unless ($relcol_list->{$colname}) {
1626           push @$cond_cols, $colname;
1627           next;
1628         }
1629
1630         if (
1631           ref $joinfree_cond->{$c}
1632             and
1633           ref $joinfree_cond->{$c} ne 'SCALAR'
1634             and
1635           ref $joinfree_cond->{$c} ne 'REF'
1636         ) {
1637           push @$cond_cols, $colname;
1638           next;
1639         }
1640       }
1641
1642       return wantarray ? ($joinfree_cond, 0, $cond_cols) : $joinfree_cond;
1643     }
1644     else {
1645       return wantarray ? ($crosstable_cond, 1) : $crosstable_cond;
1646     }
1647   }
1648   elsif (ref $cond eq 'HASH') {
1649     my %ret;
1650     foreach my $k (keys %{$cond}) {
1651       my $v = $cond->{$k};
1652       # XXX should probably check these are valid columns
1653       $k =~ s/^foreign\.// ||
1654         $self->throw_exception("Invalid rel cond key ${k}");
1655       $v =~ s/^self\.// ||
1656         $self->throw_exception("Invalid rel cond val ${v}");
1657       if (ref $for) { # Object
1658         #warn "$self $k $for $v";
1659         unless ($for->has_column_loaded($v)) {
1660           if ($for->in_storage) {
1661             $self->throw_exception(sprintf
1662               "Unable to resolve relationship '%s' from object %s: column '%s' not "
1663             . 'loaded from storage (or not passed to new() prior to insert()). You '
1664             . 'probably need to call ->discard_changes to get the server-side defaults '
1665             . 'from the database.',
1666               $as,
1667               $for,
1668               $v,
1669             );
1670           }
1671           return $UNRESOLVABLE_CONDITION;
1672         }
1673         $ret{$k} = $for->get_column($v);
1674         #$ret{$k} = $for->get_column($v) if $for->has_column_loaded($v);
1675         #warn %ret;
1676       } elsif (!defined $for) { # undef, i.e. "no object"
1677         $ret{$k} = undef;
1678       } elsif (ref $as eq 'HASH') { # reverse hashref
1679         $ret{$v} = $as->{$k};
1680       } elsif (ref $as) { # reverse object
1681         $ret{$v} = $as->get_column($k);
1682       } elsif (!defined $as) { # undef, i.e. "no reverse object"
1683         $ret{$v} = undef;
1684       } else {
1685         $ret{"${as}.${k}"} = { -ident => "${for}.${v}" };
1686       }
1687     }
1688
1689     return wantarray
1690       ? ( \%ret, ($obj_rel || !defined $as || ref $as) ? 0 : 1 )
1691       : \%ret
1692     ;
1693   }
1694   elsif (ref $cond eq 'ARRAY') {
1695     my (@ret, $crosstable);
1696     for (@$cond) {
1697       my ($cond, $crosstab) = $self->_resolve_condition($_, $as, $for, $relname);
1698       push @ret, $cond;
1699       $crosstable ||= $crosstab;
1700     }
1701     return wantarray ? (\@ret, $crosstable) : \@ret;
1702   }
1703   else {
1704     $self->throw_exception ("Can't handle condition $cond for relationship '$relname' yet :(");
1705   }
1706 }
1707
1708 # Accepts one or more relationships for the current source and returns an
1709 # array of column names for each of those relationships. Column names are
1710 # prefixed relative to the current source, in accordance with where they appear
1711 # in the supplied relationships.
1712
1713 sub _resolve_prefetch {
1714   my ($self, $pre, $alias, $alias_map, $order, $collapse, $pref_path) = @_;
1715   $pref_path ||= [];
1716
1717   if (not defined $pre) {
1718     return ();
1719   }
1720   elsif( ref $pre eq 'ARRAY' ) {
1721     return
1722       map { $self->_resolve_prefetch( $_, $alias, $alias_map, $order, $collapse, [ @$pref_path ] ) }
1723         @$pre;
1724   }
1725   elsif( ref $pre eq 'HASH' ) {
1726     my @ret =
1727     map {
1728       $self->_resolve_prefetch($_, $alias, $alias_map, $order, $collapse, [ @$pref_path ] ),
1729       $self->related_source($_)->_resolve_prefetch(
1730                $pre->{$_}, "${alias}.$_", $alias_map, $order, $collapse, [ @$pref_path, $_] )
1731     } keys %$pre;
1732     return @ret;
1733   }
1734   elsif( ref $pre ) {
1735     $self->throw_exception(
1736       "don't know how to resolve prefetch reftype ".ref($pre));
1737   }
1738   else {
1739     my $p = $alias_map;
1740     $p = $p->{$_} for (@$pref_path, $pre);
1741
1742     $self->throw_exception (
1743       "Unable to resolve prefetch '$pre' - join alias map does not contain an entry for path: "
1744       . join (' -> ', @$pref_path, $pre)
1745     ) if (ref $p->{-join_aliases} ne 'ARRAY' or not @{$p->{-join_aliases}} );
1746
1747     my $as = shift @{$p->{-join_aliases}};
1748
1749     my $rel_info = $self->relationship_info( $pre );
1750     $self->throw_exception( $self->source_name . " has no such relationship '$pre'" )
1751       unless $rel_info;
1752     my $as_prefix = ($alias =~ /^.*?\.(.+)$/ ? $1.'.' : '');
1753     my $rel_source = $self->related_source($pre);
1754
1755     if ($rel_info->{attrs}{accessor} && $rel_info->{attrs}{accessor} eq 'multi') {
1756       $self->throw_exception(
1757         "Can't prefetch has_many ${pre} (join cond too complex)")
1758         unless ref($rel_info->{cond}) eq 'HASH';
1759       my $dots = @{[$as_prefix =~ m/\./g]} + 1; # +1 to match the ".${as_prefix}"
1760
1761       if (my ($fail) = grep { @{[$_ =~ m/\./g]} == $dots }
1762                          keys %{$collapse}) {
1763         my ($last) = ($fail =~ /([^\.]+)$/);
1764         carp (
1765           "Prefetching multiple has_many rels ${last} and ${pre} "
1766           .(length($as_prefix)
1767             ? "at the same level (${as_prefix}) "
1768             : "at top level "
1769           )
1770           . 'will explode the number of row objects retrievable via ->next or ->all. '
1771           . 'Use at your own risk.'
1772         );
1773       }
1774
1775       #my @col = map { (/^self\.(.+)$/ ? ("${as_prefix}.$1") : ()); }
1776       #              values %{$rel_info->{cond}};
1777       $collapse->{".${as_prefix}${pre}"} = [ $rel_source->_pri_cols ];
1778         # action at a distance. prepending the '.' allows simpler code
1779         # in ResultSet->_collapse_result
1780       my @key = map { (/^foreign\.(.+)$/ ? ($1) : ()); }
1781                     keys %{$rel_info->{cond}};
1782       push @$order, map { "${as}.$_" } @key;
1783
1784       if (my $rel_order = $rel_info->{attrs}{order_by}) {
1785         # this is kludgy and incomplete, I am well aware
1786         # but the parent method is going away entirely anyway
1787         # so sod it
1788         my $sql_maker = $self->storage->sql_maker;
1789         my ($orig_ql, $orig_qr) = $sql_maker->_quote_chars;
1790         my $sep = $sql_maker->name_sep;
1791
1792         # install our own quoter, so we can catch unqualified stuff
1793         local $sql_maker->{quote_char} = ["\x00", "\xFF"];
1794
1795         my $quoted_prefix = "\x00${as}\xFF";
1796
1797         for my $chunk ( $sql_maker->_order_by_chunks ($rel_order) ) {
1798           my @bind;
1799           ($chunk, @bind) = @$chunk if ref $chunk;
1800
1801           $chunk = "${quoted_prefix}${sep}${chunk}"
1802             unless $chunk =~ /\Q$sep/;
1803
1804           $chunk =~ s/\x00/$orig_ql/g;
1805           $chunk =~ s/\xFF/$orig_qr/g;
1806           push @$order, \[$chunk, @bind];
1807         }
1808       }
1809     }
1810
1811     return map { [ "${as}.$_", "${as_prefix}${pre}.$_", ] }
1812       $rel_source->columns;
1813   }
1814 }
1815
1816 =head2 related_source
1817
1818 =over 4
1819
1820 =item Arguments: $relname
1821
1822 =item Return value: $source
1823
1824 =back
1825
1826 Returns the result source object for the given relationship.
1827
1828 =cut
1829
1830 sub related_source {
1831   my ($self, $rel) = @_;
1832   if( !$self->has_relationship( $rel ) ) {
1833     $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
1834   }
1835
1836   # if we are not registered with a schema - just use the prototype
1837   # however if we do have a schema - ask for the source by name (and
1838   # throw in the process if all fails)
1839   if (my $schema = try { $self->schema }) {
1840     $schema->source($self->relationship_info($rel)->{source});
1841   }
1842   else {
1843     my $class = $self->relationship_info($rel)->{class};
1844     $self->ensure_class_loaded($class);
1845     $class->result_source_instance;
1846   }
1847 }
1848
1849 =head2 related_class
1850
1851 =over 4
1852
1853 =item Arguments: $relname
1854
1855 =item Return value: $classname
1856
1857 =back
1858
1859 Returns the class name for objects in the given relationship.
1860
1861 =cut
1862
1863 sub related_class {
1864   my ($self, $rel) = @_;
1865   if( !$self->has_relationship( $rel ) ) {
1866     $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
1867   }
1868   return $self->schema->class($self->relationship_info($rel)->{source});
1869 }
1870
1871 =head2 handle
1872
1873 =over 4
1874
1875 =item Arguments: None
1876
1877 =item Return value: $source_handle
1878
1879 =back
1880
1881 Obtain a new L<result source handle instance|DBIx::Class::ResultSourceHandle>
1882 for this source. Used as a serializable pointer to this resultsource, as it is not
1883 easy (nor advisable) to serialize CODErefs which may very well be present in e.g.
1884 relationship definitions.
1885
1886 =cut
1887
1888 sub handle {
1889   return DBIx::Class::ResultSourceHandle->new({
1890     source_moniker => $_[0]->source_name,
1891
1892     # so that a detached thaw can be re-frozen
1893     $_[0]->{_detached_thaw}
1894       ? ( _detached_source  => $_[0]          )
1895       : ( schema            => $_[0]->schema  )
1896     ,
1897   });
1898 }
1899
1900 {
1901   my $global_phase_destroy;
1902
1903   # SpeedyCGI runs END blocks every cycle but keeps object instances
1904   # hence we have to disable the globaldestroy hatch, and rely on the
1905   # eval trap below (which appears to work, but is risky done so late)
1906   END { $global_phase_destroy = 1 unless $CGI::SpeedyCGI::i_am_speedy }
1907
1908   sub DESTROY {
1909     return if $global_phase_destroy;
1910
1911 ######
1912 # !!! ACHTUNG !!!!
1913 ######
1914 #
1915 # Under no circumstances shall $_[0] be stored anywhere else (like copied to
1916 # a lexical variable, or shifted, or anything else). Doing so will mess up
1917 # the refcount of this particular result source, and will allow the $schema
1918 # we are trying to save to reattach back to the source we are destroying.
1919 # The relevant code checking refcounts is in ::Schema::DESTROY()
1920
1921     # if we are not a schema instance holder - we don't matter
1922     return if(
1923       ! ref $_[0]->{schema}
1924         or
1925       isweak $_[0]->{schema}
1926     );
1927
1928     # weaken our schema hold forcing the schema to find somewhere else to live
1929     # during global destruction (if we have not yet bailed out) this will throw
1930     # which will serve as a signal to not try doing anything else
1931     local $@;
1932     eval {
1933       weaken $_[0]->{schema};
1934       1;
1935     } or do {
1936       $global_phase_destroy = 1;
1937       return;
1938     };
1939
1940
1941     # if schema is still there reintroduce ourselves with strong refs back to us
1942     if ($_[0]->{schema}) {
1943       my $srcregs = $_[0]->{schema}->source_registrations;
1944       for (keys %$srcregs) {
1945         next unless $srcregs->{$_};
1946         $srcregs->{$_} = $_[0] if $srcregs->{$_} == $_[0];
1947       }
1948     }
1949   }
1950 }
1951
1952 sub STORABLE_freeze { Storable::nfreeze($_[0]->handle) }
1953
1954 sub STORABLE_thaw {
1955   my ($self, $cloning, $ice) = @_;
1956   %$self = %{ (Storable::thaw($ice))->resolve };
1957 }
1958
1959 =head2 throw_exception
1960
1961 See L<DBIx::Class::Schema/"throw_exception">.
1962
1963 =cut
1964
1965 sub throw_exception {
1966   my $self = shift;
1967
1968   $self->{schema}
1969     ? $self->{schema}->throw_exception(@_)
1970     : DBIx::Class::Exception->throw(@_)
1971   ;
1972 }
1973
1974 =head2 source_info
1975
1976 Stores a hashref of per-source metadata.  No specific key names
1977 have yet been standardized, the examples below are purely hypothetical
1978 and don't actually accomplish anything on their own:
1979
1980   __PACKAGE__->source_info({
1981     "_tablespace" => 'fast_disk_array_3',
1982     "_engine" => 'InnoDB',
1983   });
1984
1985 =head2 new
1986
1987   $class->new();
1988
1989   $class->new({attribute_name => value});
1990
1991 Creates a new ResultSource object.  Not normally called directly by end users.
1992
1993 =head2 column_info_from_storage
1994
1995 =over
1996
1997 =item Arguments: 1/0 (default: 0)
1998
1999 =item Return value: 1/0
2000
2001 =back
2002
2003   __PACKAGE__->column_info_from_storage(1);
2004
2005 Enables the on-demand automatic loading of the above column
2006 metadata from storage as necessary.  This is *deprecated*, and
2007 should not be used.  It will be removed before 1.0.
2008
2009
2010 =head1 AUTHORS
2011
2012 Matt S. Trout <mst@shadowcatsystems.co.uk>
2013
2014 =head1 LICENSE
2015
2016 You may distribute this code under the same terms as Perl itself.
2017
2018 =cut
2019
2020 1;