← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 13:01:18 2016
Reported on Fri Jan 8 13:01:36 2016

Filename/usr/share/perl5/DBIx/Class/SQLMaker.pm
StatementsExecuted 627 statements in 4.63ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
6942378µs937µsDBIx::Class::SQLMaker::::_quoteDBIx::Class::SQLMaker::_quote
6321319µs1.12msDBIx::Class::SQLMaker::::_recurse_fieldsDBIx::Class::SQLMaker::_recurse_fields (recurses: max depth 1, inclusive time 954µs)
311110µs2.65msDBIx::Class::SQLMaker::::selectDBIx::Class::SQLMaker::select
62175µs168µsDBIx::Class::SQLMaker::::_from_chunk_to_sqlDBIx::Class::SQLMaker::_from_chunk_to_sql (recurses: max depth 1, inclusive time 59µs)
31163µs78µsDBIx::Class::SQLMaker::::_order_byDBIx::Class::SQLMaker::_order_by
11146µs61µsDBIx::Class::SQLMaker::::BEGIN@67DBIx::Class::SQLMaker::BEGIN@67
31121µs21µsDBIx::Class::SQLMaker::::_assemble_bindsDBIx::Class::SQLMaker::_assemble_binds
31121µs222µsDBIx::Class::SQLMaker::::_tableDBIx::Class::SQLMaker::_table
31118µs187µsDBIx::Class::SQLMaker::::_gen_from_blocksDBIx::Class::SQLMaker::_gen_from_blocks
31114µs201µsDBIx::Class::SQLMaker::::_recurse_fromDBIx::Class::SQLMaker::_recurse_from
362113µs13µsDBIx::Class::SQLMaker::::CORE:matchDBIx::Class::SQLMaker::CORE:match (opcode)
11113µs19µsDBIx::Class::SQLMaker::::BEGIN@39DBIx::Class::SQLMaker::BEGIN@39
11113µs19µsDBIx::Class::SQLMaker::::BEGIN@3DBIx::Class::SQLMaker::BEGIN@3
11112µs3.46msDBIx::Class::SQLMaker::::BEGIN@34DBIx::Class::SQLMaker::BEGIN@34
11112µs36µsDBIx::Class::SQLMaker::::BEGIN@41DBIx::Class::SQLMaker::BEGIN@41
11111µs30µsDBIx::Class::SQLMaker::::BEGIN@70DBIx::Class::SQLMaker::BEGIN@70
11111µs54µsDBIx::Class::SQLMaker::::BEGIN@42DBIx::Class::SQLMaker::BEGIN@42
31110µs10µsDBIx::Class::SQLMaker::::_parse_rs_attrsDBIx::Class::SQLMaker::_parse_rs_attrs
1119µs125µsDBIx::Class::SQLMaker::::BEGIN@43DBIx::Class::SQLMaker::BEGIN@43
1117µs11µsDBIx::Class::SQLMaker::::BEGIN@4DBIx::Class::SQLMaker::BEGIN@4
0000s0sDBIx::Class::SQLMaker::::__ANON__[:75]DBIx::Class::SQLMaker::__ANON__[:75]
0000s0sDBIx::Class::SQLMaker::::__ANON__[:80]DBIx::Class::SQLMaker::__ANON__[:80]
0000s0sDBIx::Class::SQLMaker::::_generate_join_clauseDBIx::Class::SQLMaker::_generate_join_clause
0000s0sDBIx::Class::SQLMaker::::_join_conditionDBIx::Class::SQLMaker::_join_condition
0000s0sDBIx::Class::SQLMaker::::_lock_selectDBIx::Class::SQLMaker::_lock_select
0000s0sDBIx::Class::SQLMaker::::_quote_charsDBIx::Class::SQLMaker::_quote_chars
0000s0sDBIx::Class::SQLMaker::::_quoting_enabledDBIx::Class::SQLMaker::_quoting_enabled
0000s0sDBIx::Class::SQLMaker::::_split_order_chunkDBIx::Class::SQLMaker::_split_order_chunk
0000s0sDBIx::Class::SQLMaker::::_where_op_NESTDBIx::Class::SQLMaker::_where_op_NEST
0000s0sDBIx::Class::SQLMaker::::_where_op_multicolumn_inDBIx::Class::SQLMaker::_where_op_multicolumn_in
0000s0sDBIx::Class::SQLMaker::::insertDBIx::Class::SQLMaker::insert
0000s0sDBIx::Class::SQLMaker::::throw_exceptionDBIx::Class::SQLMaker::throw_exception
0000s0sSQL::Abstract::::belch SQL::Abstract::belch
0000s0sSQL::Abstract::::puke SQL::Abstract::puke
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package DBIx::Class::SQLMaker;
2
3233µs225µs
# spent 19µs (13+6) within DBIx::Class::SQLMaker::BEGIN@3 which was called: # once (13µs+6µs) by base::import at line 3
use strict;
# spent 19µs making 1 call to DBIx::Class::SQLMaker::BEGIN@3 # spent 6µs making 1 call to strict::import
4247µs215µs
# spent 11µs (7+4) within DBIx::Class::SQLMaker::BEGIN@4 which was called: # once (7µs+4µs) by base::import at line 4
use warnings;
# spent 11µs making 1 call to DBIx::Class::SQLMaker::BEGIN@4 # spent 4µs making 1 call to warnings::import
5
6=head1 NAME
7
8DBIx::Class::SQLMaker - An SQL::Abstract-based SQL maker class
9
10=head1 DESCRIPTION
11
12This module is a subclass of L<SQL::Abstract> and includes a number of
13DBIC-specific workarounds, not yet suitable for inclusion into the
14L<SQL::Abstract> core. It also provides all (and more than) the functionality
15of L<SQL::Abstract::Limit>, see L<DBIx::Class::SQLMaker::LimitDialects> for
16more info.
17
18Currently the enhancements to L<SQL::Abstract> are:
19
20=over
21
22=item * Support for C<JOIN> statements (via extended C<table/from> support)
23
24=item * Support of functions in C<SELECT> lists
25
26=item * C<GROUP BY>/C<HAVING> support (via extensions to the order_by parameter)
27
28=item * Support of C<...FOR UPDATE> type of select statement modifiers
29
30=back
31
32=cut
33
341114µs10s
# spent 3.46ms (12µs+3.45) within DBIx::Class::SQLMaker::BEGIN@34 which was called: # once (12µs+3.45ms) by base::import at line 38
use base qw/
# spent 3.45ms making 1 call to base::import, recursion: max depth 1, sum of overlapping time 3.45ms
35 DBIx::Class::SQLMaker::LimitDialects
36 SQL::Abstract
37 DBIx::Class
38170µs13.46ms/;
# spent 3.46ms making 1 call to DBIx::Class::SQLMaker::BEGIN@34
39239µs224µs
# spent 19µs (13+6) within DBIx::Class::SQLMaker::BEGIN@39 which was called: # once (13µs+6µs) by base::import at line 39
use mro 'c3';
# spent 19µs making 1 call to DBIx::Class::SQLMaker::BEGIN@39 # spent 6µs making 1 call to mro::import
40
41257µs261µs
# spent 36µs (12+24) within DBIx::Class::SQLMaker::BEGIN@41 which was called: # once (12µs+24µs) by base::import at line 41
use Sub::Name 'subname';
# spent 36µs making 1 call to DBIx::Class::SQLMaker::BEGIN@41 # spent 24µs making 1 call to Exporter::import
42228µs297µs
# spent 54µs (11+43) within DBIx::Class::SQLMaker::BEGIN@42 which was called: # once (11µs+43µs) by base::import at line 42
use DBIx::Class::Carp;
# spent 54µs making 1 call to DBIx::Class::SQLMaker::BEGIN@42 # spent 43µs making 1 call to DBIx::Class::Carp::import
432304µs2240µs
# spent 125µs (9+115) within DBIx::Class::SQLMaker::BEGIN@43 which was called: # once (9µs+115µs) by base::import at line 43
use namespace::clean;
# spent 125µs making 1 call to DBIx::Class::SQLMaker::BEGIN@43 # spent 115µs making 1 call to namespace::clean::import
44
45137µs1223µs__PACKAGE__->mk_group_accessors (simple => qw/quote_char name_sep limit_dialect/);
# spent 223µs making 1 call to Class::Accessor::Grouped::mk_group_accessors
46
47sub _quoting_enabled {
48 ( defined $_[0]->{quote_char} and length $_[0]->{quote_char} ) ? 1 : 0
49}
50
51# for when I need a normalized l/r pair
52sub _quote_chars {
53
54 # in case we are called in the old !!$sm->_quote_chars fashion
55 return () if !wantarray and ( ! defined $_[0]->{quote_char} or ! length $_[0]->{quote_char} );
56
57 map
58 { defined $_ ? $_ : '' }
59 ( ref $_[0]->{quote_char} ? (@{$_[0]->{quote_char}}) : ( ($_[0]->{quote_char}) x 2 ) )
60 ;
61}
62
63# FIXME when we bring in the storage weaklink, check its schema
64# weaklink and channel through $schema->throw_exception
65sub throw_exception { DBIx::Class::Exception->throw($_[1]) }
66
67
# spent 61µs (46+15) within DBIx::Class::SQLMaker::BEGIN@67 which was called: # once (46µs+15µs) by base::import at line 81
BEGIN {
68 # reinstall the belch()/puke() functions of SQL::Abstract with custom versions
69 # that use DBIx::Class::Carp/DBIx::Class::Exception instead of plain Carp
702162µs249µs
# spent 30µs (11+19) within DBIx::Class::SQLMaker::BEGIN@70 which was called: # once (11µs+19µs) by base::import at line 70
no warnings qw/redefine/;
# spent 30µs making 1 call to DBIx::Class::SQLMaker::BEGIN@70 # spent 19µs making 1 call to warnings::unimport
71
72 *SQL::Abstract::belch = subname 'SQL::Abstract::belch' => sub (@) {
73 my($func) = (caller(1))[3];
74 carp "[$func] Warning: ", @_;
75132µs19µs };
# spent 9µs making 1 call to Sub::Name::subname
76
77 *SQL::Abstract::puke = subname 'SQL::Abstract::puke' => sub (@) {
78 my($func) = (caller(1))[3];
79 __PACKAGE__->throw_exception("[$func] Fatal: " . join ('', @_));
80129µs16µs };
# spent 6µs making 1 call to Sub::Name::subname
8112.67ms161µs}
# spent 61µs making 1 call to DBIx::Class::SQLMaker::BEGIN@67
82
83# the "oh noes offset/top without limit" constant
84# limited to 31 bits for sanity (and consistency,
85# since it may be handed to the like of sprintf %u)
86#
87# Also *some* builds of SQLite fail the test
88# some_column BETWEEN ? AND ?: 1, 4294967295
89# with the proper integer bind attrs
90#
91# Implemented as a method, since ::Storage::DBI also
92# refers to it (i.e. for the case of software_limit or
93# as the value to abuse with MSSQL ordered subqueries)
94sub __max_int () { 0x7FFFFFFF };
95
96# we ne longer need to check this - DBIC has ways of dealing with it
97# specifically ::Storage::DBI::_resolve_bindattrs()
98sub _assert_bindval_matches_bindtype () { 1 };
99
100# poor man's de-qualifier
101
# spent 937µs (378+559) within DBIx::Class::SQLMaker::_quote which was called 69 times, avg 14µs/call: # 60 times (320µs+476µs) by DBIx::Class::SQLMaker::_recurse_fields at line 238, avg 13µs/call # 3 times (23µs+32µs) by SQL::Abstract::__ANON__[/usr/share/perl5/SQL/Abstract.pm:941] at line 937 of SQL/Abstract.pm, avg 18µs/call # 3 times (18µs+26µs) by DBIx::Class::SQLMaker::_from_chunk_to_sql at line 423, avg 15µs/call # 3 times (17µs+24µs) by DBIx::Class::SQLMaker::_from_chunk_to_sql at line 442, avg 14µs/call
sub _quote {
10269418µs69171µs $_[0]->next::method( ( $_[0]{_dequalify_idents} and ! ref $_[1] )
# spent 171µs making 69 calls to next::method, avg 2µs/call
103 ? $_[1] =~ / ([^\.]+) $ /x
104 : $_[1]
105 );
106}
107
108sub _where_op_NEST {
109 carp_unique ("-nest in search conditions is deprecated, you most probably wanted:\n"
110 .q|{..., -and => [ \%cond0, \@cond1, \'cond2', \[ 'cond3', [ col => bind ] ], etc. ], ... }|
111 );
112
113 shift->next::method(@_);
114}
115
116# Handle limit-dialect selection
117
# spent 2.65ms (110µs+2.54) within DBIx::Class::SQLMaker::select which was called 3 times, avg 885µs/call: # 3 times (110µs+2.54ms) by DBIx::Class::Storage::DBI::_gen_sql_bind at line 1649 of DBIx/Class/Storage/DBI.pm, avg 885µs/call
sub select {
11832µs my ($self, $table, $fields, $where, $rs_attrs, $limit, $offset) = @_;
119
120
121314µs31.12ms ($fields, @{$self->{select_bind}}) = $self->_recurse_fields($fields);
# spent 1.12ms making 3 calls to DBIx::Class::SQLMaker::_recurse_fields, avg 372µs/call
122
12331µs if (defined $offset) {
124 $self->throw_exception('A supplied offset must be a non-negative integer')
125 if ( $offset =~ /\D/ or $offset < 0 );
126 }
12731µs $offset ||= 0;
128
12931µs if (defined $limit) {
130 $self->throw_exception('A supplied limit must be a positive integer')
131 if ( $limit =~ /\D/ or $limit <= 0 );
132 }
133 elsif ($offset) {
134 $limit = $self->__max_int;
135 }
136
137
1383800ns my ($sql, @bind);
13932µs if ($limit) {
140 # this is legacy code-flow from SQLA::Limit, it is not set in stone
141
142 ($sql, @bind) = $self->next::method ($table, $fields, $where);
143
144 my $limiter;
145
146 if( $limiter = $self->can ('emulate_limit') ) {
147 carp_unique(
148 'Support for the legacy emulate_limit() mechanism inherited from '
149 . 'SQL::Abstract::Limit has been deprecated, and will be removed when '
150 . 'DBIC transitions to Data::Query. If your code uses this type of '
151 . 'limit specification please file an RT and provide the source of '
152 . 'your emulate_limit() implementation, so an acceptable upgrade-path '
153 . 'can be devised'
154 );
155 }
156 else {
157 my $dialect = $self->limit_dialect
158 or $self->throw_exception( "Unable to generate SQL-limit - no limit dialect specified on $self" );
159
160 $limiter = $self->can ("_$dialect")
161 or $self->throw_exception(__PACKAGE__ . " does not implement the requested dialect '$dialect'");
162 }
163
164 $sql = $self->$limiter (
165 $sql,
166 { %{$rs_attrs||{}}, _selector_sql => $fields },
167 $limit,
168 $offset
169 );
170 }
171 else {
172324µs312µs ($sql, @bind) = $self->next::method ($table, $fields, $where, $rs_attrs);
# spent 12µs making 3 calls to next::method, avg 4µs/call
173 }
174
17534µs push @{$self->{where_bind}}, @bind;
176
177# this *must* be called, otherwise extra binds will remain in the sql-maker
17837µs321µs my @all_bind = $self->_assemble_binds;
# spent 21µs making 3 calls to DBIx::Class::SQLMaker::_assemble_binds, avg 7µs/call
179
18031µs $sql .= $self->_lock_select ($rs_attrs->{for})
181 if $rs_attrs->{for};
182
183310µs return wantarray ? ($sql, @all_bind) : $sql;
184}
185
186
# spent 21µs within DBIx::Class::SQLMaker::_assemble_binds which was called 3 times, avg 7µs/call: # 3 times (21µs+0s) by DBIx::Class::SQLMaker::select at line 178, avg 7µs/call
sub _assemble_binds {
18731µs my $self = shift;
188326µs return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/pre_select select from where group having order limit/);
189}
190
19112µsmy $for_syntax = {
192 update => 'FOR UPDATE',
193 shared => 'FOR SHARE',
194};
195sub _lock_select {
196 my ($self, $type) = @_;
197
198 my $sql;
199 if (ref($type) eq 'SCALAR') {
200 $sql = "FOR $$type";
201 }
202 else {
203 $sql = $for_syntax->{$type} || $self->throw_exception( "Unknown SELECT .. FOR type '$type' requested" );
204 }
205
206 return " $sql";
207}
208
209# Handle default inserts
210sub insert {
211# optimized due to hotttnesss
212# my ($self, $table, $data, $options) = @_;
213
214 # SQLA will emit INSERT INTO $table ( ) VALUES ( )
215 # which is sadly understood only by MySQL. Change default behavior here,
216 # until SQLA2 comes with proper dialect support
217 if (! $_[2] or (ref $_[2] eq 'HASH' and !keys %{$_[2]} ) ) {
218 my @bind;
219 my $sql = sprintf(
220 'INSERT INTO %s DEFAULT VALUES', $_[0]->_quote($_[1])
221 );
222
223 if ( ($_[3]||{})->{returning} ) {
224 my $s;
225 ($s, @bind) = $_[0]->_insert_returning ($_[3]);
226 $sql .= $s;
227 }
228
229 return ($sql, @bind);
230 }
231
232 next::method(@_);
233}
234
235
# spent 1.12ms (319µs+797µs) within DBIx::Class::SQLMaker::_recurse_fields which was called 63 times, avg 18µs/call: # 60 times (157µs+-157µs) by DBIx::Class::SQLMaker::_recurse_fields at line 244, avg 0s/call # 3 times (162µs+954µs) by DBIx::Class::SQLMaker::select at line 121, avg 372µs/call
sub _recurse_fields {
2366319µs my ($self, $fields) = @_;
2376316µs my $ref = ref $fields;
23863108µs60797µs return $self->_quote($fields) unless $ref;
# spent 797µs making 60 calls to DBIx::Class::SQLMaker::_quote, avg 13µs/call
23932µs return $$fields if $ref eq 'SCALAR';
240
24131µs if ($ref eq 'ARRAY') {
2423400ns my (@select, @bind);
24333µs for my $field (@$fields) {
2446072µs600s my ($select, @new_bind) = $self->_recurse_fields($field);
# spent 954µs making 60 calls to DBIx::Class::SQLMaker::_recurse_fields, avg 16µs/call, recursion: max depth 1, sum of overlapping time 954µs
2456016µs push @select, $select;
2466023µs push @bind, @new_bind;
247 }
248315µs return (join(', ', @select), @bind);
249 }
250 elsif ($ref eq 'HASH') {
251 my %hash = %$fields; # shallow copy
252
253 my $as = delete $hash{-as}; # if supplied
254
255 my ($func, $rhs, @toomany) = %hash;
256
257 # there should be only one pair
258 if (@toomany) {
259 $self->throw_exception( "Malformed select argument - too many keys in hash: " . join (',', keys %$fields ) );
260 }
261
262 if (lc ($func) eq 'distinct' && ref $rhs eq 'ARRAY' && @$rhs > 1) {
263 $self->throw_exception (
264 'The select => { distinct => ... } syntax is not supported for multiple columns.'
265 .' Instead please use { group_by => [ qw/' . (join ' ', @$rhs) . '/ ] }'
266 .' or { select => [ qw/' . (join ' ', @$rhs) . '/ ], distinct => 1 }'
267 );
268 }
269
270 my ($rhs_sql, @rhs_bind) = $self->_recurse_fields($rhs);
271 my $select = sprintf ('%s( %s )%s',
272 $self->_sqlcase($func),
273 $rhs_sql,
274 $as
275 ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
276 : ''
277 );
278
279 return ($select, @rhs_bind);
280 }
281 elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
282 return @{$$fields};
283 }
284 else {
285 $self->throw_exception( $ref . qq{ unexpected in _recurse_fields()} );
286 }
287}
288
289
290# this used to be a part of _order_by but is broken out for clarity.
291# What we have been doing forever is hijacking the $order arg of
292# SQLA::select to pass in arbitrary pieces of data (first the group_by,
293# then pretty much the entire resultset attr-hash, as more and more
294# things in the SQLA space need to have more info about the $rs they
295# create SQL for. The alternative would be to keep expanding the
296# signature of _select with more and more positional parameters, which
297# is just gross. All hail SQLA2!
298
# spent 10µs within DBIx::Class::SQLMaker::_parse_rs_attrs which was called 3 times, avg 3µs/call: # 3 times (10µs+0s) by DBIx::Class::SQLMaker::_order_by at line 327, avg 3µs/call
sub _parse_rs_attrs {
29931µs my ($self, $arg) = @_;
300
30132µs my $sql = '';
302
30332µs if ($arg->{group_by}) {
304 if ( my ($group_sql, @group_bind) = $self->_recurse_fields($arg->{group_by}) ) {
305 $sql .= $self->_sqlcase(' group by ') . $group_sql;
306 push @{$self->{group_bind}}, @group_bind;
307 }
308 }
309
31031µs if (defined $arg->{having}) {
311 my ($frag, @bind) = $self->_recurse_where($arg->{having});
312 push(@{$self->{having_bind}}, @bind);
313 $sql .= $self->_sqlcase(' having ') . $frag;
314 }
315
31631µs if (defined $arg->{order_by}) {
317 $sql .= $self->_order_by ($arg->{order_by});
318 }
319
320310µs return $sql;
321}
322
323
# spent 78µs (63+15) within DBIx::Class::SQLMaker::_order_by which was called 3 times, avg 26µs/call: # 3 times (63µs+15µs) by SQL::Abstract::where at line 479 of SQL/Abstract.pm, avg 26µs/call
sub _order_by {
32431µs my ($self, $arg) = @_;
325
326 # check that we are not called in legacy mode (order_by as 4th argument)
3273062µs3015µs if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
# spent 10µs making 3 calls to DBIx::Class::SQLMaker::_parse_rs_attrs, avg 3µs/call # spent 5µs making 27 calls to DBIx::Class::SQLMaker::CORE:match, avg 174ns/call
328 return $self->_parse_rs_attrs ($arg);
329 }
330 else {
331 my ($sql, @bind) = $self->next::method($arg);
332 push @{$self->{order_bind}}, @bind;
333 return $sql;
334 }
335}
336
337sub _split_order_chunk {
338 my ($self, $chunk) = @_;
339
340 # strip off sort modifiers, but always succeed, so $1 gets reset
341 $chunk =~ s/ (?: \s+ (ASC|DESC) )? \s* $//ix;
342
343 return (
344 $chunk,
345 ( $1 and uc($1) eq 'DESC' ) ? 1 : 0,
346 );
347}
348
349
# spent 222µs (21+201) within DBIx::Class::SQLMaker::_table which was called 3 times, avg 74µs/call: # 3 times (21µs+201µs) by DBIx::Class::SQLMaker::select at line 430 of SQL/Abstract.pm, avg 74µs/call
sub _table {
350# optimized due to hotttnesss
351# my ($self, $from) = @_;
35233µs if (my $ref = ref $_[1] ) {
353315µs3201µs if ($ref eq 'ARRAY') {
# spent 201µs making 3 calls to DBIx::Class::SQLMaker::_recurse_from, avg 67µs/call
354 return $_[0]->_recurse_from(@{$_[1]});
355 }
356 elsif ($ref eq 'HASH') {
357 return $_[0]->_recurse_from($_[1]);
358 }
359 elsif ($ref eq 'REF' && ref ${$_[1]} eq 'ARRAY') {
360 my ($sql, @bind) = @{ ${$_[1]} };
361 push @{$_[0]->{from_bind}}, @bind;
362 return $sql
363 }
364 }
365 return $_[0]->next::method ($_[1]);
366}
367
368sub _generate_join_clause {
369 my ($self, $join_type) = @_;
370
371 $join_type = $self->{_default_jointype}
372 if ! defined $join_type;
373
374 return sprintf ('%s JOIN ',
375 $join_type ? $self->_sqlcase($join_type) : ''
376 );
377}
378
379
# spent 201µs (14+187) within DBIx::Class::SQLMaker::_recurse_from which was called 3 times, avg 67µs/call: # 3 times (14µs+187µs) by DBIx::Class::SQLMaker::_table at line 353, avg 67µs/call
sub _recurse_from {
3803700ns my $self = shift;
381316µs3187µs return join (' ', $self->_gen_from_blocks(@_) );
# spent 187µs making 3 calls to DBIx::Class::SQLMaker::_gen_from_blocks, avg 62µs/call
382}
383
384
# spent 187µs (18+168) within DBIx::Class::SQLMaker::_gen_from_blocks which was called 3 times, avg 62µs/call: # 3 times (18µs+168µs) by DBIx::Class::SQLMaker::_recurse_from at line 381, avg 62µs/call
sub _gen_from_blocks {
38532µs my ($self, $from, @joins) = @_;
386
38738µs3168µs my @fchunks = $self->_from_chunk_to_sql($from);
# spent 168µs making 3 calls to DBIx::Class::SQLMaker::_from_chunk_to_sql, avg 56µs/call
388
38932µs for (@joins) {
390 my ($to, $on) = @$_;
391
392 # check whether a join type exists
393 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
394 my $join_type;
395 if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
396 $join_type = $to_jt->{-join_type};
397 $join_type =~ s/^\s+ | \s+$//xg;
398 }
399
400 my @j = $self->_generate_join_clause( $join_type );
401
402 if (ref $to eq 'ARRAY') {
403 push(@j, '(', $self->_recurse_from(@$to), ')');
404 }
405 else {
406 push(@j, $self->_from_chunk_to_sql($to));
407 }
408
409 my ($sql, @bind) = $self->_join_condition($on);
410 push(@j, ' ON ', $sql);
411 push @{$self->{from_bind}}, @bind;
412
413 push @fchunks, join '', @j;
414 }
415
41638µs return @fchunks;
417}
418
419
# spent 168µs (75+93) within DBIx::Class::SQLMaker::_from_chunk_to_sql which was called 6 times, avg 28µs/call: # 3 times (60µs+109µs) by DBIx::Class::SQLMaker::_gen_from_blocks at line 387, avg 56µs/call # 3 times (16µs+-16µs) by DBIx::Class::SQLMaker::_from_chunk_to_sql at line 442, avg 0s/call
sub _from_chunk_to_sql {
42062µs my ($self, $fromspec) = @_;
421
422617µs return join (' ', do {
42369µs344µs if (! ref $fromspec) {
# spent 44µs making 3 calls to DBIx::Class::SQLMaker::_quote, avg 15µs/call
424 $self->_quote($fromspec);
425 }
426 elsif (ref $fromspec eq 'SCALAR') {
427 $$fromspec;
428 }
429 elsif (ref $fromspec eq 'REF' and ref $$fromspec eq 'ARRAY') {
430 push @{$self->{from_bind}}, @{$$fromspec}[1..$#$$fromspec];
431 $$fromspec->[0];
432 }
433 elsif (ref $fromspec eq 'HASH') {
434 my ($as, $table, $toomuch) = ( map
435926µs99µs { $_ => $fromspec->{$_} }
# spent 9µs making 9 calls to DBIx::Class::SQLMaker::CORE:match, avg 956ns/call
436313µs ( grep { $_ !~ /^\-/ } keys %$fromspec )
437 );
438
4393700ns $self->throw_exception( "Only one table/as pair expected in from-spec but an exra '$toomuch' key present" )
440 if defined $toomuch;
441
442311µs641µs ($self->_from_chunk_to_sql($table), $self->_quote($as) );
# spent 41µs making 3 calls to DBIx::Class::SQLMaker::_quote, avg 14µs/call # spent 59µs making 3 calls to DBIx::Class::SQLMaker::_from_chunk_to_sql, avg 20µs/call, recursion: max depth 1, sum of overlapping time 59µs
443 }
444 else {
445 $self->throw_exception('Unsupported from refkind: ' . ref $fromspec );
446 }
447 });
448}
449
450sub _join_condition {
451 my ($self, $cond) = @_;
452
453 # Backcompat for the old days when a plain hashref
454 # { 't1.col1' => 't2.col2' } meant ON t1.col1 = t2.col2
455 if (
456 ref $cond eq 'HASH'
457 and
458 keys %$cond == 1
459 and
460 (keys %$cond)[0] =~ /\./
461 and
462 ! ref ( (values %$cond)[0] )
463 ) {
464 carp_unique(
465 "ResultSet {from} structures with conditions not conforming to the "
466 . "SQL::Abstract syntax are deprecated: you either need to stop abusing "
467 . "{from} altogether, or express the condition properly using the "
468 . "{ -ident => ... } operator"
469 );
470 $cond = { keys %$cond => { -ident => values %$cond } }
471 }
472 elsif ( ref $cond eq 'ARRAY' ) {
473 # do our own ORing so that the hashref-shim above is invoked
474 my @parts;
475 my @binds;
476 foreach my $c (@$cond) {
477 my ($sql, @bind) = $self->_join_condition($c);
478 push @binds, @bind;
479 push @parts, $sql;
480 }
481 return join(' OR ', @parts), @binds;
482 }
483
484 return $self->_recurse_where($cond);
485}
486
487# This is hideously ugly, but SQLA does not understand multicol IN expressions
488# FIXME TEMPORARY - DQ should have native syntax for this
489# moved here to raise API questions
490#
491# !!! EXPERIMENTAL API !!! WILL CHANGE !!!
492sub _where_op_multicolumn_in {
493 my ($self, $lhs, $rhs) = @_;
494
495 if (! ref $lhs or ref $lhs eq 'ARRAY') {
496 my (@sql, @bind);
497 for (ref $lhs ? @$lhs : $lhs) {
498 if (! ref $_) {
499 push @sql, $self->_quote($_);
500 }
501 elsif (ref $_ eq 'SCALAR') {
502 push @sql, $$_;
503 }
504 elsif (ref $_ eq 'REF' and ref $$_ eq 'ARRAY') {
505 my ($s, @b) = @$$_;
506 push @sql, $s;
507 push @bind, @b;
508 }
509 else {
510 $self->throw_exception("ARRAY of @{[ ref $_ ]}es unsupported for multicolumn IN lhs...");
511 }
512 }
513 $lhs = \[ join(', ', @sql), @bind];
514 }
515 elsif (ref $lhs eq 'SCALAR') {
516 $lhs = \[ $$lhs ];
517 }
518 elsif (ref $lhs eq 'REF' and ref $$lhs eq 'ARRAY' ) {
519 # noop
520 }
521 else {
522 $self->throw_exception( ref($lhs) . "es unsupported for multicolumn IN lhs...");
523 }
524
525 # is this proper...?
526 $rhs = \[ $self->_recurse_where($rhs) ];
527
528 for ($lhs, $rhs) {
529 $$_->[0] = "( $$_->[0] )"
530 unless $$_->[0] =~ /^ \s* \( .* \) \s* $/xs;
531 }
532
533 \[ join( ' IN ', shift @$$lhs, shift @$$rhs ), @$$lhs, @$$rhs ];
534}
535
536=head1 FURTHER QUESTIONS?
537
538Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
539
540=head1 COPYRIGHT AND LICENSE
541
542This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
543by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
544redistribute it and/or modify it under the same terms as the
545L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
546
547=cut
548
54916µs1156µs1;
# spent 156µs making 1 call to B::Hooks::EndOfScope::XS::__ANON__
 
# spent 13µs within DBIx::Class::SQLMaker::CORE:match which was called 36 times, avg 369ns/call: # 27 times (5µs+0s) by DBIx::Class::SQLMaker::_order_by at line 327, avg 174ns/call # 9 times (9µs+0s) by DBIx::Class::SQLMaker::_from_chunk_to_sql at line 435, avg 956ns/call
sub DBIx::Class::SQLMaker::CORE:match; # opcode