/usr/share/ada/adainclude/aws/aws-resources-streams-disk.adb is in libaws2.10.2-dev 2.10.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2000-2011, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under the terms of the GNU General Public License as published by --
-- the Free Software Foundation; either version 2 of the License, or (at --
-- your option) any later version. --
-- --
-- This library is distributed in the hope that it will be useful, but --
-- WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public License --
-- along with this library; if not, write to the Free Software Foundation, --
-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
------------------------------------------------------------------------------
package body AWS.Resources.Streams.Disk is
-----------
-- Close --
-----------
overriding procedure Close (Resource : in out Stream_Type) is
begin
if Stream_IO.Is_Open (Resource.File) then
Stream_IO.Close (Resource.File);
end if;
end Close;
-----------------
-- End_Of_File --
-----------------
overriding function End_Of_File
(Resource : Stream_Type) return Boolean is
begin
return Resource.Current > Resource.Last
and then Stream_IO.End_Of_File (Resource.File);
end End_Of_File;
----------
-- Name --
----------
overriding function Name (Resource : Stream_Type) return String is
begin
return To_String (Resource.Name);
end Name;
----------
-- Open --
----------
procedure Open
(File : out Stream_Type;
Name : String;
Form : String := "shared=no") is
begin
File.Name := To_Unbounded_String (Name);
Stream_IO.Open
(File.File,
Stream_IO.In_File, Name, Form);
File.Stream := Stream_IO.Stream (File.File);
exception
when Stream_IO.Name_Error =>
null;
end Open;
----------
-- Read --
----------
overriding procedure Read
(Resource : in out Stream_Type;
Buffer : out Stream_Element_Array;
Last : out Stream_Element_Offset)
is
Buf_Len : constant Stream_Element_Offset :=
Resource.Last - Resource.Current + 1;
begin
if Buffer'Length <= Natural (Buf_Len) then
-- Enough chars in the buffer, return them
Buffer := Resource.Buffer
(Resource.Current .. Resource.Current + Buffer'Length - 1);
Resource.Current := Resource.Current + Buffer'Length;
Last := Buffer'Last;
else
-- Return the current buffer
Buffer (Buffer'First .. Buffer'First + Buf_Len - 1) :=
Resource.Buffer (Resource.Current .. Resource.Last);
-- And read the remaining data directly on the file
Read (Resource.Stream.all,
Buffer (Buffer'First + Buf_Len .. Buffer'Last),
Last);
Resource.Current := Resource.Buffer'First;
if Last < Buffer'Last then
-- There is no more data, set the Resource object
Resource.Last := 0;
else
-- Fill Resource buffer
Read (Resource.Stream.all, Resource.Buffer, Resource.Last);
end if;
end if;
end Read;
-----------
-- Reset --
-----------
overriding procedure Reset (Resource : in out Stream_Type) is
begin
Stream_IO.Reset (Resource.File);
end Reset;
---------------
-- Set_Index --
---------------
overriding procedure Set_Index
(Resource : in out Stream_Type;
To : Stream_Element_Offset)
is
use type Stream_IO.Count;
Size : constant Stream_Element_Offset :=
Stream_Element_Offset (Stream_IO.Size (Resource.File));
Pos : Stream_Element_Offset := To;
begin
if To < 1 or else To > Size then
Pos := Size + 1;
end if;
Stream_IO.Set_Index (Resource.File, Stream_IO.Count (Pos));
end Set_Index;
----------
-- Size --
----------
overriding function Size
(Resource : Stream_Type) return Stream_Element_Offset is
begin
return Stream_Element_Offset (Stream_IO.Size (Resource.File));
end Size;
end AWS.Resources.Streams.Disk;
|