#ifndef _OWLPS_POSITIONING_OUTPUTTCPSOCKETEVAAL_HH_ #define _OWLPS_POSITIONING_OUTPUTTCPSOCKETEVAAL_HH_ class Point3D ; #include "outputmedium.hh" #include #include // is not C++ 98 compliant #include /// Sends results to a remote host by TCP (EvAAL competition format) /** * The results are sent through an TCP socket as a string value, * conforming to the EvAAL competition format. */ class OutputTCPSocketEvAAL: public OutputMedium { protected: int sockfd ; std::string remote_host ; uint_fast16_t remote_port ; struct sockaddr_in server_info ; struct sockaddr_in client_info ; /** @name Operations */ //@{ /// Initialises the socket bool init_socket(void) ; /// Sends a string through the socket bool send_data(const std::string &data) const ; /// Receives and parse the acknowledgement from the server bool acknowledge(void) const ; //@} public: OutputTCPSocketEvAAL(const std::string &_remote_host, const uint_fast16_t _remote_port) ; ~OutputTCPSocketEvAAL(void) ; /** @name Operations */ //@{ void write(const ResultList &results) ; void write(const Result &result) ; /// Get the area of interest number from the position int area_of_interest_number(const Point3D &position) const ; /// Closes the socket bool close_socket(void) ; //@} } ; #endif // _OWLPS_POSITIONING_OUTPUTTCPSOCKETEVAAL_HH_