57d833eae9afb05f174e7dfd5eb48986c71f89e7
[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                   _original_name => $rel,
1335                   cond  => $cond,
1336                   attrs => $attrs };
1337   $self->_relationships(\%rels);
1338
1339   return $self;
1340
1341 # XXX disabled. doesn't work properly currently. skip in tests.
1342
1343   my $f_source = $self->schema->source($f_source_name);
1344   unless ($f_source) {
1345     $self->ensure_class_loaded($f_source_name);
1346     $f_source = $f_source_name->result_source;
1347     #my $s_class = ref($self->schema);
1348     #$f_source_name =~ m/^${s_class}::(.*)$/;
1349     #$self->schema->register_class(($1 || $f_source_name), $f_source_name);
1350     #$f_source = $self->schema->source($f_source_name);
1351   }
1352   return unless $f_source; # Can't test rel without f_source
1353
1354   try { $self->_resolve_join($rel, 'me', {}, []) }
1355   catch {
1356     # If the resolve failed, back out and re-throw the error
1357     delete $rels{$rel};
1358     $self->_relationships(\%rels);
1359     $self->throw_exception("Error creating relationship $rel: $_");
1360   };
1361
1362   1;
1363 }
1364
1365 =head2 relationships
1366
1367 =over 4
1368
1369 =item Arguments: none
1370
1371 =item Return Value: L<@rel_names|DBIx::Class::Relationship>
1372
1373 =back
1374
1375   my @rel_names = $source->relationships();
1376
1377 Returns all relationship names for this source.
1378
1379 =cut
1380
1381 sub relationships {
1382   return keys %{shift->_relationships};
1383 }
1384
1385 =head2 relationship_info
1386
1387 =over 4
1388
1389 =item Arguments: L<$rel_name|DBIx::Class::Relationship>
1390
1391 =item Return Value: L<\%rel_data|DBIx::Class::Relationship::Base/add_relationship>
1392
1393 =back
1394
1395 Returns a hash of relationship information for the specified relationship
1396 name. The keys/values are as specified for L<DBIx::Class::Relationship::Base/add_relationship>.
1397
1398 =cut
1399
1400 sub relationship_info {
1401   #my ($self, $rel) = @_;
1402   return shift->_relationships->{+shift};
1403 }
1404
1405 =head2 has_relationship
1406
1407 =over 4
1408
1409 =item Arguments: L<$rel_name|DBIx::Class::Relationship>
1410
1411 =item Return Value: 1/0 (true/false)
1412
1413 =back
1414
1415 Returns true if the source has a relationship of this name, false otherwise.
1416
1417 =cut
1418
1419 sub has_relationship {
1420   #my ($self, $rel) = @_;
1421   return exists shift->_relationships->{+shift};
1422 }
1423
1424 =head2 reverse_relationship_info
1425
1426 =over 4
1427
1428 =item Arguments: L<$rel_name|DBIx::Class::Relationship>
1429
1430 =item Return Value: L<\%rel_data|DBIx::Class::Relationship::Base/add_relationship>
1431
1432 =back
1433
1434 Looks through all the relationships on the source this relationship
1435 points to, looking for one whose condition is the reverse of the
1436 condition on this relationship.
1437
1438 A common use of this is to find the name of the C<belongs_to> relation
1439 opposing a C<has_many> relation. For definition of these look in
1440 L<DBIx::Class::Relationship>.
1441
1442 The returned hashref is keyed by the name of the opposing
1443 relationship, and contains its data in the same manner as
1444 L</relationship_info>.
1445
1446 =cut
1447
1448 sub reverse_relationship_info {
1449   my ($self, $rel) = @_;
1450
1451   my $rel_info = $self->relationship_info($rel)
1452     or $self->throw_exception("No such relationship '$rel'");
1453
1454   my $ret = {};
1455
1456   return $ret unless ((ref $rel_info->{cond}) eq 'HASH');
1457
1458   my $stripped_cond = $self->__strip_relcond ($rel_info->{cond});
1459
1460   my $registered_source_name = $self->source_name;
1461
1462   # this may be a partial schema or something else equally esoteric
1463   my $other_rsrc = $self->related_source($rel);
1464
1465   # Get all the relationships for that source that related to this source
1466   # whose foreign column set are our self columns on $rel and whose self
1467   # columns are our foreign columns on $rel
1468   foreach my $other_rel ($other_rsrc->relationships) {
1469
1470     # only consider stuff that points back to us
1471     # "us" here is tricky - if we are in a schema registration, we want
1472     # to use the source_names, otherwise we will use the actual classes
1473
1474     # the schema may be partial
1475     my $roundtrip_rsrc = try { $other_rsrc->related_source($other_rel) }
1476       or next;
1477
1478     if ($registered_source_name) {
1479       next if $registered_source_name ne ($roundtrip_rsrc->source_name || '')
1480     }
1481     else {
1482       next if $self->result_class ne $roundtrip_rsrc->result_class;
1483     }
1484
1485     my $other_rel_info = $other_rsrc->relationship_info($other_rel);
1486
1487     # this can happen when we have a self-referential class
1488     next if $other_rel_info eq $rel_info;
1489
1490     next unless ref $other_rel_info->{cond} eq 'HASH';
1491     my $other_stripped_cond = $self->__strip_relcond($other_rel_info->{cond});
1492
1493     $ret->{$other_rel} = $other_rel_info if (
1494       $self->_compare_relationship_keys (
1495         [ keys %$stripped_cond ], [ values %$other_stripped_cond ]
1496       )
1497         and
1498       $self->_compare_relationship_keys (
1499         [ values %$stripped_cond ], [ keys %$other_stripped_cond ]
1500       )
1501     );
1502   }
1503
1504   return $ret;
1505 }
1506
1507 # all this does is removes the foreign/self prefix from a condition
1508 sub __strip_relcond {
1509   +{
1510     map
1511       { map { /^ (?:foreign|self) \. (\w+) $/x } ($_, $_[1]{$_}) }
1512       keys %{$_[1]}
1513   }
1514 }
1515
1516 sub compare_relationship_keys {
1517   carp 'compare_relationship_keys is a private method, stop calling it';
1518   my $self = shift;
1519   $self->_compare_relationship_keys (@_);
1520 }
1521
1522 # Returns true if both sets of keynames are the same, false otherwise.
1523 sub _compare_relationship_keys {
1524 #  my ($self, $keys1, $keys2) = @_;
1525   return
1526     join ("\x00", sort @{$_[1]})
1527       eq
1528     join ("\x00", sort @{$_[2]})
1529   ;
1530 }
1531
1532 # optionally takes either an arrayref of column names, or a hashref of already
1533 # retrieved colinfos
1534 # returns an arrayref of column names of the shortest unique constraint
1535 # (matching some of the input if any), giving preference to the PK
1536 sub _identifying_column_set {
1537   my ($self, $cols) = @_;
1538
1539   my %unique = $self->unique_constraints;
1540   my $colinfos = ref $cols eq 'HASH' ? $cols : $self->columns_info($cols||());
1541
1542   # always prefer the PK first, and then shortest constraints first
1543   USET:
1544   for my $set (delete $unique{primary}, sort { @$a <=> @$b } (values %unique) ) {
1545     next unless $set && @$set;
1546
1547     for (@$set) {
1548       next USET unless ($colinfos->{$_} && !$colinfos->{$_}{is_nullable} );
1549     }
1550
1551     # copy so we can mangle it at will
1552     return [ @$set ];
1553   }
1554
1555   return undef;
1556 }
1557
1558 sub _minimal_valueset_satisfying_constraint {
1559   my $self = shift;
1560   my $args = { ref $_[0] eq 'HASH' ? %{ $_[0] } : @_ };
1561
1562   $args->{columns_info} ||= $self->columns_info;
1563
1564   my $vals = $self->storage->_extract_fixed_condition_columns(
1565     $args->{values},
1566     ($args->{carp_on_nulls} ? 'consider_nulls' : undef ),
1567   );
1568
1569   my $cols;
1570   for my $col ($self->unique_constraint_columns($args->{constraint_name}) ) {
1571     if( ! exists $vals->{$col} or ( $vals->{$col}||'' ) eq UNRESOLVABLE_CONDITION ) {
1572       $cols->{missing}{$col} = undef;
1573     }
1574     elsif( ! defined $vals->{$col} ) {
1575       $cols->{$args->{carp_on_nulls} ? 'undefined' : 'missing'}{$col} = undef;
1576     }
1577     else {
1578       # we need to inject back the '=' as _extract_fixed_condition_columns
1579       # will strip it from literals and values alike, resulting in an invalid
1580       # condition in the end
1581       $cols->{present}{$col} = { '=' => $vals->{$col} };
1582     }
1583
1584     $cols->{fc}{$col} = 1 if (
1585       ( ! $cols->{missing} or ! exists $cols->{missing}{$col} )
1586         and
1587       keys %{ $args->{columns_info}{$col}{_filter_info} || {} }
1588     );
1589   }
1590
1591   $self->throw_exception( sprintf ( "Unable to satisfy requested constraint '%s', missing values for column(s): %s",
1592     $args->{constraint_name},
1593     join (', ', map { "'$_'" } sort keys %{$cols->{missing}} ),
1594   ) ) if $cols->{missing};
1595
1596   $self->throw_exception( sprintf (
1597     "Unable to satisfy requested constraint '%s', FilterColumn values not usable for column(s): %s",
1598     $args->{constraint_name},
1599     join (', ', map { "'$_'" } sort keys %{$cols->{fc}}),
1600   )) if $cols->{fc};
1601
1602   if (
1603     $cols->{undefined}
1604       and
1605     !$ENV{DBIC_NULLABLE_KEY_NOWARN}
1606   ) {
1607     carp_unique ( sprintf (
1608       "NULL/undef values supplied for requested unique constraint '%s' (NULL "
1609     . 'values in column(s): %s). This is almost certainly not what you wanted, '
1610     . 'though you can set DBIC_NULLABLE_KEY_NOWARN to disable this warning.',
1611       $args->{constraint_name},
1612       join (', ', map { "'$_'" } sort keys %{$cols->{undefined}}),
1613     ));
1614   }
1615
1616   return { map { %{ $cols->{$_}||{} } } qw(present undefined) };
1617 }
1618
1619 # Returns the {from} structure used to express JOIN conditions
1620 sub _resolve_join {
1621   my ($self, $join, $alias, $seen, $jpath, $parent_force_left) = @_;
1622
1623   # we need a supplied one, because we do in-place modifications, no returns
1624   $self->throw_exception ('You must supply a seen hashref as the 3rd argument to _resolve_join')
1625     unless ref $seen eq 'HASH';
1626
1627   $self->throw_exception ('You must supply a joinpath arrayref as the 4th argument to _resolve_join')
1628     unless ref $jpath eq 'ARRAY';
1629
1630   $jpath = [@$jpath]; # copy
1631
1632   if (not defined $join or not length $join) {
1633     return ();
1634   }
1635   elsif (ref $join eq 'ARRAY') {
1636     return
1637       map {
1638         $self->_resolve_join($_, $alias, $seen, $jpath, $parent_force_left);
1639       } @$join;
1640   }
1641   elsif (ref $join eq 'HASH') {
1642
1643     my @ret;
1644     for my $rel (keys %$join) {
1645
1646       my $rel_info = $self->relationship_info($rel)
1647         or $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
1648
1649       my $force_left = $parent_force_left;
1650       $force_left ||= lc($rel_info->{attrs}{join_type}||'') eq 'left';
1651
1652       # the actual seen value will be incremented by the recursion
1653       my $as = $self->storage->relname_to_table_alias(
1654         $rel, ($seen->{$rel} && $seen->{$rel} + 1)
1655       );
1656
1657       push @ret, (
1658         $self->_resolve_join($rel, $alias, $seen, [@$jpath], $force_left),
1659         $self->related_source($rel)->_resolve_join(
1660           $join->{$rel}, $as, $seen, [@$jpath, { $rel => $as }], $force_left
1661         )
1662       );
1663     }
1664     return @ret;
1665
1666   }
1667   elsif (ref $join) {
1668     $self->throw_exception("No idea how to resolve join reftype ".ref $join);
1669   }
1670   else {
1671     my $count = ++$seen->{$join};
1672     my $as = $self->storage->relname_to_table_alias(
1673       $join, ($count > 1 && $count)
1674     );
1675
1676     my $rel_info = $self->relationship_info($join)
1677       or $self->throw_exception("No such relationship $join on " . $self->source_name);
1678
1679     my $rel_src = $self->related_source($join);
1680     return [ { $as => $rel_src->from,
1681                -rsrc => $rel_src,
1682                -join_type => $parent_force_left
1683                   ? 'left'
1684                   : $rel_info->{attrs}{join_type}
1685                 ,
1686                -join_path => [@$jpath, { $join => $as } ],
1687                -is_single => (
1688                   (! $rel_info->{attrs}{accessor})
1689                     or
1690                   first { $rel_info->{attrs}{accessor} eq $_ } (qw/single filter/)
1691                 ),
1692                -alias => $as,
1693                -relation_chain_depth => ( $seen->{-relation_chain_depth} || 0 ) + 1,
1694              },
1695              scalar $self->_resolve_condition($rel_info->{cond}, $as, $alias, $join)
1696           ];
1697   }
1698 }
1699
1700 sub pk_depends_on {
1701   carp 'pk_depends_on is a private method, stop calling it';
1702   my $self = shift;
1703   $self->_pk_depends_on (@_);
1704 }
1705
1706 # Determines whether a relation is dependent on an object from this source
1707 # having already been inserted. Takes the name of the relationship and a
1708 # hashref of columns of the related object.
1709 sub _pk_depends_on {
1710   my ($self, $rel_name, $rel_data) = @_;
1711
1712   my $relinfo = $self->relationship_info($rel_name);
1713
1714   # don't assume things if the relationship direction is specified
1715   return $relinfo->{attrs}{is_foreign_key_constraint}
1716     if exists ($relinfo->{attrs}{is_foreign_key_constraint});
1717
1718   my $cond = $relinfo->{cond};
1719   return 0 unless ref($cond) eq 'HASH';
1720
1721   # map { foreign.foo => 'self.bar' } to { bar => 'foo' }
1722   my $keyhash = { map { my $x = $_; $x =~ s/.*\.//; $x; } reverse %$cond };
1723
1724   # assume anything that references our PK probably is dependent on us
1725   # rather than vice versa, unless the far side is (a) defined or (b)
1726   # auto-increment
1727   my $rel_source = $self->related_source($rel_name);
1728
1729   foreach my $p ($self->primary_columns) {
1730     if (exists $keyhash->{$p}) {
1731       unless (defined($rel_data->{$keyhash->{$p}})
1732               || $rel_source->column_info($keyhash->{$p})
1733                             ->{is_auto_increment}) {
1734         return 0;
1735       }
1736     }
1737   }
1738
1739   return 1;
1740 }
1741
1742 sub resolve_condition {
1743   carp 'resolve_condition is a private method, stop calling it';
1744   shift->_resolve_condition (@_);
1745 }
1746
1747 sub _resolve_condition {
1748 #  carp_unique sprintf
1749 #    '_resolve_condition is a private method, and moreover is about to go '
1750 #  . 'away. Please contact the development team at %s if you believe you '
1751 #  . 'have a genuine use for this method, in order to discuss alternatives.',
1752 #    DBIx::Class::_ENV_::HELP_URL,
1753 #  ;
1754
1755 #######################
1756 ### API Design? What's that...? (a backwards compatible shim, kill me now)
1757
1758   my ($self, $cond, @res_args, $rel_name);
1759
1760   # we *SIMPLY DON'T KNOW YET* which arg is which, yay
1761   ($self, $cond, $res_args[0], $res_args[1], $rel_name) = @_;
1762
1763   # assume that an undef is an object-like unset (set_from_related(undef))
1764   my @is_objlike = map { ! defined $_ or length ref $_ } (@res_args);
1765
1766   # turn objlike into proper objects for saner code further down
1767   for (0,1) {
1768     next unless $is_objlike[$_];
1769
1770     if ( defined blessed $res_args[$_] ) {
1771
1772       # but wait - there is more!!! WHAT THE FUCK?!?!?!?!
1773       if ($res_args[$_]->isa('DBIx::Class::ResultSet')) {
1774         carp('Passing a resultset for relationship resolution makes no sense - invoking __gremlins__');
1775         $is_objlike[$_] = 0;
1776         $res_args[$_] = '__gremlins__';
1777       }
1778     }
1779     else {
1780       $res_args[$_] ||= {};
1781
1782       # hate everywhere - have to pass in as a plain hash
1783       # pretending to be an object at least for now
1784       $self->throw_exception("Unsupported object-like structure encountered: $res_args[$_]")
1785         unless ref $res_args[$_] eq 'HASH';
1786     }
1787   }
1788
1789   my $args = {
1790     condition => $cond,
1791
1792     # where-is-waldo block guesses relname, then further down we override it if available
1793     (
1794       $is_objlike[1] ? ( rel_name => $res_args[0], self_alias => $res_args[0], foreign_alias => 'me',         self_result_object  => $res_args[1] )
1795     : $is_objlike[0] ? ( rel_name => $res_args[1], self_alias => 'me',         foreign_alias => $res_args[1], foreign_values      => $res_args[0] )
1796     :                  ( rel_name => $res_args[0], self_alias => $res_args[1], foreign_alias => $res_args[0]                                      )
1797     ),
1798
1799     ( $rel_name ? ( rel_name => $rel_name ) : () ),
1800   };
1801 #######################
1802
1803   # now it's fucking easy isn't it?!
1804   my $rc = $self->_resolve_relationship_condition( $args );
1805
1806   my @res = (
1807     ( $rc->{join_free_condition} || $rc->{condition} ),
1808     ! $rc->{join_free_condition},
1809   );
1810
1811   # _resolve_relationship_condition always returns qualified cols even in the
1812   # case of join_free_condition, but nothing downstream expects this
1813   if ($rc->{join_free_condition} and ref $res[0] eq 'HASH') {
1814     $res[0] = { map
1815       { ($_ =~ /\.(.+)/) => $res[0]{$_} }
1816       keys %{$res[0]}
1817     };
1818   }
1819
1820   # and more legacy
1821   return wantarray ? @res : $res[0];
1822 }
1823
1824 # Keep this indefinitely. There is evidence of both CPAN and
1825 # darkpan using it, and there isn't much harm in an extra var
1826 # anyway.
1827 our $UNRESOLVABLE_CONDITION = UNRESOLVABLE_CONDITION;
1828 # YES I KNOW THIS IS EVIL
1829 # it is there to save darkpan from themselves, since internally
1830 # we are moving to a constant
1831 Internals::SvREADONLY($UNRESOLVABLE_CONDITION => 1);
1832
1833 # Resolves the passed condition to a concrete query fragment and extra
1834 # metadata
1835 #
1836 ## self-explanatory API, modeled on the custom cond coderef:
1837 # rel_name              => (scalar)
1838 # foreign_alias         => (scalar)
1839 # foreign_values        => (either not supplied, or a hashref, or a foreign ResultObject (to be ->get_columns()ed), or plain undef )
1840 # self_alias            => (scalar)
1841 # self_result_object    => (either not supplied or a result object)
1842 # require_join_free_condition => (boolean, throws on failure to construct a JF-cond)
1843 # infer_values_based_on => (either not supplied or a hashref, implies require_join_free_condition)
1844 # condition             => (sqla cond struct, optional, defeaults to from $self->rel_info(rel_name)->{cond})
1845 #
1846 ## returns a hash
1847 # condition           => (a valid *likely fully qualified* sqla cond structure)
1848 # identity_map        => (a hashref of foreign-to-self *unqualified* column equality names)
1849 # join_free_condition => (a valid *fully qualified* sqla cond structure, maybe unset)
1850 # inferred_values     => (in case of an available join_free condition, this is a hashref of
1851 #                         *unqualified* column/value *EQUALITY* pairs, representing an amalgamation
1852 #                         of the JF-cond parse and infer_values_based_on
1853 #                         always either complete or unset)
1854 #
1855 sub _resolve_relationship_condition {
1856   my $self = shift;
1857
1858   my $args = { ref $_[0] eq 'HASH' ? %{ $_[0] } : @_ };
1859
1860   for ( qw( rel_name self_alias foreign_alias ) ) {
1861     $self->throw_exception("Mandatory argument '$_' to _resolve_relationship_condition() is not a plain string")
1862       if !defined $args->{$_} or length ref $args->{$_};
1863   }
1864
1865   $self->throw_exception("Arguments 'self_alias' and 'foreign_alias' may not be identical")
1866     if $args->{self_alias} eq $args->{foreign_alias};
1867
1868   my $rel_info = $self->relationship_info($args->{rel_name})
1869 # TEMP
1870 #    or $self->throw_exception( "No such $exception_rel_id" );
1871     or carp_unique("Requesting resolution on non-existent relationship '$args->{rel_name}' on source '@{[ $self->source_name ]}': fix your code *soon*, as it will break with the next major version");
1872
1873   my $exception_rel_id = "relationship '$rel_info->{_original_name}' on source '@{[ $self->source_name ]}'";
1874
1875   $self->throw_exception("No practical way to resolve $exception_rel_id between two data structures")
1876     if exists $args->{self_result_object} and exists $args->{foreign_values};
1877
1878   $self->throw_exception( "Argument to infer_values_based_on must be a hash" )
1879     if exists $args->{infer_values_based_on} and ref $args->{infer_values_based_on} ne 'HASH';
1880
1881   $args->{require_join_free_condition} ||= !!$args->{infer_values_based_on};
1882
1883   $args->{condition} ||= $rel_info->{cond};
1884
1885   $self->throw_exception( "Argument 'self_result_object' must be an object of class '@{[ $self->result_class ]}'" )
1886     if (
1887       exists $args->{self_result_object}
1888         and
1889       ( ! defined blessed $args->{self_result_object} or ! $args->{self_result_object}->isa($self->result_class) )
1890     )
1891   ;
1892
1893   my $rel_rsrc = $self->related_source($args->{rel_name});
1894
1895   if (exists $args->{foreign_values}) {
1896     if (defined blessed $args->{foreign_values}) {
1897
1898       $self->throw_exception( "Objects supplied as 'foreign_values' ($args->{foreign_values}) must inherit from DBIx::Class::Row" )
1899         unless $args->{foreign_values}->isa('DBIx::Class::Row');
1900
1901       carp_unique(
1902         "Objects supplied as 'foreign_values' ($args->{foreign_values}) "
1903       . "usually should inherit from the related ResultClass ('@{[ $rel_rsrc->result_class ]}'), "
1904       . "perhaps you've made a mistake invoking the condition resolver?"
1905       ) unless $args->{foreign_values}->isa($rel_rsrc->result_class);
1906
1907       $args->{foreign_values} = { $args->{foreign_values}->get_columns };
1908     }
1909     elsif (! defined $args->{foreign_values} or ref $args->{foreign_values} eq 'HASH') {
1910       my $ci = $rel_rsrc->columns_info;
1911       ! exists $ci->{$_} and $self->throw_exception(
1912         "Key '$_' supplied as 'foreign_values' is not a column on related source '@{[ $rel_rsrc->source_name ]}'"
1913       ) for keys %{ $args->{foreign_values} ||= {} };
1914     }
1915     else {
1916       $self->throw_exception(
1917         "Argument 'foreign_values' must be either an object inheriting from '@{[ $rel_rsrc->result_class ]}', "
1918       . "or a hash reference, or undef"
1919       );
1920     }
1921   }
1922
1923   my $ret;
1924
1925   if (ref $args->{condition} eq 'CODE') {
1926
1927     my $cref_args = {
1928       rel_name => $args->{rel_name},
1929       self_resultsource => $self,
1930       self_alias => $args->{self_alias},
1931       foreign_alias => $args->{foreign_alias},
1932       ( map
1933         { (exists $args->{$_}) ? ( $_ => $args->{$_} ) : () }
1934         qw( self_result_object foreign_values )
1935       ),
1936     };
1937
1938     # legacy - never remove these!!!
1939     $cref_args->{foreign_relname} = $cref_args->{rel_name};
1940
1941     $cref_args->{self_rowobj} = $cref_args->{self_result_object}
1942       if exists $cref_args->{self_result_object};
1943
1944     ($ret->{condition}, $ret->{join_free_condition}, my @extra) = $args->{condition}->($cref_args);
1945
1946     # sanity check
1947     $self->throw_exception("A custom condition coderef can return at most 2 conditions, but $exception_rel_id returned extra values: @extra")
1948       if @extra;
1949
1950     if (my $jfc = $ret->{join_free_condition}) {
1951
1952       $self->throw_exception (
1953         "The join-free condition returned for $exception_rel_id must be a hash reference"
1954       ) unless ref $jfc eq 'HASH';
1955
1956       my ($joinfree_alias, $joinfree_source);
1957       if (defined $args->{self_result_object}) {
1958         $joinfree_alias = $args->{foreign_alias};
1959         $joinfree_source = $rel_rsrc;
1960       }
1961       elsif (defined $args->{foreign_values}) {
1962         $joinfree_alias = $args->{self_alias};
1963         $joinfree_source = $self;
1964       }
1965
1966       # FIXME sanity check until things stabilize, remove at some point
1967       $self->throw_exception (
1968         "A join-free condition returned for $exception_rel_id without a result object to chain from"
1969       ) unless $joinfree_alias;
1970
1971       my $fq_col_list = { map
1972         { ( "$joinfree_alias.$_" => 1 ) }
1973         $joinfree_source->columns
1974       };
1975
1976       $fq_col_list->{$_} or $self->throw_exception (
1977         "The join-free condition returned for $exception_rel_id may only "
1978       . 'contain keys that are fully qualified column names of the corresponding source'
1979       ) for keys %$jfc;
1980
1981     }
1982   }
1983   elsif (ref $args->{condition} eq 'HASH') {
1984
1985     # the condition is static - use parallel arrays
1986     # for a "pivot" depending on which side of the
1987     # rel did we get as an object
1988     my (@f_cols, @l_cols);
1989     for my $fc (keys %{$args->{condition}}) {
1990       my $lc = $args->{condition}{$fc};
1991
1992       # FIXME STRICTMODE should probably check these are valid columns
1993       $fc =~ s/^foreign\.// ||
1994         $self->throw_exception("Invalid rel cond key '$fc'");
1995
1996       $lc =~ s/^self\.// ||
1997         $self->throw_exception("Invalid rel cond val '$lc'");
1998
1999       push @f_cols, $fc;
2000       push @l_cols, $lc;
2001     }
2002
2003     # construct the crosstable condition and the identity map
2004     for  (0..$#f_cols) {
2005       $ret->{condition}{"$args->{foreign_alias}.$f_cols[$_]"} = { -ident => "$args->{self_alias}.$l_cols[$_]" };
2006       $ret->{identity_map}{$l_cols[$_]} = $f_cols[$_];
2007     };
2008
2009     if ($args->{foreign_values}) {
2010       $ret->{join_free_condition}{"$args->{self_alias}.$l_cols[$_]"} = $args->{foreign_values}{$f_cols[$_]}
2011         for 0..$#f_cols;
2012     }
2013     elsif (defined $args->{self_result_object}) {
2014
2015       for my $i (0..$#l_cols) {
2016         if ( $args->{self_result_object}->has_column_loaded($l_cols[$i]) ) {
2017           $ret->{join_free_condition}{"$args->{foreign_alias}.$f_cols[$i]"} = $args->{self_result_object}->get_column($l_cols[$i]);
2018         }
2019         else {
2020           $self->throw_exception(sprintf
2021             "Unable to resolve relationship '%s' from object '%s': column '%s' not "
2022           . 'loaded from storage (or not passed to new() prior to insert()). You '
2023           . 'probably need to call ->discard_changes to get the server-side defaults '
2024           . 'from the database.',
2025             $args->{rel_name},
2026             $args->{self_result_object},
2027             $l_cols[$i],
2028           ) if $args->{self_result_object}->in_storage;
2029
2030           # FIXME - temporarly force-override
2031           delete $args->{require_join_free_condition};
2032           $ret->{join_free_condition} = UNRESOLVABLE_CONDITION;
2033           last;
2034         }
2035       }
2036     }
2037   }
2038   elsif (ref $args->{condition} eq 'ARRAY') {
2039     if (@{$args->{condition}} == 0) {
2040       $ret = {
2041         condition => UNRESOLVABLE_CONDITION,
2042         join_free_condition => UNRESOLVABLE_CONDITION,
2043       };
2044     }
2045     elsif (@{$args->{condition}} == 1) {
2046       $ret = $self->_resolve_relationship_condition({
2047         %$args,
2048         condition => $args->{condition}[0],
2049       });
2050     }
2051     else {
2052       # we are discarding inferred values here... likely incorrect...
2053       # then again - the entire thing is an OR, so we *can't* use them anyway
2054       for my $subcond ( map
2055         { $self->_resolve_relationship_condition({ %$args, condition => $_ }) }
2056         @{$args->{condition}}
2057       ) {
2058         $self->throw_exception('Either all or none of the OR-condition members must resolve to a join-free condition')
2059           if ( $ret and ( $ret->{join_free_condition} xor $subcond->{join_free_condition} ) );
2060
2061         $subcond->{$_} and push @{$ret->{$_}}, $subcond->{$_} for (qw(condition join_free_condition));
2062       }
2063     }
2064   }
2065   else {
2066     $self->throw_exception ("Can't handle condition $args->{condition} for $exception_rel_id yet :(");
2067   }
2068
2069   $self->throw_exception(ucfirst "$exception_rel_id does not resolve to a join-free condition fragment") if (
2070     $args->{require_join_free_condition}
2071       and
2072     ( ! $ret->{join_free_condition} or $ret->{join_free_condition} eq UNRESOLVABLE_CONDITION )
2073   );
2074
2075   my $storage = $self->schema->storage;
2076
2077   # we got something back - sanity check and infer values if we can
2078   my @nonvalues;
2079   if ( my $jfc = $ret->{join_free_condition} and $ret->{join_free_condition} ne UNRESOLVABLE_CONDITION ) {
2080
2081     my $jfc_eqs = $storage->_extract_fixed_condition_columns($jfc, 'consider_nulls');
2082
2083     if (keys %$jfc_eqs) {
2084
2085       for (keys %$jfc) {
2086         # $jfc is fully qualified by definition
2087         my ($col) = $_ =~ /\.(.+)/;
2088
2089         if (exists $jfc_eqs->{$_} and ($jfc_eqs->{$_}||'') ne UNRESOLVABLE_CONDITION) {
2090           $ret->{inferred_values}{$col} = $jfc_eqs->{$_};
2091         }
2092         elsif ( !$args->{infer_values_based_on} or ! exists $args->{infer_values_based_on}{$col} ) {
2093           push @nonvalues, $col;
2094         }
2095       }
2096
2097       # all or nothing
2098       delete $ret->{inferred_values} if @nonvalues;
2099     }
2100   }
2101
2102   # did the user explicitly ask
2103   if ($args->{infer_values_based_on}) {
2104
2105     $self->throw_exception(sprintf (
2106       "Unable to complete value inferrence - custom $exception_rel_id returns conditions instead of values for column(s): %s",
2107       map { "'$_'" } @nonvalues
2108     )) if @nonvalues;
2109
2110
2111     $ret->{inferred_values} ||= {};
2112
2113     $ret->{inferred_values}{$_} = $args->{infer_values_based_on}{$_}
2114       for keys %{$args->{infer_values_based_on}};
2115   }
2116
2117   # add the identities based on the main condition
2118   # (may already be there, since easy to calculate on the fly in the HASH case)
2119   if ( ! $ret->{identity_map} ) {
2120
2121     my $col_eqs = $storage->_extract_fixed_condition_columns($ret->{condition});
2122
2123     my $colinfos;
2124     for my $lhs (keys %$col_eqs) {
2125
2126       next if $col_eqs->{$lhs} eq UNRESOLVABLE_CONDITION;
2127       my ($rhs) = @{ is_literal_value( $ret->{condition}{$lhs} ) || next };
2128
2129       # there is no way to know who is right and who is left in a cref
2130       # therefore a full blown resolution call
2131       $colinfos ||= $storage->_resolve_column_info([
2132         { -alias => $args->{self_alias}, -rsrc => $self },
2133         { -alias => $args->{foreign_alias}, -rsrc => $rel_rsrc },
2134       ]);
2135
2136       my ($l_col, $r_col) = map { $_ =~ / ([^\.]+) $ /x } ($lhs, $rhs);
2137
2138       if (
2139         $colinfos->{$l_col}
2140           and
2141         $colinfos->{$r_col}
2142           and
2143         $colinfos->{$l_col}{-source_alias} ne $colinfos->{$r_col}{-source_alias}
2144       ) {
2145         ( $colinfos->{$l_col}{-source_alias} eq $args->{self_alias} )
2146           ? ( $ret->{identity_map}{$l_col} = $r_col )
2147           : ( $ret->{identity_map}{$r_col} = $l_col )
2148         ;
2149       }
2150     }
2151   }
2152
2153   $ret
2154 }
2155
2156 =head2 related_source
2157
2158 =over 4
2159
2160 =item Arguments: $rel_name
2161
2162 =item Return Value: $source
2163
2164 =back
2165
2166 Returns the result source object for the given relationship.
2167
2168 =cut
2169
2170 sub related_source {
2171   my ($self, $rel) = @_;
2172   if( !$self->has_relationship( $rel ) ) {
2173     $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
2174   }
2175
2176   # if we are not registered with a schema - just use the prototype
2177   # however if we do have a schema - ask for the source by name (and
2178   # throw in the process if all fails)
2179   if (my $schema = try { $self->schema }) {
2180     $schema->source($self->relationship_info($rel)->{source});
2181   }
2182   else {
2183     my $class = $self->relationship_info($rel)->{class};
2184     $self->ensure_class_loaded($class);
2185     $class->result_source_instance;
2186   }
2187 }
2188
2189 =head2 related_class
2190
2191 =over 4
2192
2193 =item Arguments: $rel_name
2194
2195 =item Return Value: $classname
2196
2197 =back
2198
2199 Returns the class name for objects in the given relationship.
2200
2201 =cut
2202
2203 sub related_class {
2204   my ($self, $rel) = @_;
2205   if( !$self->has_relationship( $rel ) ) {
2206     $self->throw_exception("No such relationship '$rel' on " . $self->source_name);
2207   }
2208   return $self->schema->class($self->relationship_info($rel)->{source});
2209 }
2210
2211 =head2 handle
2212
2213 =over 4
2214
2215 =item Arguments: none
2216
2217 =item Return Value: L<$source_handle|DBIx::Class::ResultSourceHandle>
2218
2219 =back
2220
2221 Obtain a new L<result source handle instance|DBIx::Class::ResultSourceHandle>
2222 for this source. Used as a serializable pointer to this resultsource, as it is not
2223 easy (nor advisable) to serialize CODErefs which may very well be present in e.g.
2224 relationship definitions.
2225
2226 =cut
2227
2228 sub handle {
2229   return DBIx::Class::ResultSourceHandle->new({
2230     source_moniker => $_[0]->source_name,
2231
2232     # so that a detached thaw can be re-frozen
2233     $_[0]->{_detached_thaw}
2234       ? ( _detached_source  => $_[0]          )
2235       : ( schema            => $_[0]->schema  )
2236     ,
2237   });
2238 }
2239
2240 my $global_phase_destroy;
2241 sub DESTROY {
2242   return if $global_phase_destroy ||= in_global_destruction;
2243
2244 ######
2245 # !!! ACHTUNG !!!!
2246 ######
2247 #
2248 # Under no circumstances shall $_[0] be stored anywhere else (like copied to
2249 # a lexical variable, or shifted, or anything else). Doing so will mess up
2250 # the refcount of this particular result source, and will allow the $schema
2251 # we are trying to save to reattach back to the source we are destroying.
2252 # The relevant code checking refcounts is in ::Schema::DESTROY()
2253
2254   # if we are not a schema instance holder - we don't matter
2255   return if(
2256     ! ref $_[0]->{schema}
2257       or
2258     isweak $_[0]->{schema}
2259   );
2260
2261   # weaken our schema hold forcing the schema to find somewhere else to live
2262   # during global destruction (if we have not yet bailed out) this will throw
2263   # which will serve as a signal to not try doing anything else
2264   # however beware - on older perls the exception seems randomly untrappable
2265   # due to some weird race condition during thread joining :(((
2266   local $@;
2267   eval {
2268     weaken $_[0]->{schema};
2269
2270     # if schema is still there reintroduce ourselves with strong refs back to us
2271     if ($_[0]->{schema}) {
2272       my $srcregs = $_[0]->{schema}->source_registrations;
2273       for (keys %$srcregs) {
2274         next unless $srcregs->{$_};
2275         $srcregs->{$_} = $_[0] if $srcregs->{$_} == $_[0];
2276       }
2277     }
2278
2279     1;
2280   } or do {
2281     $global_phase_destroy = 1;
2282   };
2283
2284   return;
2285 }
2286
2287 sub STORABLE_freeze { Storable::nfreeze($_[0]->handle) }
2288
2289 sub STORABLE_thaw {
2290   my ($self, $cloning, $ice) = @_;
2291   %$self = %{ (Storable::thaw($ice))->resolve };
2292 }
2293
2294 =head2 throw_exception
2295
2296 See L<DBIx::Class::Schema/"throw_exception">.
2297
2298 =cut
2299
2300 sub throw_exception {
2301   my $self = shift;
2302
2303   $self->{schema}
2304     ? $self->{schema}->throw_exception(@_)
2305     : DBIx::Class::Exception->throw(@_)
2306   ;
2307 }
2308
2309 =head2 source_info
2310
2311 Stores a hashref of per-source metadata.  No specific key names
2312 have yet been standardized, the examples below are purely hypothetical
2313 and don't actually accomplish anything on their own:
2314
2315   __PACKAGE__->source_info({
2316     "_tablespace" => 'fast_disk_array_3',
2317     "_engine" => 'InnoDB',
2318   });
2319
2320 =head2 new
2321
2322   $class->new();
2323
2324   $class->new({attribute_name => value});
2325
2326 Creates a new ResultSource object.  Not normally called directly by end users.
2327
2328 =head2 column_info_from_storage
2329
2330 =over
2331
2332 =item Arguments: 1/0 (default: 0)
2333
2334 =item Return Value: 1/0
2335
2336 =back
2337
2338   __PACKAGE__->column_info_from_storage(1);
2339
2340 Enables the on-demand automatic loading of the above column
2341 metadata from storage as necessary.  This is *deprecated*, and
2342 should not be used.  It will be removed before 1.0.
2343
2344
2345 =head1 AUTHOR AND CONTRIBUTORS
2346
2347 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
2348
2349 =head1 LICENSE
2350
2351 You may distribute this code under the same terms as Perl itself.
2352
2353 =cut
2354
2355 1;