11 #include <string_view>
19 namespace connection {
21 using namespace std::literals;
62 std::string_view tcp_ip_address, std::uint16_t port_num)
139 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
147 priority, protocol_kind, payload_info));
202 std::string_view udp_ip_address, std::uint16_t port_num)
278 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
287 priority, protocol_kind, payload_info));
322 std::uint16_t port_num) {
323 return std::make_unique<DoipTcpConnection>(conversation, tcp_ip_address, port_num);
328 std::uint16_t port_num) {
329 return std::make_unique<DoipUdpConnection>(conversation, udp_ip_address, port_num);
A view over a contiguous sequence of objects.
Class to manage a tcp channel as per DoIP protocol.
void Stop()
Function to stop the channel.
void Start()
Function to start the channel.
bool IsConnectedToHost()
Function to check if connected to host remote server.
uds_transport::UdsTransportProtocolMgr::ConnectionResult ConnectToHost(uds_transport::UdsMessageConstPtr message)
Function to establish connection to remote host server.
uds_transport::UdsTransportProtocolMgr::DisconnectionResult DisconnectFromHost()
Function to disconnect from remote host server.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message)
Function to transmit a valid Uds message.
Class to manage a udp channel as per DoIP protocol.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message)
Function to transmit a Vehicle Identification request.
void Start()
Function to start the channel.
void Stop()
Function to stop the channel.
ConnectionManager() noexcept
Constructs an instance of DoipConnectionManager.
std::unique_ptr< uds_transport::Connection > CreateTcpConnection(uds_transport::ConversionHandler const &conversation, std::string_view tcp_ip_address, std::uint16_t port_num)
Function to find or create a new Tcp connection.
std::unique_ptr< uds_transport::Connection > CreateUdpConnection(uds_transport::ConversionHandler const &conversation, std::string_view udp_ip_address, std::uint16_t port_num)
Function to find or create a new Udp connection.
Doip Tcp Connection handle connection between two layers.
InitializationResult Initialize() override
Function to initialize the connection.
bool IsConnectToHost() override
Function to check if connected to host remote server.
DoipTcpConnection(uds_transport::ConversionHandler const &conversation_handler, std::string_view tcp_ip_address, std::uint16_t port_num)
Constructor to create a new tcp connection.
channel::tcp_channel::DoipTcpChannel doip_tcp_channel_
Store the doip tcp channel.
void Start() override
Function to start the connection.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message) override
Function to transmit a valid Uds message.
void HandleMessage(uds_transport::UdsMessagePtr message) override
Function to Hands over a valid received Uds message.
uds_transport::UdsTransportProtocolMgr::DisconnectionResult DisconnectFromHost() override
Function to disconnect from remote host server.
std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > IndicateMessage(uds_transport::UdsMessage::Address source_addr, uds_transport::UdsMessage::Address target_addr, uds_transport::UdsMessage::TargetAddressType type, uds_transport::ChannelID channel_id, std::size_t size, uds_transport::Priority priority, uds_transport::ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info) override
Function to indicate a start of reception of message.
void Stop() override
Function to stop the connection.
uds_transport::UdsTransportProtocolMgr::ConnectionResult ConnectToHost(uds_transport::UdsMessageConstPtr message) override
Function to establish connection to remote host server.
sockets::TcpSocketHandler::Client TcpClient
Type alias for Tcp client used by socket handler.
~DoipTcpConnection() final=default
Destruct an instance of DoipTcpConnection.
Doip Udp Connection handle connection between two layers.
std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > IndicateMessage(uds_transport::UdsMessage::Address source_addr, uds_transport::UdsMessage::Address target_addr, uds_transport::UdsMessage::TargetAddressType type, uds_transport::ChannelID channel_id, std::size_t size, uds_transport::Priority priority, uds_transport::ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info) override
Function to indicate a start of reception of message.
DoipUdpConnection(uds_transport::ConversionHandler const &conversation_handler, std::string_view udp_ip_address, std::uint16_t port_num)
Constructor to create a new udp connection.
InitializationResult Initialize() override
Function to initialize the connection.
channel::udp_channel::DoipUdpChannel doip_udp_channel_
Store the reference to doip udp channel.
void Stop() override
Function to stop the connection.
bool IsConnectToHost() override
Function to check if connected to host remote server.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message) override
Function to transmit a valid Uds message.
sockets::UdpSocketHandler::Client UdpClient
Type alias for Tcp client used by socket handler.
void Start() override
Function to start the connection.
void HandleMessage(uds_transport::UdsMessagePtr message) override
Function to Hands over a valid received Uds message.
uds_transport::UdsTransportProtocolMgr::DisconnectionResult DisconnectFromHost() override
Function to disconnect from remote host server.
~DoipUdpConnection() final=default
Destruct an instance of DoipUdpConnection.
uds_transport::UdsTransportProtocolMgr::ConnectionResult ConnectToHost(uds_transport::UdsMessageConstPtr) override
Function to establish connection to remote host server.
ClientType Client
Type alias for client.
Interface class to handle connection between two layers.
uds_transport::UdsTransportProtocolHandler::InitializationResult InitializationResult
Type alias for Initialization result.
uds_transport::ConversionHandler const & conversation_handler_
Store the conversation handler.
Connection(std::string_view connection_name, ConnectionId connection_id, uds_transport::ConversionHandler const &conversation_handler) noexcept
Constructor to create a new connection.
std::string_view GetConnectionName() const noexcept
Function to get the connection name.
Class to manage reception from transport protocol handler to connection handler.
virtual std::pair< UdsTransportProtocolMgr::IndicationResult, UdsMessagePtr > IndicateMessage(UdsMessage::Address source_addr, UdsMessage::Address target_addr, UdsMessage::TargetAddressType type, ChannelID channel_id, std::size_t size, Priority priority, ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info) const noexcept=0
Function to indicate a start of reception of message.
virtual void HandleMessage(UdsMessagePtr message) const noexcept=0
Function to Hands over a valid received Uds message.
InitializationResult
Definitions of different initialization result.
constexpr std::string_view kDoipUdpConnectionName
Udp connection name.
constexpr std::string_view kDoipTcpConnectionName
Tcp connection name.
SocketHandler< boost_support::client::tcp::TcpClient > TcpSocketHandler
Type alias of Tcp socket handler.
SocketHandler< boost_support::client::udp::UdpClient > UdpSocketHandler
Type alias of Udp socket handler.
std::string_view ProtocolKind
std::unique_ptr< const UdsMessage > UdsMessageConstPtr
std::unique_ptr< UdsMessage > UdsMessagePtr