Last active
May 13, 2016 15:55
-
-
Save realdecisions/459a66e6796ceb9ba1b7 to your computer and use it in GitHub Desktop.
fork::global_hook => Inline::С impl.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package fork::global_hook; | |
use strict; | |
use Inline C => <<EOF; | |
void find_and_call(){ | |
SV* sva; | |
GV* method; | |
HV* stash; | |
char* name; | |
uint cnt = 0; | |
dSP; | |
for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY (sva)) { | |
register const SV * const svend = &sva[SvREFCNT (sva)]; | |
SV* svi; | |
for (svi = sva + 1; svi < svend; ++svi) { | |
if (SvTYPE (svi) != SVTYPEMASK && SvREFCNT (svi)) | |
{ | |
cnt++; | |
if(SvOBJECT (svi)){ | |
stash = SvSTASH (svi); | |
if(method = gv_fetchmethod_autoload (stash, "AFTER_FORK_OBJ", 0)){ | |
ENTER; SAVETMPS; PUSHMARK (SP); | |
XPUSHs (sv_2mortal (newRV_inc (svi))); | |
PUTBACK; | |
call_sv ((SV*)GvCV (method), G_DISCARD|G_VOID); | |
FREETMPS; LEAVE; | |
} | |
} | |
else if( SvTYPE (svi) == SVt_PVHV){ | |
if(name = HvNAME ((HV*)svi)){ | |
if(method = gv_fetchmethod_autoload ((HV*)svi, "AFTER_FORK", 0)){ | |
PUSHMARK (SP); | |
call_sv ((SV*)GvCV (method), G_DISCARD|G_NOARGS|G_VOID); | |
} | |
} | |
} | |
} | |
} | |
} | |
printf("SV count: %i\\n", cnt); | |
} | |
EOF | |
BEGIN { | |
*CORE::GLOBAL::fork = sub() { | |
my $ret = CORE::fork; | |
if ( defined($ret) && $ret == 0 ) { | |
find_and_call; | |
} | |
return $ret; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment