1 package # hide from the pauses
2 DBIx::Class::ResultSource::RowParser;
7 use base 'DBIx::Class';
10 use List::Util qw(first max);
13 use DBIx::Class::ResultSource::RowParser::Util qw(
14 assemble_simple_parser
15 assemble_collapsing_parser
20 # Accepts one or more relationships for the current source and returns an
21 # array of column names for each of those relationships. Column names are
22 # prefixed relative to the current source, in accordance with where they appear
23 # in the supplied relationships.
24 sub _resolve_prefetch {
25 my ($self, $pre, $alias, $alias_map, $order, $pref_path) = @_;
28 if (not defined $pre or not length $pre) {
31 elsif( ref $pre eq 'ARRAY' ) {
33 map { $self->_resolve_prefetch( $_, $alias, $alias_map, $order, [ @$pref_path ] ) }
36 elsif( ref $pre eq 'HASH' ) {
39 $self->_resolve_prefetch($_, $alias, $alias_map, $order, [ @$pref_path ] ),
40 $self->related_source($_)->_resolve_prefetch(
41 $pre->{$_}, "${alias}.$_", $alias_map, $order, [ @$pref_path, $_] )
46 $self->throw_exception(
47 "don't know how to resolve prefetch reftype ".ref($pre));
51 $p = $p->{$_} for (@$pref_path, $pre);
53 $self->throw_exception (
54 "Unable to resolve prefetch '$pre' - join alias map does not contain an entry for path: "
55 . join (' -> ', @$pref_path, $pre)
56 ) if (ref $p->{-join_aliases} ne 'ARRAY' or not @{$p->{-join_aliases}} );
58 my $as = shift @{$p->{-join_aliases}};
60 my $rel_info = $self->relationship_info( $pre );
61 $self->throw_exception( $self->source_name . " has no such relationship '$pre'" )
64 my $as_prefix = ($alias =~ /^.*?\.(.+)$/ ? $1.'.' : '');
66 return map { [ "${as}.$_", "${as_prefix}${pre}.$_", ] }
67 $self->related_source($pre)->columns;
71 # Takes an arrayref of {as} dbic column aliases and the collapse and select
72 # attributes from the same $rs (the selector requirement is a temporary
73 # workaround... I hope), and returns a coderef capable of:
74 # my $me_pref_clps = $coderef->([$rs->cursor->next/all])
75 # Where the $me_pref_clps arrayref is the future argument to inflate_result()
77 # For an example of this coderef in action (and to see its guts) look at
78 # t/resultset/rowparser_internals.t
80 # This is a huge performance win, as we call the same code for every row
81 # returned from the db, thus avoiding repeated method lookups when traversing
84 # Also since the coderef is completely stateless (the returned structure is
85 # always fresh on every new invocation) this is a very good opportunity for
86 # memoization if further speed improvements are needed
88 # The way we construct this coderef is somewhat fugly, although the result is
89 # really worth it. The final coderef does not perform any kind of recursion -
90 # the entire nested structure constructor is rolled out into a single scope.
92 # In any case - the output of this thing is meticulously micro-tested, so
93 # any sort of adjustment/rewrite should be relatively easy (fsvo relatively)
96 # $args and $attrs are separated to delineate what is core collapser stuff and
97 # what is dbic $rs specific
98 my ($self, $args, $attrs) = @_;
100 die "HRI without pruning makes zero sense"
101 if ( $args->{hri_style} && ! $args->{prune_null_branches} );
104 hri_style => $args->{hri_style},
105 prune_null_branches => $args->{prune_null_branches},
107 { $args->{inflate_map}[$_] => $_ }
108 ( 0 .. $#{$args->{inflate_map}} )
112 my $check_null_columns;
114 my $src = (! $args->{collapse} ) ? assemble_simple_parser(\%common) : do {
115 my $collapse_map = $self->_resolve_collapse ({
117 # only consider real columns (not functions) during collapse resolution
118 # this check shouldn't really be here, as fucktards are not supposed to
119 # alias random crap to existing column names anyway, but still - just in
121 # FIXME !!!! - this does not yet deal with unbalanced selectors correctly
122 # (it is now trivial as the attrs specify where things go out of sync
125 { ref $attrs->{select}[$common{val_index}{$_}] ? () : ( $_ => $common{val_index}{$_} ) }
126 keys %{$common{val_index}}
128 premultiplied => $args->{premultiplied},
131 $check_null_columns = $collapse_map->{-identifying_columns}
132 if @{$collapse_map->{-identifying_columns}};
134 assemble_collapsing_parser({
136 collapse_map => $collapse_map,
141 $args->{eval} ? ( eval "sub $src" || die $@ ) : $src,
147 # Takes an arrayref selection list and generates a collapse-map representing
148 # row-object fold-points. Every relationship is assigned a set of unique,
149 # non-nullable columns (which may *not even be* from the same resultset)
150 # and the collapser will use this information to correctly distinguish
151 # data of individual to-be-row-objects. See t/resultset/rowparser_internals.t
152 # for extensive RV examples
153 sub _resolve_collapse {
154 my ($self, $args, $common_args) = @_;
156 # for comprehensible error messages put ourselves at the head of the relationship chain
157 $args->{_rel_chain} ||= [ $self->source_name ];
159 # record top-level fully-qualified column index, signify toplevelness
160 unless ($common_args->{_as_fq_idx}) {
161 $common_args->{_as_fq_idx} = { %{$args->{as}} };
162 $args->{_is_top_level} = 1;
165 my ($my_cols, $rel_cols);
166 for (keys %{$args->{as}}) {
167 if ($_ =~ /^ ([^\.]+) \. (.+) /x) {
168 $rel_cols->{$1}{$2} = 1;
171 $my_cols->{$_} = {}; # important for ||='s below
176 # run through relationships, collect metadata
177 for my $rel (keys %$rel_cols) {
178 my $inf = $self->relationship_info ($rel);
181 is_single => ( $inf->{attrs}{accessor} && $inf->{attrs}{accessor} ne 'multi' ),
182 is_inner => ( ( $inf->{attrs}{join_type} || '' ) !~ /^left/i),
183 rsrc => $self->related_source($rel),
186 # FIME - need to use _resolve_cond here instead
187 my $cond = $inf->{cond};
194 ! defined first { $_ !~ /^foreign\./ } (keys %$cond)
196 ! defined first { $_ !~ /^self\./ } (values %$cond)
198 for my $f (keys %$cond) {
200 $_ =~ s/^ (?: foreign | self ) \.//x for ($f, $s);
201 $relinfo->{$rel}{fk_map}{$s} = $f;
206 # inject non-left fk-bridges from *INNER-JOINED* children (if any)
207 for my $rel (grep { $relinfo->{$_}{is_inner} } keys %$relinfo) {
208 my $ri = $relinfo->{$rel};
209 for (keys %{$ri->{fk_map}} ) {
210 # need to know source from *our* pov, hence $rel.col
211 $my_cols->{$_} ||= { via_fk => "$rel.$ri->{fk_map}{$_}" }
212 if defined $rel_cols->{$rel}{$ri->{fk_map}{$_}} # in fact selected
216 # if the parent is already defined *AND* we have an inner reverse relationship
217 # (i.e. do not exist without it) , assume all of its related FKs are selected
218 # (even if they in fact are NOT in the select list). Keep a record of what we
219 # assumed, and if any such phantom-column becomes part of our own collapser,
220 # throw everything assumed-from-parent away and replace with the collapser of
221 # the parent (whatever it may be)
222 my $assumed_from_parent;
223 if ( ! $args->{_parent_info}{underdefined} and ! $args->{_parent_info}{rev_rel_is_optional} ) {
224 for my $col ( values %{$args->{_parent_info}{rel_condition} || {}} ) {
225 next if exists $my_cols->{$col};
226 $my_cols->{$col} = { via_collapse => $args->{_parent_info}{collapse_on_idcols} };
227 $assumed_from_parent->{columns}{$col}++;
231 # get colinfo for everything
233 my $ci = $self->columns_info;
234 $my_cols->{$_}{colinfo} = $ci->{$_} for keys %$my_cols;
239 # first try to reuse the parent's collapser (i.e. reuse collapser over 1:1)
240 # (makes for a leaner coderef later)
241 unless ($collapse_map->{-identifying_columns}) {
242 $collapse_map->{-identifying_columns} = $args->{_parent_info}{collapse_on_idcols}
243 if $args->{_parent_info}{collapser_reusable};
246 # Still don't know how to collapse - try to resolve based on our columns (plus already inserted FK bridges)
248 ! $collapse_map->{-identifying_columns}
252 my $idset = $self->_identifying_column_set ({map { $_ => $my_cols->{$_}{colinfo} } keys %$my_cols})
254 # see if the resulting collapser relies on any implied columns,
255 # and fix stuff up if this is the case
256 my @reduced_set = grep { ! $assumed_from_parent->{columns}{$_} } @$idset;
258 $collapse_map->{-identifying_columns} = [ __unique_numlist(
259 @{ $args->{_parent_info}{collapse_on_idcols}||[] },
264 @{$args->{_rel_chain}}[1 .. $#{$args->{_rel_chain}}],
265 ( $my_cols->{$_}{via_fk} || $_ ),
268 $common_args->{_as_fq_idx}->{$fqc};
275 # Stil don't know how to collapse - keep descending down 1:1 chains - if
276 # a related non-LEFT 1:1 is resolvable - its condition will collapse us
278 unless ($collapse_map->{-identifying_columns}) {
281 for my $rel (keys %$relinfo) {
282 next unless ($relinfo->{$rel}{is_single} && $relinfo->{$rel}{is_inner});
284 if ( my $rel_collapse = $relinfo->{$rel}{rsrc}->_resolve_collapse ({
285 as => $rel_cols->{$rel},
286 _rel_chain => [ @{$args->{_rel_chain}}, $rel ],
287 _parent_info => { underdefined => 1 },
289 push @candidates, $rel_collapse->{-identifying_columns};
293 # get the set with least amount of columns
294 # FIXME - maybe need to implement a data type order as well (i.e. prefer several ints
295 # to a single varchar)
297 ($collapse_map->{-identifying_columns}) = sort { scalar @$a <=> scalar @$b } (@candidates);
301 # Stil don't know how to collapse, and we are the root node. Last ditch
302 # effort in case we are *NOT* premultiplied.
303 # Run through *each multi* all the way down, left or not, and all
304 # *left* singles (a single may become a multi underneath) . When everything
305 # gets back see if all the rels link to us definitively. If this is the
306 # case we are good - either one of them will define us, or if all are NULLs
307 # we know we are "unique" due to the "non-premultiplied" check
309 ! $collapse_map->{-identifying_columns}
311 ! $args->{premultiplied}
313 $args->{_is_top_level}
315 my (@collapse_sets, $uncollapsible_chain);
317 for my $rel (keys %$relinfo) {
319 # we already looked at these higher up
320 next if ($relinfo->{$rel}{is_single} && $relinfo->{$rel}{is_inner});
322 if (my $clps = $relinfo->{$rel}{rsrc}->_resolve_collapse ({
323 as => $rel_cols->{$rel},
324 _rel_chain => [ @{$args->{_rel_chain}}, $rel ],
325 _parent_info => { underdefined => 1 },
328 # for singles use the idcols wholesale (either there or not)
329 if ($relinfo->{$rel}{is_single}) {
330 push @collapse_sets, $clps->{-identifying_columns};
332 elsif (! $relinfo->{$rel}{fk_map}) {
333 $uncollapsible_chain = 1;
337 my $defined_cols_parent_side;
339 for my $fq_col ( grep { /^$rel\.[^\.]+$/ } keys %{$args->{as}} ) {
340 my ($col) = $fq_col =~ /([^\.]+)$/;
342 $defined_cols_parent_side->{$_} = $args->{as}{$fq_col} for grep
343 { $relinfo->{$rel}{fk_map}{$_} eq $col }
344 keys %{$relinfo->{$rel}{fk_map}}
348 if (my $set = $self->_identifying_column_set([ keys %$defined_cols_parent_side ]) ) {
349 push @collapse_sets, [ sort map { $defined_cols_parent_side->{$_} } @$set ];
352 $uncollapsible_chain = 1;
358 $uncollapsible_chain = 1;
363 unless ($uncollapsible_chain) {
364 # if we got here - we are good to go, but the construction is tricky
365 # since our children will want to include our collapse criteria - we
366 # don't give them anything (safe, since they are all collapsible on their own)
367 # in addition we record the individual collapse possibilities
368 # of all left children node collapsers, and merge them in the rowparser
370 $collapse_map->{-identifying_columns} = [];
371 $collapse_map->{-identifying_columns_variants} = [ sort {
372 (scalar @$a) <=> (scalar @$b) or max(@$a) <=> max(@$b)
377 # stop descending into children if we were called by a parent for first-pass
378 # and don't despair if nothing was found (there may be other parallel branches
380 if ($args->{_parent_info}{underdefined}) {
381 return $collapse_map->{-identifying_columns} ? $collapse_map : undef
383 # nothing down the chain resolved - can't calculate a collapse-map
384 elsif (! $collapse_map->{-identifying_columns}) {
385 $self->throw_exception ( sprintf
386 "Unable to calculate a definitive collapse column set for %s%s: fetch more unique non-nullable columns",
388 @{$args->{_rel_chain}} > 1
389 ? sprintf (' (last member of the %s chain)', join ' -> ', @{$args->{_rel_chain}} )
395 # If we got that far - we are collapsable - GREAT! Now go down all children
396 # a second time, and fill in the rest
398 $collapse_map->{-identifying_columns} = [ __unique_numlist(
399 @{ $args->{_parent_info}{collapse_on_idcols}||[] },
400 @{ $collapse_map->{-identifying_columns} },
404 for my $rel (sort keys %$relinfo) {
406 $collapse_map->{$rel} = $relinfo->{$rel}{rsrc}->_resolve_collapse ({
407 as => { map { $_ => 1 } ( keys %{$rel_cols->{$rel}} ) },
408 _rel_chain => [ @{$args->{_rel_chain}}, $rel],
411 collapse_on_idcols => [ @{$collapse_map->{-identifying_columns}} ],
413 rel_condition => $relinfo->{$rel}{fk_map},
415 is_optional => ! $relinfo->{$rel}{is_inner},
417 # if there is at least one *inner* reverse relationship which is HASH-based (equality only)
418 # we can safely assume that the child can not exist without us
419 rev_rel_is_optional => ( first
420 { ref $_->{cond} eq 'HASH' and ($_->{attrs}{join_type}||'') !~ /^left/i }
421 values %{ $self->reverse_relationship_info($rel) },
424 # if this is a 1:1 our own collapser can be used as a collapse-map
425 # (regardless of left or not)
426 collapser_reusable => (
427 $relinfo->{$rel}{is_single}
429 $relinfo->{$rel}{is_inner}
431 @{$collapse_map->{-identifying_columns}}
436 $collapse_map->{$rel}{-is_single} = 1 if $relinfo->{$rel}{is_single};
437 $collapse_map->{$rel}{-is_optional} ||= 1 unless $relinfo->{$rel}{is_inner};
440 return $collapse_map;
443 # adding a dep on MoreUtils *just* for this is retarded
444 sub __unique_numlist {
445 sort { $a <=> $b } keys %{ {map { $_ => 1 } @_ }}