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
|
#include "ace/streams.h"
#include "ace/OS_NS_unistd.h"
#include "ace/Get_Opt.h"
#include "tao/Strategies/advanced_resource.h"
#include "tao/Monitor/Monitor.h"
const ACE_TCHAR *monitor_ior = ACE_TEXT ("file://monitor.ior");
::Monitor::NameList* monitor_point = 0;
bool mp_clear = false;
int n_iterations = 1;
ACE_Time_Value sleep_time = ACE_Time_Value (1);
const ACE_TCHAR * filter = ACE_TEXT ("");
int
parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:p:ci:s:f:"));
int c;
while ((c = get_opts ()) != -1)
switch (c)
{
case 'f':
filter = get_opts.opt_arg ();
break;
case 'k':
monitor_ior = get_opts.opt_arg ();
break;
case 'p':
{
if (monitor_point == 0)
{
ACE_NEW_THROW_EX (monitor_point,
::Monitor::NameList,
CORBA::NO_MEMORY ());
}
monitor_point->length (monitor_point->length () + 1);
(*monitor_point)[monitor_point->length () - 1] =
CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR(get_opts.opt_arg ()));
break;
}
case 'c':
mp_clear = true;
break;
case 'i':
n_iterations = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 's':
sleep_time.set(ACE_OS::atoi (get_opts.opt_arg ()), 0);
break;
case '?':
default:
ACE_ERROR_RETURN ((LM_ERROR,
"usage: %s "
"-k <ior> "
"-p <point> "
"-i <iterations> "
"-c clear "
"-s <sleeptime> "
"-f <filter> "
"\n",
argv [0]),
-1);
}
// Indicates successful parsing of the command line
return 0;
}
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
try
{
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
if (parse_args (argc, argv) != 0)
{
return 1;
}
/// Get the MC object reference that the client has exposed.
CORBA::Object_var obj =
orb->string_to_object (monitor_ior);
if (CORBA::is_nil (obj.in ()))
{
ACE_ERROR_RETURN ((LM_ERROR,
"Monitor client - string_to_object failed\n"),
-1);
}
Monitor::MC_var monitor = Monitor::MC::_narrow (obj.in ());
if (CORBA::is_nil (monitor.in ()))
{
ACE_ERROR_RETURN ((LM_ERROR,
"Monitor client - narrow failed\n"),
-1);
}
if (monitor_point != 0)
{
/// Access the monitor's value a few times and watch it grow.
for (int i = 0; i < n_iterations; ++i)
{
Monitor::DataList_var data;
if (mp_clear)
{
data = monitor->get_and_clear_statistics (*monitor_point);
}
else
{
data = monitor->get_statistics (*monitor_point);
}
for (CORBA::ULong index = 0; index < data->length (); ++index)
{
ACE_DEBUG ((LM_DEBUG, "MP <%C>:\n", data[index].itemname.in ()));
Monitor::Data dlist = data[index];
if (dlist.data_union._d() == Monitor::DATA_TEXT)
{
for (CORBA::ULong valueindex = 0;
valueindex < dlist.data_union.num().dlist.length ();
++valueindex)
{
Monitor::DataValue d = dlist.data_union.num().dlist[valueindex];
ACE_DEBUG ((LM_DEBUG, "\t value <%A>:\n", d.value));
}
}
}
ACE_OS::sleep (sleep_time);
}
}
else
{
Monitor::NameList_var list = monitor->get_statistic_names (ACE_TEXT_ALWAYS_CHAR (filter));
for (CORBA::ULong index = 0; index < list->length (); ++index)
{
ACE_DEBUG ((LM_DEBUG, "MP: <%C>\n", list[index].in ()));
}
}
orb->destroy ();
}
catch (const CORBA::Exception &ex)
{
ex._tao_print_exception ("Monitor_client: Exception caught:");
return 1;
}
return 0;
}
|