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
|
// NOLINTBEGIN(*)
#include "old_common.h"
int main(int argc, char **argv)
{
DeviceProxy *device;
if(argc < 2)
{
TEST_LOG << "usage: %s device" << endl;
exit(-1);
}
string device_name = argv[1];
if(argc == 3)
{
string verb = argv[2];
if(verb != "-v")
{
TEST_LOG << "Usage: %s device" << endl;
exit(-1);
}
}
try
{
device = new DeviceProxy(device_name);
}
catch(CORBA::Exception &e)
{
Except::print_exception(e);
exit(1);
}
TEST_LOG << endl << "new DeviceProxy(" << device->name() << ") returned" << endl << endl;
int i;
vector<DeviceDataHistory> *d_hist;
try
{
// Test command_history (for strings)
int hist_depth = 4;
d_hist = device->command_history("IOPollStr1", hist_depth);
for(i = 0; i < hist_depth; i++)
{
TEST_LOG << (*d_hist)[i] << endl;
}
delete d_hist;
TEST_LOG << " Read command history (string) --> OK" << endl;
// Test command_history with exception
d_hist = device->command_history("IOExcept", hist_depth);
for(i = 0; i < hist_depth; i++)
{
TEST_LOG << (*d_hist)[i] << endl;
}
delete d_hist;
TEST_LOG << " Read command history with exception --> OK" << endl;
// Test attribute_history (for strings spectrum)
vector<DeviceAttributeHistory> *a_hist;
a_hist = device->attribute_history("PollString_spec_attr", hist_depth);
for(i = 0; i < hist_depth; i++)
{
TEST_LOG << (*a_hist)[i] << endl;
}
delete a_hist;
TEST_LOG << " Read attribute history (string spectrum) --> OK" << endl;
// Test attribute_history with exception
a_hist = device->attribute_history("attr_wrong_type", hist_depth);
for(i = 0; i < hist_depth; i++)
{
TEST_LOG << (*a_hist)[i] << endl;
}
delete a_hist;
TEST_LOG << " Read attribute history with exception --> OK" << endl;
}
catch(Tango::DevFailed &e)
{
Except::print_exception(e);
exit(-1);
}
delete device;
return 0;
}
// NOLINTEND(*)
|