Newer Test::More lazy-loads more stuff (overload.pm in this case)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / _Util.pm
CommitLineData
b1dbf716 1package # hide from PAUSE
2 DBIx::Class::_Util;
3
4use warnings;
5use strict;
6
7use constant SPURIOUS_VERSION_CHECK_WARNINGS => ($] < 5.010 ? 1 : 0);
8
37873f78 9BEGIN {
10 package # hide from pause
11 DBIx::Class::_ENV_;
12
13 use Config;
14
15 use constant {
16
17 # but of course
18 BROKEN_FORK => ($^O eq 'MSWin32') ? 1 : 0,
19
8d73fcd4 20 BROKEN_GOTO => ($] < '5.008003') ? 1 : 0,
21
37873f78 22 HAS_ITHREADS => $Config{useithreads} ? 1 : 0,
23
24 # ::Runmode would only be loaded by DBICTest, which in turn implies t/
25 DBICTEST => eval { DBICTest::RunMode->is_author } ? 1 : 0,
26
27 # During 5.13 dev cycle HELEMs started to leak on copy
6cfb1d2f 28 # add an escape for these perls ON SMOKERS - a user will still get death
29 PEEPEENESS => ( eval { DBICTest::RunMode->is_smoker } && ($] >= 5.013005 and $] <= 5.013006) ),
37873f78 30
1b658919 31 SHUFFLE_UNORDERED_RESULTSETS => $ENV{DBIC_SHUFFLE_UNORDERED_RESULTSETS} ? 1 : 0,
32
37873f78 33 ASSERT_NO_INTERNAL_WANTARRAY => $ENV{DBIC_ASSERT_NO_INTERNAL_WANTARRAY} ? 1 : 0,
34
77c3a5dc 35 ASSERT_NO_INTERNAL_INDIRECT_CALLS => $ENV{DBIC_ASSERT_NO_INTERNAL_INDIRECT_CALLS} ? 1 : 0,
36
37873f78 37 IV_SIZE => $Config{ivsize},
00882d2c 38
39 OS_NAME => $^O,
37873f78 40 };
41
42 if ($] < 5.009_005) {
43 require MRO::Compat;
44 constant->import( OLD_MRO => 1 );
45 }
46 else {
47 require mro;
48 constant->import( OLD_MRO => 0 );
49 }
50}
51
841efcb3 52# FIXME - this is not supposed to be here
53# Carp::Skip to the rescue soon
54use DBIx::Class::Carp '^DBIx::Class|^DBICTest';
55
56use Carp 'croak';
bf302897 57use Scalar::Util qw(weaken blessed reftype);
3705e3b2 58use List::Util qw(first);
b1dbf716 59
7f9a3f70 60# DO NOT edit away without talking to riba first, he will just put it back
61# BEGIN pre-Moo2 import block
62BEGIN {
63 my $initial_fatal_bits = (${^WARNING_BITS}||'') & $warnings::DeadBits{all};
cbd7f87a 64
7f9a3f70 65 local $ENV{PERL_STRICTURES_EXTRA} = 0;
cbd7f87a 66 # load all of these now, so that lazy-loading does not escape
67 # the current PERL_STRICTURES_EXTRA setting
68 require Sub::Quote;
69 require Sub::Defer;
70
71 Sub::Quote->import('quote_sub');
7f9a3f70 72 ${^WARNING_BITS} &= ( $initial_fatal_bits | ~ $warnings::DeadBits{all} );
73}
74sub qsub ($) { goto &quote_sub } # no point depping on new Moo just for this
75# END pre-Moo2 import block
76
b1dbf716 77use base 'Exporter';
3705e3b2 78our @EXPORT_OK = qw(
77c3a5dc 79 sigwarn_silencer modver_gt_or_eq
80 fail_on_internal_wantarray fail_on_internal_call
8433421f 81 refdesc refcount hrefaddr is_exception
b34d9331 82 quote_sub qsub perlstring serialize
facd0e8e 83 UNRESOLVABLE_CONDITION
3705e3b2 84);
052a832c 85
facd0e8e 86use constant UNRESOLVABLE_CONDITION => \ '1 = 0';
87
bf302897 88sub sigwarn_silencer ($) {
052a832c 89 my $pattern = shift;
90
91 croak "Expecting a regexp" if ref $pattern ne 'Regexp';
92
93 my $orig_sig_warn = $SIG{__WARN__} || sub { CORE::warn(@_) };
94
95 return sub { &$orig_sig_warn unless $_[0] =~ $pattern };
96}
b1dbf716 97
01b25f12 98sub perlstring ($) { q{"}. quotemeta( shift ). q{"} };
99
8433421f 100sub hrefaddr ($) { sprintf '0x%x', &Scalar::Util::refaddr||0 }
101
102sub refdesc ($) {
103 croak "Expecting a reference" if ! length ref $_[0];
104
105 # be careful not to trigger stringification,
106 # reuse @_ as a scratch-pad
107 sprintf '%s%s(0x%x)',
108 ( defined( $_[1] = blessed $_[0]) ? "$_[1]=" : '' ),
109 reftype $_[0],
110 Scalar::Util::refaddr($_[0]),
111 ;
112}
bf302897 113
114sub refcount ($) {
dac7972a 115 croak "Expecting a reference" if ! length ref $_[0];
116
117 require B;
118 # No tempvars - must operate on $_[0], otherwise the pad
119 # will count as an extra ref
120 B::svref_2object($_[0])->REFCNT;
121}
122
b34d9331 123sub serialize ($) {
124 require Storable;
125 local $Storable::canonical = 1;
126 Storable::nfreeze($_[0]);
127}
128
841efcb3 129sub is_exception ($) {
130 my $e = $_[0];
131
a0414138 132 # this is not strictly correct - an eval setting $@ to undef
133 # is *not* the same as an eval setting $@ to ''
134 # but for the sake of simplicity assume the following for
135 # the time being
136 return 0 unless defined $e;
137
841efcb3 138 my ($not_blank, $suberror);
139 {
140 local $@;
141 eval {
142 $not_blank = ($e ne '') ? 1 : 0;
143 1;
144 } or $suberror = $@;
145 }
146
147 if (defined $suberror) {
148 if (length (my $class = blessed($e) )) {
149 carp_unique( sprintf(
9bea2000 150 'External exception class %s implements partial (broken) overloading '
151 . 'preventing its instances from being used in simple ($x eq $y) '
841efcb3 152 . 'comparisons. Given Perl\'s "globally cooperative" exception '
153 . 'handling this type of brokenness is extremely dangerous on '
154 . 'exception objects, as it may (and often does) result in silent '
155 . '"exception substitution". DBIx::Class tries to work around this '
156 . 'as much as possible, but other parts of your software stack may '
157 . 'not be even aware of this. Please submit a bugreport against the '
158 . 'distribution containing %s and in the meantime apply a fix similar '
159 . 'to the one shown at %s, in order to ensure your exception handling '
160 . 'is saner application-wide. What follows is the actual error text '
161 . "as generated by Perl itself:\n\n%s\n ",
9bea2000 162 $class,
841efcb3 163 $class,
164 'http://v.gd/DBIC_overload_tempfix/',
165 $suberror,
166 ));
167
168 # workaround, keeps spice flowing
169 $not_blank = ("$e" ne '') ? 1 : 0;
170 }
171 else {
172 # not blessed yet failed the 'ne'... this makes 0 sense...
173 # just throw further
174 die $suberror
175 }
176 }
177
178 return $not_blank;
179}
180
bf302897 181sub modver_gt_or_eq ($$) {
b1dbf716 182 my ($mod, $ver) = @_;
183
184 croak "Nonsensical module name supplied"
185 if ! defined $mod or ! length $mod;
186
187 croak "Nonsensical minimum version supplied"
188 if ! defined $ver or $ver =~ /[^0-9\.\_]/;
189
052a832c 190 local $SIG{__WARN__} = sigwarn_silencer( qr/\Qisn't numeric in subroutine entry/ )
191 if SPURIOUS_VERSION_CHECK_WARNINGS;
b1dbf716 192
56270bba 193 croak "$mod does not seem to provide a version (perhaps it never loaded)"
194 unless $mod->VERSION;
195
b1dbf716 196 local $@;
197 eval { $mod->VERSION($ver) } ? 1 : 0;
198}
199
a9da9b6a 200{
201 my $list_ctx_ok_stack_marker;
202
e89c7968 203 sub fail_on_internal_wantarray () {
a9da9b6a 204 return if $list_ctx_ok_stack_marker;
205
206 if (! defined wantarray) {
207 croak('fail_on_internal_wantarray() needs a tempvar to save the stack marker guard');
208 }
209
210 my $cf = 1;
211 while ( ( (caller($cf+1))[3] || '' ) =~ / :: (?:
212
213 # these are public API parts that alter behavior on wantarray
214 search | search_related | slice | search_literal
215
216 |
217
218 # these are explicitly prefixed, since we only recognize them as valid
219 # escapes when they come from the guts of CDBICompat
220 CDBICompat .*? :: (?: search_where | retrieve_from_sql | retrieve_all )
221
222 ) $/x ) {
223 $cf++;
224 }
225
e89c7968 226 my ($fr, $want, $argdesc);
227 {
228 package DB;
229 $fr = [ caller($cf) ];
230 $want = ( caller($cf-1) )[5];
231 $argdesc = ref $DB::args[0]
232 ? DBIx::Class::_Util::refdesc($DB::args[0])
233 : 'non '
234 ;
235 };
236
a9da9b6a 237 if (
e89c7968 238 $want and $fr->[0] =~ /^(?:DBIx::Class|DBICx::)/
a9da9b6a 239 ) {
a9da9b6a 240 DBIx::Class::Exception->throw( sprintf (
e89c7968 241 "Improper use of %s instance in list context at %s line %d\n\n Stacktrace starts",
242 $argdesc, @{$fr}[1,2]
a9da9b6a 243 ), 'with_stacktrace');
244 }
245
246 my $mark = [];
247 weaken ( $list_ctx_ok_stack_marker = $mark );
248 $mark;
249 }
250}
251
77c3a5dc 252sub fail_on_internal_call {
253 my ($fr, $argdesc);
254 {
255 package DB;
256 $fr = [ caller(1) ];
257 $argdesc = ref $DB::args[0]
258 ? DBIx::Class::_Util::refdesc($DB::args[0])
259 : undef
260 ;
261 };
262
263 if (
264 $argdesc
265 and
266 $fr->[0] =~ /^(?:DBIx::Class|DBICx::)/
267 and
268 $fr->[1] !~ /\b(?:CDBICompat|ResultSetProxy)\b/ # no point touching there
269 ) {
270 DBIx::Class::Exception->throw( sprintf (
271 "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",
272 $fr->[3], $argdesc, @{$fr}[1,2], ( $fr->[6] || do {
273 require B::Deparse;
274 no strict 'refs';
275 B::Deparse->new->coderef2text(\&{$fr->[3]})
276 }),
277 ), 'with_stacktrace');
278 }
279}
280
b1dbf716 2811;