X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=xs-src%2FMouseUtil.xs;h=aba91be784488d2e21dd09946bddf430f03007a3;hp=92fa6769cb7f45a811b7a42d576d43d47daa4c7b;hb=d67f600df9deb0deb95616f617c1aca3fd78a2e3;hpb=1194aedef7b9a3f8c4a36fd7060c27b1a2907b87 diff --git a/xs-src/MouseUtil.xs b/xs-src/MouseUtil.xs index 92fa676..aba91be 100644 --- a/xs-src/MouseUtil.xs +++ b/xs-src/MouseUtil.xs @@ -259,6 +259,49 @@ mouse_stash_fetch(pTHX_ HV* const stash, const char* const name, I32 const namel } } +void +mouse_install_sub(pTHX_ GV* const gv, SV* const code_ref) { + CV* cv; + + assert(gv != NULL); + assert(code_ref != NULL); + assert(isGV(gv)); + assert(IsCodeRef(code_ref)); + + if(GvCVu(gv)){ /* delete *slot{gv} to work around "redefine" warning */ + SvREFCNT_dec(GvCV(gv)); + GvCV(gv) = NULL; + } + sv_setsv_mg((SV*)gv, code_ref); /* *gv = $code_ref */ + + /* name the CODE ref if it's anonymous */ + cv = (CV*)SvRV(code_ref); + if(CvANON(cv) + && CvGV(cv) /* a cv under construction has no gv */ ){ + HV* dbsub; + + /* update %DB::sub to make NYTProf happy */ + if((PL_perldb & (PERLDBf_SUBLINE|PERLDB_NAMEANON)) + && PL_DBsub && (dbsub = GvHV(PL_DBsub)) + ){ + /* see Perl_newATTRSUB() in op.c */ + SV* const subname = sv_newmortal(); + HE* orig; + + gv_efullname3(subname, CvGV(cv), NULL); + orig = hv_fetch_ent(dbsub, subname, FALSE, 0U); + if(orig){ + gv_efullname3(subname, gv, NULL); + (void)hv_store_ent(dbsub, subname, HeVAL(orig), 0U); + SvREFCNT_inc_simple_void_NN(HeVAL(orig)); + } + } + + CvGV(cv) = gv; + CvANON_off(cv); + } +} + MODULE = Mouse::Util PACKAGE = Mouse::Util PROTOTYPES: DISABLE @@ -348,10 +391,10 @@ CODE: GV* gv; if(!SvOK(package)){ - croak("You must define a package name"); + croak("You must define %s", "a package name"); } if(!SvOK(name)){ - croak("You must define a subroutine name"); + croak("You must define %s", "a subroutine name"); } stash = gv_stashsv(package, FALSE); @@ -405,3 +448,44 @@ PPCODE: mXPUSHs( newRV_inc((SV*)xsub) ); } } + +# This xsub will redefine &Mouse::Util::install_subroutines() +void +install_subroutines(SV* into, ...) +CODE: +{ + HV* stash; + I32 i; + + SvGETMAGIC(into); + if(!SvOK(into)){ + croak("You must define %s", "a package name"); + } + stash = gv_stashsv(into, TRUE); + + if( ((items-1) % 2) != 0 ){ + croak_xs_usage(cv, "into, name => coderef [, other_name, other_coderef ...]"); + } + + for(i = 1; i < items; i += 2) { + SV* const name = ST(i); + SV* const code = ST(i+1); + STRLEN len; + const char* pv; + GV* gv; + + SvGETMAGIC(name); + if(!SvOK(name)){ + croak("You must define %s", "a subroutine name"); + } + SvGETMAGIC(code); + if(!IsCodeRef(code)){ + croak("You must define %s", "a CODE reference"); + } + + pv = SvPV_const(name, len); + gv = stash_fetch(stash, pv, len, TRUE); + + mouse_install_sub(aTHX_ gv, code); + } +}