#ifndef VSOMEIP_V3_LOCAL_UDS_CLIENT_ENDPOINT_IMPL_HPP_
#define VSOMEIP_V3_LOCAL_UDS_CLIENT_ENDPOINT_IMPL_HPP_
#include <boost/asio/local/stream_protocol.hpp>
#include <vsomeip/defines.hpp>
#include "client_endpoint_impl.hpp"
namespace vsomeip_v3 {
typedef client_endpoint_impl<
boost::asio::local::stream_protocol
> local_uds_client_endpoint_base_impl;
class local_uds_client_endpoint_impl: public local_uds_client_endpoint_base_impl {
public:
local_uds_client_endpoint_impl(const std::shared_ptr<endpoint_host>& _endpoint_host,
const std::shared_ptr<routing_host>& _routing_host,
const endpoint_type& _remote,
boost::asio::io_context &_io,
const std::shared_ptr<configuration>& _configuration);
virtual ~local_uds_client_endpoint_impl();
void start();
void stop();
bool is_local() const;
bool get_remote_address(boost::asio::ip::address &_address) const;
std::uint16_t get_remote_port() const;
void restart(bool _force);
void print_status();
bool is_reliable() const;
bool send(const uint8_t *_data, uint32_t _size);
void get_configured_times_from_endpoint(
service_t _service, method_t _method,
std::chrono::nanoseconds *_debouncing,
std::chrono::nanoseconds *_maximum_retention) const;
private:
void send_queued(std::pair<message_buffer_ptr_t, uint32_t> &_entry);
void send_magic_cookie();
void connect();
void receive();
void receive_cbk(boost::system::error_code const &_error,
std::size_t _bytes);
void set_local_port();
std::string get_remote_information() const;
bool check_packetizer_space(std::uint32_t _size);
bool tp_segmentation_enabled(service_t _service, method_t _method) const;
std::uint32_t get_max_allowed_reconnects() const;
void max_allowed_reconnects_reached();
message_buffer_t recv_buffer_;
message_buffer_ptr_t send_data_buffer_;
};
}
#endif