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