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 / s-direio.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  119 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                     S Y S T E M . D I R E C T _ I O                      --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. --  This package contains the declaration of the control block used for
  27. --  Direct_IO. This must be declared at the outer library level. It also
  28. --  contains code that is shared between instances of Direct_IO.
  29.  
  30. with Interfaces.C_Streams;
  31. with System.File_Control_Block;
  32.  
  33. package System.Direct_IO is
  34.  
  35.    package FCB renames System.File_Control_Block;
  36.  
  37.    type Operation is (Op_Read, Op_Write, Op_Other);
  38.    --  Type used to record last operation (to optimize sequential operations)
  39.  
  40.    subtype Count is Interfaces.C_Streams.long;
  41.    --  The Count type in each instantiation is derived from this type
  42.  
  43.    subtype Positive_Count is Count range 1 .. Count'Last;
  44.  
  45.    type Direct_AFCB is new FCB.AFCB with record
  46.       Index : Count := 1;
  47.       --  Current Index value
  48.  
  49.       Bytes : Interfaces.C_Streams.size_t;
  50.       --  Length of item in bytes (set from inside generic template)
  51.  
  52.       Last_Op : Operation := Op_Other;
  53.       --  Last operation performed on file, used to avoid unnecessary
  54.       --  repositioning between successive read or write operations.
  55.    end record;
  56.  
  57.    function AFCB_Allocate (Control_Block : Direct_AFCB) return FCB.AFCB_Ptr;
  58.  
  59.    procedure AFCB_Close (File : access Direct_AFCB);
  60.    procedure AFCB_Free  (File : access Direct_AFCB);
  61.  
  62.    procedure Read
  63.      (File : in out Direct_AFCB;
  64.       Item : out Ada.Streams.Stream_Element_Array;
  65.       Last : out Ada.Streams.Stream_Element_Offset);
  66.    --  Required overriding of Read, not actually used for Direct_IO
  67.  
  68.    procedure Write
  69.      (File : in out Direct_AFCB;
  70.       Item : in Ada.Streams.Stream_Element_Array);
  71.    --  Required overriding of Write, not actually used for Direct_IO
  72.  
  73.    type File_Type is access all Direct_AFCB;
  74.    --  File_Type in individual instantiations is derived from this type
  75.  
  76.    procedure Create
  77.      (File : in out File_Type;
  78.       Mode : in FCB.File_Mode := FCB.Inout_File;
  79.       Name : in String := "";
  80.       Form : in String := "");
  81.  
  82.    function End_Of_File (File : in File_Type) return Boolean;
  83.  
  84.    function Index (File : in File_Type) return Positive_Count;
  85.  
  86.    procedure Open
  87.      (File : in out File_Type;
  88.       Mode : in FCB.File_Mode;
  89.       Name : in String;
  90.       Form : in String := "");
  91.  
  92.    procedure Read
  93.      (File : in File_Type;
  94.       Item : System.Address;
  95.       From : in Positive_Count);
  96.  
  97.    procedure Read
  98.      (File : in File_Type;
  99.       Item : System.Address);
  100.  
  101.    procedure Reset (File : in out File_Type; Mode : in FCB.File_Mode);
  102.  
  103.    procedure Reset (File : in out File_Type);
  104.  
  105.    procedure Set_Index (File : in File_Type; To : in Positive_Count);
  106.  
  107.    function Size (File : in File_Type) return Count;
  108.  
  109.    procedure Write
  110.      (File : in File_Type;
  111.       Item : System.Address;
  112.       To   : in Positive_Count);
  113.  
  114.    procedure Write
  115.      (File : in File_Type;
  116.       Item : System.Address);
  117.  
  118. end System.Direct_IO;
  119.