Whenever I see the term source filter I am left wondering as to what it refers to.
Aside from a formal definition, I think an example would also be helpful to drive the message home.
|
Whenever I see the term source filter I am left wondering as to what it refers to. Aside from a formal definition, I think an example would also be helpful to drive the message home.
| |||||||
feedback
|
|
A source filter is a module that modifies some other code before it is evaluated. Therefore the code that is executed is not what the programmer sees when it is written. You can read more about source filters (in the Perl context) at Edit: For more information on usage (should you wish to brave the beast), read the documentation for Alternatively there is a new and different way to muck about with the source: | |||||||||||||
feedback
|
|
A source filter is a form of module which affects the way in which a file Source filters work by taking the text of the module as input, performing some processing on it, and outputting the filtered source code. For a simple example of how a source filter is implemented, as well as more details, see the perldoc page for perlfilter. | |||
|
feedback
|
|
They are pre-processors. They change the source code before it reaches the Perl compiler. You can do scary things with them, in effect implementing your own language, with all the effects this has on readability (for others), robustness (writing parsers is hard) and maintainability (debugging gets tricky when your idea of what the source code is differs from what compiler and runtime think it is). | |||
|
feedback
|