This question is about how pg macro files get loaded in loadMacros(). I was going to email this question to Mike and Gavin, but I thought some others might have something to add many others might be interested in understanding better how this works. I want to clean up the apache error log noise generated by webwork to remove spurious warning messages.
One source of a lot of noise in the error log seems to be from macrofiles being re-loaded over and over, generating entries like:
Subroutine student redefined at (eval 2539) line 27, <MACROFILE> chunk 1.
Subroutine computer redefined at (eval 2539) line 37, <MACROFILE> chunk 1.
Subroutine moreWork redefined at (eval 2539) line 50, <MACROFILE> chunk 1.
As I understand it, this can be prevented by including a subroutine of the form
sub _macrofilename_init {
initialization code
}
As one step to clean up the error log, I am intending to add the necessary init subroutines to macro files that are missing them. But, I'd like to understand the behavior a little more before I do.
I can't see any reason why adding empty init subroutines to marco files that are missing them would cause any problems, but I've found a lot of macro files that do not include this init subroutine, and it looks to me like only some macro files that do not include this subroutine generate such warning messages. (Maybe they're not being used?)
So, for example, parserOrientation.pl (from the Orientation problem set in courses/modelCourse) generates a lot of such noise, whereas, for example, Gavin's
libraries/NationalProblemLibrary/macros/HughesHallet/hhAdditonalMacros.pl
does not seem to generate any such noise.
Here's another strange (to me) example from the error log. The function Comb is defined in pg/macros/PGcommonFunctions.pl. There are two courses on the server which contain the same definition of Comb in a macro file in their templates/macro directories (in one it's called PGcommonFunctions.pl, and in the other PGAuxilliaryFunctions.pl). In both cases the templates/macro/ file has the appropriate init subroutine. But in the error log a bunch of
Subroutine Comb redefined at (eval 1762) line 137, <MACROFILE> chunk 1.
Based on how I *think* the PGloadfiles::loadMacros subroutine works, this error comes from the redefinition of Comb in the <course>/templates/macro/PGauxilliaryFunctions.pl since loadMacros won't reload PGcommonFunctions.pl due to the fact that main::_PGcommonFunctions_init is already defined.
So then my question is that when PGauxililaryFunctions "redefines" Comb, what is the scope of the redefnition? I don't understand how mod_perl uses perl processes, but for example, does Comb get redefined "globally" (e.g. in the whole perl interpreter process in which the PGauxilliaryFunctions.pl file is loaded)? Is it somehow limited to the course or does that redefinition get shared between requests in separate courses that are handled by the same perl interpreter process?
Thanks!,
Jason