home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / s2p < prev    next >
Text File  |  2004-02-17  |  53KB  |  1,990 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4. my $startperl;
  5. my $perlpath;
  6. ($startperl = <<'/../') =~ s/\s*\z//;
  7. #!/usr/bin/perl
  8. /../
  9. ($perlpath = <<'/../') =~ s/\s*\z//;
  10. /usr/bin/perl
  11. /../
  12.  
  13. $0 =~ s/^.*?(\w+)[\.\w]*$/$1/;
  14.  
  15. # (p)sed - a stream editor
  16. # History:  Aug 12 2000: Original version.
  17. #           Mar 25 2002: Rearrange generated Perl program.
  18.  
  19. use strict;
  20. use integer;
  21. use Symbol;
  22.  
  23. =head1 NAME
  24.  
  25. psed - a stream editor
  26.  
  27. =head1 SYNOPSIS
  28.  
  29.    psed [-an] script [file ...]
  30.    psed [-an] [-e script] [-f script-file] [file ...]
  31.  
  32.    s2p  [-an] [-e script] [-f script-file]
  33.  
  34. =head1 DESCRIPTION
  35.  
  36. A stream editor reads the input stream consisting of the specified files
  37. (or standard input, if none are given), processes is line by line by
  38. applying a script consisting of edit commands, and writes resulting lines
  39. to standard output. The filename `C<->' may be used to read standard input.
  40.  
  41. The edit script is composed from arguments of B<-e> options and
  42. script-files, in the given order. A single script argument may be specified
  43. as the first parameter.
  44.  
  45. If this program is invoked with the name F<s2p>, it will act as a
  46. sed-to-Perl translator. See L<"sed Script Translation">.
  47.  
  48. B<sed> returns an exit code of 0 on success or >0 if an error occurred.
  49.  
  50. =head1 OPTIONS
  51.  
  52. =over 4
  53.  
  54. =item B<-a>
  55.  
  56. A file specified as argument to the B<w> edit command is by default
  57. opened before input processing starts. Using B<-a>, opening of such
  58. files is delayed until the first line is actually written to the file.
  59.  
  60. =item B<-e> I<script>
  61.  
  62. The editing commands defined by I<script> are appended to the script.
  63. Multiple commands must be separated by newlines.
  64.  
  65. =item B<-f> I<script-file>
  66.  
  67. Editing commands from the specified I<script-file> are read and appended
  68. to the script.
  69.  
  70. =item B<-n>
  71.  
  72. By default, a line is written to standard output after the editing script
  73. has been applied to it. The B<-n> option suppresses automatic printing.
  74.  
  75. =back
  76.  
  77. =head1 COMMANDS
  78.  
  79. B<sed> command syntax is defined as
  80.  
  81. Z<> Z<> Z<> Z<>[I<address>[B<,>I<address>]][B<!>]I<function>[I<argument>]
  82.  
  83. with whitespace being permitted before or after addresses, and between
  84. the function character and the argument. The I<address>es and the
  85. address inverter (C<!>) are used to restrict the application of a
  86. command to the selected line(s) of input.
  87.  
  88. Each command must be on a line of its own, except where noted in
  89. the synopses below.
  90.  
  91. The edit cycle performed on each input line consist of reading the line
  92. (without its trailing newline character) into the I<pattern space>,
  93. applying the applicable commands of the edit script, writing the final
  94. contents of the pattern space and a newline to the standard output.
  95. A I<hold space> is provided for saving the contents of the
  96. pattern space for later use.
  97.  
  98. =head2 Addresses
  99.  
  100. A sed address is either a line number or a pattern, which may be combined
  101. arbitrarily to construct ranges. Lines are numbered across all input files.
  102.  
  103. Any address may be followed by an exclamation mark (`C<!>'), selecting
  104. all lines not matching that address.
  105.  
  106. =over 4
  107.  
  108. =item I<number>
  109.  
  110. The line with the given number is selected.
  111.  
  112. =item B<$>
  113.  
  114. A dollar sign (C<$>) is the line number of the last line of the input stream.
  115.  
  116. =item B</>I<regular expression>B</>
  117.  
  118. A pattern address is a basic regular expression (see 
  119. L<"Basic Regular Expressions">), between the delimiting character C</>.
  120. Any other character except C<\> or newline may be used to delimit a
  121. pattern address when the initial delimiter is prefixed with a
  122. backslash (`C<\>').
  123.  
  124. =back
  125.  
  126. If no address is given, the command selects every line.
  127.  
  128. If one address is given, it selects the line (or lines) matching the
  129. address.
  130.  
  131. Two addresses select a range that begins whenever the first address
  132. matches, and ends (including that line) when the second address matches.
  133. If the first (second) address is a matching pattern, the second 
  134. address is not applied to the very same line to determine the end of
  135. the range. Likewise, if the second address is a matching pattern, the
  136. first address is not applied to the very same line to determine the
  137. begin of another range. If both addresses are line numbers,
  138. and the second line number is less than the first line number, then
  139. only the first line is selected.
  140.  
  141.  
  142. =head2 Functions
  143.  
  144. The maximum permitted number of addresses is indicated with each
  145. function synopsis below.
  146.  
  147. The argument I<text> consists of one or more lines following the command.
  148. Embedded newlines in I<text> must be preceded with a backslash.  Other
  149. backslashes in I<text> are deleted and the following character is taken
  150. literally.
  151.  
  152. =over 4
  153.  
  154. =cut
  155.  
  156. my %ComTab;
  157. my %GenKey;
  158. #--------------------------------------------------------------------------
  159. $ComTab{'a'}=[ 1, 'txt', \&Emit,       '{ push( @Q, <<'."'TheEnd' ) }\n" ]; #ok
  160.  
  161. =item [1addr]B<a\> I<text>
  162.  
  163. Write I<text> (which must start on the line following the command)
  164. to standard output immediately before reading the next line
  165. of input, either by executing the B<N> function or by beginning a new cycle.
  166.  
  167. =cut
  168.  
  169. #--------------------------------------------------------------------------
  170. $ComTab{'b'}=[ 2, 'str', \&Branch,     '{ goto XXX; }'                   ]; #ok
  171.  
  172. =item [2addr]B<b> [I<label>]
  173.  
  174. Branch to the B<:> function with the specified I<label>. If no label
  175. is given, branch to the end of the script.
  176.  
  177. =cut
  178.  
  179. #--------------------------------------------------------------------------
  180. $ComTab{'c'}=[ 2, 'txt', \&Change,     <<'-X-'                           ]; #ok
  181. { print <<'TheEnd'; } $doPrint = 0; goto EOS;
  182. -X-
  183. ### continue OK => next CYCLE;
  184.  
  185. =item [2addr]B<c\> I<text>
  186.  
  187. The line, or range of lines, selected by the address is deleted. 
  188. The I<text> (which must start on the line following the command)
  189. is written to standard output. With an address range, this occurs at
  190. the end of the range.
  191.  
  192. =cut
  193.  
  194. #--------------------------------------------------------------------------
  195. $ComTab{'d'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  196. { $doPrint = 0;
  197.   goto EOS;
  198. }
  199. -X-
  200. ### continue OK => next CYCLE;
  201.  
  202. =item [2addr]B<d>
  203.  
  204. Deletes the pattern space and starts the next cycle.
  205.  
  206. =cut
  207.  
  208. #--------------------------------------------------------------------------
  209. $ComTab{'D'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  210. { s/^.*\n?//;
  211.   if(length($_)){ goto BOS } else { goto EOS }
  212. }
  213. -X-
  214. ### continue OK => next CYCLE;
  215.  
  216. =item [2addr]B<D>
  217.  
  218. Deletes the pattern space through the first embedded newline or to the end.
  219. If the pattern space becomes empty, a new cycle is started, otherwise
  220. execution of the script is restarted.
  221.  
  222. =cut
  223.  
  224. #--------------------------------------------------------------------------
  225. $ComTab{'g'}=[ 2, '',    \&Emit,       '{ $_ = $Hold };'                 ]; #ok
  226.  
  227. =item [2addr]B<g>
  228.  
  229. Replace the contents of the pattern space with the hold space.
  230.  
  231. =cut
  232.  
  233. #--------------------------------------------------------------------------
  234. $ComTab{'G'}=[ 2, '',    \&Emit,       '{ $_ .= "\n"; $_ .= $Hold };'    ]; #ok
  235.  
  236. =item [2addr]B<G>
  237.  
  238. Append a newline and the contents of the hold space to the pattern space.
  239.  
  240. =cut
  241.  
  242. #--------------------------------------------------------------------------
  243. $ComTab{'h'}=[ 2, '',    \&Emit,       '{ $Hold = $_ }'                  ]; #ok
  244.  
  245. =item [2addr]B<h>
  246.  
  247. Replace the contents of the hold space with the pattern space.
  248.  
  249. =cut
  250.  
  251. #--------------------------------------------------------------------------
  252. $ComTab{'H'}=[ 2, '',    \&Emit,       '{ $Hold .= "\n"; $Hold .= $_; }' ]; #ok
  253.  
  254. =item [2addr]B<H>
  255.  
  256. Append a newline and the contents of the pattern space to the hold space.
  257.  
  258. =cut
  259.  
  260. #--------------------------------------------------------------------------
  261. $ComTab{'i'}=[ 1, 'txt', \&Emit,       '{ print <<'."'TheEnd' }\n"       ]; #ok
  262.  
  263. =item [1addr]B<i\> I<text>
  264.  
  265. Write the I<text> (which must start on the line following the command)
  266. to standard output.
  267.  
  268. =cut
  269.  
  270. #--------------------------------------------------------------------------
  271. $ComTab{'l'}=[ 2, '',    \&Emit,       '{ _l() }'                        ]; #okUTF8
  272.  
  273. =item [2addr]B<l>
  274.  
  275. Print the contents of the pattern space: non-printable characters are
  276. shown in C-style escaped form; long lines are split and have a trailing
  277. `C<\>' at the point of the split; the true end of a line is marked with
  278. a `C<$>'. Escapes are: `\a', `\t', `\n', `\f', `\r', `\e' for
  279. BEL, HT, LF, FF, CR, ESC, respectively, and `\' followed by a three-digit
  280. octal number for all other non-printable characters.
  281.  
  282. =cut
  283.  
  284. #--------------------------------------------------------------------------
  285. $ComTab{'n'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  286. { print $_, "\n" if $doPrint;
  287.   printQ() if @Q;
  288.   $CondReg = 0;
  289.   last CYCLE unless getsARGV();
  290.   chomp();
  291. }
  292. -X-
  293.  
  294. =item [2addr]B<n>
  295.  
  296. If automatic printing is enabled, write the pattern space to the standard
  297. output. Replace the pattern space with the next line of input. If
  298. there is no more input, processing is terminated.
  299.  
  300. =cut
  301.  
  302. #--------------------------------------------------------------------------
  303. $ComTab{'N'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  304. { printQ() if @Q;
  305.   $CondReg = 0;
  306.   last CYCLE unless getsARGV( $h );
  307.   chomp( $h );
  308.   $_ .= "\n$h";
  309. }
  310. -X-
  311.  
  312. =item [2addr]B<N>
  313.  
  314. Append a newline and the next line of input to the pattern space. If
  315. there is no more input, processing is terminated.
  316.  
  317. =cut
  318.  
  319. #--------------------------------------------------------------------------
  320. $ComTab{'p'}=[ 2, '',    \&Emit,       '{ print $_, "\n"; }'             ]; #ok
  321.  
  322. =item [2addr]B<p>
  323.  
  324. Print the pattern space to the standard output. (Use the B<-n> option
  325. to suppress automatic printing at the end of a cycle if you want to
  326. avoid double printing of lines.)
  327.  
  328. =cut
  329.  
  330. #--------------------------------------------------------------------------
  331. $ComTab{'P'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  332. { if( /^(.*)/ ){ print $1, "\n"; } }
  333. -X-
  334.  
  335. =item [2addr]B<P>
  336.  
  337. Prints the pattern space through the first embedded newline or to the end.
  338.  
  339. =cut
  340.  
  341. #--------------------------------------------------------------------------
  342. $ComTab{'q'}=[ 1, '',    \&Emit,       <<'-X-'                           ]; #ok
  343. { print $_, "\n" if $doPrint;
  344.   last CYCLE;
  345. }
  346. -X-
  347.  
  348. =item [1addr]B<q>
  349.  
  350. Branch to the end of the script and quit without starting a new cycle.
  351.  
  352. =cut
  353.  
  354. #--------------------------------------------------------------------------
  355. $ComTab{'r'}=[ 1, 'str', \&Emit,       "{ _r( '-X-' ) }"                 ]; #ok
  356.  
  357. =item [1addr]B<r> I<file>
  358.  
  359. Copy the contents of the I<file> to standard output immediately before
  360. the next attempt to read a line of input. Any error encountered while
  361. reading I<file> is silently ignored.
  362.  
  363. =cut
  364.  
  365. #--------------------------------------------------------------------------
  366. $ComTab{'s'}=[ 2, 'sub', \&Emit,       ''                                ]; #ok
  367.  
  368. =item [2addr]B<s/>I<regular expression>B</>I<replacement>B</>I<flags>
  369.  
  370. Substitute the I<replacement> string for the first substring in
  371. the pattern space that matches the I<regular expression>.
  372. Any character other than backslash or newline can be used instead of a 
  373. slash to delimit the regular expression and the replacement.
  374. To use the delimiter as a literal character within the regular expression
  375. and the replacement, precede the character by a backslash (`C<\>').
  376.  
  377. Literal newlines may be embedded in the replacement string by
  378. preceding a newline with a backslash.
  379.  
  380. Within the replacement, an ampersand (`C<&>') is replaced by the string
  381. matching the regular expression. The strings `C<\1>' through `C<\9>' are
  382. replaced by the corresponding subpattern (see L<"Basic Regular Expressions">).
  383. To get a literal `C<&>' or `C<\>' in the replacement text, precede it
  384. by a backslash.
  385.  
  386. The following I<flags> modify the behaviour of the B<s> command:
  387.  
  388. =over 8
  389.  
  390. =item B<g>
  391.  
  392. The replacement is performed for all matching, non-overlapping substrings
  393. of the pattern space.
  394.  
  395. =item B<1>..B<9>
  396.  
  397. Replace only the n-th matching substring of the pattern space.
  398.  
  399. =item B<p>
  400.  
  401. If the substitution was made, print the new value of the pattern space.
  402.  
  403. =item B<w> I<file>
  404.  
  405. If the substitution was made, write the new value of the pattern space
  406. to the specified file.
  407.  
  408. =back
  409.  
  410. =cut
  411.  
  412. #--------------------------------------------------------------------------
  413. $ComTab{'t'}=[ 2, 'str', \&Branch,     '{ goto XXX if _t() }'            ]; #ok
  414.  
  415. =item [2addr]B<t> [I<label>]
  416.  
  417. Branch to the B<:> function with the specified I<label> if any B<s>
  418. substitutions have been made since the most recent reading of an input line
  419. or execution of a B<t> function. If no label is given, branch to the end of
  420. the script. 
  421.  
  422.  
  423. =cut
  424.  
  425. #--------------------------------------------------------------------------
  426. $ComTab{'w'}=[ 2, 'str', \&Write,      "{ _w( '-X-' ) }"                 ]; #ok
  427.  
  428. =item [2addr]B<w> I<file>
  429.  
  430. The contents of the pattern space are written to the I<file>.
  431.  
  432. =cut
  433.  
  434. #--------------------------------------------------------------------------
  435. $ComTab{'x'}=[ 2, '',    \&Emit,       '{ ($Hold, $_) = ($_, $Hold) }'   ]; #ok
  436.  
  437. =item [2addr]B<x>
  438.  
  439. Swap the contents of the pattern space and the hold space.
  440.  
  441. =cut
  442.  
  443. #--------------------------------------------------------------------------
  444. $ComTab{'y'}=[ 2, 'tra', \&Emit,       ''                                ]; #ok
  445. =item [2addr]B<y>B</>I<string1>B</>I<string2>B</>
  446.  
  447. In the pattern space, replace all characters occuring in I<string1> by the
  448. character at the corresponding position in I<string2>. It is possible
  449. to use any character (other than a backslash or newline) instead of a
  450. slash to delimit the strings.  Within I<string1> and I<string2>, a
  451. backslash followed by any character other than a newline is that literal
  452. character, and a backslash followed by an `n' is replaced by a newline
  453. character.
  454.  
  455. =cut
  456.  
  457. #--------------------------------------------------------------------------
  458. $ComTab{'='}=[ 1, '',    \&Emit,       '{ print "$.\n" }'                ]; #ok
  459.  
  460. =item [1addr]B<=>
  461.  
  462. Prints the current line number on the standard output.
  463.  
  464. =cut
  465.  
  466. #--------------------------------------------------------------------------
  467. $ComTab{':'}=[ 0, 'str', \&Label,      ''                                ]; #ok
  468.  
  469. =item [0addr]B<:> [I<label>]
  470.  
  471. The command specifies the position of the I<label>. It has no other effect.
  472.  
  473. =cut
  474.  
  475. #--------------------------------------------------------------------------
  476. $ComTab{'{'}=[ 2, '',    \&BeginBlock, '{'                               ]; #ok
  477. $ComTab{'}'}=[ 0, '',    \&EndBlock,   ';}'                              ]; #ok
  478. # ';' to avoid warning on empty {}-block
  479.  
  480. =item [2addr]B<{> [I<command>]
  481.  
  482. =item [0addr]B<}>
  483.  
  484. These two commands begin and end a command list. The first command may
  485. be given on the same line as the opening B<{> command. The commands
  486. within the list are jointly selected by the address(es) given on the
  487. B<{> command (but may still have individual addresses).
  488.  
  489. =cut
  490.  
  491. #--------------------------------------------------------------------------
  492. $ComTab{'#'}=[ 0, 'str', \&Comment,    ''                                ]; #ok
  493.  
  494. =item [0addr]B<#> [I<comment>]
  495.  
  496. The entire line is ignored (treated as a comment). If, however, the first
  497. two characters in the script are `C<#n>', automatic printing of output is
  498. suppressed, as if the B<-n> option were given on the command line.
  499.  
  500. =back
  501.  
  502. =cut
  503.  
  504. use vars qw{ $isEOF $Hold %wFiles @Q $CondReg $doPrint };
  505.  
  506. my $useDEBUG    = exists( $ENV{PSEDDEBUG} );
  507. my $useEXTBRE   = $ENV{PSEDEXTBRE} || '';
  508. $useEXTBRE =~ s/[^<>wWyB]//g; # gawk RE's handle these
  509.  
  510. my $doAutoPrint = 1;          # automatic printing of pattern space (-n => 0)
  511. my $doOpenWrite = 1;          # open w command output files at start (-a => 0)
  512. my $svOpenWrite = 0;          # save $doOpenWrite
  513. my $doGenerate  = $0 eq 's2p';
  514.  
  515. # Collected and compiled script
  516. #
  517. my( @Commands, %Defined, @BlockStack, %Label, $labNum, $Code, $Func );
  518. $Code = '';
  519.  
  520. ##################
  521. #  Compile Time
  522. #
  523. # Labels
  524. # Error handling
  525. #
  526. sub Warn($;$){
  527.     my( $msg, $loc ) = @_;
  528.     $loc ||= '';
  529.     $loc .= ': ' if length( $loc );
  530.     warn( "$0: $loc$msg\n" );
  531. }
  532.  
  533. $labNum = 0;
  534. sub newLabel(){
  535.     return 'L_'.++$labNum;
  536. }
  537.  
  538. # safeHere: create safe here delimiter and  modify opcode and argument
  539. #
  540. sub safeHere($$){
  541.     my( $codref, $argref ) = @_;
  542.     my $eod = 'EOD000';
  543.     while( $$argref =~ /^$eod$/m ){
  544.         $eod++;
  545.     }
  546.     $$codref =~ s/TheEnd/$eod/e;
  547.     $$argref .= "$eod\n"; 
  548. }
  549.  
  550. # Emit: create address logic and emit command
  551. #
  552. sub Emit($$$$$$){
  553.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  554.     my $cond = '';
  555.     if( defined( $addr1 ) ){
  556.         if( defined( $addr2 ) ){
  557.         $addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
  558.         } else {
  559.         $addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
  560.     }
  561.     $cond = $negated ? "unless( $addr1 )\n" : "if( $addr1 )\n";
  562.     }
  563.  
  564.     if( $opcode eq '' ){
  565.     $Code .= "$cond$arg\n";
  566.  
  567.     } elsif( $opcode =~ s/-X-/$arg/e ){
  568.     $Code .= "$cond$opcode\n";
  569.  
  570.     } elsif( $opcode =~ /TheEnd/ ){
  571.     safeHere( \$opcode, \$arg );
  572.     $Code .= "$cond$opcode$arg";
  573.  
  574.     } else {
  575.     $Code .= "$cond$opcode\n";
  576.     }
  577.     0;
  578. }
  579.  
  580. # Write (w command, w flag): store pathname
  581. #
  582. sub Write($$$$$$){
  583.     my( $addr1, $addr2, $negated, $opcode, $path, $fl ) = @_;
  584.     $wFiles{$path} = '';
  585.     Emit( $addr1, $addr2, $negated, $opcode, $path, $fl );
  586. }
  587.  
  588.  
  589. # Label (: command): label definition
  590. #
  591. sub Label($$$$$$){
  592.     my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
  593.     my $rc = 0;
  594.     $lab =~ s/\s+//;
  595.     if( length( $lab ) ){
  596.     my $h;
  597.     if( ! exists( $Label{$lab} ) ){
  598.         $h = $Label{$lab}{name} = newLabel();
  599.         } else {
  600.         $h = $Label{$lab}{name};
  601.         if( exists( $Label{$lab}{defined} ) ){
  602.         my $dl = $Label{$lab}{defined};
  603.         Warn( "duplicate label $lab (first defined at $dl)", $fl );
  604.         $rc = 1;
  605.         }
  606.     }
  607.         $Label{$lab}{defined} = $fl;
  608.     $Code .= "$h:;\n";
  609.     }
  610.     $rc;
  611. }
  612.  
  613. # BeginBlock ({ command): push block start
  614. #
  615. sub BeginBlock($$$$$$){
  616.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  617.     push( @BlockStack, [ $fl, $addr1, $addr2, $negated ] );
  618.     Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
  619. }
  620.  
  621. # EndBlock (} command): check proper nesting
  622. #
  623. sub EndBlock($$$$$$){
  624.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  625.     my $rc;
  626.     my $jcom = pop( @BlockStack );
  627.     if( defined( $jcom ) ){
  628.     $rc = Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
  629.     } else {
  630.     Warn( "unexpected `}'", $fl );
  631.     $rc = 1;
  632.     }
  633.     $rc;
  634. }
  635.  
  636. # Branch (t, b commands): check or create label, substitute default
  637. #
  638. sub Branch($$$$$$){
  639.     my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
  640.     $lab =~ s/\s+//; # no spaces at end
  641.     my $h;
  642.     if( length( $lab ) ){
  643.     if( ! exists( $Label{$lab} ) ){
  644.         $h = $Label{$lab}{name} = newLabel();
  645.         } else {
  646.         $h = $Label{$lab}{name};
  647.     }
  648.     push( @{$Label{$lab}{used}}, $fl );
  649.     } else {
  650.     $h = 'EOS';
  651.     }
  652.     $opcode =~ s/XXX/$h/e;
  653.     Emit( $addr1, $addr2, $negated, $opcode, '', $fl );
  654. }
  655.  
  656. # Change (c command): is special due to range end watching
  657. #
  658. sub Change($$$$$$){
  659.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  660.     my $kwd = $negated ? 'unless' : 'if';
  661.     if( defined( $addr2 ) ){
  662.         $addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
  663.     if( ! $negated ){
  664.         $addr1  = '$icnt = ('.$addr1.')';
  665.         $opcode = 'if( $icnt =~ /E0$/ )' . $opcode;
  666.     }
  667.     } else {
  668.     $addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
  669.     }
  670.     safeHere( \$opcode, \$arg );
  671.     $Code .= "$kwd( $addr1 ){\n  $opcode$arg}\n";
  672.     0;
  673. }
  674.  
  675.  
  676. # Comment (# command): A no-op. Who would've thought that!
  677. #
  678. sub Comment($$$$$$){
  679.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  680. ### $Code .= "# $arg\n";
  681.     0;
  682. }
  683.  
  684.  
  685. sub stripRegex($$){
  686.     my( $del, $sref ) = @_;
  687.     my $regex = $del;
  688.     print "stripRegex:$del:$$sref:\n" if $useDEBUG;
  689.     while( $$sref =~ s{^(.*?)(\\*)\Q$del\E(\s*)}{}s ){
  690.         my $sl = $2;
  691.     $regex .= $1.$sl.$del;
  692.     if( length( $sl ) % 2 == 0 ){
  693.         return $regex;
  694.     }
  695.     $regex .= $3;
  696.     }
  697.     undef();
  698. }
  699.  
  700. # stripTrans: take a <del> terminated string from y command
  701. #   honoring and cleaning up of \-escaped <del>'s
  702. #
  703. sub stripTrans($$){
  704.     my( $del, $sref ) = @_;
  705.     my $t = '';
  706.     print "stripTrans:$del:$$sref:\n" if $useDEBUG;
  707.     while( $$sref =~ s{^(.*?)(\\*)\Q$del\E}{}s ){
  708.         my $sl = $2;
  709.     $t .= $1;
  710.     if( length( $sl ) % 2 == 0 ){
  711.         $t .= $sl;
  712.         $t =~ s/\\\\/\\/g;
  713.         return $t;
  714.     }
  715.     chop( $sl );
  716.     $t .= $sl.$del.$3;
  717.     }
  718.     undef();
  719. }
  720.  
  721. # makey - construct Perl y/// from sed y///
  722. #
  723. sub makey($$$){
  724.     my( $fr, $to, $fl ) = @_;
  725.     my $error = 0;
  726.  
  727.     # Ensure that any '-' is up front.
  728.     # Diagnose duplicate contradicting mappings
  729.     my %tr;
  730.     for( my $i = 0; $i < length($fr); $i++ ){
  731.     my $fc = substr($fr,$i,1);
  732.     my $tc = substr($to,$i,1);
  733.     if( exists( $tr{$fc} ) && $tr{$fc} ne $tc ){
  734.         Warn( "ambiguous translation for character `$fc' in `y' command",
  735.           $fl );
  736.         $error++;
  737.     }
  738.     $tr{$fc} = $tc;
  739.     }
  740.     $fr = $to = '';
  741.     if( exists( $tr{'-'} ) ){
  742.     ( $fr, $to ) = ( '-', $tr{'-'} );
  743.     delete( $tr{'-'} );
  744.     } else {
  745.     $fr = $to = '';
  746.     }
  747.     # might just as well sort it...
  748.     for my $fc ( sort keys( %tr ) ){
  749.     $fr .= $fc;
  750.     $to .= $tr{$fc};
  751.     }
  752.     # make embedded delimiters and newlines safe
  753.     $fr =~ s/([{}])/\$1/g;
  754.     $to =~ s/([{}])/\$1/g;
  755.     $fr =~ s/\n/\\n/g;
  756.     $to =~ s/\n/\\n/g;
  757.     return $error ? undef() : "{ y{$fr}{$to}; }";
  758. }
  759.  
  760. ######
  761. # makes - construct Perl s/// from sed s///
  762. #
  763. sub makes($$$$$$$){
  764.     my( $regex, $subst, $path, $global, $print, $nmatch, $fl ) = @_;
  765.  
  766.     # make embedded newlines safe
  767.     $regex =~ s/\n/\\n/g;
  768.     $subst =~ s/\n/\\n/g;
  769.  
  770.     my $code;
  771.     # n-th occurrence
  772.     #
  773.     if( length( $nmatch ) ){
  774.     $code = <<TheEnd;
  775. { \$n = $nmatch;
  776.   while( --\$n && ( \$s = m ${regex}g ) ){}
  777.   \$s = ( substr( \$_, pos() ) =~ s ${regex}${subst}s ) if \$s;
  778.   \$CondReg ||= \$s;
  779. TheEnd
  780.     } else {
  781.         $code = <<TheEnd;
  782. { \$s = s ${regex}${subst}s${global};
  783.   \$CondReg ||= \$s;
  784. TheEnd
  785.     }
  786.     if( $print ){
  787.         $code .= '  print $_, "\n" if $s;'."\n";
  788.     }
  789.     if( defined( $path ) ){
  790.         $wFiles{$path} = '';
  791.     $code .= " _w( '$path' ) if \$s;\n";
  792.         $GenKey{'w'} = 1;
  793.     }
  794.     $code .= "}";
  795. }
  796.  
  797. =head1 BASIC REGULAR EXPRESSIONS
  798.  
  799. A I<Basic Regular Expression> (BRE), as defined in POSIX 1003.2, consists
  800. of I<atoms>, for matching parts of a string, and I<bounds>, specifying
  801. repetitions of a preceding atom.
  802.  
  803. =head2 Atoms
  804.  
  805. The possible atoms of a BRE are: B<.>, matching any single character;
  806. B<^> and B<$>, matching the null string at the beginning or end
  807. of a string, respectively; a I<bracket expressions>, enclosed
  808. in B<[> and B<]> (see below); and any single character with no
  809. other significance (matching that character). A B<\> before one
  810. of: B<.>, B<^>, B<$>, B<[>, B<*>, B<\>, matching the character
  811. after the backslash. A sequence of atoms enclosed in B<\(> and B<\)>
  812. becomes an atom and establishes the target for a I<backreference>,
  813. consisting of the substring that actually matches the enclosed atoms.
  814. Finally, B<\> followed by one of the digits B<0> through B<9> is a
  815. backreference.
  816.  
  817. A B<^> that is not first, or a B<$> that is not last does not have
  818. a special significance and need not be preceded by a backslash to
  819. become literal. The same is true for a B<]>, that does not terminate
  820. a bracket expression.
  821.  
  822. An unescaped backslash cannot be last in a BRE.
  823.  
  824. =head2 Bounds
  825.  
  826. The BRE bounds are: B<*>, specifying 0 or more matches of the preceding
  827. atom; B<\{>I<count>B<\}>, specifying that many repetitions;
  828. B<\{>I<minimum>B<,\}>, giving a lower limit; and
  829. B<\{>I<minimum>B<,>I<maximum>B<\}> finally defines a lower and upper
  830. bound. 
  831.  
  832. A bound appearing as the first item in a BRE is taken literally.
  833.  
  834. =head2 Bracket Expressions
  835.  
  836. A I<bracket expression> is a list of characters, character ranges
  837. and character classes enclosed in B<[> and B<]> and matches any
  838. single character from the represented set of characters.
  839.  
  840. A character range is written as two characters separated by B<-> and
  841. represents all characters (according to the character collating sequence)
  842. that are not less than the first and not greater than the second.
  843. (Ranges are very collating-sequence-dependent, and portable programs
  844. should avoid relying on them.)
  845.  
  846. A character class is one of the class names
  847.  
  848.    alnum     digit     punct
  849.    alpha     graph     space
  850.    blank     lower     upper
  851.    cntrl     print     xdigit
  852.  
  853. enclosed in B<[:> and B<:]> and represents the set of characters
  854. as defined in ctype(3).
  855.  
  856. If the first character after B<[> is B<^>, the sense of matching is
  857. inverted.
  858.  
  859. To include a literal `C<^>', place it anywhere else but first. To
  860. include a literal 'C<]>' place it first or immediately after an
  861. initial B<^>. To include a literal `C<->' make it the first (or
  862. second after B<^>) or last character, or the second endpoint of
  863. a range.
  864.  
  865. The special bracket expression constructs C<[[:E<lt>:]]> and C<[[:E<gt>:]]> 
  866. match the null string at the beginning and end of a word respectively.
  867. (Note that neither is identical to Perl's `\b' atom.)
  868.  
  869. =head2 Additional Atoms
  870.  
  871. Since some sed implementations provide additional regular expression
  872. atoms (not defined in POSIX 1003.2), B<psed> is capable of translating
  873. the following backslash escapes:
  874.  
  875. =over 4
  876.  
  877. =item B<\E<lt>> This is the same as C<[[:E<gt>:]]>.
  878.  
  879. =item B<\E<gt>> This is the same as C<[[:E<lt>:]]>.
  880.  
  881. =item B<\w> This is an abbreviation for C<[[:alnum:]_]>.
  882.  
  883. =item B<\W> This is an abbreviation for C<[^[:alnum:]_]>.
  884.  
  885. =item B<\y> Match the empty string at a word boundary.
  886.  
  887. =item B<\B> Match the empty string between any two either word or non-word characters.
  888.  
  889. =back
  890.  
  891. To enable this feature, the environment variable PSEDEXTBRE must be set
  892. to a string containing the requested characters, e.g.:
  893. C<PSEDEXTBRE='E<lt>E<gt>wW'>.
  894.  
  895. =cut
  896.  
  897. #####
  898. # bre2p - convert BRE to Perl RE
  899. #
  900. sub peek(\$$){
  901.     my( $pref, $ic ) = @_;
  902.     $ic < length($$pref)-1 ? substr( $$pref, $ic+1, 1 ) : '';
  903. }
  904.  
  905. sub bre2p($$$){
  906.     my( $del, $pat, $fl ) = @_;
  907.     my $led = $del;
  908.     $led =~ tr/{([</})]>/;
  909.     $led = '' if $led eq $del;
  910.  
  911.     $pat = substr( $pat, 1, length($pat) - 2 );
  912.     my $res = '';
  913.     my $bracklev = 0;
  914.     my $backref  = 0;
  915.     my $parlev = 0;
  916.     for( my $ic = 0; $ic < length( $pat ); $ic++ ){
  917.         my $c = substr( $pat, $ic, 1 );
  918.         if( $c eq '\\' ){
  919.         ### backslash escapes
  920.             my $nc = peek($pat,$ic);
  921.             if( $nc eq '' ){
  922.                 Warn( "`\\' cannot be last in pattern", $fl );
  923.                 return undef();
  924.             }
  925.         $ic++;
  926.             if( $nc eq $del ){ ## \<pattern del> => \<pattern del>
  927.                 $res .= "\\$del";
  928.  
  929.         } elsif( $nc =~ /([[.*\\n])/ ){
  930.         ## check for \-escaped magics and \n:
  931.         ## \[ \. \* \\ \n stay as they are
  932.                 $res .= '\\'.$nc;
  933.  
  934.             } elsif( $nc eq '(' ){ ## \( => (
  935.                 $parlev++;
  936.                 $res .= '(';
  937.  
  938.             } elsif( $nc eq ')' ){ ## \) => )
  939.                 $parlev--;
  940.         $backref++;
  941.                 if( $parlev < 0 ){
  942.                     Warn( "unmatched `\\)'", $fl );
  943.                     return undef();
  944.                 }
  945.                 $res .= ')';
  946.  
  947.             } elsif( $nc eq '{' ){ ## repetition factor \{<i>[,[<j>]]\}
  948.                 my $endpos = index( $pat, '\\}', $ic );
  949.                 if( $endpos < 0 ){
  950.                     Warn( "unmatched `\\{'", $fl );
  951.                     return undef();
  952.                 }
  953.                 my $rep = substr( $pat, $ic+1, $endpos-($ic+1) );
  954.                 $ic = $endpos + 1;
  955.  
  956.               if( $res =~ /^\^?$/ ){
  957.             $res .= "\\{$rep\}";
  958.                 } elsif( $rep =~ /^(\d+)(,?)(\d*)?$/ ){
  959.                     my $min = $1;
  960.                     my $com = $2 || '';
  961.                     my $max = $3;
  962.                     if( length( $max ) ){
  963.                         if( $max < $min ){
  964.                             Warn( "maximum less than minimum in `\\{$rep\\}'",
  965.                   $fl );
  966.                             return undef();
  967.                         }
  968.                     } else {
  969.                         $max = '';
  970.                     }
  971.             # simplify some
  972.             if( $min == 0 && $max eq '1' ){
  973.             $res .= '?';
  974.             } elsif( $min == 1 && "$com$max" eq ',' ){
  975.             $res .= '+';
  976.             } elsif( $min == 0 && "$com$max" eq ',' ){
  977.             $res .= '*';
  978.             } else {
  979.             $res .= "{$min$com$max}";
  980.             }
  981.                 } else {
  982.                     Warn( "invalid repeat clause `\\{$rep\\}'", $fl );
  983.                     return undef();
  984.                 }
  985.  
  986.             } elsif( $nc =~ /^[1-9]$/ ){
  987.         ## \1 .. \9 => \1 .. \9, but check for a following digit
  988.         if( $nc > $backref ){
  989.                     Warn( "invalid backreference ($nc)", $fl );
  990.                     return undef();
  991.         }
  992.                 $res .= "\\$nc";
  993.         if( peek($pat,$ic) =~ /[0-9]/ ){
  994.             $res .= '(?:)';
  995.         }
  996.  
  997.             } elsif( $useEXTBRE && ( $nc =~ /[$useEXTBRE]/ ) ){
  998.         ## extensions - at most <>wWyB - not in POSIX
  999.                 if(      $nc eq '<' ){ ## \< => \b(?=\w), be precise
  1000.                     $res .= '\\b(?<=\\W)';
  1001.                 } elsif( $nc eq '>' ){ ## \> => \b(?=\W), be precise
  1002.                     $res .= '\\b(?=\\W)';
  1003.                 } elsif( $nc eq 'y' ){ ## \y => \b
  1004.                     $res .= '\\b';
  1005.                 } else {               ## \B, \w, \W remain the same
  1006.                     $res .= "\\$nc";
  1007.                 } 
  1008.         } elsif( $nc eq $led ){
  1009.         ## \<closing bracketing-delimiter> - keep '\'
  1010.         $res .= "\\$nc";
  1011.  
  1012.             } else { ## \ <char> => <char> ("as if `\' were not present")
  1013.                 $res .= $nc;
  1014.             }
  1015.  
  1016.         } elsif( $c eq '.' ){ ## . => .
  1017.             $res .= $c;
  1018.  
  1019.     } elsif( $c eq '*' ){ ## * => * but \* if there's nothing preceding it
  1020.         if( $res =~ /^\^?$/ ){
  1021.                 $res .= '\\*';
  1022.             } elsif( substr( $res, -1, 1 ) ne '*' ){
  1023.         $res .= $c;
  1024.         }
  1025.  
  1026.         } elsif( $c eq '[' ){
  1027.         ## parse []: [^...] [^]...] [-...]
  1028.         my $add = '[';
  1029.         if( peek($pat,$ic) eq '^' ){
  1030.         $ic++;
  1031.         $add .= '^';
  1032.         }
  1033.         my $nc = peek($pat,$ic);
  1034.           if( $nc eq ']' || $nc eq '-' ){
  1035.         $add .= $nc;
  1036.                 $ic++;
  1037.         }
  1038.         # check that [ is not trailing
  1039.         if( $ic >= length( $pat ) - 1 ){
  1040.         Warn( "unmatched `['", $fl );
  1041.         return undef();
  1042.         }
  1043.         # look for [:...:] and x-y
  1044.         my $rstr = substr( $pat, $ic+1 );
  1045.         if( $rstr =~ /^((?:\[:\(\w+|[><]\):\]|[^]-](?:-[^]])?)*)/ ){
  1046.              my $cnt = $1;
  1047.         $ic += length( $cnt );
  1048.         $cnt =~ s/([\\\$])/\\$1/g; # `\', `$' are magic in Perl []
  1049.         # try some simplifications
  1050.              my $red = $cnt;
  1051.         if( $red =~ s/0-9// ){
  1052.             $cnt = $red.'\d';
  1053.             if( $red =~ s/A-Z// && $red =~ s/a-z// && $red =~ s/_// ){
  1054.             $cnt = $red.'\w';
  1055.                     }
  1056.         }
  1057.         $add .= $cnt;
  1058.  
  1059.         # POSIX 1003.2 has this (optional) for begin/end word
  1060.         $add = '\\b(?=\\W)'  if $add eq '[[:<:]]';
  1061.         $add = '\\b(?<=\\W)' if $add eq '[[:>:]]';
  1062.  
  1063.         }
  1064.  
  1065.         ## may have a trailing `-' before `]'
  1066.         if( $ic < length($pat) - 1 &&
  1067.                 substr( $pat, $ic+1 ) =~ /^(-?])/ ){
  1068.         $ic += length( $1 );
  1069.         $add .= $1;
  1070.         # another simplification
  1071.         $add =~ s/^\[(\^?)(\\[dw])]$/ $1 eq '^' ? uc($2) : $2 /e;
  1072.         $res .= $add;
  1073.         } else {
  1074.         Warn( "unmatched `['", $fl );
  1075.         return undef();
  1076.         }
  1077.  
  1078.         } elsif( $c eq $led ){ ## unescaped <closing bracketing-delimiter>
  1079.             $res .= "\\$c";
  1080.  
  1081.         } elsif( $c eq ']' ){ ## unmatched ] is not magic
  1082.             $res .= ']';
  1083.  
  1084.         } elsif( $c =~ /[|+?{}()]/ ){ ## not magic in BRE, but in Perl: \-quote
  1085.             $res .= "\\$c";
  1086.  
  1087.         } elsif( $c eq '^' ){ ## not magic unless 1st, but in Perl: \-quote
  1088.             $res .= length( $res ) ? '\\^' : '^';
  1089.  
  1090.         } elsif( $c eq '$' ){ ## not magic unless last, but in Perl: \-quote
  1091.             $res .= $ic == length( $pat ) - 1 ? '$' : '\\$';
  1092.  
  1093.         } else {
  1094.             $res .= $c;
  1095.         }
  1096.     }
  1097.  
  1098.     if( $parlev ){
  1099.        Warn( "unmatched `\\('", $fl );
  1100.        return undef();
  1101.     }
  1102.  
  1103.     # final cleanup: eliminate raw HTs
  1104.     $res =~ s/\t/\\t/g;
  1105.     return $del . $res . ( $led ? $led : $del );
  1106. }
  1107.  
  1108.  
  1109. #####
  1110. # sub2p - convert sed substitution to Perl substitution
  1111. #
  1112. sub sub2p($$$){
  1113.     my( $del, $subst, $fl ) = @_;
  1114.     my $led = $del;
  1115.     $led =~ tr/{([</})]>/;
  1116.     $led = '' if $led eq $del;
  1117.  
  1118.     $subst = substr( $subst, 1, length($subst) - 2 );
  1119.     my $res = '';
  1120.  
  1121.     for( my $ic = 0; $ic < length( $subst ); $ic++ ){
  1122.         my $c = substr( $subst, $ic, 1 );
  1123.         if( $c eq '\\' ){
  1124.         ### backslash escapes
  1125.             my $nc = peek($subst,$ic);
  1126.             if( $nc eq '' ){
  1127.                 Warn( "`\\' cannot be last in substitution", $fl );
  1128.                 return undef();
  1129.             }
  1130.         $ic++;
  1131.         if( $nc =~ /[\\$del$led]/ ){ ## \ and delimiter
  1132.         $res .= '\\' . $nc;
  1133.             } elsif( $nc =~ /[1-9]/ ){ ## \1 - \9 => ${1} - ${9}
  1134.                 $res .= '${' . $nc . '}';
  1135.         } else { ## everything else (includes &): omit \
  1136.         $res .= $nc;
  1137.         }
  1138.         } elsif( $c eq '&' ){ ## & => $&
  1139.             $res .= '$&';
  1140.     } elsif( $c =~ /[\$\@$led]/ ){ ## magic in Perl's substitution string
  1141.         $res .= '\\' . $c;
  1142.         } else {
  1143.         $res .= $c;
  1144.     }
  1145.     }
  1146.  
  1147.     # final cleanup: eliminate raw HTs
  1148.     $res =~ s/\t/\\t/g;
  1149.     return ( $led ? $del : $led ) . $res . ( $led ? $led : $del );
  1150. }
  1151.  
  1152.  
  1153. sub Parse(){
  1154.     my $error = 0;
  1155.     my( $pdef, $pfil, $plin );
  1156.     for( my $icom = 0; $icom < @Commands; $icom++ ){
  1157.     my $cmd = $Commands[$icom];
  1158.     print "Parse:$cmd:\n" if $useDEBUG;
  1159.     $cmd =~ s/^\s+//;
  1160.     next unless length( $cmd );
  1161.     my $scom = $icom;
  1162.     if( exists( $Defined{$icom} ) ){
  1163.         $pdef = $Defined{$icom};
  1164.         if( $pdef =~ /^ #(\d+)/ ){
  1165.         $pfil = 'expression #';
  1166.         $plin = $1;
  1167.         } else {
  1168.         $pfil = "$pdef l.";
  1169.         $plin = 1;
  1170.             }
  1171.         } else {
  1172.         $plin++;
  1173.         }
  1174.         my $fl = "$pfil$plin";
  1175.  
  1176.         # insert command as comment in gnerated code
  1177.     #
  1178.     $Code .= "# $cmd\n" if $doGenerate;
  1179.  
  1180.     # The Address(es)
  1181.     #
  1182.     my( $negated, $naddr, $addr1, $addr2 );
  1183.     $naddr = 0;
  1184.     if(      $cmd =~ s/^(\d+)\s*// ){
  1185.         $addr1 = "$1"; $naddr++;
  1186.     } elsif( $cmd =~ s/^\$\s*// ){
  1187.         $addr1 = 'eofARGV()'; $naddr++;
  1188.     } elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
  1189.         my $del = $1;
  1190.         my $regex = stripRegex( $del, \$cmd );
  1191.         if( defined( $regex ) ){
  1192.         $addr1 = 'm '.bre2p( $del, $regex, $fl ).'s';
  1193.         $naddr++;
  1194.         } else {
  1195.         Warn( "malformed regex, 1st address", $fl );
  1196.         $error++;
  1197.         next;
  1198.         }
  1199.         }
  1200.         if( defined( $addr1 ) && $cmd =~ s/,\s*// ){
  1201.          if(      $cmd =~ s/^(\d+)\s*// ){
  1202.             $addr2 = "$1"; $naddr++;
  1203.         } elsif( $cmd =~ s/^\$\s*// ){
  1204.             $addr2 = 'eofARGV()'; $naddr++;
  1205.         } elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
  1206.         my $del = $1;
  1207.             my $regex = stripRegex( $del, \$cmd );
  1208.         if( defined( $regex ) ){
  1209.             $addr2 = 'm '. bre2p( $del, $regex, $fl ).'s';
  1210.             $naddr++;
  1211.         } else {
  1212.             Warn( "malformed regex, 2nd address", $fl );
  1213.             $error++;
  1214.             next;
  1215.         }
  1216.             } else {
  1217.         Warn( "invalid address after `,'", $fl );
  1218.         $error++;
  1219.         next;
  1220.             }
  1221.         }
  1222.  
  1223.         # address modifier `!'
  1224.         #
  1225.         $negated = $cmd =~ s/^!\s*//;
  1226.     if( defined( $addr1 ) ){
  1227.         print "Parse: addr1=$addr1" if $useDEBUG;
  1228.         if( defined( $addr2 ) ){
  1229.         print ", addr2=$addr2 " if $useDEBUG;
  1230.         # both numeric and addr1 > addr2 => eliminate addr2
  1231.         undef( $addr2 ) if $addr1 =~ /^\d+$/ &&
  1232.                                    $addr2 =~ /^\d+$/ && $addr1 > $addr2;
  1233.         }
  1234.     }
  1235.     print 'negated' if $useDEBUG && $negated;
  1236.     print " command:$cmd\n" if $useDEBUG;
  1237.  
  1238.     # The Command
  1239.     #
  1240.         if( $cmd !~ s/^([:#={}abcdDgGhHilnNpPqrstwxy])\s*// ){
  1241.         my $h = substr( $cmd, 0, 1 );
  1242.          Warn( "unknown command `$h'", $fl );
  1243.         $error++;
  1244.         next;
  1245.     }
  1246.         my $key = $1;
  1247.  
  1248.     my $tabref = $ComTab{$key};
  1249.     $GenKey{$key} = 1;
  1250.     if( $naddr > $tabref->[0] ){
  1251.         Warn( "excess address(es)", $fl );
  1252.         $error++;
  1253.         next;
  1254.     }
  1255.  
  1256.     my $arg = '';
  1257.     if(      $tabref->[1] eq 'str' ){
  1258.         # take remainder - don't care if it is empty
  1259.         $arg = $cmd;
  1260.             $cmd = '';
  1261.  
  1262.     } elsif( $tabref->[1] eq 'txt' ){
  1263.         # multi-line text
  1264.         my $goon = $cmd =~ /(.*)\\$/;
  1265.         if( length( $1 ) ){
  1266.         Warn( "extra characters after command ($cmd)", $fl );
  1267.         $error++;
  1268.         }
  1269.         while( $goon ){
  1270.         $icom++;
  1271.         if( $icom > $#Commands ){
  1272.             Warn( "unexpected end of script", $fl );
  1273.             $error++;
  1274.             last;
  1275.         }
  1276.         $cmd = $Commands[$icom];
  1277.         $Code .= "# $cmd\n" if $doGenerate;
  1278.         $goon = $cmd =~ s/\\$//;
  1279.         $cmd =~ s/\\(.)/$1/g;
  1280.         $arg .= "\n" if length( $arg );
  1281.         $arg .= $cmd;
  1282.         }
  1283.         $arg .= "\n" if length( $arg );
  1284.         $cmd = '';
  1285.  
  1286.     } elsif( $tabref->[1] eq 'sub' ){
  1287.         # s///
  1288.         if( ! length( $cmd ) ){
  1289.         Warn( "`s' command requires argument", $fl );
  1290.         $error++;
  1291.         next;
  1292.         }
  1293.         if( $cmd =~ s{^([^\\\n])}{} ){
  1294.         my $del = $1;
  1295.         my $regex = stripRegex( $del, \$cmd );
  1296.         if( ! defined( $regex ) ){
  1297.             Warn( "malformed regular expression", $fl );
  1298.             $error++;
  1299.             next;
  1300.         }
  1301.         $regex = bre2p( $del, $regex, $fl );
  1302.  
  1303.         # a trailing \ indicates embedded NL (in replacement string)
  1304.         while( $cmd =~ s/(?<!\\)\\$/\n/ ){
  1305.             $icom++;
  1306.             if( $icom > $#Commands ){
  1307.             Warn( "unexpected end of script", $fl );
  1308.             $error++;
  1309.             last;
  1310.             }
  1311.             $cmd .= $Commands[$icom];
  1312.                 $Code .= "# $Commands[$icom]\n" if $doGenerate;
  1313.         }
  1314.  
  1315.         my $subst = stripRegex( $del, \$cmd );
  1316.         if( ! defined( $regex ) ){
  1317.             Warn( "malformed substitution expression", $fl );
  1318.             $error++;
  1319.             next;
  1320.         }
  1321.         $subst = sub2p( $del, $subst, $fl );
  1322.  
  1323.         # parse s/// modifier: g|p|0-9|w <file>
  1324.         my( $global, $nmatch, $print, $write ) =
  1325.           ( '',      '',      0,      undef );
  1326.         while( $cmd =~ s/^([gp0-9])// ){
  1327.             $1 eq 'g' ? ( $global = 'g' ) :
  1328.               $1 eq 'p' ? ( $print  = $1  ) : ( $nmatch .= $1 );
  1329.                 }
  1330.         $write = $1 if $cmd =~ s/w\s*(.*)$//;
  1331.               ### $nmatch =~ s/^(\d)\1*$/$1/; ### may be dangerous?
  1332.         if( $global && length( $nmatch ) || length( $nmatch ) > 1 ){
  1333.             Warn( "conflicting flags `$global$nmatch'", $fl );
  1334.             $error++;
  1335.             next;
  1336.         }
  1337.  
  1338.         $arg = makes( $regex, $subst,
  1339.                   $write, $global, $print, $nmatch, $fl );
  1340.         if( ! defined( $arg ) ){
  1341.             $error++;
  1342.             next;
  1343.         }
  1344.  
  1345.             } else {
  1346.         Warn( "improper delimiter in s command", $fl );
  1347.         $error++;
  1348.         next;
  1349.             }
  1350.  
  1351.     } elsif( $tabref->[1] eq 'tra' ){
  1352.         # y///
  1353.         # a trailing \ indicates embedded newline
  1354.         while( $cmd =~ s/(?<!\\)\\$/\n/ ){
  1355.         $icom++;
  1356.         if( $icom > $#Commands ){
  1357.             Warn( "unexpected end of script", $fl );
  1358.             $error++;
  1359.             last;
  1360.         }
  1361.         $cmd .= $Commands[$icom];
  1362.                 $Code .= "# $Commands[$icom]\n" if $doGenerate;
  1363.         }
  1364.         if( ! length( $cmd ) ){
  1365.         Warn( "`y' command requires argument", $fl );
  1366.         $error++;
  1367.         next;
  1368.         }
  1369.         my $d = substr( $cmd, 0, 1 ); $cmd = substr( $cmd, 1 );
  1370.         if( $d eq '\\' ){
  1371.         Warn( "`\\' not valid as delimiter in `y' command", $fl );
  1372.         $error++;
  1373.         next;
  1374.         }
  1375.         my $fr = stripTrans( $d, \$cmd );
  1376.         if( ! defined( $fr ) || ! length( $cmd ) ){
  1377.         Warn( "malformed `y' command argument", $fl );
  1378.         $error++;
  1379.         next;
  1380.         }
  1381.         my $to = stripTrans( $d, \$cmd );
  1382.         if( ! defined( $to ) ){
  1383.         Warn( "malformed `y' command argument", $fl );
  1384.         $error++;
  1385.         next;
  1386.         }
  1387.         if( length($fr) != length($to) ){
  1388.         Warn( "string lengths in `y' command differ", $fl );
  1389.         $error++;
  1390.         next;
  1391.         }
  1392.         if( ! defined( $arg = makey( $fr, $to, $fl ) ) ){
  1393.         $error++;
  1394.         next;
  1395.         }
  1396.  
  1397.     }
  1398.  
  1399.     # $cmd must be now empty - exception is {
  1400.     if( $cmd !~ /^\s*$/ ){
  1401.         if( $key eq '{' ){
  1402.         # dirty hack to process command on '{' line
  1403.         $Commands[$icom--] = $cmd;
  1404.         } else {
  1405.         Warn( "extra characters after command ($cmd)", $fl );
  1406.         $error++;
  1407.         next;
  1408.         }
  1409.     }
  1410.  
  1411.     # Make Code
  1412.         #
  1413.     if( &{$tabref->[2]}( $addr1, $addr2, $negated,
  1414.                              $tabref->[3], $arg, $fl ) ){
  1415.         $error++;
  1416.     }
  1417.     }
  1418.  
  1419.     while( @BlockStack ){
  1420.     my $bl = pop( @BlockStack );
  1421.     Warn( "start of unterminated `{'", $bl );
  1422.         $error++;
  1423.     }
  1424.  
  1425.     for my $lab ( keys( %Label ) ){
  1426.     if( ! exists( $Label{$lab}{defined} ) ){
  1427.         for my $used ( @{$Label{$lab}{used}} ){
  1428.              Warn( "undefined label `$lab'", $used );
  1429.             $error++;
  1430.         }
  1431.     }
  1432.     }
  1433.  
  1434.     exit( 1 ) if $error;
  1435. }
  1436.  
  1437.  
  1438. ##############
  1439. #### MAIN ####
  1440. ##############
  1441.  
  1442. sub usage(){
  1443.     print STDERR "Usage: sed [-an] command [file...]\n";
  1444.     print STDERR "           [-an] [-e command] [-f script-file] [file...]\n";
  1445. }
  1446.  
  1447. ###################
  1448. # Here we go again...
  1449. #
  1450. my $expr = 0;
  1451. while( @ARGV && $ARGV[0] =~ /^-(.)(.*)$/ ){
  1452.     my $opt = $1;
  1453.     my $arg = $2;
  1454.     shift( @ARGV );
  1455.     if(      $opt eq 'e' ){
  1456.         if( length( $arg ) ){
  1457.         push( @Commands, split( "\n", $arg ) );
  1458.         } elsif( @ARGV ){
  1459.         push( @Commands, shift( @ARGV ) ); 
  1460.         } else {
  1461.             Warn( "option -e requires an argument" );
  1462.             usage();
  1463.             exit( 1 );
  1464.         }
  1465.     $expr++;
  1466.         $Defined{$#Commands} = " #$expr";
  1467.     next;
  1468.     }
  1469.     if( $opt eq 'f' ){
  1470.         my $path;
  1471.         if( length( $arg ) ){
  1472.         $path = $arg;
  1473.         } elsif( @ARGV ){
  1474.         $path = shift( @ARGV ); 
  1475.         } else {
  1476.             Warn( "option -f requires an argument" );
  1477.             usage();
  1478.             exit( 1 );
  1479.         }
  1480.     my $fst = $#Commands + 1;
  1481.         open( SCRIPT, "<$path" ) || die( "$0: $path: could not open ($!)\n" );
  1482.         my $cmd;
  1483.         while( defined( $cmd = <SCRIPT> ) ){
  1484.             chomp( $cmd );
  1485.             push( @Commands, $cmd );
  1486.         }
  1487.         close( SCRIPT );
  1488.     if( $#Commands >= $fst ){
  1489.         $Defined{$fst} = "$path";
  1490.     }
  1491.     next;
  1492.     }
  1493.     if( $opt eq '-' && $arg eq '' ){
  1494.     last;
  1495.     }
  1496.     if( $opt eq 'h' || $opt eq '?' ){
  1497.         usage();
  1498.         exit( 0 );
  1499.     }
  1500.     if( $opt eq 'n' ){
  1501.     $doAutoPrint = 0;
  1502.     } elsif( $opt eq 'a' ){
  1503.     $doOpenWrite = 0;
  1504.     } else {
  1505.         Warn( "illegal option `$opt'" );
  1506.         usage();
  1507.         exit( 1 );
  1508.     }
  1509.     if( length( $arg ) ){
  1510.     unshift( @ARGV, "-$arg" );
  1511.     }
  1512. }
  1513.  
  1514. # A singleton command may be the 1st argument when there are no options.
  1515. #
  1516. if( @Commands == 0 ){
  1517.     if( @ARGV == 0 ){
  1518.         Warn( "no script command given" );
  1519.         usage();
  1520.         exit( 1 );
  1521.     }
  1522.     push( @Commands, split( "\n", shift( @ARGV ) ) );
  1523.     $Defined{0} = ' #1';
  1524. }
  1525.  
  1526. print STDERR "Files: @ARGV\n" if $useDEBUG;
  1527.  
  1528. # generate leading code
  1529. #
  1530. $Func = <<'[TheEnd]';
  1531.  
  1532. # openARGV: open 1st input file
  1533. #
  1534. sub openARGV(){
  1535.     unshift( @ARGV, '-' ) unless @ARGV;
  1536.     my $file = shift( @ARGV );
  1537.     open( ARG, "<$file" )
  1538.     || die( "$0: can't open $file for reading ($!)\n" );
  1539.     $isEOF = 0;
  1540. }
  1541.  
  1542. # getsARGV: Read another input line into argument (default: $_).
  1543. #           Move on to next input file, and reset EOF flag $isEOF.
  1544. sub getsARGV(;\$){
  1545.     my $argref = @_ ? shift() : \$_; 
  1546.     while( $isEOF || ! defined( $$argref = <ARG> ) ){
  1547.     close( ARG );
  1548.     return 0 unless @ARGV;
  1549.     my $file = shift( @ARGV );
  1550.     open( ARG, "<$file" )
  1551.     || die( "$0: can't open $file for reading ($!)\n" );
  1552.     $isEOF = 0;
  1553.     }
  1554.     1;
  1555. }
  1556.  
  1557. # eofARGV: end-of-file test
  1558. #
  1559. sub eofARGV(){
  1560.     return @ARGV == 0 && ( $isEOF = eof( ARG ) );
  1561. }
  1562.  
  1563. # makeHandle: Generates another file handle for some file (given by its path)
  1564. #             to be written due to a w command or an s command's w flag.
  1565. sub makeHandle($){
  1566.     my( $path ) = @_;
  1567.     my $handle;
  1568.     if( ! exists( $wFiles{$path} ) || $wFiles{$path} eq '' ){
  1569.         $handle = $wFiles{$path} = gensym();
  1570.     if( $doOpenWrite ){
  1571.         if( ! open( $handle, ">$path" ) ){
  1572.         die( "$0: can't open $path for writing: ($!)\n" );
  1573.         }
  1574.     }
  1575.     } else {
  1576.         $handle = $wFiles{$path};
  1577.     }
  1578.     return $handle;
  1579. }
  1580.  
  1581. # printQ: Print queued output which is either a string or a reference
  1582. #         to a pathname.
  1583. sub printQ(){
  1584.     for my $q ( @Q ){
  1585.     if( ref( $q ) ){
  1586.             # flush open w files so that reading this file gets it all
  1587.         if( exists( $wFiles{$$q} ) && $wFiles{$$q} ne '' ){
  1588.         open( $wFiles{$$q}, ">>$$q" );
  1589.         }
  1590.             # copy file to stdout: slow, but safe
  1591.         if( open( RF, "<$$q" ) ){
  1592.         while( defined( my $line = <RF> ) ){
  1593.             print $line;
  1594.         }
  1595.         close( RF );
  1596.         }
  1597.     } else {
  1598.         print $q;
  1599.     }
  1600.     }
  1601.     undef( @Q );
  1602. }
  1603.  
  1604. [TheEnd]
  1605.  
  1606. # generate the sed loop
  1607. #
  1608. $Code .= <<'[TheEnd]';
  1609. sub openARGV();
  1610. sub getsARGV(;\$);
  1611. sub eofARGV();
  1612. sub printQ();
  1613.  
  1614. # Run: the sed loop reading input and applying the script
  1615. #
  1616. sub Run(){
  1617.     my( $h, $icnt, $s, $n );
  1618.     # hack (not unbreakable :-/) to avoid // matching an empty string
  1619.     my $z = "\000"; $z =~ /$z/;
  1620.     # Initialize.
  1621.     openARGV();
  1622.     $Hold    = '';
  1623.     $CondReg = 0;
  1624.     $doPrint = $doAutoPrint;
  1625. CYCLE:
  1626.     while( getsARGV() ){
  1627.     chomp();
  1628.     $CondReg = 0;   # cleared on t
  1629. BOS:;
  1630. [TheEnd]
  1631.  
  1632.     # parse - avoid opening files when doing s2p
  1633.     #
  1634.     ( $svOpenWrite, $doOpenWrite ) = (  $doOpenWrite, $svOpenWrite )
  1635.       if $doGenerate;
  1636.     Parse();
  1637.     ( $svOpenWrite, $doOpenWrite ) = (  $doOpenWrite, $svOpenWrite )
  1638.       if $doGenerate;
  1639.  
  1640.     # append trailing code
  1641.     #
  1642.     $Code .= <<'[TheEnd]';
  1643. EOS:    if( $doPrint ){
  1644.             print $_, "\n";
  1645.         } else {
  1646.         $doPrint = $doAutoPrint;
  1647.     }
  1648.         printQ() if @Q;
  1649.     }
  1650.  
  1651.     exit( 0 );
  1652. }
  1653. [TheEnd]
  1654.  
  1655.  
  1656. # append optional functions, prepend prototypes
  1657. #
  1658. my $Proto = "# prototypes\n";
  1659. if( $GenKey{'l'} ){
  1660.     $Proto .= "sub _l();\n";
  1661.     $Func .= <<'[TheEnd]';
  1662. # _l: l command processing
  1663. #
  1664. sub _l(){        
  1665.     my $h = $_;
  1666.     my $mcpl = 70;
  1667.     # transform non printing chars into escape notation
  1668.     $h =~ s/\\/\\\\/g;
  1669.     if( $h =~ /[^[:print:]]/ ){
  1670.     $h =~ s/\a/\\a/g;
  1671.     $h =~ s/\f/\\f/g;
  1672.     $h =~ s/\n/\\n/g;
  1673.     $h =~ s/\t/\\t/g;
  1674.     $h =~ s/\r/\\r/g;
  1675.     $h =~ s/\e/\\e/g;
  1676.         $h =~ s/([^[:print:]])/sprintf("\\%03o", ord($1))/ge;
  1677.     }
  1678.     # split into lines of length $mcpl
  1679.     while( length( $h ) > $mcpl ){
  1680.     my $l = substr( $h, 0, $mcpl-1 );
  1681.     $h = substr( $h, $mcpl );
  1682.     # remove incomplete \-escape from end of line
  1683.     if( $l =~ s/(?<!\\)(\\[0-7]{0,2})$// ){
  1684.         $h = $1 . $h;
  1685.     }
  1686.     print $l, "\\\n";
  1687.     }
  1688.     print "$h\$\n";
  1689. }
  1690.  
  1691. [TheEnd]
  1692. }
  1693.  
  1694. if( $GenKey{'r'} ){
  1695.     $Proto .= "sub _r(\$);\n";
  1696.     $Func .= <<'[TheEnd]';
  1697. # _r: r command processing: Save a reference to the pathname.
  1698. #
  1699. sub _r($){
  1700.     my $path = shift();
  1701.     push( @Q, \$path );
  1702. }
  1703.  
  1704. [TheEnd]
  1705. }
  1706.  
  1707. if( $GenKey{'t'} ){
  1708.     $Proto .= "sub _t();\n";
  1709.     $Func .= <<'[TheEnd]';
  1710. # _t: t command - condition register test/reset
  1711. #
  1712. sub _t(){
  1713.     my $res = $CondReg;
  1714.     $CondReg = 0;
  1715.     $res;
  1716. }
  1717.  
  1718. [TheEnd]
  1719. }
  1720.  
  1721. if( $GenKey{'w'} ){
  1722.     $Proto .= "sub _w(\$);\n";
  1723.     $Func .= <<'[TheEnd]';
  1724. # _w: w command and s command's w flag - write to file 
  1725. #
  1726. sub _w($){
  1727.     my $path   = shift();
  1728.     my $handle = $wFiles{$path};
  1729.     if( ! $doOpenWrite && ! defined( fileno( $handle ) ) ){
  1730.     open( $handle, ">$path" )
  1731.     || die( "$0: $path: cannot open ($!)\n" );
  1732.     }
  1733.     print $handle $_, "\n";
  1734. }
  1735.  
  1736. [TheEnd]
  1737. }
  1738.  
  1739. $Code = $Proto . $Code;
  1740.  
  1741. # magic "#n" - same as -n option
  1742. #
  1743. $doAutoPrint = 0 if substr( $Commands[0], 0, 2 ) eq '#n';
  1744.  
  1745. # eval code - check for errors
  1746. #
  1747. print "Code:\n$Code$Func" if $useDEBUG;
  1748. eval $Code . $Func;
  1749. if( $@ ){
  1750.     print "Code:\n$Code$Func";
  1751.     die( "$0: internal error - generated incorrect Perl code: $@\n" );
  1752. }
  1753.  
  1754. if( $doGenerate ){
  1755.  
  1756.     # write full Perl program
  1757.     #
  1758.  
  1759.     # bang line, declarations, prototypes
  1760.     print <<TheEnd;
  1761. #!$perlpath -w
  1762. eval 'exec $perlpath -S \$0 \${1+"\$@"}'
  1763.   if 0;
  1764. \$0 =~ s/^.*?(\\w+)\[\\.\\w+\]*\$/\$1/;
  1765.  
  1766. use strict;
  1767. use Symbol;
  1768. use vars qw{ \$isEOF \$Hold \%wFiles \@Q \$CondReg
  1769.          \$doAutoPrint \$doOpenWrite \$doPrint };
  1770. \$doAutoPrint = $doAutoPrint;
  1771. \$doOpenWrite = $doOpenWrite;
  1772. TheEnd
  1773.  
  1774.     my $wf = "'" . join( "', '",  keys( %wFiles ) ) . "'";
  1775.     if( $wf ne "''" ){
  1776.     print <<TheEnd;
  1777. sub makeHandle(\$);
  1778. for my \$p ( $wf ){
  1779.    exit( 1 ) unless makeHandle( \$p );
  1780. }
  1781. TheEnd
  1782.    }
  1783.  
  1784.    print $Code;
  1785.    print "Run();\n";
  1786.    print $Func;
  1787.    exit( 0 );
  1788.  
  1789. } else {
  1790.  
  1791.     # execute: make handles (and optionally open) all w files; run!
  1792.     for my $p ( keys( %wFiles ) ){
  1793.         exit( 1 ) unless makeHandle( $p );
  1794.     }
  1795.     Run();
  1796. }
  1797.  
  1798.  
  1799. =head1 ENVIRONMENT
  1800.  
  1801. The environment variable C<PSEDEXTBRE> may be set to extend BREs.
  1802. See L<"Additional Atoms">.
  1803.  
  1804. =head1 DIAGNOSTICS
  1805.  
  1806. =over 4
  1807.  
  1808. =item ambiguous translation for character `%s' in `y' command
  1809.  
  1810. The indicated character appears twice, with different translations.
  1811.  
  1812. =item `[' cannot be last in pattern
  1813.  
  1814. A `[' in a BRE indicates the beginning of a I<bracket expression>.
  1815.  
  1816. =item `\' cannot be last in pattern
  1817.  
  1818. A `\' in a BRE is used to make the subsequent character literal.
  1819.  
  1820. =item `\' cannot be last in substitution
  1821.  
  1822. A `\' in a subsitution string is used to make the subsequent character literal.
  1823.  
  1824. =item conflicting flags `%s'
  1825.  
  1826. In an B<s> command, either the `g' flag and an n-th occurrence flag, or
  1827. multiple n-th occurrence flags are specified. Note that only the digits
  1828. `1' through `9' are permitted.
  1829.  
  1830. =item duplicate label %s (first defined at %s)
  1831.  
  1832. =item excess address(es)
  1833.  
  1834. The command has more than the permitted number of addresses.
  1835.  
  1836. =item extra characters after command (%s)
  1837.  
  1838. =item illegal option `%s'
  1839.  
  1840. =item improper delimiter in s command
  1841.  
  1842. The BRE and substitution may not be delimited with `\' or newline.
  1843.  
  1844. =item invalid address after `,'
  1845.  
  1846. =item invalid backreference (%s)
  1847.  
  1848. The specified backreference number exceeds the number of backreferences
  1849. in the BRE.
  1850.  
  1851. =item invalid repeat clause `\{%s\}'
  1852.  
  1853. The repeat clause does not contain a valid integer value, or pair of
  1854. values.
  1855.  
  1856. =item malformed regex, 1st address
  1857.  
  1858. =item malformed regex, 2nd address
  1859.  
  1860. =item malformed regular expression
  1861.  
  1862. =item malformed substitution expression
  1863.  
  1864. =item malformed `y' command argument
  1865.  
  1866. The first or second string of a B<y> command  is syntactically incorrect.
  1867.  
  1868. =item maximum less than minimum in `\{%s\}'
  1869.  
  1870. =item no script command given
  1871.  
  1872. There must be at least one B<-e> or one B<-f> option specifying a
  1873. script or script file.
  1874.  
  1875. =item `\' not valid as delimiter in `y' command
  1876.  
  1877. =item option -e requires an argument
  1878.  
  1879. =item option -f requires an argument
  1880.  
  1881. =item `s' command requires argument
  1882.  
  1883. =item start of unterminated `{'
  1884.  
  1885. =item string lengths in `y' command differ
  1886.  
  1887. The translation table strings in a B<y> commanf must have equal lengths.
  1888.  
  1889. =item undefined label `%s'
  1890.  
  1891. =item unexpected `}'
  1892.  
  1893. A B<}> command without a preceding B<{> command was encountered.
  1894.  
  1895. =item unexpected end of script
  1896.  
  1897. The end of the script was reached although a text line after a
  1898. B<a>, B<c> or B<i> command indicated another line.
  1899.  
  1900. =item unknown command `%s'
  1901.  
  1902. =item unterminated `['
  1903.  
  1904. A BRE contains an unterminated bracket expression.
  1905.  
  1906. =item unterminated `\('
  1907.  
  1908. A BRE contains an unterminated backreference.
  1909.  
  1910. =item `\{' without closing `\}'
  1911.  
  1912. A BRE contains an unterminated bounds specification.
  1913.  
  1914. =item `\)' without preceding `\('
  1915.  
  1916. =item `y' command requires argument
  1917.  
  1918. =back
  1919.  
  1920. =head1 EXAMPLE
  1921.  
  1922. The basic material for the preceding section was generated by running
  1923. the sed script
  1924.  
  1925.    #no autoprint
  1926.    s/^.*Warn( *"\([^"]*\)".*$/\1/
  1927.    t process
  1928.    b
  1929.    :process
  1930.    s/$!/%s/g
  1931.    s/$[_[:alnum:]]\{1,\}/%s/g
  1932.    s/\\\\/\\/g
  1933.    s/^/=item /
  1934.    p
  1935.  
  1936. on the program's own text, and piping the output into C<sort -u>.
  1937.  
  1938.  
  1939. =head1 SED SCRIPT TRANSLATION
  1940.  
  1941. If this program is invoked with the name F<s2p> it will act as a
  1942. sed-to-Perl translator. After option processing (all other
  1943. arguments are ignored), a Perl program is printed on standard
  1944. output, which will process the input stream (as read from all
  1945. arguments) in the way defined by the sed script and the option setting
  1946. used for the translation.
  1947.  
  1948. =head1 SEE ALSO
  1949.  
  1950. perl(1), re_format(7)
  1951.  
  1952. =head1 BUGS
  1953.  
  1954. The B<l> command will show escape characters (ESC) as `C<\e>', but
  1955. a vertical tab (VT) in octal.
  1956.  
  1957. Trailing spaces are truncated from labels in B<:>, B<t> and B<b> commands.
  1958.  
  1959. The meaning of an empty regular expression (`C<//>'), as defined by B<sed>,
  1960. is "the last pattern used, at run time". This deviates from the Perl
  1961. interpretation, which will re-use the "last last successfully executed
  1962. regular expression". Since keeping track of pattern usage would create
  1963. terribly cluttered code, and differences would only appear in obscure
  1964. context (where other B<sed> implementations appear to deviate, too),
  1965. the Perl semantics was adopted. Note that common usage of this feature,
  1966. such as in C</abc/s//xyz/>, will work as expected.
  1967.  
  1968. Collating elements (of bracket expressions in BREs) are not implemented.
  1969.  
  1970. =head1 STANDARDS
  1971.  
  1972. This B<sed> implementation conforms to the IEEE Std1003.2-1992 ("POSIX.2")
  1973. definition of B<sed>, and is compatible with the I<OpenBSD>
  1974. implementation, except where otherwise noted (see L<"BUGS">).
  1975.  
  1976. =head1 AUTHOR
  1977.  
  1978. This Perl implementation of I<sed> was written by Wolfgang Laun,
  1979. I<Wolfgang.Laun@alcatel.at>.
  1980.  
  1981. =head1 COPYRIGHT and LICENSE
  1982.  
  1983. This program is free and open software. You may use, modify,
  1984. distribute, and sell this program (and any modified variants) in any
  1985. way you wish, provided you do not restrict others from doing the same.
  1986.  
  1987. =cut
  1988.  
  1989.