1 package # hide from PAUSE
7 use constant SPURIOUS_VERSION_CHECK_WARNINGS => ( "$]" < 5.010 ? 1 : 0);
10 package # hide from pause
18 BROKEN_FORK => ($^O eq 'MSWin32') ? 1 : 0,
20 BROKEN_GOTO => ( "$]" < 5.008003 ) ? 1 : 0,
22 HAS_ITHREADS => $Config{useithreads} ? 1 : 0,
24 UNSTABLE_DOLLARAT => ( "$]" < 5.013002 ) ? 1 : 0,
26 DBICTEST => $INC{"DBICTest/Util.pm"} ? 1 : 0,
28 # During 5.13 dev cycle HELEMs started to leak on copy
29 # add an escape for these perls ON SMOKERS - a user will still get death
30 PEEPEENESS => ( eval { DBICTest::RunMode->is_smoker } && ( "$]" >= 5.013005 and "$]" <= 5.013006) ),
32 SHUFFLE_UNORDERED_RESULTSETS => $ENV{DBIC_SHUFFLE_UNORDERED_RESULTSETS} ? 1 : 0,
34 ASSERT_NO_INTERNAL_WANTARRAY => $ENV{DBIC_ASSERT_NO_INTERNAL_WANTARRAY} ? 1 : 0,
36 ASSERT_NO_INTERNAL_INDIRECT_CALLS => $ENV{DBIC_ASSERT_NO_INTERNAL_INDIRECT_CALLS} ? 1 : 0,
38 STRESSTEST_UTF8_UPGRADE_GENERATED_COLLAPSER_SOURCE => $ENV{DBIC_STRESSTEST_UTF8_UPGRADE_GENERATED_COLLAPSER_SOURCE} ? 1 : 0,
40 STRESSTEST_COLUMN_INFO_UNAWARE_STORAGE => $ENV{DBIC_STRESSTEST_COLUMN_INFO_UNAWARE_STORAGE} ? 1 : 0,
42 IV_SIZE => $Config{ivsize},
47 if ( "$]" < 5.009_005) {
49 constant->import( OLD_MRO => 1 );
53 constant->import( OLD_MRO => 0 );
57 # FIXME - this is not supposed to be here
58 # Carp::Skip to the rescue soon
59 use DBIx::Class::Carp '^DBIx::Class|^DBICTest';
63 use Storable 'nfreeze';
64 use Scalar::Util qw(weaken blessed reftype refaddr);
65 use List::Util qw(first);
66 use Sub::Quote qw(qsub quote_sub);
68 # Already correctly prototyped: perlbrew exec perl -MStorable -e 'warn prototype \&Storable::dclone'
69 BEGIN { *deep_clone = \&Storable::dclone }
73 sigwarn_silencer modver_gt_or_eq modver_gt_or_eq_and_lt
74 fail_on_internal_wantarray fail_on_internal_call
75 refdesc refcount hrefaddr
76 scope_guard is_exception detected_reinvoked_destructor
77 quote_sub qsub perlstring serialize deep_clone
78 UNRESOLVABLE_CONDITION
81 use constant UNRESOLVABLE_CONDITION => \ '1 = 0';
83 sub sigwarn_silencer ($) {
86 croak "Expecting a regexp" if ref $pattern ne 'Regexp';
88 my $orig_sig_warn = $SIG{__WARN__} || sub { CORE::warn(@_) };
90 return sub { &$orig_sig_warn unless $_[0] =~ $pattern };
93 sub perlstring ($) { q{"}. quotemeta( shift ). q{"} };
95 sub hrefaddr ($) { sprintf '0x%x', &refaddr||0 }
98 croak "Expecting a reference" if ! length ref $_[0];
100 # be careful not to trigger stringification,
101 # reuse @_ as a scratch-pad
102 sprintf '%s%s(0x%x)',
103 ( defined( $_[1] = blessed $_[0]) ? "$_[1]=" : '' ),
110 croak "Expecting a reference" if ! length ref $_[0];
112 # No tempvars - must operate on $_[0], otherwise the pad
113 # will count as an extra ref
114 B::svref_2object($_[0])->REFCNT;
118 local $Storable::canonical = 1;
122 sub scope_guard (&) {
123 croak 'Calling scope_guard() in void context makes no sense'
124 if ! defined wantarray;
126 # no direct blessing of coderefs - DESTROY is buggy on those
127 bless [ $_[0] ], 'DBIx::Class::_Util::ScopeGuard';
131 DBIx::Class::_Util::ScopeGuard;
134 &DBIx::Class::_Util::detected_reinvoked_destructor;
136 local $@ if DBIx::Class::_ENV_::UNSTABLE_DOLLARAT;
142 Carp::cluck "Execution of scope guard $_[0] resulted in the non-trappable exception:\n\n$@";
148 sub is_exception ($) {
152 # this is not strictly correct - an eval setting $@ to undef
153 # is *not* the same as an eval setting $@ to ''
154 # but for the sake of simplicity assume the following for
156 return 0 unless defined $e;
158 my ($not_blank, $suberror);
162 # The ne() here is deliberate - a plain length($e), or worse "$e" ne
163 # will entirely obviate the need for the encolsing eval{}, as the
164 # condition we guard against is a missing fallback overload
165 $not_blank = ( $e ne '' );
170 if (defined $suberror) {
171 if (length (my $class = blessed($e) )) {
172 carp_unique( sprintf(
173 'External exception class %s implements partial (broken) overloading '
174 . 'preventing its instances from being used in simple ($x eq $y) '
175 . 'comparisons. Given Perl\'s "globally cooperative" exception '
176 . 'handling this type of brokenness is extremely dangerous on '
177 . 'exception objects, as it may (and often does) result in silent '
178 . '"exception substitution". DBIx::Class tries to work around this '
179 . 'as much as possible, but other parts of your software stack may '
180 . 'not be even aware of this. Please submit a bugreport against the '
181 . 'distribution containing %s and in the meantime apply a fix similar '
182 . 'to the one shown at %s, in order to ensure your exception handling '
183 . 'is saner application-wide. What follows is the actual error text '
184 . "as generated by Perl itself:\n\n%s\n ",
187 'http://v.gd/DBIC_overload_tempfix/',
191 # workaround, keeps spice flowing
192 $not_blank = !!( length $e );
195 # not blessed yet failed the 'ne'... this makes 0 sense...
201 # a ref evaluating to '' is definitively a "null object"
204 length( my $class = ref $e )
206 carp_unique( sprintf(
207 "Objects of external exception class '%s' stringify to '' (the "
208 . 'empty string), implementing the so called null-object-pattern. '
209 . 'Given Perl\'s "globally cooperative" exception handling using this '
210 . 'class of exceptions is extremely dangerous, as it may (and often '
211 . 'does) result in silent discarding of errors. DBIx::Class tries to '
212 . 'work around this as much as possible, but other parts of your '
213 . 'software stack may not be even aware of the problem. Please submit '
214 . 'a bugreport against the distribution containing %s',
226 my $destruction_registry = {};
229 $destruction_registry = { map
230 { defined $_ ? ( refaddr($_) => $_ ) : () }
231 values %$destruction_registry
235 # This is almost invariably invoked from within DESTROY
236 # throwing exceptions won't work
237 sub detected_reinvoked_destructor {
239 # quick "garbage collection" pass - prevents the registry
240 # from slowly growing with a bunch of undef-valued keys
241 defined $destruction_registry->{$_} or delete $destruction_registry->{$_}
242 for keys %$destruction_registry;
244 if (! length ref $_[0]) {
245 printf STDERR '%s() expects a blessed reference %s',
249 return undef; # don't know wtf to do
251 elsif (! defined $destruction_registry->{ my $addr = refaddr($_[0]) } ) {
252 weaken( $destruction_registry->{$addr} = $_[0] );
256 carp_unique ( sprintf (
257 'Preventing *MULTIPLE* DESTROY() invocations on %s - an *EXTREMELY '
258 . 'DANGEROUS* condition which is *ALMOST CERTAINLY GLOBAL* within your '
259 . 'application, affecting *ALL* classes without active protection against '
260 . 'this. Diagnose and fix the root cause ASAP!!!%s',
262 ( ( $INC{'Devel/StackTrace.pm'} and ! do { local $@; eval { Devel::StackTrace->VERSION(2) } } )
263 ? " (likely culprit Devel::StackTrace\@@{[ Devel::StackTrace->VERSION ]} found in %INC, http://is.gd/D_ST_refcap)"
273 sub modver_gt_or_eq ($$) {
274 my ($mod, $ver) = @_;
276 croak "Nonsensical module name supplied"
277 if ! defined $mod or ! length $mod;
279 croak "Nonsensical minimum version supplied"
280 if ! defined $ver or $ver =~ /[^0-9\.\_]/;
282 local $SIG{__WARN__} = sigwarn_silencer( qr/\Qisn't numeric in subroutine entry/ )
283 if SPURIOUS_VERSION_CHECK_WARNINGS;
285 croak "$mod does not seem to provide a version (perhaps it never loaded)"
286 unless $mod->VERSION;
289 eval { $mod->VERSION($ver) } ? 1 : 0;
292 sub modver_gt_or_eq_and_lt ($$$) {
293 my ($mod, $v_ge, $v_lt) = @_;
295 croak "Nonsensical maximum version supplied"
296 if ! defined $v_lt or $v_lt =~ /[^0-9\.\_]/;
299 modver_gt_or_eq($mod, $v_ge)
301 ! modver_gt_or_eq($mod, $v_lt)
306 my $list_ctx_ok_stack_marker;
308 sub fail_on_internal_wantarray () {
309 return if $list_ctx_ok_stack_marker;
311 if (! defined wantarray) {
312 croak('fail_on_internal_wantarray() needs a tempvar to save the stack marker guard');
316 while ( ( (CORE::caller($cf+1))[3] || '' ) =~ / :: (?:
318 # these are public API parts that alter behavior on wantarray
319 search | search_related | slice | search_literal
323 # these are explicitly prefixed, since we only recognize them as valid
324 # escapes when they come from the guts of CDBICompat
325 CDBICompat .*? :: (?: search_where | retrieve_from_sql | retrieve_all )
331 my ($fr, $want, $argdesc);
334 $fr = [ CORE::caller($cf) ];
335 $want = ( CORE::caller($cf-1) )[5];
336 $argdesc = ref $DB::args[0]
337 ? DBIx::Class::_Util::refdesc($DB::args[0])
343 $want and $fr->[0] =~ /^(?:DBIx::Class|DBICx::)/
345 DBIx::Class::Exception->throw( sprintf (
346 "Improper use of %s instance in list context at %s line %d\n\n Stacktrace starts",
347 $argdesc, @{$fr}[1,2]
348 ), 'with_stacktrace');
352 weaken ( $list_ctx_ok_stack_marker = $mark );
357 sub fail_on_internal_call {
361 $fr = [ CORE::caller(1) ];
362 $argdesc = ref $DB::args[0]
363 ? DBIx::Class::_Util::refdesc($DB::args[0])
371 $fr->[0] =~ /^(?:DBIx::Class|DBICx::)/
373 $fr->[1] !~ /\b(?:CDBICompat|ResultSetProxy)\b/ # no point touching there
375 DBIx::Class::Exception->throw( sprintf (
376 "Illegal internal call of indirect proxy-method %s() with argument %s: examine the last lines of the proxy method deparse below to determine what to call directly instead at %s on line %d\n\n%s\n\n Stacktrace starts",
377 $fr->[3], $argdesc, @{$fr}[1,2], ( $fr->[6] || do {
380 B::Deparse->new->coderef2text(\&{$fr->[3]})
382 ), 'with_stacktrace');