This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mro UTF8 cleanup.
[perl5.git] / mro.c
CommitLineData
e1a479c5
BB
1/* mro.c
2 *
3 * Copyright (c) 2007 Brandon L Black
1129b882 4 * Copyright (c) 2007, 2008 Larry Wall and others
e1a479c5
BB
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
4ac71550
TC
12 * 'Which order shall we go in?' said Frodo. 'Eldest first, or quickest first?
13 * You'll be last either way, Master Peregrin.'
14 *
15 * [p.101 of _The Lord of the Rings_, I/iii: "A Conspiracy Unmasked"]
cac98860
RGS
16 */
17
18/*
e1a479c5
BB
19=head1 MRO Functions
20
21These functions are related to the method resolution order of perl classes
22
23=cut
24*/
25
26#include "EXTERN.h"
4befac30 27#define PERL_IN_MRO_C
e1a479c5
BB
28#include "perl.h"
29
a3e6e81e
NC
30static const struct mro_alg dfs_alg =
31 {S_mro_get_linear_isa_dfs, "dfs", 3, 0, 0};
3d76853f 32
fa60396f
NC
33SV *
34Perl_mro_get_private_data(pTHX_ struct mro_meta *const smeta,
35 const struct mro_alg *const which)
36{
37 SV **data;
38 PERL_ARGS_ASSERT_MRO_GET_PRIVATE_DATA;
39
5844ac76
NC
40 data = (SV **)Perl_hv_common(aTHX_ smeta->mro_linear_all, NULL,
41 which->name, which->length, which->kflags,
42 HV_FETCH_JUST_SV, NULL, which->hash);
fa60396f
NC
43 if (!data)
44 return NULL;
45
46 /* If we've been asked to look up the private data for the current MRO, then
47 cache it. */
48 if (smeta->mro_which == which)
3a6fa573 49 smeta->mro_linear_current = *data;
fa60396f
NC
50
51 return *data;
52}
53
54SV *
55Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta,
56 const struct mro_alg *const which, SV *const data)
57{
58 PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA;
59
9953ff72 60 if (!smeta->mro_linear_all) {
553e831a
NC
61 if (smeta->mro_which == which) {
62 /* If all we need to store is the current MRO's data, then don't use
63 memory on a hash with 1 element - store it direct, and signal
64 this by leaving the would-be-hash NULL. */
3a6fa573 65 smeta->mro_linear_current = data;
553e831a
NC
66 return data;
67 } else {
68 HV *const hv = newHV();
69 /* Start with 2 buckets. It's unlikely we'll need more. */
70 HvMAX(hv) = 1;
9953ff72 71 smeta->mro_linear_all = hv;
553e831a 72
3a6fa573 73 if (smeta->mro_linear_current) {
553e831a
NC
74 /* If we were storing something directly, put it in the hash
75 before we lose it. */
76 Perl_mro_set_private_data(aTHX_ smeta, smeta->mro_which,
3a6fa573 77 smeta->mro_linear_current);
553e831a
NC
78 }
79 }
80 }
81
82 /* We get here if we're storing more than one linearisation for this stash,
83 or the linearisation we are storing is not that if its current MRO. */
84
85 if (smeta->mro_which == which) {
86 /* If we've been asked to store the private data for the current MRO,
87 then cache it. */
3a6fa573 88 smeta->mro_linear_current = data;
fa60396f
NC
89 }
90
9953ff72 91 if (!Perl_hv_common(aTHX_ smeta->mro_linear_all, NULL,
fa60396f
NC
92 which->name, which->length, which->kflags,
93 HV_FETCH_ISSTORE, data, which->hash)) {
94 Perl_croak(aTHX_ "panic: hv_store() failed in set_mro_private_data() "
95 "for '%.*s' %d", (int) which->length, which->name,
96 which->kflags);
97 }
98
99 return data;
100}
101
a3e6e81e
NC
102const struct mro_alg *
103Perl_mro_get_from_name(pTHX_ SV *name) {
104 SV **data;
105
106 PERL_ARGS_ASSERT_MRO_GET_FROM_NAME;
107
5844ac76
NC
108 data = (SV **)Perl_hv_common(aTHX_ PL_registered_mros, name, NULL, 0, 0,
109 HV_FETCH_JUST_SV, NULL, 0);
a3e6e81e
NC
110 if (!data)
111 return NULL;
112 assert(SvTYPE(*data) == SVt_IV);
113 assert(SvIOK(*data));
114 return INT2PTR(const struct mro_alg *, SvUVX(*data));
115}
116
117void
118Perl_mro_register(pTHX_ const struct mro_alg *mro) {
119 SV *wrapper = newSVuv(PTR2UV(mro));
120
121 PERL_ARGS_ASSERT_MRO_REGISTER;
122
123
124 if (!Perl_hv_common(aTHX_ PL_registered_mros, NULL,
125 mro->name, mro->length, mro->kflags,
126 HV_FETCH_ISSTORE, wrapper, mro->hash)) {
127 SvREFCNT_dec(wrapper);
128 Perl_croak(aTHX_ "panic: hv_store() failed in mro_register() "
129 "for '%.*s' %d", (int) mro->length, mro->name, mro->kflags);
3d76853f 130 }
3d76853f
NC
131}
132
e1a479c5
BB
133struct mro_meta*
134Perl_mro_meta_init(pTHX_ HV* stash)
135{
9fe4aecf 136 struct mro_meta* newmeta;
e1a479c5 137
7918f24d 138 PERL_ARGS_ASSERT_MRO_META_INIT;
e1a479c5
BB
139 assert(HvAUX(stash));
140 assert(!(HvAUX(stash)->xhv_mro_meta));
183086be 141 Newxz(newmeta, 1, struct mro_meta);
9fe4aecf 142 HvAUX(stash)->xhv_mro_meta = newmeta;
dd69841b 143 newmeta->cache_gen = 1;
70cd14a1 144 newmeta->pkg_gen = 1;
a3e6e81e 145 newmeta->mro_which = &dfs_alg;
e1a479c5
BB
146
147 return newmeta;
148}
149
150#if defined(USE_ITHREADS)
151
152/* for sv_dup on new threads */
153struct mro_meta*
154Perl_mro_meta_dup(pTHX_ struct mro_meta* smeta, CLONE_PARAMS* param)
155{
e1a479c5
BB
156 struct mro_meta* newmeta;
157
7918f24d 158 PERL_ARGS_ASSERT_MRO_META_DUP;
e1a479c5 159
33e12d9d
NC
160 Newx(newmeta, 1, struct mro_meta);
161 Copy(smeta, newmeta, 1, struct mro_meta);
162
9953ff72
NC
163 if (newmeta->mro_linear_all) {
164 newmeta->mro_linear_all
a09252eb 165 = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->mro_linear_all, param));
553e831a
NC
166 /* This is just acting as a shortcut pointer, and will be automatically
167 updated on the first get. */
3a6fa573
NC
168 newmeta->mro_linear_current = NULL;
169 } else if (newmeta->mro_linear_current) {
553e831a 170 /* Only the current MRO is stored, so this owns the data. */
3a6fa573 171 newmeta->mro_linear_current
a09252eb 172 = sv_dup_inc((const SV *)newmeta->mro_linear_current, param);
553e831a
NC
173 }
174
33e12d9d
NC
175 if (newmeta->mro_nextmethod)
176 newmeta->mro_nextmethod
a09252eb 177 = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->mro_nextmethod, param));
a49ba3fc
NC
178 if (newmeta->isa)
179 newmeta->isa
a09252eb 180 = MUTABLE_HV(sv_dup_inc((const SV *)newmeta->isa, param));
e1a479c5
BB
181
182 return newmeta;
183}
184
185#endif /* USE_ITHREADS */
186
187/*
188=for apidoc mro_get_linear_isa_dfs
189
190Returns the Depth-First Search linearization of @ISA
191the given stash. The return value is a read-only AV*.
192C<level> should be 0 (it is used internally in this
193function's recursion).
194
1c908217
RGS
195You are responsible for C<SvREFCNT_inc()> on the
196return value if you plan to store it anywhere
197semi-permanently (otherwise it might be deleted
198out from under you the next time the cache is
199invalidated).
200
e1a479c5
BB
201=cut
202*/
4befac30 203static AV*
94d1e706 204S_mro_get_linear_isa_dfs(pTHX_ HV *stash, U32 level)
e1a479c5
BB
205{
206 AV* retval;
207 GV** gvp;
208 GV* gv;
209 AV* av;
190d0b22 210 const HEK* stashhek;
e1a479c5 211 struct mro_meta* meta;
a49ba3fc 212 SV *our_name;
73519bd0 213 HV *stored = NULL;
e1a479c5 214
7918f24d 215 PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA_DFS;
e1a479c5
BB
216 assert(HvAUX(stash));
217
00169e2c 218 stashhek
15d9236d 219 = HvAUX(stash)->xhv_name_u.xhvnameu_name && HvENAME_HEK_NN(stash)
00169e2c
FC
220 ? HvENAME_HEK_NN(stash)
221 : HvNAME_HEK(stash);
222
190d0b22 223 if (!stashhek)
1e05feb3 224 Perl_croak(aTHX_ "Can't linearize anonymous symbol table");
e1a479c5
BB
225
226 if (level > 100)
227 Perl_croak(aTHX_ "Recursive inheritance detected in package '%s'",
190d0b22 228 HEK_KEY(stashhek));
e1a479c5
BB
229
230 meta = HvMROMETA(stash);
1c908217
RGS
231
232 /* return cache if valid */
a3e6e81e 233 if((retval = MUTABLE_AV(MRO_GET_PRIVATE_DATA(meta, &dfs_alg)))) {
e1a479c5
BB
234 return retval;
235 }
236
237 /* not in cache, make a new one */
1c908217 238
ad64d0ec 239 retval = MUTABLE_AV(sv_2mortal(MUTABLE_SV(newAV())));
a49ba3fc
NC
240 /* We use this later in this function, but don't need a reference to it
241 beyond the end of this function, so reference count is fine. */
242 our_name = newSVhek(stashhek);
243 av_push(retval, our_name); /* add ourselves at the top */
e1a479c5 244
1c908217 245 /* fetch our @ISA */
e1a479c5
BB
246 gvp = (GV**)hv_fetchs(stash, "ISA", FALSE);
247 av = (gvp && (gv = *gvp) && isGV_with_GP(gv)) ? GvAV(gv) : NULL;
248
a49ba3fc
NC
249 /* "stored" is used to keep track of all of the classnames we have added to
250 the MRO so far, so we can do a quick exists check and avoid adding
251 duplicate classnames to the MRO as we go.
252 It's then retained to be re-used as a fast lookup for ->isa(), by adding
253 our own name and "UNIVERSAL" to it. */
254
a49ba3fc 255 if(av && AvFILLp(av) >= 0) {
1c908217 256
ffd8da72
NC
257 SV **svp = AvARRAY(av);
258 I32 items = AvFILLp(av) + 1;
1c908217
RGS
259
260 /* foreach(@ISA) */
e1a479c5
BB
261 while (items--) {
262 SV* const sv = *svp++;
263 HV* const basestash = gv_stashsv(sv, 0);
ffd8da72
NC
264 SV *const *subrv_p;
265 I32 subrv_items;
e1a479c5
BB
266
267 if (!basestash) {
1c908217
RGS
268 /* if no stash exists for this @ISA member,
269 simply add it to the MRO and move on */
ffd8da72
NC
270 subrv_p = &sv;
271 subrv_items = 1;
e1a479c5
BB
272 }
273 else {
1c908217 274 /* otherwise, recurse into ourselves for the MRO
b1d0c68a
NC
275 of this @ISA member, and append their MRO to ours.
276 The recursive call could throw an exception, which
277 has memory management implications here, hence the use of
278 the mortal. */
ffd8da72
NC
279 const AV *const subrv
280 = mro_get_linear_isa_dfs(basestash, level + 1);
281
282 subrv_p = AvARRAY(subrv);
283 subrv_items = AvFILLp(subrv) + 1;
284 }
73519bd0
NC
285 if (stored) {
286 while(subrv_items--) {
287 SV *const subsv = *subrv_p++;
288 /* LVALUE fetch will create a new undefined SV if necessary
289 */
290 HE *const he = hv_fetch_ent(stored, subsv, 1, 0);
291 assert(he);
292 if(HeVAL(he) != &PL_sv_undef) {
293 /* It was newly created. Steal it for our new SV, and
294 replace it in the hash with the "real" thing. */
295 SV *const val = HeVAL(he);
296 HEK *const key = HeKEY_hek(he);
297
298 HeVAL(he) = &PL_sv_undef;
299 /* Save copying by making a shared hash key scalar. We
300 inline this here rather than calling
301 Perl_newSVpvn_share because we already have the
302 scalar, and we already have the hash key. */
303 assert(SvTYPE(val) == SVt_NULL);
304 sv_upgrade(val, SVt_PV);
305 SvPV_set(val, HEK_KEY(share_hek_hek(key)));
306 SvCUR_set(val, HEK_LEN(key));
307 SvREADONLY_on(val);
308 SvFAKE_on(val);
309 SvPOK_on(val);
310 if (HEK_UTF8(key))
311 SvUTF8_on(val);
312
313 av_push(retval, val);
314 }
ffd8da72 315 }
73519bd0
NC
316 } else {
317 /* We are the first (or only) parent. We can short cut the
318 complexity above, because our @ISA is simply us prepended
319 to our parent's @ISA, and our ->isa cache is simply our
320 parent's, with our name added. */
321 /* newSVsv() is slow. This code is only faster if we can avoid
322 it by ensuring that SVs in the arrays are shared hash key
323 scalar SVs, because we can "copy" them very efficiently.
324 Although to be fair, we can't *ensure* this, as a reference
325 to the internal array is returned by mro::get_linear_isa(),
326 so we'll have to be defensive just in case someone faffed
327 with it. */
328 if (basestash) {
329 SV **svp;
17eef65c 330 stored = MUTABLE_HV(sv_2mortal((SV*)newHVhv(HvMROMETA(basestash)->isa)));
73519bd0
NC
331 av_extend(retval, subrv_items);
332 AvFILLp(retval) = subrv_items;
333 svp = AvARRAY(retval);
334 while(subrv_items--) {
335 SV *const val = *subrv_p++;
336 *++svp = SvIsCOW_shared_hash(val)
337 ? newSVhek(SvSHARED_HEK_FROM_PV(SvPVX(val)))
338 : newSVsv(val);
339 }
340 } else {
341 /* They have no stash. So create ourselves an ->isa cache
342 as if we'd copied it from what theirs should be. */
343 stored = MUTABLE_HV(sv_2mortal(MUTABLE_SV(newHV())));
344 (void) hv_store(stored, "UNIVERSAL", 9, &PL_sv_undef, 0);
345 av_push(retval,
346 newSVhek(HeKEY_hek(hv_store_ent(stored, sv,
347 &PL_sv_undef, 0))));
348 }
349 }
e1a479c5 350 }
73519bd0
NC
351 } else {
352 /* We have no parents. */
353 stored = MUTABLE_HV(sv_2mortal(MUTABLE_SV(newHV())));
354 (void) hv_store(stored, "UNIVERSAL", 9, &PL_sv_undef, 0);
e1a479c5
BB
355 }
356
ed09b296 357 (void) hv_store_ent(stored, our_name, &PL_sv_undef, 0);
ed09b296
NC
358
359 SvREFCNT_inc_simple_void_NN(stored);
360 SvTEMP_off(stored);
361 SvREADONLY_on(stored);
362
363 meta->isa = stored;
364
0fd7ece8
NC
365 /* now that we're past the exception dangers, grab our own reference to
366 the AV we're about to use for the result. The reference owned by the
367 mortals' stack will be released soon, so everything will balance. */
368 SvREFCNT_inc_simple_void_NN(retval);
369 SvTEMP_off(retval);
fdef73f9 370
1c908217
RGS
371 /* we don't want anyone modifying the cache entry but us,
372 and we do so by replacing it completely */
e1a479c5 373 SvREADONLY_on(retval);
1c908217 374
a3e6e81e 375 return MUTABLE_AV(Perl_mro_set_private_data(aTHX_ meta, &dfs_alg,
fa60396f 376 MUTABLE_SV(retval)));
e1a479c5
BB
377}
378
379/*
e1a479c5
BB
380=for apidoc mro_get_linear_isa
381
0b31f535 382Returns the mro linearisation for the given stash. By default, this
006d9e7b
FC
383will be whatever C<mro_get_linear_isa_dfs> returns unless some
384other MRO is in effect for the stash. The return value is a
e1a479c5
BB
385read-only AV*.
386
1c908217
RGS
387You are responsible for C<SvREFCNT_inc()> on the
388return value if you plan to store it anywhere
389semi-permanently (otherwise it might be deleted
390out from under you the next time the cache is
391invalidated).
392
e1a479c5
BB
393=cut
394*/
395AV*
396Perl_mro_get_linear_isa(pTHX_ HV *stash)
397{
398 struct mro_meta* meta;
7311f41d 399 AV *isa;
2c7f4b87 400
7918f24d 401 PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA;
2c7f4b87
BB
402 if(!SvOOK(stash))
403 Perl_croak(aTHX_ "Can't linearize anonymous symbol table");
e1a479c5
BB
404
405 meta = HvMROMETA(stash);
3d76853f 406 if (!meta->mro_which)
14f97ce6 407 Perl_croak(aTHX_ "panic: invalid MRO!");
7311f41d
FC
408 isa = meta->mro_which->resolve(aTHX_ stash, 0);
409
410 if (!meta->isa) {
411 HV *const isa_hash = newHV();
412 /* Linearisation didn't build it for us, so do it here. */
413 SV *const *svp = AvARRAY(isa);
414 SV *const *const svp_end = svp + AvFILLp(isa) + 1;
415 const HEK *canon_name = HvENAME_HEK(stash);
416 if (!canon_name) canon_name = HvNAME_HEK(stash);
417
418 while (svp < svp_end) {
419 (void) hv_store_ent(isa_hash, *svp++, &PL_sv_undef, 0);
420 }
421
422 (void) hv_common(isa_hash, NULL, HEK_KEY(canon_name),
423 HEK_LEN(canon_name), HEK_FLAGS(canon_name),
424 HV_FETCH_ISSTORE, &PL_sv_undef,
425 HEK_HASH(canon_name));
426 (void) hv_store(isa_hash, "UNIVERSAL", 9, &PL_sv_undef, 0);
427
428 SvREADONLY_on(isa_hash);
429
430 meta->isa = isa_hash;
431 }
432
433 return isa;
e1a479c5
BB
434}
435
436/*
437=for apidoc mro_isa_changed_in
438
1c908217 439Takes the necessary steps (cache invalidations, mostly)
e1a479c5
BB
440when the @ISA of the given package has changed. Invoked
441by the C<setisa> magic, should not need to invoke directly.
442
443=cut
444*/
f7afb547 445
beeda143 446/* Macro to avoid repeating the code five times. */
f7afb547
FC
447#define CLEAR_LINEAR(mEta) \
448 if (mEta->mro_linear_all) { \
449 SvREFCNT_dec(MUTABLE_SV(mEta->mro_linear_all)); \
450 mEta->mro_linear_all = NULL; \
451 /* This is just acting as a shortcut pointer. */ \
452 mEta->mro_linear_current = NULL; \
453 } else if (mEta->mro_linear_current) { \
454 /* Only the current MRO is stored, so this owns the data. */ \
455 SvREFCNT_dec(mEta->mro_linear_current); \
456 mEta->mro_linear_current = NULL; \
457 }
458
e1a479c5 459void
4df35a07 460Perl_mro_isa_changed_in(pTHX_ HV* stash)
e1a479c5
BB
461{
462 dVAR;
463 HV* isarev;
464 AV* linear_mro;
465 HE* iter;
466 SV** svp;
467 I32 items;
1e05feb3 468 bool is_universal;
4df35a07 469 struct mro_meta * meta;
80ebaca2 470 HV *isa = NULL;
e1a479c5 471
4df35a07
FC
472 const char * const stashname = HvENAME_get(stash);
473 const STRLEN stashname_len = HvENAMELEN_get(stash);
204e6232 474 const bool stashname_utf8 = HvENAMEUTF8(stash) ? 1 : 0;
4df35a07
FC
475
476 PERL_ARGS_ASSERT_MRO_ISA_CHANGED_IN;
7918f24d 477
2c7f4b87
BB
478 if(!stashname)
479 Perl_croak(aTHX_ "Can't call mro_isa_changed_in() on anonymous symbol table");
480
4df35a07
FC
481
482 /* wipe out the cached linearizations for this stash */
483 meta = HvMROMETA(stash);
f7afb547 484 CLEAR_LINEAR(meta);
4df35a07 485 if (meta->isa) {
80ebaca2
FC
486 /* Steal it for our own purposes. */
487 isa = (HV *)sv_2mortal((SV *)meta->isa);
5782d502 488 meta->isa = NULL;
6f86b615 489 }
70cd14a1 490
4df35a07
FC
491 /* Inc the package generation, since our @ISA changed */
492 meta->pkg_gen++;
493
e1a479c5
BB
494 /* Wipe the global method cache if this package
495 is UNIVERSAL or one of its parents */
dd69841b 496
204e6232
BF
497 svp = hv_fetch(PL_isarev, stashname,
498 stashname_utf8 ? -stashname_len : stashname_len, 0);
85fbaab2 499 isarev = svp ? MUTABLE_HV(*svp) : NULL;
dd69841b
BB
500
501 if((stashname_len == 9 && strEQ(stashname, "UNIVERSAL"))
502 || (isarev && hv_exists(isarev, "UNIVERSAL", 9))) {
e1a479c5 503 PL_sub_generation++;
dd69841b
BB
504 is_universal = TRUE;
505 }
1e05feb3 506 else { /* Wipe the local method cache otherwise */
4df35a07 507 meta->cache_gen++;
1e05feb3
AL
508 is_universal = FALSE;
509 }
e1a479c5
BB
510
511 /* wipe next::method cache too */
4df35a07 512 if(meta->mro_nextmethod) hv_clear(meta->mro_nextmethod);
1e05feb3 513
e1a479c5 514 /* Iterate the isarev (classes that are our children),
80ebaca2
FC
515 wiping out their linearization, method and isa caches
516 and upating PL_isarev. */
dd69841b 517 if(isarev) {
80ebaca2
FC
518 HV *isa_hashes = NULL;
519
520 /* We have to iterate through isarev twice to avoid a chicken and
521 * egg problem: if A inherits from B and both are in isarev, A might
522 * be processed before B and use B’s previous linearisation.
523 */
524
525 /* First iteration: Wipe everything, but stash away the isa hashes
526 * since we still need them for updating PL_isarev.
527 */
528
529 if(hv_iterinit(isarev)) {
530 /* Only create the hash if we need it; i.e., if isarev has
531 any elements. */
532 isa_hashes = (HV *)sv_2mortal((SV *)newHV());
533 }
e1a479c5 534 while((iter = hv_iternext(isarev))) {
204e6232 535 HV* revstash = gv_stashsv(hv_iterkeysv(iter), 0);
bc2cbbac
BB
536 struct mro_meta* revmeta;
537
538 if(!revstash) continue;
539 revmeta = HvMROMETA(revstash);
f7afb547 540 CLEAR_LINEAR(revmeta);
dd69841b
BB
541 if(!is_universal)
542 revmeta->cache_gen++;
e1a479c5
BB
543 if(revmeta->mro_nextmethod)
544 hv_clear(revmeta->mro_nextmethod);
80ebaca2
FC
545
546 (void)
547 hv_store(
548 isa_hashes, (const char*)&revstash, sizeof(HV *),
549 revmeta->isa ? (SV *)revmeta->isa : &PL_sv_undef, 0
550 );
551 revmeta->isa = NULL;
552 }
553
554 /* Second pass: Update PL_isarev. We can just use isa_hashes to
555 * avoid another round of stash lookups. */
556
557 /* isarev might be deleted from PL_isarev during this loop, so hang
558 * on to it. */
559 SvREFCNT_inc_simple_void_NN(sv_2mortal((SV *)isarev));
560
561 if(isa_hashes) {
562 hv_iterinit(isa_hashes);
563 while((iter = hv_iternext(isa_hashes))) {
564 HV* const revstash = *(HV **)HEK_KEY(HeKEY_hek(iter));
565 HV * const isa = (HV *)HeVAL(iter);
566 const HEK *namehek;
567
80ebaca2
FC
568 /* We're starting at the 2nd element, skipping revstash */
569 linear_mro = mro_get_linear_isa(revstash);
570 svp = AvARRAY(linear_mro) + 1;
571 items = AvFILLp(linear_mro);
572
573 namehek = HvENAME_HEK(revstash);
574 if (!namehek) namehek = HvNAME_HEK(revstash);
575
576 while (items--) {
577 SV* const sv = *svp++;
578 HV* mroisarev;
579
580 HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0);
581
582 /* That fetch should not fail. But if it had to create
583 a new SV for us, then will need to upgrade it to an
584 HV (which sv_upgrade() can now do for us). */
585
586 mroisarev = MUTABLE_HV(HeVAL(he));
587
588 SvUPGRADE(MUTABLE_SV(mroisarev), SVt_PVHV);
589
590 /* This hash only ever contains PL_sv_yes. Storing it
591 over itself is almost as cheap as calling hv_exists,
592 so on aggregate we expect to save time by not making
593 two calls to the common HV code for the case where
594 it doesn't exist. */
595
596 (void)
597 hv_store(
204e6232
BF
598 mroisarev, HEK_KEY(namehek),
599 HEK_UTF8(namehek) ? -HEK_LEN(namehek) : HEK_LEN(namehek),
80ebaca2
FC
600 &PL_sv_yes, 0
601 );
602 }
603
604 if((SV *)isa != &PL_sv_undef)
605 mro_clean_isarev(
606 isa, HEK_KEY(namehek), HEK_LEN(namehek),
204e6232 607 HvMROMETA(revstash)->isa, (HEK_UTF8(namehek) ? SVf_UTF8 : 0)
80ebaca2
FC
608 );
609 }
e1a479c5
BB
610 }
611 }
612
c9143745
FC
613 /* Now iterate our MRO (parents), adding ourselves and everything from
614 our isarev to their isarev.
1c908217
RGS
615 */
616
617 /* We're starting at the 2nd element, skipping ourselves here */
e1a479c5
BB
618 linear_mro = mro_get_linear_isa(stash);
619 svp = AvARRAY(linear_mro) + 1;
620 items = AvFILLp(linear_mro);
1c908217 621
e1a479c5
BB
622 while (items--) {
623 SV* const sv = *svp++;
e1a479c5
BB
624 HV* mroisarev;
625
117b69ca
NC
626 HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0);
627
628 /* That fetch should not fail. But if it had to create a new SV for
4ea50411
NC
629 us, then will need to upgrade it to an HV (which sv_upgrade() can
630 now do for us. */
117b69ca 631
85fbaab2 632 mroisarev = MUTABLE_HV(HeVAL(he));
e1a479c5 633
ad64d0ec 634 SvUPGRADE(MUTABLE_SV(mroisarev), SVt_PVHV);
117b69ca 635
25270bc0
NC
636 /* This hash only ever contains PL_sv_yes. Storing it over itself is
637 almost as cheap as calling hv_exists, so on aggregate we expect to
638 save time by not making two calls to the common HV code for the
639 case where it doesn't exist. */
640
204e6232
BF
641 (void)hv_store(mroisarev, stashname,
642 stashname_utf8 ? -stashname_len : stashname_len, &PL_sv_yes, 0);
80ebaca2
FC
643 }
644
80ebaca2
FC
645 /* Delete our name from our former parents’ isarevs. */
646 if(isa && HvARRAY(isa))
204e6232
BF
647 mro_clean_isarev(isa, stashname, stashname_len, meta->isa,
648 (stashname_utf8 ? SVf_UTF8 : 0) );
80ebaca2
FC
649}
650
651/* Deletes name from all the isarev entries listed in isa */
652STATIC void
653S_mro_clean_isarev(pTHX_ HV * const isa, const char * const name,
204e6232 654 const STRLEN len, HV * const exceptions, U32 flags)
80ebaca2
FC
655{
656 HE* iter;
e1a479c5 657
80ebaca2
FC
658 PERL_ARGS_ASSERT_MRO_CLEAN_ISAREV;
659
660 /* Delete our name from our former parents’ isarevs. */
661 if(isa && HvARRAY(isa) && hv_iterinit(isa)) {
662 SV **svp;
663 while((iter = hv_iternext(isa))) {
664 I32 klen;
665 const char * const key = hv_iterkey(iter, &klen);
204e6232
BF
666 if(exceptions && hv_exists(exceptions, key, HeKUTF8(iter) ? -klen : klen))
667 continue;
668 svp = hv_fetch(PL_isarev, key, HeKUTF8(iter) ? -klen : klen, 0);
80ebaca2
FC
669 if(svp) {
670 HV * const isarev = (HV *)*svp;
204e6232 671 (void)hv_delete(isarev, name, (flags & SVf_UTF8) ? -len : len, G_DISCARD);
1b95d04f 672 if(!HvARRAY(isarev) || !HvUSEDKEYS(isarev))
204e6232
BF
673 (void)hv_delete(PL_isarev, key,
674 HeKUTF8(iter) ? -klen : klen, G_DISCARD);
e1a479c5
BB
675 }
676 }
677 }
678}
679
680/*
c8bbf675
FC
681=for apidoc mro_package_moved
682
d056e33c
FC
683Call this function to signal to a stash that it has been assigned to
684another spot in the stash hierarchy. C<stash> is the stash that has been
685assigned. C<oldstash> is the stash it replaces, if any. C<gv> is the glob
afdbe55d 686that is actually being assigned to.
d056e33c 687
35759254 688This can also be called with a null first argument to
d056e33c
FC
689indicate that C<oldstash> has been deleted.
690
691This function invalidates isa caches on the old stash, on all subpackages
692nested inside it, and on the subclasses of all those, including
693non-existent packages that have corresponding entries in C<stash>.
c8bbf675 694
80ebaca2
FC
695It also sets the effective names (C<HvENAME>) on all the stashes as
696appropriate.
697
0290c710 698If the C<gv> is present and is not in the symbol table, then this function
afdbe55d 699simply returns. This checked will be skipped if C<flags & 1>.
0290c710 700
c8bbf675
FC
701=cut
702*/
703void
35759254 704Perl_mro_package_moved(pTHX_ HV * const stash, HV * const oldstash,
afdbe55d 705 const GV * const gv, U32 flags)
c8bbf675 706{
d7879cf0
FC
707 SV *namesv;
708 HEK **namep;
709 I32 name_count;
80ebaca2
FC
710 HV *stashes;
711 HE* iter;
62c1e33f 712
afdbe55d 713 PERL_ARGS_ASSERT_MRO_PACKAGE_MOVED;
35759254 714 assert(stash || oldstash);
35759254 715
d7879cf0 716 /* Determine the name(s) of the location that stash was assigned to
35759254
FC
717 * or from which oldstash was removed.
718 *
928eb066 719 * We cannot reliably use the name in oldstash, because it may have
35759254
FC
720 * been deleted from the location in the symbol table that its name
721 * suggests, as in this case:
722 *
723 * $globref = \*foo::bar::;
724 * Symbol::delete_package("foo");
725 * *$globref = \%baz::;
726 * *$globref = *frelp::;
727 * # calls mro_package_moved(%frelp::, %baz::, *$globref, NULL, 0)
728 *
d7879cf0
FC
729 * So we get it from the gv. But, since the gv may no longer be in the
730 * symbol table, we check that first. The only reliable way to tell is
731 * to see whether its stash has an effective name and whether the gv
732 * resides in that stash under its name. That effective name may be
733 * different from what gv_fullname4 would use.
734 * If flags & 1, the caller has asked us to skip the check.
35759254 735 */
d7879cf0
FC
736 if(!(flags & 1)) {
737 SV **svp;
738 if(
739 !GvSTASH(gv) || !HvENAME(GvSTASH(gv)) ||
204e6232
BF
740 !(svp = hv_fetch(GvSTASH(gv), GvNAME(gv),
741 GvNAMEUTF8(gv) ? -GvNAMELEN(gv) : GvNAMELEN(gv), 0)) ||
d7879cf0
FC
742 *svp != (SV *)gv
743 ) return;
744 }
745 assert(SvOOK(GvSTASH(gv)));
1f656fcf 746 assert(GvNAMELEN(gv));
d7879cf0 747 assert(GvNAME(gv)[GvNAMELEN(gv) - 1] == ':');
1f656fcf 748 assert(GvNAMELEN(gv) == 1 || GvNAME(gv)[GvNAMELEN(gv) - 2] == ':');
d7879cf0
FC
749 name_count = HvAUX(GvSTASH(gv))->xhv_name_count;
750 if (!name_count) {
751 name_count = 1;
15d9236d 752 namep = &HvAUX(GvSTASH(gv))->xhv_name_u.xhvnameu_name;
d7879cf0
FC
753 }
754 else {
15d9236d 755 namep = HvAUX(GvSTASH(gv))->xhv_name_u.xhvnameu_names;
d7879cf0
FC
756 if (name_count < 0) ++namep, name_count = -name_count - 1;
757 }
758 if (name_count == 1) {
759 if (HEK_LEN(*namep) == 4 && strnEQ(HEK_KEY(*namep), "main", 4)) {
1f656fcf
FC
760 namesv = GvNAMELEN(gv) == 1
761 ? newSVpvs_flags(":", SVs_TEMP)
762 : newSVpvs_flags("", SVs_TEMP);
d7879cf0
FC
763 }
764 else {
765 namesv = sv_2mortal(newSVhek(*namep));
1f656fcf
FC
766 if (GvNAMELEN(gv) == 1) sv_catpvs(namesv, ":");
767 else sv_catpvs(namesv, "::");
d7879cf0 768 }
204e6232 769 if (GvNAMELEN(gv) != 1) {
1f656fcf 770 sv_catpvn(namesv, GvNAME(gv), GvNAMELEN(gv) - 2);
d7879cf0 771 /* skip trailing :: */
204e6232
BF
772 if ( GvNAMEUTF8(gv) )
773 SvUTF8_on(namesv);
774 }
d7879cf0
FC
775 }
776 else {
777 SV *aname;
778 namesv = sv_2mortal((SV *)newAV());
779 while (name_count--) {
780 if(HEK_LEN(*namep) == 4 && strnEQ(HEK_KEY(*namep), "main", 4)){
1f656fcf
FC
781 aname = GvNAMELEN(gv) == 1
782 ? newSVpvs(":")
783 : newSVpvs("");
784 namep++;
d7879cf0
FC
785 }
786 else {
787 aname = newSVhek(*namep++);
1f656fcf
FC
788 if (GvNAMELEN(gv) == 1) sv_catpvs(aname, ":");
789 else sv_catpvs(aname, "::");
d7879cf0 790 }
204e6232 791 if (GvNAMELEN(gv) != 1) {
1f656fcf 792 sv_catpvn(aname, GvNAME(gv), GvNAMELEN(gv) - 2);
d7879cf0 793 /* skip trailing :: */
204e6232
BF
794 if ( GvNAMEUTF8(gv) )
795 SvUTF8_on(aname);
796 }
d7879cf0
FC
797 av_push((AV *)namesv, aname);
798 }
799 }
c8bbf675 800
80ebaca2
FC
801 /* Get a list of all the affected classes. */
802 /* We cannot simply pass them all to mro_isa_changed_in to avoid
803 the list, as that function assumes that only one package has
804 changed. It does not work with:
805
806 @foo::ISA = qw( B B::B );
807 *B:: = delete $::{"A::"};
808
809 as neither B nor B::B can be updated before the other, since they
810 will reset caches on foo, which will see either B or B::B with the
811 wrong name. The names must be set on *all* affected stashes before
beeda143 812 we do anything else. (And linearisations must be cleared, too.)
80ebaca2
FC
813 */
814 stashes = (HV *) sv_2mortal((SV *)newHV());
b89cdb22
FC
815 mro_gather_and_rename(
816 stashes, (HV *) sv_2mortal((SV *)newHV()),
d7879cf0 817 stash, oldstash, namesv
b89cdb22 818 );
80ebaca2 819
80ebaca2
FC
820 /* Once the caches have been wiped on all the classes, call
821 mro_isa_changed_in on each. */
822 hv_iterinit(stashes);
823 while((iter = hv_iternext(stashes))) {
90ba1f34
FC
824 HV * const stash = *(HV **)HEK_KEY(HeKEY_hek(iter));
825 if(HvENAME(stash)) {
826 /* We have to restore the original meta->isa (that
827 mro_gather_and_rename set aside for us) this way, in case
828 one class in this list is a superclass of a another class
829 that we have already encountered. In such a case, meta->isa
830 will have been overwritten without old entries being deleted
831 from PL_isarev. */
832 struct mro_meta * const meta = HvMROMETA(stash);
833 if(meta->isa != (HV *)HeVAL(iter)){
834 SvREFCNT_dec(meta->isa);
835 meta->isa
836 = HeVAL(iter) == &PL_sv_yes
837 ? NULL
838 : (HV *)HeVAL(iter);
839 HeVAL(iter) = NULL; /* We donated our reference count. */
840 }
841 mro_isa_changed_in(stash);
842 }
80ebaca2
FC
843 }
844}
845
846void
b89cdb22 847S_mro_gather_and_rename(pTHX_ HV * const stashes, HV * const seen_stashes,
d7879cf0 848 HV *stash, HV *oldstash, SV *namesv)
80ebaca2
FC
849{
850 register XPVHV* xhv;
851 register HE *entry;
852 I32 riter = -1;
4c916935 853 I32 items = 0;
80ebaca2 854 const bool stash_had_name = stash && HvENAME(stash);
d7879cf0 855 bool fetched_isarev = FALSE;
80ebaca2
FC
856 HV *seen = NULL;
857 HV *isarev = NULL;
d7879cf0 858 SV **svp = NULL;
80ebaca2
FC
859
860 PERL_ARGS_ASSERT_MRO_GATHER_AND_RENAME;
861
b89cdb22
FC
862 /* We use the seen_stashes hash to keep track of which packages have
863 been encountered so far. This must be separate from the main list of
864 stashes, as we need to distinguish between stashes being assigned
865 and stashes being replaced/deleted. (A nested stash can be on both
866 sides of an assignment. We cannot simply skip iterating through a
867 stash on the right if we have seen it on the left, as it will not
868 get its ename assigned to it.)
869
870 To avoid allocating extra SVs, instead of a bitfield we can make
871 bizarre use of immortals:
872
873 &PL_sv_undef: seen on the left (oldstash)
874 &PL_sv_no : seen on the right (stash)
875 &PL_sv_yes : seen on both sides
876
877 */
878
80ebaca2
FC
879 if(oldstash) {
880 /* Add to the big list. */
90ba1f34 881 struct mro_meta * meta;
80ebaca2
FC
882 HE * const entry
883 = (HE *)
884 hv_common(
b89cdb22 885 seen_stashes, NULL, (const char *)&oldstash, sizeof(HV *), 0,
df5f182b 886 HV_FETCH_LVALUE|HV_FETCH_EMPTY_HE, NULL, 0
80ebaca2 887 );
b89cdb22 888 if(HeVAL(entry) == &PL_sv_undef || HeVAL(entry) == &PL_sv_yes) {
80ebaca2
FC
889 oldstash = NULL;
890 goto check_stash;
891 }
b89cdb22
FC
892 HeVAL(entry)
893 = HeVAL(entry) == &PL_sv_no ? &PL_sv_yes : &PL_sv_undef;
90ba1f34 894 meta = HvMROMETA(oldstash);
b89cdb22
FC
895 (void)
896 hv_store(
897 stashes, (const char *)&oldstash, sizeof(HV *),
90ba1f34
FC
898 meta->isa
899 ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
900 : &PL_sv_yes,
901 0
b89cdb22 902 );
beeda143 903 CLEAR_LINEAR(meta);
80ebaca2
FC
904
905 /* Update the effective name. */
906 if(HvENAME_get(oldstash)) {
d7879cf0
FC
907 const HEK * const enamehek = HvENAME_HEK(oldstash);
908 if(SvTYPE(namesv) == SVt_PVAV) {
909 items = AvFILLp((AV *)namesv) + 1;
910 svp = AvARRAY((AV *)namesv);
911 }
912 else {
913 items = 1;
914 svp = &namesv;
915 }
916 while (items--) {
204e6232 917 const U32 name_utf8 = SvUTF8(*svp);
d7879cf0
FC
918 STRLEN len;
919 const char *name = SvPVx_const(*svp++, len);
920 if(PL_stashcache)
204e6232
BF
921 (void)hv_delete(PL_stashcache, name, name_utf8 ? -len : len, G_DISCARD);
922 hv_ename_delete(oldstash, name, len, name_utf8);
d7879cf0
FC
923
924 if (!fetched_isarev) {
925 /* If the name deletion caused a name change, then we
926 * are not going to call mro_isa_changed_in with this
927 * name (and not at all if it has become anonymous) so
928 * we need to delete old isarev entries here, both
929 * those in the superclasses and this class’s own list
930 * of subclasses. We simply delete the latter from
931 * PL_isarev, since we still need it. hv_delete morti-
932 * fies it for us, so sv_2mortal is not necessary. */
933 if(HvENAME_HEK(oldstash) != enamehek) {
934 if(meta->isa && HvARRAY(meta->isa))
204e6232
BF
935 mro_clean_isarev(meta->isa, name, len, 0, name_utf8);
936 isarev = (HV *)hv_delete(PL_isarev, name,
937 name_utf8 ? -len : len, 0);
d7879cf0
FC
938 fetched_isarev=TRUE;
939 }
940 }
941 }
80ebaca2 942 }
d7fbb1de 943 }
80ebaca2 944 check_stash:
8b9e80a3 945 if(stash) {
d7879cf0
FC
946 if(SvTYPE(namesv) == SVt_PVAV) {
947 items = AvFILLp((AV *)namesv) + 1;
948 svp = AvARRAY((AV *)namesv);
949 }
950 else {
951 items = 1;
952 svp = &namesv;
953 }
954 while (items--) {
204e6232 955 const U32 name_utf8 = SvUTF8(*svp);
d7879cf0
FC
956 STRLEN len;
957 const char *name = SvPVx_const(*svp++, len);
204e6232 958 hv_ename_add(stash, name, len, name_utf8);
d7879cf0 959 }
80ebaca2 960
b89cdb22
FC
961 /* Add it to the big list if it needs
962 * mro_isa_changed_in called on it. That happens if it was
80ebaca2
FC
963 * detached from the symbol table (so it had no HvENAME) before
964 * being assigned to the spot named by the ‘name’ variable, because
486ec47a 965 * its cached isa linearisation is now stale (the effective name
80ebaca2
FC
966 * having changed), and subclasses will then use that cache when
967 * mro_package_moved calls mro_isa_changed_in. (See
8b9e80a3 968 * [perl #77358].)
80ebaca2 969 *
8b9e80a3 970 * If it did have a name, then its previous name is still
80ebaca2
FC
971 * used in isa caches, and there is no need for
972 * mro_package_moved to call mro_isa_changed_in.
8b9e80a3 973 */
80ebaca2
FC
974
975 entry
976 = (HE *)
977 hv_common(
b89cdb22 978 seen_stashes, NULL, (const char *)&stash, sizeof(HV *), 0,
df5f182b 979 HV_FETCH_LVALUE|HV_FETCH_EMPTY_HE, NULL, 0
80ebaca2 980 );
b89cdb22 981 if(HeVAL(entry) == &PL_sv_yes || HeVAL(entry) == &PL_sv_no)
80ebaca2 982 stash = NULL;
b89cdb22
FC
983 else {
984 HeVAL(entry)
985 = HeVAL(entry) == &PL_sv_undef ? &PL_sv_yes : &PL_sv_no;
986 if(!stash_had_name)
90ba1f34
FC
987 {
988 struct mro_meta * const meta = HvMROMETA(stash);
b89cdb22
FC
989 (void)
990 hv_store(
991 stashes, (const char *)&stash, sizeof(HV *),
90ba1f34
FC
992 meta->isa
993 ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
994 : &PL_sv_yes,
995 0
b89cdb22 996 );
beeda143 997 CLEAR_LINEAR(meta);
90ba1f34 998 }
b89cdb22 999 }
8b9e80a3 1000 }
d7fbb1de 1001
80ebaca2
FC
1002 if(!stash && !oldstash)
1003 /* Both stashes have been encountered already. */
1004 return;
1005
1006 /* Add all the subclasses to the big list. */
d7879cf0
FC
1007 if(!fetched_isarev) {
1008 /* If oldstash is not null, then we can use its HvENAME to look up
1009 the isarev hash, since all its subclasses will be listed there.
06f3ce86
FC
1010 It will always have an HvENAME. It the HvENAME was removed
1011 above, then fetch_isarev will be true, and this code will not be
1012 reached.
1013
1014 If oldstash is null, then this is an empty spot with no stash in
1015 it, so subclasses could be listed in isarev hashes belonging to
1016 any of the names, so we have to check all of them.
1017 */
e0aa2606 1018 assert(!oldstash || HvENAME(oldstash));
06f3ce86
FC
1019 if (oldstash) {
1020 /* Extra variable to avoid a compiler warning */
1021 char * const hvename = HvENAME(oldstash);
d7879cf0 1022 fetched_isarev = TRUE;
204e6232
BF
1023 svp = hv_fetch(PL_isarev, hvename,
1024 HvENAMEUTF8(oldstash)
1025 ? -HvENAMELEN_get(oldstash)
1026 : HvENAMELEN_get(oldstash), 0);
d7879cf0
FC
1027 if (svp) isarev = MUTABLE_HV(*svp);
1028 }
1029 else if(SvTYPE(namesv) == SVt_PVAV) {
1030 items = AvFILLp((AV *)namesv) + 1;
1031 svp = AvARRAY((AV *)namesv);
1032 }
1033 else {
1034 items = 1;
1035 svp = &namesv;
1036 }
1037 }
80ebaca2 1038 if(
d7879cf0 1039 isarev || !fetched_isarev
80ebaca2 1040 ) {
d7879cf0 1041 while (fetched_isarev || items--) {
80ebaca2 1042 HE *iter;
d7879cf0
FC
1043
1044 if (!fetched_isarev) {
1045 HE * const he = hv_fetch_ent(PL_isarev, *svp++, 0, 0);
1046 if (!he || !(isarev = MUTABLE_HV(HeVAL(he)))) continue;
1047 }
1048
80ebaca2
FC
1049 hv_iterinit(isarev);
1050 while((iter = hv_iternext(isarev))) {
204e6232 1051 HV* revstash = gv_stashsv(hv_iterkeysv(iter), 0);
90ba1f34 1052 struct mro_meta * meta;
80ebaca2
FC
1053
1054 if(!revstash) continue;
90ba1f34 1055 meta = HvMROMETA(revstash);
b89cdb22
FC
1056 (void)
1057 hv_store(
1058 stashes, (const char *)&revstash, sizeof(HV *),
90ba1f34
FC
1059 meta->isa
1060 ? SvREFCNT_inc_simple_NN((SV *)meta->isa)
1061 : &PL_sv_yes,
1062 0
b89cdb22 1063 );
beeda143 1064 CLEAR_LINEAR(meta);
80ebaca2 1065 }
d7879cf0
FC
1066
1067 if (fetched_isarev) break;
1068 }
80ebaca2 1069 }
d056e33c 1070
c8bbf675
FC
1071 /* This is partly based on code in hv_iternext_flags. We are not call-
1072 ing that here, as we want to avoid resetting the hash iterator. */
1073
d056e33c
FC
1074 /* Skip the entire loop if the hash is empty. */
1075 if(oldstash && HvUSEDKEYS(oldstash)) {
1076 xhv = (XPVHV*)SvANY(oldstash);
dbe2fffc 1077 seen = (HV *) sv_2mortal((SV *)newHV());
d056e33c 1078
80ebaca2
FC
1079 /* Iterate through entries in the oldstash, adding them to the
1080 list, meanwhile doing the equivalent of $seen{$key} = 1.
d056e33c
FC
1081 */
1082
1083 while (++riter <= (I32)xhv->xhv_max) {
1084 entry = (HvARRAY(oldstash))[riter];
1085
1086 /* Iterate through the entries in this list */
1087 for(; entry; entry = HeNEXT(entry)) {
204e6232 1088 SV* keysv;
d056e33c 1089 const char* key;
204e6232 1090 STRLEN len;
d056e33c
FC
1091
1092 /* If this entry is not a glob, ignore it.
1093 Try the next. */
1094 if (!isGV(HeVAL(entry))) continue;
1095
204e6232
BF
1096 keysv = hv_iterkeysv(entry);
1097 key = SvPV_const(keysv, len);
1f656fcf
FC
1098 if ((len > 1 && key[len-2] == ':' && key[len-1] == ':')
1099 || (len == 1 && key[0] == ':')) {
d056e33c
FC
1100 HV * const oldsubstash = GvHV(HeVAL(entry));
1101 SV ** const stashentry
204e6232 1102 = stash ? hv_fetch(stash, key, SvUTF8(keysv) ? -len : len, 0) : NULL;
35759254 1103 HV *substash = NULL;
62c1e33f
FC
1104
1105 /* Avoid main::main::main::... */
1106 if(oldsubstash == oldstash) continue;
1107
d056e33c 1108 if(
35759254
FC
1109 (
1110 stashentry && *stashentry
1111 && (substash = GvHV(*stashentry))
1112 )
00169e2c 1113 || (oldsubstash && HvENAME_get(oldsubstash))
d056e33c 1114 )
35759254
FC
1115 {
1116 /* Add :: and the key (minus the trailing ::)
d7879cf0
FC
1117 to each name. */
1118 SV *subname;
1119 if(SvTYPE(namesv) == SVt_PVAV) {
1120 SV *aname;
1121 items = AvFILLp((AV *)namesv) + 1;
1122 svp = AvARRAY((AV *)namesv);
1123 subname = sv_2mortal((SV *)newAV());
1124 while (items--) {
1125 aname = newSVsv(*svp++);
1f656fcf
FC
1126 if (len == 1)
1127 sv_catpvs(aname, ":");
1128 else {
1129 sv_catpvs(aname, "::");
1130 sv_catpvn(aname, key, len-2);
204e6232
BF
1131 if ( SvUTF8(keysv) )
1132 SvUTF8_on(aname);
1f656fcf 1133 }
d7879cf0
FC
1134 av_push((AV *)subname, aname);
1135 }
80ebaca2 1136 }
d7879cf0
FC
1137 else {
1138 subname = sv_2mortal(newSVsv(namesv));
1f656fcf
FC
1139 if (len == 1) sv_catpvs(subname, ":");
1140 else {
1141 sv_catpvs(subname, "::");
1142 sv_catpvn(subname, key, len-2);
204e6232
BF
1143 if ( SvUTF8(keysv) )
1144 SvUTF8_on(subname);
1f656fcf 1145 }
d7879cf0
FC
1146 }
1147 mro_gather_and_rename(
1148 stashes, seen_stashes,
1149 substash, oldsubstash, subname
1150 );
35759254 1151 }
d056e33c 1152
204e6232 1153 (void)hv_store(seen, key, SvUTF8(keysv) ? -len : len, &PL_sv_yes, 0);
d056e33c
FC
1154 }
1155 }
1156 }
1157 }
c8bbf675
FC
1158
1159 /* Skip the entire loop if the hash is empty. */
d056e33c
FC
1160 if (stash && HvUSEDKEYS(stash)) {
1161 xhv = (XPVHV*)SvANY(stash);
b89cdb22 1162 riter = -1;
d056e33c
FC
1163
1164 /* Iterate through the new stash, skipping $seen{$key} items,
b89cdb22 1165 calling mro_gather_and_rename(stashes,seen,entry,NULL, ...). */
c8bbf675
FC
1166 while (++riter <= (I32)xhv->xhv_max) {
1167 entry = (HvARRAY(stash))[riter];
1168
1169 /* Iterate through the entries in this list */
1170 for(; entry; entry = HeNEXT(entry)) {
204e6232 1171 SV* keysv;
c8bbf675 1172 const char* key;
204e6232 1173 STRLEN len;
c8bbf675
FC
1174
1175 /* If this entry is not a glob, ignore it.
1176 Try the next. */
1177 if (!isGV(HeVAL(entry))) continue;
1178
204e6232
BF
1179 keysv = hv_iterkeysv(entry);
1180 key = SvPV_const(keysv, len);
1f656fcf
FC
1181 if ((len > 1 && key[len-2] == ':' && key[len-1] == ':')
1182 || (len == 1 && key[0] == ':')) {
d056e33c
FC
1183 HV *substash;
1184
1185 /* If this entry was seen when we iterated through the
1186 oldstash, skip it. */
204e6232 1187 if(seen && hv_exists(seen, key, SvUTF8(keysv) ? -len : len)) continue;
d056e33c
FC
1188
1189 /* We get here only if this stash has no corresponding
1190 entry in the stash being replaced. */
1191
1192 substash = GvHV(HeVAL(entry));
35759254 1193 if(substash) {
d7879cf0 1194 SV *subname;
62c1e33f
FC
1195
1196 /* Avoid checking main::main::main::... */
1197 if(substash == stash) continue;
1198
d056e33c 1199 /* Add :: and the key (minus the trailing ::)
d7879cf0
FC
1200 to each name. */
1201 if(SvTYPE(namesv) == SVt_PVAV) {
1202 SV *aname;
1203 items = AvFILLp((AV *)namesv) + 1;
1204 svp = AvARRAY((AV *)namesv);
1205 subname = sv_2mortal((SV *)newAV());
1206 while (items--) {
1207 aname = newSVsv(*svp++);
1f656fcf
FC
1208 if (len == 1)
1209 sv_catpvs(aname, ":");
1210 else {
1211 sv_catpvs(aname, "::");
1212 sv_catpvn(aname, key, len-2);
204e6232
BF
1213 if ( SvUTF8(keysv) )
1214 SvUTF8_on(aname);
1f656fcf 1215 }
d7879cf0
FC
1216 av_push((AV *)subname, aname);
1217 }
1218 }
1219 else {
1220 subname = sv_2mortal(newSVsv(namesv));
1f656fcf
FC
1221 if (len == 1) sv_catpvs(subname, ":");
1222 else {
1223 sv_catpvs(subname, "::");
1224 sv_catpvn(subname, key, len-2);
204e6232
BF
1225 if ( SvUTF8(keysv) )
1226 SvUTF8_on(subname);
1f656fcf 1227 }
d7879cf0 1228 }
80ebaca2 1229 mro_gather_and_rename(
b89cdb22 1230 stashes, seen_stashes,
d7879cf0 1231 substash, NULL, subname
d056e33c
FC
1232 );
1233 }
c8bbf675
FC
1234 }
1235 }
1236 }
1237 }
1238}
1239
1240/*
e1a479c5
BB
1241=for apidoc mro_method_changed_in
1242
47c9dd14
BB
1243Invalidates method caching on any child classes
1244of the given stash, so that they might notice
1245the changes in this one.
e1a479c5
BB
1246
1247Ideally, all instances of C<PL_sub_generation++> in
dd69841b
BB
1248perl source outside of C<mro.c> should be
1249replaced by calls to this.
1250
1251Perl automatically handles most of the common
1252ways a method might be redefined. However, there
1253are a few ways you could change a method in a stash
1254without the cache code noticing, in which case you
1255need to call this method afterwards:
e1a479c5 1256
dd69841b
BB
12571) Directly manipulating the stash HV entries from
1258XS code.
e1a479c5 1259
dd69841b
BB
12602) Assigning a reference to a readonly scalar
1261constant into a stash entry in order to create
1262a constant subroutine (like constant.pm
1263does).
1264
1265This same method is available from pure perl
1266via, C<mro::method_changed_in(classname)>.
e1a479c5
BB
1267
1268=cut
1269*/
1270void
1271Perl_mro_method_changed_in(pTHX_ HV *stash)
1272{
00169e2c
FC
1273 const char * const stashname = HvENAME_get(stash);
1274 const STRLEN stashname_len = HvENAMELEN_get(stash);
204e6232 1275 const bool stashname_utf8 = HvENAMEUTF8(stash) ? 1 : 0;
dd69841b 1276
204e6232
BF
1277 SV ** const svp = hv_fetch(PL_isarev, stashname,
1278 stashname_utf8 ? -stashname_len : stashname_len, 0);
85fbaab2 1279 HV * const isarev = svp ? MUTABLE_HV(*svp) : NULL;
e1a479c5 1280
7918f24d
NC
1281 PERL_ARGS_ASSERT_MRO_METHOD_CHANGED_IN;
1282
2c7f4b87
BB
1283 if(!stashname)
1284 Perl_croak(aTHX_ "Can't call mro_method_changed_in() on anonymous symbol table");
1285
70cd14a1
CB
1286 /* Inc the package generation, since a local method changed */
1287 HvMROMETA(stash)->pkg_gen++;
1288
e1a479c5
BB
1289 /* If stash is UNIVERSAL, or one of UNIVERSAL's parents,
1290 invalidate all method caches globally */
dd69841b
BB
1291 if((stashname_len == 9 && strEQ(stashname, "UNIVERSAL"))
1292 || (isarev && hv_exists(isarev, "UNIVERSAL", 9))) {
e1a479c5
BB
1293 PL_sub_generation++;
1294 return;
1295 }
1296
1297 /* else, invalidate the method caches of all child classes,
1298 but not itself */
dd69841b 1299 if(isarev) {
1e05feb3
AL
1300 HE* iter;
1301
e1a479c5
BB
1302 hv_iterinit(isarev);
1303 while((iter = hv_iternext(isarev))) {
204e6232 1304 HV* const revstash = gv_stashsv(hv_iterkeysv(iter), 0);
bc2cbbac
BB
1305 struct mro_meta* mrometa;
1306
1307 if(!revstash) continue;
1308 mrometa = HvMROMETA(revstash);
dd69841b 1309 mrometa->cache_gen++;
e1a479c5
BB
1310 if(mrometa->mro_nextmethod)
1311 hv_clear(mrometa->mro_nextmethod);
1312 }
1313 }
1314}
1315
31b9005d
NC
1316void
1317Perl_mro_set_mro(pTHX_ struct mro_meta *const meta, SV *const name)
1318{
1319 const struct mro_alg *const which = Perl_mro_get_from_name(aTHX_ name);
1320
1321 PERL_ARGS_ASSERT_MRO_SET_MRO;
1322
1323 if (!which)
1324 Perl_croak(aTHX_ "Invalid mro name: '%"SVf"'", name);
1325
1326 if(meta->mro_which != which) {
9953ff72 1327 if (meta->mro_linear_current && !meta->mro_linear_all) {
31b9005d
NC
1328 /* If we were storing something directly, put it in the hash before
1329 we lose it. */
1330 Perl_mro_set_private_data(aTHX_ meta, meta->mro_which,
3a6fa573 1331 MUTABLE_SV(meta->mro_linear_current));
31b9005d
NC
1332 }
1333 meta->mro_which = which;
1334 /* Scrub our cached pointer to the private data. */
3a6fa573 1335 meta->mro_linear_current = NULL;
31b9005d
NC
1336 /* Only affects local method cache, not
1337 even child classes */
1338 meta->cache_gen++;
1339 if(meta->mro_nextmethod)
1340 hv_clear(meta->mro_nextmethod);
1341 }
1342}
1343
e1a479c5
BB
1344#include "XSUB.h"
1345
e1a479c5 1346XS(XS_mro_method_changed_in);
e1a479c5
BB
1347
1348void
1349Perl_boot_core_mro(pTHX)
1350{
1351 dVAR;
1352 static const char file[] = __FILE__;
1353
a3e6e81e 1354 Perl_mro_register(aTHX_ &dfs_alg);
a3e6e81e 1355
e1a479c5 1356 newXSproto("mro::method_changed_in", XS_mro_method_changed_in, file, "$");
e1a479c5
BB
1357}
1358
e1a479c5
BB
1359XS(XS_mro_method_changed_in)
1360{
1361 dVAR;
1362 dXSARGS;
1363 SV* classname;
1364 HV* class_stash;
1365
e1a479c5 1366 if(items != 1)
afa74d42 1367 croak_xs_usage(cv, "classname");
e1a479c5
BB
1368
1369 classname = ST(0);
1370
1371 class_stash = gv_stashsv(classname, 0);
1372 if(!class_stash) Perl_croak(aTHX_ "No such class: '%"SVf"'!", SVfARG(classname));
1373
1374 mro_method_changed_in(class_stash);
1375
1376 XSRETURN_EMPTY;
1377}
1378
e1a479c5
BB
1379/*
1380 * Local variables:
1381 * c-indentation-style: bsd
1382 * c-basic-offset: 4
1383 * indent-tabs-mode: t
1384 * End:
1385 *
1386 * ex: set ts=8 sts=4 sw=4 noet:
1387 */