Example of a UDP server.
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <iterator>
#include <sstream>
#include <vector>
#include <visp3/core/vpUDPServer.h>
namespace
{
struct vpDataType_t
{
double double_val;
int int_val;
vpDataType_t() : double_val(0.0), int_val(0) { }
vpDataType_t(double dbl, int i) : double_val(dbl), int_val(i) { }
};
}
int main()
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
#ifdef VISP_HAVE_FUNC_INET_NTOP
try {
int port = 50037;
std::string msg = "", hostInfo = "";
int res = server.receive(msg, hostInfo);
if (res) {
vpDataType_t data_type;
memcpy(&data_type.double_val, msg.c_str(), sizeof(data_type.double_val));
memcpy(&data_type.int_val, msg.c_str() + sizeof(data_type.double_val), sizeof(data_type.int_val));
std::cout << "Server received double_val: " << data_type.double_val << " ; int_val: " << data_type.int_val
<< " from: " << hostInfo << std::endl;
std::istringstream iss(hostInfo);
std::vector<std::string> tokens;
std::copy(std::istream_iterator<std::string>(iss), std::istream_iterator<std::string>(),
std::back_inserter(tokens));
data_type.double_val += 1.5;
data_type.int_val += 2;
char data[sizeof(data_type.double_val) + sizeof(data_type.int_val)];
memcpy(data, &data_type.double_val, sizeof(data_type.double_val));
memcpy(data + sizeof(data_type.double_val), &data_type.int_val, sizeof(data_type.int_val));
msg = std::string(data, sizeof(data_type.double_val) + sizeof(data_type.int_val));
server.send(msg, tokens[1], atoi(tokens[2].c_str()));
}
while (true) {
res = server.receive(msg, hostInfo, 5000);
if (res) {
std::cout << "Server received: " << msg << " from: " << hostInfo << std::endl;
std::cout << "Reply to the client: Echo: " << msg << std::endl;
std::istringstream iss(hostInfo);
std::vector<std::string> tokens;
std::copy(std::istream_iterator<std::string>(iss), std::istream_iterator<std::string>(),
std::back_inserter(tokens));
server.send("Echo: " + msg, tokens[1], atoi(tokens[2].c_str()));
}
else if (res == 0) {
std::cout << "Receive timeout" << std::endl;
}
else {
std::cerr << "Error server.receive()!" << std::endl;
}
}
return EXIT_SUCCESS;
}
std::cerr <<
"Catch an exception: " << e.
what() << std::endl;
return EXIT_FAILURE;
}
#else
std::cout << "This test doesn't work on win XP where inet_ntop() is not available" << std::endl;
return EXIT_SUCCESS;
#endif
}
error that can be emitted by ViSP classes.
const char * what() const
This class implements a basic (IPv4) User Datagram Protocol (UDP) server.