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
|
------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2014-2015, 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.Text_IO;
package body WebSock_Control_CB is
use Ada;
use type AWS.Net.WebSocket.Kind_Type;
---------
-- Wait --
----------
protected body Wait is
entry Start when Count > 0 is
begin
null;
end Start;
entry Stop when Count = 0 and Finish_Flag is
begin
null;
end Stop;
procedure Incr is
begin
Count := Count + 1;
end Incr;
procedure Decr is
begin
Count := Count - 1;
end Decr;
procedure Finish is
begin
Finish_Flag := True;
end Finish;
end Wait;
------------
-- Create --
------------
function Create
(Socket : Net.Socket_Access;
Request : Status.Data) return Net.WebSocket.Object'Class is
begin
return Object'(Net.WebSocket.Object
(Net.WebSocket.Create (Socket, Request)) with C => 0);
end Create;
-----------
-- HW_CB --
-----------
function HW_CB (Request : Status.Data) return Response.Data is
pragma Unreferenced (Request);
begin
return Response.Build
("text/html", "<html><head></head><body>HTML Response</body></html>");
end HW_CB;
--------------
-- On_Close --
--------------
overriding procedure On_Close (Socket : in out Object; Message : String) is
begin
Text_IO.Put_Line
("On_Close : "
& Net.WebSocket.Error_Type'Image (Socket.Error) & ", " & Message);
Wait.Decr;
end On_Close;
--------------
-- On_Error --
--------------
overriding procedure On_Error (Socket : in out Object; Message : String) is
begin
Text_IO.Put_Line
("On_Error : "
& Net.WebSocket.Error_Type'Image (Socket.Error) & ", " & Message);
end On_Error;
----------------
-- On_Message --
----------------
overriding procedure On_Message
(Socket : in out Object; Message : String) is
begin
if Message = "END_TEST" then
Text_IO.Put_Line ("Received : " & Message);
Wait.Finish;
else
Text_IO.Put_Line ("Received : " & Message);
Socket.Send ("Echo " & Message);
end if;
end On_Message;
-------------
-- On_Open --
-------------
overriding procedure On_Open (Socket : in out Object; Message : String) is
begin
Text_IO.Put_Line ("On_Open : " & Message);
Socket.Send ("Server open connect");
Wait.Incr;
end On_Open;
----------
-- Send --
----------
overriding procedure Send
(Socket : in out Object; Message : String; Is_Binary : Boolean := False)
is
pragma Unreferenced (Is_Binary);
begin
-- This implementation just adds a counter after the message
Socket.C := Socket.C + 1;
Text_IO.Put_Line
("Send : " & Message & " [" & Natural'Image (Socket.C) & "]");
Net.WebSocket.Object (Socket).Send
(Message & " [" & Natural'Image (Socket.C) & "]");
end Send;
overriding procedure Send
(Socket : in out Object;
Message : Unbounded_String;
Is_Binary : Boolean := False)
is
pragma Unreferenced (Is_Binary);
begin
-- This implementation just adds a counter after the message
Socket.C := Socket.C + 1;
Text_IO.Put_Line
("Send : "
& To_String (Message) & " [" & Natural'Image (Socket.C) & "]");
Net.WebSocket.Object (Socket).Send
(Message & " [" & Natural'Image (Socket.C) & "]");
end Send;
end WebSock_Control_CB;
|