#ifndef VSOMEIP_V3_ENDPOINT_DEFINITION_HPP_
#define VSOMEIP_V3_ENDPOINT_DEFINITION_HPP_
#include <map>
#include <memory>
#include <atomic>
#include <mutex>
#include <boost/asio/ip/address.hpp>
#include <vsomeip/primitive_types.hpp>
#include <vsomeip/export.hpp>
namespace vsomeip_v3 {
class endpoint_definition {
public:
VSOMEIP_EXPORT static std::shared_ptr<endpoint_definition> get(
const boost::asio::ip::address &_address,
uint16_t _port, bool _is_reliable, service_t _service, instance_t _instance);
VSOMEIP_EXPORT const boost::asio::ip::address &get_address() const;
VSOMEIP_EXPORT uint16_t get_port() const;
VSOMEIP_EXPORT uint16_t get_remote_port() const;
VSOMEIP_EXPORT void set_remote_port(uint16_t _port);
VSOMEIP_EXPORT bool is_reliable() const;
VSOMEIP_EXPORT endpoint_definition(
const boost::asio::ip::address &_address,
uint16_t _port, bool _is_reliable);
private:
boost::asio::ip::address address_;
uint16_t port_;
std::atomic<uint16_t> remote_port_;
bool is_reliable_;
static std::mutex definitions_mutex_;
static std::map<
std::tuple<service_t, instance_t, boost::asio::ip::address, uint16_t, bool>,
std::shared_ptr<endpoint_definition> > definitions_;
};
}
#endif