home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l048 / 1.ddi / LISTER.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1985-03-18  |  5.3 KB  |  211 lines

  1. program SourceLister;
  2.  
  3. {
  4.           SOURCE LISTER DEMONSTRATION PROGRAM  Version 1.00A
  5.  
  6.    This is a simple program to list your TURBO PASCAL source programs.
  7.  
  8.  
  9.    PSEUDO CODE
  10.    1.  Find Pascal source file to be listed
  11.    2.  Initialize program variables
  12.    3.  Open main source file
  13.    4.  Process the file
  14.        a.  Read a character into line buffer until linebuffer full or eoln;
  15.        b.  Search line buffer for include file.
  16.        c.  If line contains include file command:
  17.              Then process include file and extract command from line buffer
  18.              Else print out the line buffer.
  19.        d.  Repeat step 4.a thru 4.c until eof(main file);
  20.  
  21.    INSTRUCTIONS
  22.    1.  Compile and run the program using the TURBO.COM compiler.
  23.    2.  Two ways to print a file
  24.        a.  Run from TURBO in memory:
  25.            1.  Type "R" and enter a file name to print when prompted.
  26.            2.  Specify a run-time parameter from the compiler options
  27.                menu.
  28.        b.  Run the program from DOS
  29.            1.  Type LISTER and enter a file name to print when prompted.
  30.            2.  Specify a commandline parameter: A> LISTER filename
  31.  
  32. }
  33.  
  34. Const
  35.       PageWidth = 80;
  36.       PrintLength = 55;
  37.       PathLength  = 65;
  38.       FormFeed = #12;
  39.       VerticalTabLength = 3;
  40.  
  41. Type
  42.       WorkString = String[126];
  43.       FileName  = String[PathLength];
  44.  
  45. Var
  46.       CurRow : integer;
  47.       MainFileName: FileName;
  48.       MainFile: text;
  49.       search1,
  50.       search2,
  51.       search3,
  52.       search4: string[5];
  53.  
  54.   Procedure Initialize;
  55.   begin
  56.     CurRow := 0;
  57.     clrscr;
  58.     search1 := '{$'+'I';  { So LISTER can list itself! }
  59.     search2 := '{$'+'i';
  60.     search3 := '(*$'+'I';
  61.     search4 := '(*$'+'i';
  62.   end {initialize};
  63.  
  64.   Function Open(var fp:text; name: Filename): boolean;
  65.   begin
  66.     Assign(fp,Name);
  67.     {$I-}
  68.     reset(fp);
  69.     {$I+}
  70.     If IOresult <> 0 then
  71.      begin
  72.       Open := False;
  73.       close(fp);
  74.      end
  75.     else
  76.       Open := True;
  77.   end { Open };
  78.  
  79.   Procedure OpenMain;
  80.   begin
  81.     If ParamCount = 0 then
  82.     begin
  83.       Write('Enter filename: ');
  84.       readln(MainFileName);
  85.     end
  86.     else
  87.     begin
  88.       MainFileName := ParamStr(1);
  89.     end;
  90.     If Not Open(MainFile,MainFileName) Then
  91.     begin
  92.       Writeln('ERROR -- File not found:  ',MainFileName);
  93.       Halt;
  94.     end;
  95.   end {Open Main};
  96.  
  97.   Procedure VerticalTab;
  98.   var i: integer;
  99.   begin
  100.     for i := 1 to VerticalTabLength do writeln(lst);
  101.   end {vertical tab};
  102.  
  103.   Procedure ProcessLine(PrintStr: WorkString);
  104.   begin
  105.     CurRow := Succ(CurRow);
  106.     if length(PrintStr) > PageWidth then CurRow := Succ(CurRow);
  107.     if CurRow > PrintLength Then
  108.     begin
  109.       Write(lst,FormFeed);
  110.       VerticalTab;
  111.       CurRow := 1;
  112.     end;
  113.     Writeln(lst,PrintStr);
  114.   end {Process line};
  115.  
  116.   Procedure ProcessFile;
  117.  
  118.   var
  119.     LineBuffer: WorkString;
  120.  
  121.      Function IncludeIn(VAR CurStr: WorkString): Boolean;
  122.      Var ChkChar: char;
  123.          column: integer;
  124.      begin
  125.        ChkChar := '-';
  126.        column := pos(search1,CurStr);
  127.        if column <> 0 then
  128.          chkchar := CurStr[column+3]
  129.        else
  130.        begin
  131.          column := Pos(search3,CurStr);
  132.          if column <> 0 then
  133.            chkchar := CurStr[column+4]
  134.          else
  135.          begin
  136.            column := Pos(search2,CurStr);
  137.            if column <> 0 then
  138.              chkchar := CurStr[column+3]
  139.            else
  140.            begin
  141.              column := Pos(search4,CurStr);
  142.              if column <> 0 then
  143.                chkchar := CurStr[column+4]
  144.            end;
  145.          end;
  146.        end;
  147.        if ChkChar in ['+','-'] then IncludeIn := False
  148.        Else IncludeIn := True;
  149.      end { IncludeIn };
  150.  
  151.  
  152.      Procedure ProcessIncludeFile(VAR IncStr: WorkString);
  153.  
  154.      var NameStart, NameEnd: integer;
  155.          IncludeFile: text;
  156.          IncludeFileName: Filename;
  157.  
  158.        Function Parse(IncStr: WorkString): WorkString;
  159.        begin
  160.          NameStart := pos('$I',IncStr)+2;
  161.          while IncStr[NameStart] = ' ' do
  162.            NameStart := Succ(NameStart);
  163.          NameEnd := NameStart;
  164.          while (not (IncStr[NameEnd] in [' ','}','*']))
  165.               AND ((NameEnd - NameStart) <= PathLength)
  166.               do NameEnd := Succ(NameEnd);
  167.          NameEnd := Pred(NameEnd);
  168.          Parse := copy(IncStr,NameStart,(NameEnd-NameStart+1));
  169.        end {Parse};
  170.  
  171.      begin  {Process include file}
  172.        IncludeFileName := Parse(IncStr);
  173.  
  174.        If not Open(IncludeFile,IncludeFileName) then
  175.        begin
  176.          LineBuffer := 'ERROR -- Include file not found:  ' + IncludeFileName;
  177.          ProcessLine(LineBuffer);
  178.        end
  179.        Else
  180.        begin
  181.          while not eof(IncludeFile) do
  182.          begin
  183.            Readln(IncludeFile,LineBuffer);
  184.            ProcessLine(LineBuffer);
  185.          end;
  186.          close(IncludeFile);
  187.        end;
  188.      end {Process include file};
  189.  
  190.   begin  {Process File}
  191.     VerticalTab;
  192.     Writeln('Printing . . . ');
  193.     while not eof(mainfile) do
  194.     begin
  195.       Readln(MainFile,LineBuffer);
  196.       if IncludeIn(LineBuffer) then
  197.          ProcessIncludeFile(LineBuffer)
  198.       else
  199.          ProcessLine(LineBuffer);
  200.     end;
  201.     close(MainFile);
  202.     write(lst,FormFeed);
  203.   end {Process File};
  204.  
  205.  
  206. BEGIN
  207.   Initialize;
  208.   OpenMain;
  209.   ProcessFile;
  210. END.
  211.