/usr/share/ada/adainclude/aws/aws-communication-server.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 | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2000-2009, 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 Ada.Unchecked_Conversion;
with AWS.Messages;
with AWS.Parameters;
with AWS.Server;
with AWS.Status;
with AWS.Utils;
package body AWS.Communication.Server is
Com_Server : AWS.Server.HTTP;
-- The server that will handle all communication requests
Context : T_Access;
-- The context kept for each server
type Internal_Callback is
access function (Request : Status.Data) return Response.Data;
-- This is the internal callback access type. It is not possible to use
-- Receive'Access for as the callback address as the Response.Callback is
-- outside generic package. We then use Unchecked_Conversion to convert
-- value from Internal_Callback to Callback. Note that this type
-- definition must match exactly the Response.Callback definition.
function To_Callback is
new Ada.Unchecked_Conversion (Internal_Callback, Response.Callback);
-- Conversion function from the internal callback representation to the
-- standard and user visible callback type.
function Receive (Request : Status.Data) return Response.Data;
-- Handle communication server message
-------------
-- Receive --
-------------
function Receive (Request : Status.Data) return Response.Data is
URI : constant String := Status.URI (Request);
P_Set : constant AWS.Parameters.List := Status.Parameters (Request);
procedure Fill_Parameter_Set;
-- Put all paramters into the PS structure
-- ??? there is a limit of 100 parameters, seems enough anyway
PS : Parameter_Set (1 .. 100);
I : Natural := 0;
------------------------
-- Fill_Parameter_Set --
------------------------
procedure Fill_Parameter_Set is
begin
for K in PS'Range loop
declare
P : constant String := 'P' & Utils.Image (K);
begin
if AWS.Parameters.Get (P_Set, P) /= "" then
I := I + 1;
PS (I)
:= To_Unbounded_String (AWS.Parameters.Get (P_Set, P));
end if;
end;
end loop;
end Fill_Parameter_Set;
begin
if URI = AWS_Com then
Fill_Parameter_Set;
return Callback
(AWS.Parameters.Get (P_Set, "HOST"),
AWS.Parameters.Get (P_Set, "NAME"),
Context,
PS (1 .. I));
else
return Response.Acknowledge
(Messages.S412, "AWS communication message error!");
end if;
end Receive;
--------------
-- Shutdown --
--------------
procedure Shutdown is
begin
AWS.Server.Shutdown (Com_Server);
end Shutdown;
-----------
-- Start --
-----------
procedure Start (Port : Positive; Context : T_Access) is
CB : constant Internal_Callback := Receive'Access;
begin
Server.Context := Context;
AWS.Server.Start
(Com_Server, "Communication Server",
Max_Connection => 1,
Port => Port,
Callback => To_Callback (CB));
end Start;
end AWS.Communication.Server;
|