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
|
// $Id$
#include "Shutdown.h"
#include "Consumer.h"
#include "Supplier.h"
ACE_RCSID(EC_Tests_Basic, Shutdown, "$Id$")
int
main (int argc, char *argv [])
{
EC_Shutdown driver;
return driver.run (argc, argv);
}
// ****************************************************************
EC_Shutdown::EC_Shutdown (void)
: consumer_disconnects_ (0),
supplier_disconnects_ (0)
{
}
void
EC_Shutdown::execute_test (void)
{
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "EC_Shutdown (%P|%t) destroying EC\n"));
this->destroy_ec ();
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "EC_Shutdown (%P|%t) ec destroyed\n"));
this->deactivate_ec ();
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "EC_Shutdown (%P|%t) ec deactivated\n"));
this->cleanup_ec ();
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "EC_Shutdown (%P|%t) ec cleanup\n"));
this->initialize_ec_impl ();
this->connect_consumers ();
this->connect_suppliers ();
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "EC_Shutdown (%P|%t) status reset\n"));
// this->EC_Driver::execute_test ();
}
void
EC_Shutdown::dump_results (void)
{
if (this->consumer_disconnects_ != this->n_consumers_)
ACE_ERROR ((LM_ERROR,
"Unexpected number (%d) of consumers disconnected\n",
this->consumer_disconnects_));
if (this->supplier_disconnects_ != this->n_suppliers_)
ACE_ERROR ((LM_ERROR,
"Unexpected number (%d) of suppliers disconnected\n",
this->supplier_disconnects_));
}
void
EC_Shutdown::consumer_disconnect (void* cookie
ACE_ENV_ARG_DECL_NOT_USED)
{
this->consumer_disconnects_++;
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "Consumer %x has been disconnected\n", cookie));
}
void
EC_Shutdown::supplier_disconnect (void* cookie
ACE_ENV_ARG_DECL_NOT_USED)
{
this->supplier_disconnects_++;
if (this->verbose ())
ACE_DEBUG ((LM_DEBUG, "Supplier %x has been disconnected\n", cookie));
}
|