home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _ced302d20ac5f2a50722c42fcc4c5d95 < prev    next >
Text File  |  2000-03-23  |  26KB  |  553 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlfilter - Source Filters</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlfilter - Source Filters</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <LI><A HREF="#concepts">CONCEPTS</A></LI>
  23.     <LI><A HREF="#using filters">USING FILTERS</A></LI>
  24.     <LI><A HREF="#writing a source filter">WRITING A SOURCE FILTER</A></LI>
  25.     <LI><A HREF="#writing a source filter in c">WRITING A SOURCE FILTER IN C</A></LI>
  26.     <LI><A HREF="#creating a source filter as a separate executable">CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE</A></LI>
  27.     <LI><A HREF="#writing a source filter in perl">WRITING A SOURCE FILTER IN PERL</A></LI>
  28.     <LI><A HREF="#using context: the debug filter">USING CONTEXT: THE DEBUG FILTER</A></LI>
  29.     <LI><A HREF="#conclusion">CONCLUSION</A></LI>
  30.     <LI><A HREF="#requirements">REQUIREMENTS</A></LI>
  31.     <LI><A HREF="#author">AUTHOR</A></LI>
  32.     <LI><A HREF="#copyrights">Copyrights</A></LI>
  33. </UL>
  34. <!-- INDEX END -->
  35.  
  36. <HR>
  37. <P>
  38. <H1><A NAME="name">NAME</A></H1>
  39. <P>perlfilter - Source Filters</P>
  40. <P>
  41. <HR>
  42. <H1><A NAME="description">DESCRIPTION</A></H1>
  43. <P>This article is about a little-known feature of Perl called
  44. <EM>source filters</EM>. Source filters alter the program text of a module
  45. before Perl sees it, much as a C preprocessor alters the source text of
  46. a C program before the compiler sees it. This article tells you more
  47. about what source filters are, how they work, and how to write your
  48. own.</P>
  49. <P>The original purpose of source filters was to let you encrypt your
  50. program source to prevent casual piracy. This isn't all they can do, as
  51. you'll soon learn. But first, the basics.</P>
  52. <P>
  53. <HR>
  54. <H1><A NAME="concepts">CONCEPTS</A></H1>
  55. <P>Before the Perl interpreter can execute a Perl script, it must first
  56. read it from a file into memory for parsing and compilation. If that
  57. script itself includes other scripts with a <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>
  58. statement, then each of those scripts will have to be read from their
  59. respective files as well.</P>
  60. <P>Now think of each logical connection between the Perl parser and an
  61. individual file as a <EM>source stream</EM>. A source stream is created when
  62. the Perl parser opens a file, it continues to exist as the source code
  63. is read into memory, and it is destroyed when Perl is finished parsing
  64. the file. If the parser encounters a <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> statement in
  65. a source stream, a new and distinct stream is created just for that
  66. file.</P>
  67. <P>The diagram below represents a single source stream, with the flow of
  68. source from a Perl script file on the left into the Perl parser on the
  69. right. This is how Perl normally operates.</P>
  70. <PRE>
  71.     file -------> parser</PRE>
  72. <P>There are two important points to remember:</P>
  73. <OL>
  74. <LI>
  75. Although there can be any number of source streams in existence at any
  76. given time, only one will be active.
  77. <P></P>
  78. <LI>
  79. Every source stream is associated with only one file.
  80. <P></P></OL>
  81. <P>A source filter is a special kind of Perl module that intercepts and
  82. modifies a source stream before it reaches the parser. A source filter
  83. changes our diagram like this:</P>
  84. <PRE>
  85.     file ----> filter ----> parser</PRE>
  86. <P>If that doesn't make much sense, consider the analogy of a command
  87. pipeline. Say you have a shell script stored in the compressed file
  88. <EM>trial.gz</EM>. The simple pipeline command below runs the script without
  89. needing to create a temporary file to hold the uncompressed file.</P>
  90. <PRE>
  91.     gunzip -c trial.gz | sh</PRE>
  92. <P>In this case, the data flow from the pipeline can be represented as follows:</P>
  93. <PRE>
  94.     trial.gz ----> gunzip ----> sh</PRE>
  95. <P>With source filters, you can store the text of your script compressed and use a source filter to uncompress it for Perl's parser:</P>
  96. <PRE>
  97.      compressed           gunzip
  98.     Perl program ---> source filter ---> parser</PRE>
  99. <P>
  100. <HR>
  101. <H1><A NAME="using filters">USING FILTERS</A></H1>
  102. <P>So how do you use a source filter in a Perl script? Above, I said that
  103. a source filter is just a special kind of module. Like all Perl
  104. modules, a source filter is invoked with a use statement.</P>
  105. <P>Say you want to pass your Perl source through the C preprocessor before
  106. execution. You could use the existing <CODE>-P</CODE> command line option to do
  107. this, but as it happens, the source filters distribution comes with a C
  108. preprocessor filter module called Filter::cpp. Let's use that instead.</P>
  109. <P>Below is an example program, <CODE>cpp_test</CODE>, which makes use of this filter.
  110. Line numbers have been added to allow specific lines to be referenced
  111. easily.</P>
  112. <PRE>
  113.     1: use Filter::cpp ;
  114.     2: #define TRUE 1
  115.     3: $a = TRUE ;
  116.     4: print "a = $a\n" ;</PRE>
  117. <P>When you execute this script, Perl creates a source stream for the
  118. file. Before the parser processes any of the lines from the file, the
  119. source stream looks like this:</P>
  120. <PRE>
  121.     cpp_test ---------> parser</PRE>
  122. <P>Line 1, <CODE>use Filter::cpp</CODE>, includes and installs the <CODE>cpp</CODE> filter
  123. module. All source filters work this way. The use statement is compiled
  124. and executed at compile time, before any more of the file is read, and
  125. it attaches the cpp filter to the source stream behind the scenes. Now
  126. the data flow looks like this:</P>
  127. <PRE>
  128.     cpp_test ----> cpp filter ----> parser</PRE>
  129. <P>As the parser reads the second and subsequent lines from the source
  130. stream, it feeds those lines through the <CODE>cpp</CODE> source filter before
  131. processing them. The <CODE>cpp</CODE> filter simply passes each line through the
  132. real C preprocessor. The output from the C preprocessor is then
  133. inserted back into the source stream by the filter.</P>
  134. <PRE>
  135.                   .-> cpp --.
  136.                   |         |
  137.                   |         |
  138.                   |       <-'
  139.    cpp_test ----> cpp filter ----> parser</PRE>
  140. <P>The parser then sees the following code:</P>
  141. <PRE>
  142.     use Filter::cpp ;
  143.     $a = 1 ;
  144.     print "a = $a\n" ;</PRE>
  145. <P>Let's consider what happens when the filtered code includes another
  146. module with use:</P>
  147. <PRE>
  148.     1: use Filter::cpp ;
  149.     2: #define TRUE 1
  150.     3: use Fred ;
  151.     4: $a = TRUE ;
  152.     5: print "a = $a\n" ;</PRE>
  153. <P>The <CODE>cpp</CODE> filter does not apply to the text of the Fred module, only
  154. to the text of the file that used it (<CODE>cpp_test</CODE>). Although the use
  155. statement on line 3 will pass through the cpp filter, the module that
  156. gets included (<CODE>Fred</CODE>) will not. The source streams look like this
  157. after line 3 has been parsed and before line 4 is parsed:</P>
  158. <PRE>
  159.     cpp_test ---> cpp filter ---> parser (INACTIVE)</PRE>
  160. <PRE>
  161.     Fred.pm ----> parser</PRE>
  162. <P>As you can see, a new stream has been created for reading the source
  163. from <CODE>Fred.pm</CODE>. This stream will remain active until all of <CODE>Fred.pm</CODE>
  164. has been parsed. The source stream for <CODE>cpp_test</CODE> will still exist,
  165. but is inactive. Once the parser has finished reading Fred.pm, the
  166. source stream associated with it will be destroyed. The source stream
  167. for <CODE>cpp_test</CODE> then becomes active again and the parser reads line 4
  168. and subsequent lines from <CODE>cpp_test</CODE>.</P>
  169. <P>You can use more than one source filter on a single file. Similarly,
  170. you can reuse the same filter in as many files as you like.</P>
  171. <P>For example, if you have a uuencoded and compressed source file, it is
  172. possible to stack a uudecode filter and an uncompression filter like
  173. this:</P>
  174. <PRE>
  175.     use Filter::uudecode ; use Filter::uncompress ;
  176.     M'XL(".H<US4''V9I;F%L')Q;>7/;1I;_>_I3=&E=%:F*I"T?22Q/
  177.     M6]9*<IQCO*XFT"0[PL%%'Y+IG?WN^ZYN-$'J.[.JE$,20/?K=_[>
  178.     ...</PRE>
  179. <P>Once the first line has been processed, the flow will look like this:</P>
  180. <PRE>
  181.     file ---> uudecode ---> uncompress ---> parser
  182.                filter         filter</PRE>
  183. <P>Data flows through filters in the same order they appear in the source
  184. file. The uudecode filter appeared before the uncompress filter, so the
  185. source file will be uudecoded before it's uncompressed.</P>
  186. <P>
  187. <HR>
  188. <H1><A NAME="writing a source filter">WRITING A SOURCE FILTER</A></H1>
  189. <P>There are three ways to write your own source filter. You can write it
  190. in C, use an external program as a filter, or write the filter in Perl.
  191. I won't cover the first two in any great detail, so I'll get them out
  192. of the way first. Writing the filter in Perl is most convenient, so
  193. I'll devote the most space to it.</P>
  194. <P>
  195. <HR>
  196. <H1><A NAME="writing a source filter in c">WRITING A SOURCE FILTER IN C</A></H1>
  197. <P>The first of the three available techniques is to write the filter
  198. completely in C. The external module you create interfaces directly
  199. with the source filter hooks provided by Perl.</P>
  200. <P>The advantage of this technique is that you have complete control over
  201. the implementation of your filter. The big disadvantage is the
  202. increased complexity required to write the filter - not only do you
  203. need to understand the source filter hooks, but you also need a
  204. reasonable knowledge of Perl guts. One of the few times it is worth
  205. going to this trouble is when writing a source scrambler. The
  206. <CODE>decrypt</CODE> filter (which unscrambles the source before Perl parses it)
  207. included with the source filter distribution is an example of a C
  208. source filter (see Decryption Filters, below).</P>
  209. <DL>
  210. <DT><STRONG><A NAME="item_Decryption_Filters"><STRONG>Decryption Filters</STRONG></A></STRONG><BR>
  211. <DD>
  212. All decryption filters work on the principle of ``security through
  213. obscurity.'' Regardless of how well you write a decryption filter and
  214. how strong your encryption algorithm, anyone determined enough can
  215. retrieve the original source code. The reason is quite simple - once
  216. the decryption filter has decrypted the source back to its original
  217. form, fragments of it will be stored in the computer's memory as Perl
  218. parses it. The source might only be in memory for a short period of
  219. time, but anyone possessing a debugger, skill, and lots of patience can
  220. eventually reconstruct your program.
  221. <P>That said, there are a number of steps that can be taken to make life
  222. difficult for the potential cracker. The most important: Write your
  223. decryption filter in C and statically link the decryption module into
  224. the Perl binary. For further tips to make life difficult for the
  225. potential cracker, see the file <EM>decrypt.pm</EM> in the source filters
  226. module.</P>
  227. <P></P></DL>
  228. <P>
  229. <HR>
  230. <H1><A NAME="creating a source filter as a separate executable">CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE</A></H1>
  231. <P>An alternative to writing the filter in C is to create a separate
  232. executable in the language of your choice. The separate executable
  233. reads from standard input, does whatever processing is necessary, and
  234. writes the filtered data to standard output. <CODE>Filter:cpp</CODE> is an
  235. example of a source filter implemented as a separate executable - the
  236. executable is the C preprocessor bundled with your C compiler.</P>
  237. <P>The source filter distribution includes two modules that simplify this
  238. task: <CODE>Filter::exec</CODE> and <CODE>Filter::sh</CODE>. Both allow you to run any
  239. external executable. Both use a coprocess to control the flow of data
  240. into and out of the external executable. (For details on coprocesses,
  241. see Stephens, W.R. ``Advanced Programming in the UNIX Environment.''
  242. Addison-Wesley, ISBN 0-210-56317-7, pages 441-445.) The difference
  243. between them is that <CODE>Filter::exec</CODE> spawns the external command
  244. directly, while <CODE>Filter::sh</CODE> spawns a shell to execute the external
  245. command. (Unix uses the Bourne shell; NT uses the cmd shell.) Spawning
  246. a shell allows you to make use of the shell metacharacters and
  247. redirection facilities.</P>
  248. <P>Here is an example script that uses <CODE>Filter::sh</CODE>:</P>
  249. <PRE>
  250.     use Filter::sh 'tr XYZ PQR' ;
  251.     $a = 1 ;
  252.     print "XYZ a = $a\n" ;</PRE>
  253. <P>The output you'll get when the script is executed:</P>
  254. <PRE>
  255.     PQR a = 1</PRE>
  256. <P>Writing a source filter as a separate executable works fine, but a
  257. small performance penalty is incurred. For example, if you execute the
  258. small example above, a separate subprocess will be created to run the
  259. Unix <A HREF="../../lib/Pod/perlfunc.html#item_tr"><CODE>tr</CODE></A> command. Each use of the filter requires its own subprocess.
  260. If creating subprocesses is expensive on your system, you might want to
  261. consider one of the other options for creating source filters.</P>
  262. <P>
  263. <HR>
  264. <H1><A NAME="writing a source filter in perl">WRITING A SOURCE FILTER IN PERL</A></H1>
  265. <P>The easiest and most portable option available for creating your own
  266. source filter is to write it completely in Perl. To distinguish this
  267. from the previous two techniques, I'll call it a Perl source filter.</P>
  268. <P>To help understand how to write a Perl source filter we need an example
  269. to study. Here is a complete source filter that performs rot13
  270. decoding. (Rot13 is a very simple encryption scheme used in Usenet
  271. postings to hide the contents of offensive posts. It moves every letter
  272. forward thirteen places, so that A becomes N, B becomes O, and Z
  273. becomes M.)</P>
  274. <PRE>
  275.    package Rot13 ;</PRE>
  276. <PRE>
  277.    use Filter::Util::Call ;</PRE>
  278. <PRE>
  279.    sub import {
  280.       my ($type) = @_ ;
  281.       my ($ref) = [] ;
  282.       filter_add(bless $ref) ;
  283.    }</PRE>
  284. <PRE>
  285.    sub filter {
  286.       my ($self) = @_ ;
  287.       my ($status) ;</PRE>
  288. <PRE>
  289.       tr/n-za-mN-ZA-M/a-zA-Z/
  290.          if ($status = filter_read()) > 0 ;
  291.       $status ;
  292.    }</PRE>
  293. <PRE>
  294.    1;</PRE>
  295. <P>All Perl source filters are implemented as Perl classes and have the
  296. same basic structure as the example above.</P>
  297. <P>First, we include the <CODE>Filter::Util::Call</CODE> module, which exports a
  298. number of functions into your filter's namespace. The filter shown
  299. above uses two of these functions, <CODE>filter_add()</CODE> and
  300. <CODE>filter_read()</CODE>.</P>
  301. <P>Next, we create the filter object and associate it with the source
  302. stream by defining the <A HREF="../../lib/Pod/perlfunc.html#item_import"><CODE>import</CODE></A> function. If you know Perl well
  303. enough, you know that <A HREF="../../lib/Pod/perlfunc.html#item_import"><CODE>import</CODE></A> is called automatically every time a
  304. module is included with a use statement. This makes <A HREF="../../lib/Pod/perlfunc.html#item_import"><CODE>import</CODE></A> the ideal
  305. place to both create and install a filter object.</P>
  306. <P>In the example filter, the object (<CODE>$ref</CODE>) is blessed just like any
  307. other Perl object. Our example uses an anonymous array, but this isn't
  308. a requirement. Because this example doesn't need to store any context
  309. information, we could have used a scalar or hash reference just as
  310. well. The next section demonstrates context data.</P>
  311. <P>The association between the filter object and the source stream is made
  312. with the <CODE>filter_add()</CODE> function. This takes a filter object as a
  313. parameter (<CODE>$ref</CODE> in this case) and installs it in the source stream.</P>
  314. <P>Finally, there is the code that actually does the filtering. For this
  315. type of Perl source filter, all the filtering is done in a method
  316. called <CODE>filter()</CODE>. (It is also possible to write a Perl source filter
  317. using a closure. See the <CODE>Filter::Util::Call</CODE> manual page for more
  318. details.) It's called every time the Perl parser needs another line of
  319. source to process. The <CODE>filter()</CODE> method, in turn, reads lines from
  320. the source stream using the <CODE>filter_read()</CODE> function.</P>
  321. <P>If a line was available from the source stream, <CODE>filter_read()</CODE>
  322. returns a status value greater than zero and appends the line to <CODE>$_</CODE>.
  323. A status value of zero indicates end-of-file, less than zero means an
  324. error. The filter function itself is expected to return its status in
  325. the same way, and put the filtered line it wants written to the source
  326. stream in <CODE>$_</CODE>. The use of <CODE>$_</CODE> accounts for the brevity of most Perl
  327. source filters.</P>
  328. <P>In order to make use of the rot13 filter we need some way of encoding
  329. the source file in rot13 format. The script below, <CODE>mkrot13</CODE>, does
  330. just that.</P>
  331. <PRE>
  332.     die "usage mkrot13 filename\n" unless @ARGV ;
  333.     my $in = $ARGV[0] ;
  334.     my $out = "$in.tmp" ;
  335.     open(IN, "<$in") or die "Cannot open file $in: $!\n";
  336.     open(OUT, ">$out") or die "Cannot open file $out: $!\n";</PRE>
  337. <PRE>
  338.     print OUT "use Rot13;\n" ;
  339.     while (<IN>) {
  340.        tr/a-zA-Z/n-za-mN-ZA-M/ ;
  341.        print OUT ;
  342.     }</PRE>
  343. <PRE>
  344.     close IN;
  345.     close OUT;
  346.     unlink $in;
  347.     rename $out, $in;</PRE>
  348. <P>If we encrypt this with <CODE>mkrot13</CODE>:</P>
  349. <PRE>
  350.     print " hello fred \n" ;</PRE>
  351. <P>the result will be this:</P>
  352. <PRE>
  353.     use Rot13;
  354.     cevag "uryyb serq\a" ;</PRE>
  355. <P>Running it produces this output:</P>
  356. <PRE>
  357.     hello fred</PRE>
  358. <P>
  359. <HR>
  360. <H1><A NAME="using context: the debug filter">USING CONTEXT: THE DEBUG FILTER</A></H1>
  361. <P>The rot13 example was a trivial example. Here's another demonstration
  362. that shows off a few more features.</P>
  363. <P>Say you wanted to include a lot of debugging code in your Perl script
  364. during development, but you didn't want it available in the released
  365. product. Source filters offer a solution. In order to keep the example
  366. simple, let's say you wanted the debugging output to be controlled by
  367. an environment variable, <CODE>DEBUG</CODE>. Debugging code is enabled if the
  368. variable exists, otherwise it is disabled.</P>
  369. <P>Two special marker lines will bracket debugging code, like this:</P>
  370. <PRE>
  371.     ## DEBUG_BEGIN
  372.     if ($year > 1999) {
  373.        warn "Debug: millennium bug in year $year\n" ;
  374.     }
  375.     ## DEBUG_END</PRE>
  376. <P>When the <CODE>DEBUG</CODE> environment variable exists, the filter ensures that
  377. Perl parses only the code between the <CODE>DEBUG_BEGIN</CODE> and <CODE>DEBUG_END</CODE>
  378. markers. That means that when <CODE>DEBUG</CODE> does exist, the code above
  379. should be passed through the filter unchanged. The marker lines can
  380. also be passed through as-is, because the Perl parser will see them as
  381. comment lines. When <CODE>DEBUG</CODE> isn't set, we need a way to disable the
  382. debug code. A simple way to achieve that is to convert the lines
  383. between the two markers into comments:</P>
  384. <PRE>
  385.     ## DEBUG_BEGIN
  386.     #if ($year > 1999) {
  387.     #     warn "Debug: millennium bug in year $year\n" ;
  388.     #}
  389.     ## DEBUG_END</PRE>
  390. <P>Here is the complete Debug filter:</P>
  391. <PRE>
  392.     package Debug;</PRE>
  393. <PRE>
  394.     use strict;
  395.     use warnings;
  396.     use Filter::Util::Call ;</PRE>
  397. <PRE>
  398.     use constant TRUE => 1 ;
  399.     use constant FALSE => 0 ;</PRE>
  400. <PRE>
  401.     sub import {
  402.        my ($type) = @_ ;
  403.        my (%context) = (
  404.          Enabled => defined $ENV{DEBUG},
  405.          InTraceBlock => FALSE,
  406.          Filename => (caller)[1],
  407.          LineNo => 0,
  408.          LastBegin => 0,
  409.        ) ;
  410.        filter_add(bless \%context) ;
  411.     }</PRE>
  412. <PRE>
  413.     sub Die {
  414.        my ($self) = shift ;
  415.        my ($message) = shift ;
  416.        my ($line_no) = shift || $self->{LastBegin} ;
  417.        die "$message at $self->{Filename} line $line_no.\n"
  418.     }</PRE>
  419. <PRE>
  420.     sub filter {
  421.        my ($self) = @_ ;
  422.        my ($status) ;
  423.        $status = filter_read() ;
  424.        ++ $self->{LineNo} ;</PRE>
  425. <PRE>
  426.        # deal with EOF/error first
  427.        if ($status <= 0) {
  428.            $self->Die("DEBUG_BEGIN has no DEBUG_END")
  429.                if $self->{InTraceBlock} ;
  430.            return $status ;
  431.        }</PRE>
  432. <PRE>
  433.        if ($self->{InTraceBlock}) {
  434.           if (/^\s*##\s*DEBUG_BEGIN/ ) {
  435.               $self->Die("Nested DEBUG_BEGIN", $self->{LineNo})
  436.           } elsif (/^\s*##\s*DEBUG_END/) {
  437.               $self->{InTraceBlock} = FALSE ;
  438.           }</PRE>
  439. <PRE>
  440.           # comment out the debug lines when the filter is disabled
  441.           s/^/#/ if ! $self->{Enabled} ;
  442.        } elsif ( /^\s*##\s*DEBUG_BEGIN/ ) {
  443.           $self->{InTraceBlock} = TRUE ;
  444.           $self->{LastBegin} = $self->{LineNo} ;
  445.        } elsif ( /^\s*##\s*DEBUG_END/ ) {
  446.           $self->Die("DEBUG_END has no DEBUG_BEGIN", $self->{LineNo});
  447.        }
  448.        return $status ;
  449.     }</PRE>
  450. <PRE>
  451.     1 ;</PRE>
  452. <P>The big difference between this filter and the previous example is the
  453. use of context data in the filter object. The filter object is based on
  454. a hash reference, and is used to keep various pieces of context
  455. information between calls to the filter function. All but two of the
  456. hash fields are used for error reporting. The first of those two,
  457. Enabled, is used by the filter to determine whether the debugging code
  458. should be given to the Perl parser. The second, InTraceBlock, is true
  459. when the filter has encountered a <CODE>DEBUG_BEGIN</CODE> line, but has not yet
  460. encountered the following <CODE>DEBUG_END</CODE> line.</P>
  461. <P>If you ignore all the error checking that most of the code does, the
  462. essence of the filter is as follows:</P>
  463. <PRE>
  464.     sub filter {
  465.        my ($self) = @_ ;
  466.        my ($status) ;
  467.        $status = filter_read() ;</PRE>
  468. <PRE>
  469.        # deal with EOF/error first
  470.        return $status if $status <= 0 ;
  471.        if ($self->{InTraceBlock}) {
  472.           if (/^\s*##\s*DEBUG_END/) {
  473.              $self->{InTraceBlock} = FALSE
  474.           }</PRE>
  475. <PRE>
  476.           # comment out debug lines when the filter is disabled
  477.           s/^/#/ if ! $self->{Enabled} ;
  478.        } elsif ( /^\s*##\s*DEBUG_BEGIN/ ) {
  479.           $self->{InTraceBlock} = TRUE ;
  480.        }
  481.        return $status ;
  482.     }</PRE>
  483. <P>Be warned: just as the C-preprocessor doesn't know C, the Debug filter
  484. doesn't know Perl. It can be fooled quite easily:</P>
  485. <PRE>
  486.     print <<EOM;
  487.     ##DEBUG_BEGIN
  488.     EOM</PRE>
  489. <P>Such things aside, you can see that a lot can be achieved with a modest
  490. amount of code.</P>
  491. <P>
  492. <HR>
  493. <H1><A NAME="conclusion">CONCLUSION</A></H1>
  494. <P>You now have better understanding of what a source filter is, and you
  495. might even have a possible use for them. If you feel like playing with
  496. source filters but need a bit of inspiration, here are some extra
  497. features you could add to the Debug filter.</P>
  498. <P>First, an easy one. Rather than having debugging code that is
  499. all-or-nothing, it would be much more useful to be able to control
  500. which specific blocks of debugging code get included. Try extending the
  501. syntax for debug blocks to allow each to be identified. The contents of
  502. the <CODE>DEBUG</CODE> environment variable can then be used to control which
  503. blocks get included.</P>
  504. <P>Once you can identify individual blocks, try allowing them to be
  505. nested. That isn't difficult either.</P>
  506. <P>Here is a interesting idea that doesn't involve the Debug filter.
  507. Currently Perl subroutines have fairly limited support for formal
  508. parameter lists. You can specify the number of parameters and their
  509. type, but you still have to manually take them out of the <CODE>@_</CODE> array
  510. yourself. Write a source filter that allows you to have a named
  511. parameter list. Such a filter would turn this:</P>
  512. <PRE>
  513.     sub MySub ($first, $second, @rest) { ... }</PRE>
  514. <P>into this:</P>
  515. <PRE>
  516.     sub MySub($$@) {
  517.        my ($first) = shift ;
  518.        my ($second) = shift ;
  519.        my (@rest) = @_ ;
  520.        ...
  521.     }</PRE>
  522. <P>Finally, if you feel like a real challenge, have a go at writing a
  523. full-blown Perl macro preprocessor as a source filter. Borrow the
  524. useful features from the C preprocessor and any other macro processors
  525. you know. The tricky bit will be choosing how much knowledge of Perl's
  526. syntax you want your filter to have.</P>
  527. <P>
  528. <HR>
  529. <H1><A NAME="requirements">REQUIREMENTS</A></H1>
  530. <P>The Source Filters distribution is available on CPAN, in</P>
  531. <PRE>
  532.     CPAN/modules/by-module/Filter</PRE>
  533. <P>
  534. <HR>
  535. <H1><A NAME="author">AUTHOR</A></H1>
  536. <P>Paul Marquess <<A HREF="mailto:Paul.Marquess@btinternet.com">Paul.Marquess@btinternet.com</A>></P>
  537. <P>
  538. <HR>
  539. <H1><A NAME="copyrights">Copyrights</A></H1>
  540. <P>This article originally appeared in The Perl Journal #11, and is
  541. copyright 1998 The Perl Journal. It appears courtesy of Jon Orwant and
  542. The Perl Journal.  This document may be distributed under the same terms
  543. as Perl itself.</P>
  544. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  545. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  546. <STRONG><P CLASS=block> perlfilter - Source Filters</P></STRONG>
  547. </TD></TR>
  548. </TABLE>
  549.  
  550. </BODY>
  551.  
  552. </HTML>
  553.