home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-diocst.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  79 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . D I R E C T _ I O . C _ S T R E A M S               --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Interfaces.C_Streams; use Interfaces.C_Streams;
  27. with System.File_IO;
  28. with System.File_Control_Block;
  29. with System.Direct_IO;
  30. with Unchecked_Conversion;
  31.  
  32. package body Ada.Direct_IO.C_Streams is
  33.  
  34.    package FIO renames System.File_IO;
  35.    package FCB renames System.File_COntrol_Block;
  36.    package DIO renames System.Direct_IO;
  37.  
  38.    subtype AP is FCB.AFCB_Ptr;
  39.  
  40.    function To_FCB is new Unchecked_Conversion (File_Mode, FCB.File_Mode);
  41.  
  42.    --------------
  43.    -- C_Stream --
  44.    --------------
  45.  
  46.    function C_Stream (F : File_Type) return FILEs is
  47.    begin
  48.       FIO.Check_File_Open (AP (F));
  49.       return F.Stream;
  50.    end C_Stream;
  51.  
  52.    ----------
  53.    -- Open --
  54.    ----------
  55.  
  56.    procedure Open
  57.      (File     : in out File_Type;
  58.       Mode     : in File_Mode;
  59.       C_Stream : in FILEs;
  60.       Form     : in String := "")
  61.    is
  62.       File_Control_Block : DIO.Direct_AFCB;
  63.  
  64.    begin
  65.       FIO.Open (File_Ptr  => AP (File),
  66.                 Dummy_FCB => File_Control_Block,
  67.                 Mode      => To_FCB (Mode),
  68.                 Name      => "",
  69.                 Form      => Form,
  70.                 Amethod   => 'D',
  71.                 Creat     => False,
  72.                 Text      => False,
  73.                 C_Stream  => C_Stream);
  74.  
  75.       File.Bytes := Bytes;
  76.    end Open;
  77.  
  78. end Ada.Direct_IO.C_Streams;
  79.