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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2000-2014, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 3, or (at your option) any --
-- later version. This software 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 --
-- distributed with this software; see file COPYING3. If not, go --
-- to http://www.gnu.org/licenses for a complete copy of the license. --
------------------------------------------------------------------------------
with Ada.Exceptions;
with Ada.Integer_Text_IO;
with Ada.Text_IO;
with GNAT.Calendar.Time_IO;
with AWS.Config;
with AWS.Messages;
with AWS.MIME;
with AWS.Net;
with AWS.Parameters;
with AWS.Services.Directory;
with AWS.Translator;
with AWS.Utils;
package body WS_CB is
use Ada;
use AWS;
WWW_Root : String renames AWS.Config.WWW_Root (Server.Config (WS));
task Server_Push_Task;
-- The push data are generated here
---------
-- Get --
---------
function Get (Request : AWS.Status.Data) return AWS.Response.Data is
URI : constant String := AWS.Status.URI (Request);
Filename : constant String := WWW_Root & URI (2 .. URI'Last);
begin
if URI = "/ref" then
return AWS.Response.Moved
(Location => "http://localhost:1234/demos/page1.html");
elsif URI = "/server_push" then
declare
P_List : constant AWS.Parameters.List
:= AWS.Status.Parameters (Request);
Picture : Unbounded_String
:= To_Unbounded_String (AWS.Parameters.Get_Value (P_List));
Client_Id : String (1 .. 32);
begin
New_Client_Id.Get (Client_Id);
if Picture = Null_Unbounded_String then
Picture := To_Unbounded_String ("%D - %T");
end if;
Time_Push.Register
(Server => SP,
Client_Id => Client_Id,
Socket =>
AWS.Net.Socket_Access'(AWS.Status.Socket (Request)),
Environment => (Clock, Picture),
Init_Content_Type => "text/plain",
Init_Data => Ada.Calendar.Clock,
Kind => Time_Push.Multipart);
end;
return AWS.Response.Socket_Taken;
elsif Utils.Is_Regular_File (Filename) then
return AWS.Response.File
(Content_Type => AWS.MIME.Content_Type (Filename),
Filename => Filename);
elsif Utils.Is_Directory (Filename) then
return AWS.Response.Build
(Content_Type => "text/html",
Message_Body =>
AWS.Services.Directory.Browse
(Filename, "aws_directory.thtml", Request));
else
return AWS.Response.Acknowledge
(Messages.S404,
"<p>Page '" & URI & "' Not found.");
end if;
end Get;
---------
-- Put --
---------
function Put (Request : AWS.Status.Data) return AWS.Response.Data is
pragma Unreferenced (Request);
begin
return AWS.Response.Acknowledge (Status_Code => AWS.Messages.S200);
end Put;
-------------
-- Service --
-------------
function Service (Request : AWS.Status.Data) return AWS.Response.Data is
use type AWS.Status.Request_Method;
begin
if AWS.Status.Method (Request) = AWS.Status.GET
or else AWS.Status.Method (Request) = AWS.Status.POST
or else AWS.Status.Method (Request) = AWS.Status.HEAD
then
return Get (Request);
elsif AWS.Status.Method (Request) = AWS.Status.PUT then
return Put (Request);
else
return AWS.Response.Acknowledge (Status_Code => Messages.S405);
end if;
exception
when E : others =>
return AWS.Response.Build
(Content_Type => "text/plain",
Status_Code => AWS.Messages.S500,
Message_Body => Ada.Exceptions.Exception_Information (E));
end Service;
----------------------
-- Stop_Push_Server --
----------------------
procedure Stop_Push_Server is
begin
abort Server_Push_Task;
end Stop_Push_Server;
--------------
-- To_Array --
--------------
function To_Array
(Time : Ada.Calendar.Time;
Env : Client_Env) return Ada.Streams.Stream_Element_Array
is
use GNAT.Calendar.Time_IO;
begin
return Translator.To_Stream_Element_Array
(Image (Time, Picture_String (To_String (Env.Picture)))
& ASCII.CR & ASCII.LF
& Duration'Image (Time - Env.Start));
end To_Array;
----------------------
-- Server_Push_Task --
----------------------
task body Server_Push_Task is
Tm : Calendar.Time;
begin
loop
begin
delay 1.0;
Tm := Ada.Calendar.Clock;
Text_IO.Put_Line
("Send time "
& GNAT.Calendar.Time_IO.Image (Tm, "%D - %T"));
Time_Push.Send (SP, Tm, Content_Type => "text/plain");
exception
when E : others =>
Text_IO.Put_Line ("Server_Push_Task error");
Text_IO.Put_Line (Ada.Exceptions.Exception_Information (E));
end;
end loop;
end Server_Push_Task;
-------------------
-- New_Client_ID --
-------------------
protected body New_Client_Id is
procedure Get (New_Id : out String) is
begin
Id := Id + 1;
Integer_Text_IO.Put (New_Id, Id);
end Get;
end New_Client_Id;
end WS_CB;
|