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