line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package # hide from PAUSE |
2
|
|
|
|
|
|
|
DBIx::Class::Relationship::HasOne; |
3
|
|
|
|
|
|
|
|
4
|
379
|
|
|
379
|
|
175197
|
use strict; |
|
379
|
|
|
|
|
1278
|
|
|
379
|
|
|
|
|
11316
|
|
5
|
379
|
|
|
379
|
|
2094
|
use warnings; |
|
379
|
|
|
|
|
1087
|
|
|
379
|
|
|
|
|
9301
|
|
6
|
379
|
|
|
379
|
|
2074
|
use DBIx::Class::Carp; |
|
379
|
|
|
|
|
1060
|
|
|
379
|
|
|
|
|
3191
|
|
7
|
379
|
|
|
379
|
|
2692
|
use Try::Tiny; |
|
379
|
|
|
|
|
1369
|
|
|
379
|
|
|
|
|
21650
|
|
8
|
379
|
|
|
379
|
|
2761
|
use namespace::clean; |
|
379
|
|
|
|
|
1283
|
|
|
379
|
|
|
|
|
2501
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our %_pod_inherit_config = |
11
|
|
|
|
|
|
|
( |
12
|
|
|
|
|
|
|
class_map => { 'DBIx::Class::Relationship::HasOne' => 'DBIx::Class::Relationship' } |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub might_have { |
16
|
2315
|
|
|
2315
|
0
|
32667
|
shift->_has_one('LEFT' => @_); |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub has_one { |
20
|
674
|
|
|
674
|
0
|
11007
|
shift->_has_one(undef() => @_); |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub _has_one { |
24
|
2989
|
|
|
2989
|
|
9779
|
my ($class, $join_type, $rel, $f_class, $cond, $attrs) = @_; |
25
|
2989
|
100
|
|
|
|
9101
|
unless (ref $cond) { |
26
|
2324
|
|
|
|
|
59134
|
my $pri = $class->result_source_instance->_single_pri_col_or_die; |
27
|
|
|
|
|
|
|
|
28
|
2324
|
|
|
|
|
5600
|
my ($f_key,$guess,$f_rsrc); |
29
|
2324
|
100
|
66
|
|
|
12505
|
if (defined $cond && length $cond) { |
30
|
1988
|
|
|
|
|
4362
|
$f_key = $cond; |
31
|
1988
|
|
|
|
|
5862
|
$guess = "caller specified foreign key '$f_key'"; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
else { |
34
|
|
|
|
|
|
|
# at this point we need to load the foreigner, expensive or not |
35
|
336
|
|
|
|
|
3746
|
$class->ensure_class_loaded($f_class); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$f_rsrc = try { |
38
|
336
|
|
|
336
|
|
27485
|
my $r = $f_class->result_source_instance; |
39
|
336
|
50
|
|
|
|
9384
|
die "There got to be some columns by now... (exception caught and rewritten by catch below)" |
40
|
|
|
|
|
|
|
unless $r->columns; |
41
|
336
|
|
|
|
|
1397
|
$r; |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
catch { |
44
|
0
|
|
|
0
|
|
0
|
$class->throw_exception( |
45
|
|
|
|
|
|
|
"Foreign class '$f_class' does not seem to be a Result class " |
46
|
|
|
|
|
|
|
. "(or it simply did not load entirely due to a circular relation chain)" |
47
|
|
|
|
|
|
|
); |
48
|
336
|
|
|
|
|
9152
|
}; |
49
|
|
|
|
|
|
|
|
50
|
336
|
50
|
|
|
|
7164
|
if ($f_rsrc->has_column($rel)) { |
51
|
0
|
|
|
|
|
0
|
$f_key = $rel; |
52
|
0
|
|
|
|
|
0
|
$guess = "using given relationship name '$rel' as foreign key column name"; |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
else { |
55
|
336
|
|
|
|
|
1833
|
$f_key = $f_rsrc->_single_pri_col_or_die; |
56
|
336
|
|
|
|
|
1430
|
$guess = "using primary key of foreign class for foreign key"; |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
} |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
# FIXME - this check needs to be moved to schema-composition time... |
61
|
|
|
|
|
|
|
# # only perform checks if the far side was not preloaded above *AND* |
62
|
|
|
|
|
|
|
# # appears to have been loaded by something else (has a rsrc_instance) |
63
|
|
|
|
|
|
|
# if (! $f_rsrc and $f_rsrc = try { $f_class->result_source_instance }) { |
64
|
|
|
|
|
|
|
# $class->throw_exception( |
65
|
|
|
|
|
|
|
# "No such column '$f_key' on foreign class ${f_class} ($guess)" |
66
|
|
|
|
|
|
|
# ) if !$f_rsrc->has_column($f_key); |
67
|
|
|
|
|
|
|
# } |
68
|
|
|
|
|
|
|
|
69
|
2324
|
|
|
|
|
11444
|
$cond = { "foreign.${f_key}" => "self.${pri}" }; |
70
|
|
|
|
|
|
|
} |
71
|
2989
|
|
|
|
|
16950
|
$class->_validate_has_one_condition($cond); |
72
|
|
|
|
|
|
|
|
73
|
2989
|
100
|
|
|
|
11411
|
my $default_cascade = ref $cond eq 'CODE' ? 0 : 1; |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
$class->add_relationship($rel, $f_class, |
76
|
|
|
|
|
|
|
$cond, |
77
|
|
|
|
|
|
|
{ accessor => 'single', |
78
|
|
|
|
|
|
|
cascade_update => $default_cascade, |
79
|
|
|
|
|
|
|
cascade_delete => $default_cascade, |
80
|
|
|
|
|
|
|
is_depends_on => 0, |
81
|
|
|
|
|
|
|
($join_type ? ('join_type' => $join_type) : ()), |
82
|
2989
|
100
|
|
|
|
8989
|
%{$attrs || {}} }); |
|
2989
|
100
|
|
|
|
32139
|
|
83
|
2987
|
|
|
|
|
10132
|
1; |
84
|
|
|
|
|
|
|
} |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
sub _validate_has_one_condition { |
87
|
2989
|
|
|
2989
|
|
7212
|
my ($class, $cond ) = @_; |
88
|
|
|
|
|
|
|
|
89
|
2989
|
100
|
|
|
|
9433
|
return if $ENV{DBIC_DONT_VALIDATE_RELS}; |
90
|
2988
|
100
|
|
|
|
9581
|
return unless 'HASH' eq ref $cond; |
91
|
2652
|
|
|
|
|
9639
|
foreach my $foreign_id ( keys %$cond ) { |
92
|
2652
|
|
|
|
|
5505
|
my $self_id = $cond->{$foreign_id}; |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
# we can ignore a bad $self_id because add_relationship handles this |
95
|
|
|
|
|
|
|
# exception |
96
|
2652
|
50
|
|
|
|
13104
|
return unless $self_id =~ /^self\.(.*)$/; |
97
|
|
|
|
|
|
|
|
98
|
2652
|
|
|
|
|
7330
|
my $key = $1; |
99
|
2652
|
50
|
|
|
|
60641
|
$class->throw_exception("Defining rel on ${class} that includes '$key' but no such column defined here yet") |
100
|
|
|
|
|
|
|
unless $class->has_column($key); |
101
|
2652
|
|
|
|
|
56792
|
my $column_info = $class->column_info($key); |
102
|
2652
|
100
|
|
|
|
11282
|
if ( $column_info->{is_nullable} ) { |
103
|
1
|
|
|
|
|
8
|
carp(qq'"might_have/has_one" must not be on columns with is_nullable set to true ($class/$key). This might indicate an incorrect use of those relationship helpers instead of belongs_to.'); |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
} |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
1; |