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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
//=============================================================================
/**
* @file TkReactor_Test.cpp
*
* $Id: TkReactor_Test.cpp 93638 2011-03-24 13:16:05Z johnnyw $
*
* This is a simple test that illustrates the possibility to integrate
* ACE to the Tk Main Loop. This program uses ACE_TkReactor class to
* schedule three additional event sources:
* 1. Events from button "Stop Test" (registed with Tk_CreateEventHandler)
* 2. Events from button "Press Me" (registed with Tk_CreateEventHandler)
* 3. Events from X timer (registed with Tk_CreateTimerHandler)
* 4. Events from ACE timer (registed with ACE_TkReactor::schedule_timer)
* 5. Events from the TCP/IP channel using ACE_Acceptor
* No command line arguments are needed to run the test.
*
*
* @author Nagarajan Surendran <naga@cs.wustl.edu>
*/
//=============================================================================
#include "test_config.h"
#include "ace/Event_Handler.h"
#include "ace/Acceptor.h"
#include "ace/SOCK_Acceptor.h"
#include "ace/SOCK_Connector.h"
#include "ace/Service_Config.h"
#include "ace/Thread_Manager.h"
#include "ace/TkReactor/TkReactor.h"
#include "ace/OS_NS_unistd.h"
#include <tcl.h>
#include <tk.h>
Tcl_Interp* tcl_interp;
void eval (const char *s)
{
char buf[BUFSIZ];
ACE_OS::strcpy (buf,s);
int st = Tcl_GlobalEval(tcl_interp,buf);
if (st != TCL_OK)
{
int n = ACE_OS::strlen(s);
char* wrk = new char[n + 80];
ACE_OS::sprintf(wrk, "tkerror \"%s\"", s);
Tcl_GlobalEval(tcl_interp, wrk);
delete wrk;
//exit(1);
}
}
// Port we listen on.
static const u_short SERV_TCP_PORT = 6670;
// counter for events from "Press Me" button.
static int count1 = 0;
// counter for events from Tk Timer.
static int count2 = 0;
// counter for events from ACE Timer.
static int count3 = 0;
static int quit = 0;
// Callback for "Stop Test" buton - quit the program.
void
Quit (ClientData, XEvent *)
{
ACE_DEBUG ((LM_DEBUG,"Quit called\n"));
quit = 1;
}
static void *
client (void *)
{
char buf[100];
size_t mes_len;
ACE_OS::sleep (1);
ACE_DEBUG ((LM_DEBUG,
" (%P) Client: Starting...\n"));
ACE_SOCK_Stream stream;
ACE_SOCK_Connector connector;
ACE_OS::sprintf (buf, "Client: the life was good!");
mes_len = (int) htonl (ACE_OS::strlen (buf) + 1);
if (connector.connect (stream,
ACE_INET_Addr (SERV_TCP_PORT,
ACE_DEFAULT_SERVER_HOST)) == -1)
ACE_ERROR ((LM_ERROR,
"(%P) %p\n",
"Socket open"));
if (stream.send (4,
(void *) &mes_len,
sizeof (size_t),
(void *)buf,
ACE_OS::strlen (buf) + 1) == -1)
ACE_ERROR ((LM_ERROR,
"(%P) %p\n",
"Socket send"));
if (stream.close () == -1)
ACE_ERROR ((LM_ERROR,
"(%P) %p\n",
"Socket close"));
ACE_DEBUG ((LM_DEBUG,
"(%P) Client: Message has been sent, about to exit...\n"));
return 0;
}
// Callback for "Press Me" button.
static int
#if TK_MAJOR_VERSION == 8 && TK_MINOR_VERSION > 3
inc_count (ClientData client_data, Tcl_Interp *interp,int, const char **)
#else
inc_count (ClientData client_data, Tcl_Interp *interp,int, char **)
#endif
{
ACE_DEBUG ((LM_DEBUG,"inc_count "));
char new_string[80];
ACE_OS::sprintf (new_string,
"Events: [%d] [%d] [%d]",
count1++,
count2,
count3);
// sprintf (command,"set %s %s",(char *)client_data,new_string);
// eval (command);
const char *varValue = Tcl_SetVar (interp,(char *)client_data,new_string,TCL_LEAVE_ERR_MSG);
if (varValue == 0)
return TCL_ERROR;
return TCL_OK;
}
// Callback for X Timer.
static void
inc_tmo (ClientData client_data)
{
char new_string[80];
if (count2 > 10)
ACE_OS::exit (0);
ACE_OS::sprintf (new_string,
"Events: [%d] [%d] [%d]",
count1,
count2++,
count3);
// sprintf (command,"set %s %s",(char *)client_data,new_string);
// eval (command);
const char *varValue = Tcl_SetVar (tcl_interp,(char *)client_data,new_string,TCL_LEAVE_ERR_MSG);
if (varValue == 0)
ACE_ERROR ((LM_ERROR,"Tcl_SetVar failed in inc_tmo\n"));
(void) Tk_CreateTimerHandler (1000,
inc_tmo,
client_data);
}
class EV_handler : public ACE_Event_Handler
{
public:
virtual int handle_timeout (const ACE_Time_Value &,
const void *arg)
{
char new_string[80];
ACE_OS::sprintf (new_string,
"Events: [%d] [%d] [%d]",
count1,
count2,
count3++);
// sprintf (command,"set %s %s",(char *)arg,new_string);
// eval (command);
const char *varValue = Tcl_SetVar (tcl_interp,(char *)arg,new_string,TCL_LEAVE_ERR_MSG);
if (varValue == 0)
ACE_ERROR_RETURN ((LM_ERROR,"Tcl_SetVar failed in handle_timeout\n"),-1);
return 0;
}
};
class Connection_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
{
public:
//FUZZ: disable check_for_lack_ACE_OS
virtual int open (void *)
{
//FUZZ: enable check_for_lack_ACE_OS
char buf[100];
int head;
ssize_t ret = this->peer ().recv_n ((char *) &head,
sizeof (int));
if (ret != sizeof (int))
ACE_ERROR_RETURN ((LM_ERROR,
"(%P) %p\n",
"read header"),
-1);
ret = this->peer ().recv_n (buf,
(int) ntohl (head));
if (ret != (int) ntohl (head))
ACE_ERROR_RETURN ((LM_ERROR,
"(%P) %p\n",
"read message"),
-1);
ACE_DEBUG ((LM_DEBUG,
" (%P)Server (ACE_SOCKET channel message): [%s]\n",
buf));
return 0;
}
};
int
init (Tcl_Interp *interp)
{
if (Tcl_Init (interp) == TCL_ERROR)
return TCL_ERROR;
if (Tk_Init (interp) == TCL_ERROR)
return TCL_ERROR;
return TCL_OK;
}
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("TkReactor_Test"));
tcl_interp = Tcl_CreateInterp ();
if (init (tcl_interp) != TCL_OK) {
ACE_OS::exit (1);
}
Tk_Window tk = 0;
tk = Tk_MainWindow(tcl_interp);
if (tk == 0)
{
ACE_ERROR_RETURN ((LM_ERROR, "Tk_Reactor_Test: %s\n", tcl_interp->result),1);
}
char tcl_cmd[] = "source TkReactor_Test.tcl";
if (Tcl_Eval (tcl_interp, tcl_cmd) != TCL_OK) {
ACE_OS::exit (1);
}
// set up callback
char label_var_name[] = "label_var";
char pressme[] = "pressme";
Tcl_CreateCommand (tcl_interp,
pressme,
inc_count,
label_var_name,
0);
// Register callback for X Timer
(void) Tk_CreateTimerHandler (1000,
inc_tmo,
label_var_name);
// It will perform Tk Main Loop
ACE_TkReactor reactor;
ACE_Reactor r (&reactor);
//Event Handler for ACE Timer.
EV_handler evh;
ACE_Acceptor <Connection_Handler, ACE_SOCK_ACCEPTOR> acceptor;
if (acceptor.open (ACE_INET_Addr ((u_short) SERV_TCP_PORT),
&r) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
"%p\n",
"open"),
-1);
if (reactor.schedule_timer (&evh,
(const void *) "label_var",
ACE_Time_Value (2),
ACE_Time_Value (2))==-1)
ACE_ERROR_RETURN ((LM_ERROR,
" (%P|%t) can't register with reactor\n"),
-1);
ACE_Thread_Manager::instance ()->spawn ((ACE_THR_FUNC) client,
0,
THR_NEW_LWP | THR_DETACHED);
while (!quit)
{
int result = reactor.handle_events ();
switch (result)
{
case 0:
// ACE_DEBUG ((LM_DEBUG,"handle_events timed out\n"));
break;
case -1:
ACE_DEBUG ((LM_DEBUG,"handle_events returned -1\n"));
quit = 1;
break;
}
}
ACE_END_TEST;
return 0;
}
|