/usr/share/ada/adainclude/anet/anet-receivers-stream.ads is in libanet0.3.1-dev 0.3.1-1.
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 | --
-- Copyright (C) 2012 secunet Security Networks AG
-- Copyright (C) 2012 Reto Buerki <reet@codelabs.ch>
-- Copyright (C) 2012 Adrian-Ken Rueegsegger <ken@codelabs.ch>
--
-- This program 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. See <http://www.fsf.org/copyleft/gpl.txt>.
--
-- This program 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.
--
-- As a special exception, if other files instantiate generics from this
-- unit, or you link this unit with other files to produce an
-- executable this unit does not by itself cause the resulting
-- executable to be covered by the GNU General Public License. This
-- exception does not however invalidate any other reasons why the
-- executable file might be covered by the GNU Public License.
--
with Anet.Sockets;
generic
Buffer_Size : Ada.Streams.Stream_Element_Offset := 2048;
-- Size of receive/send buffers.
type Socket_Type is limited new Sockets.Stream_Socket_Type with private;
-- Associated stream socket.
package Anet.Receivers.Stream is
Buffsize : constant Ada.Streams.Stream_Element_Offset;
-- Buffer size used.
type Rcv_Send_Callback is not null access procedure
(Recv_Data : Ada.Streams.Stream_Element_Array;
Send_Data : out Ada.Streams.Stream_Element_Array;
Send_Last : out Ada.Streams.Stream_Element_Offset);
-- Receive/send callback. Recv_Data is the received data, the Send_Data out
-- parameter designates the response to the sender.
type Receiver_Type (S : not null access Socket_Type)
is tagged limited private;
-- Listens for incoming data on the given stream socket and processes it
-- by calling the registered receive/send callback.
function Get_Rcv_Msg_Count (Receiver : Receiver_Type) return Count_Type;
-- Returns the number of received messages.
procedure Listen
(Receiver : in out Receiver_Type;
Callback : Rcv_Send_Callback);
-- Start listening for data on given socket. The given callback is
-- asynchronously executed upon data reception. Call stop procedure to
-- properly shutdown the receiver.
procedure Register_Error_Handler
(Receiver : in out Receiver_Type;
Callback : Error_Handler_Callback);
-- Register given callback for error handling. The error handler will be
-- invoked if an exception occurs processing incoming data.
-- The error handler must be registered before telling the receiver to
-- listen for data.
procedure Stop (Receiver : in out Receiver_Type);
-- Stop listening for data.
function Is_Listening (Receiver : Receiver_Type) return Boolean;
-- Returns True if the receiver is currently listening for data.
private
Buffsize : constant Ada.Streams.Stream_Element_Offset := Buffer_Size;
task type Receiver_Task (Parent : not null access Receiver_Type) is
entry Listen (Cb : Rcv_Send_Callback);
-- Start listening for data on parent's socket. The callback procedure
-- is called upon reception of new data.
entry Set_Error_Handler (Cb : Error_Handler_Callback);
-- Register given callback for error handling. The error handler will be
-- invoked if an exception occurs processing incoming data.
-- The task will cease to listen for data if the callback signals it to
-- terminate by setting the Stop flag to True.
end Receiver_Task;
type Receiver_Type
(S : not null access Socket_Type)
is tagged limited record
Rcv_Count : Protected_Count_Type;
Trigger : Trigger_Type;
S_Comm : Socket_Type;
R_Task : Receiver_Task (Parent => Receiver_Type'Access);
end record;
end Anet.Receivers.Stream;
|