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
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2004-2005 --
-- 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. --
-- --
------------------------------------------------------------------------------
with Input_Sources;
with Unicode;
package AWS.Client.XML.Input_Sources is
package Sources renames Standard.Input_Sources;
type HTTP_Input is new Sources.Input_Source with private;
type HTTP_Input_Access is access all HTTP_Input'Class;
-- A special implementation of a reader, that reads from an HTTP stream
procedure Create
(Connection : in HTTP_Connection;
Input : out HTTP_Input);
-- Returns the HTTP_Input stream from a client connection
procedure Next_Char
(From : in out HTTP_Input;
C : out Unicode.Unicode_Char);
-- Returns the next character in the file
function Eof (From : in HTTP_Input) return Boolean;
-- True if From is past the last character in the file
private
type HTTP_Input is new Sources.Input_Source with record
Self : HTTP_Input_Access := HTTP_Input'Unchecked_Access;
HTTP : HTTP_Connection_Access;
Buffer : Stream_Element_Array (1 .. 4_096);
First : Stream_Element_Offset;
Last : Stream_Element_Offset;
end record;
end AWS.Client.XML.Input_Sources;
|