home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / prog1 / ada-tutr.lzh / DAT2TXT.ADA < prev    next >
Text File  |  1988-12-21  |  2KB  |  56 lines

  1. -- DAT2TXT.ADA   Ver. 1.20   21-DEC-1988
  2. -- Copyright 1988 John J. Herro
  3. -- Software Innovations Technology
  4. -- 1083 Mandarin Drive NE, Palm Bay, FL 32905-4706   (407)951-0233
  5. --
  6. -- Run this program on a PC before installing ADA-TUTR on another computer.
  7. -- It translates ADA-TUTR.DAT to TUTOR.TXT, a text file that can be easily
  8. -- transferred to other computers.  Then compile and run TXT2DAT.ADA on the
  9. -- other machine to create ADA-TUTR.DAT from TUTOR.TXT.
  10. --
  11. with DIRECT_IO, TEXT_IO;
  12. procedure DAT2TXT is
  13.    subtype BLOCK_SUBTYPE is STRING(1 .. 64);
  14.    package RANDOM_IO is new DIRECT_IO(BLOCK_SUBTYPE);
  15.    DATA_FILE  : RANDOM_IO.FILE_TYPE;                         -- The input file.
  16.    TEXT_FILE  : TEXT_IO.FILE_TYPE;                          -- The output file.
  17.    BLOCK      : BLOCK_SUBTYPE;             -- A block of 64 bytes being copied.
  18.    OK         : BOOLEAN := TRUE;     -- True when both files open successfully.
  19.    LEGAL_NOTE : constant STRING := " Copyright 1988 John J. Herro ";
  20.                          -- LEGAL_NOTE isn't used by the program, but it causes
  21.                          -- the compiler to place this string in the .EXE file.
  22. begin
  23.    begin
  24.       RANDOM_IO.OPEN(DATA_FILE, RANDOM_IO.IN_FILE, NAME => "ADA-TUTR.DAT");
  25.    exception
  26.       when RANDOM_IO.NAME_ERROR =>
  27.          TEXT_IO.PUT_LINE(
  28.               "I'm sorry.  The file ADA-TUTR.DAT seems to be missing.");
  29.          OK := FALSE;
  30.    end;
  31.    begin
  32.       TEXT_IO.CREATE(TEXT_FILE, NAME => "TUTOR.TXT");
  33.    exception
  34.       when others =>
  35.          TEXT_IO.PUT_LINE("I'm sorry.  I can't seem to create TUTOR.TXT.");
  36.          TEXT_IO.PUT_LINE("Perhaps that file already exists?");
  37.          OK := FALSE;
  38.    end;
  39.    if OK then
  40.       while not RANDOM_IO.END_OF_FILE(DATA_FILE) loop
  41.          RANDOM_IO.READ(DATA_FILE, ITEM => BLOCK);
  42.          for I in BLOCK'RANGE loop
  43.             if BLOCK(I) = ASCII.CR then
  44.                BLOCK(I) := '~';
  45.             elsif BLOCK(I) = ASCII.LF then
  46.                BLOCK(I) := '^';
  47.             end if;
  48.          end loop;
  49.          TEXT_IO.PUT_LINE(FILE => TEXT_FILE, ITEM => BLOCK);
  50.       end loop;
  51.       RANDOM_IO.CLOSE(DATA_FILE);
  52.       TEXT_IO.CLOSE(TEXT_FILE);
  53.       TEXT_IO.PUT_LINE("TUTOR.TXT created.");
  54.    end if;
  55. end DAT2TXT;
  56.