Diag-Client-Lib
connection_manager.cpp
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
10 
11 #include <string_view>
12 
15 #include "sockets/socket_handler.h"
17 
18 namespace doip_client {
19 namespace connection {
20 namespace {
21 using namespace std::literals;
22 
26 constexpr std::string_view kDoipTcpConnectionName{"DTcpCntn_"sv};
27 
31 constexpr std::string_view kDoipUdpConnectionName{"DUdpCntn_"sv};
32 
33 } // namespace
34 
39  public:
44 
49 
62  std::string_view tcp_ip_address, std::uint16_t port_num)
63  : uds_transport::Connection{kDoipTcpConnectionName, 1u, conversation_handler},
65  sockets::TcpSocketHandler{TcpClient{GetConnectionName(), tcp_ip_address, port_num}},
66  *this} {}
67 
71  ~DoipTcpConnection() final = default;
72 
78 
82  void Start() override { doip_tcp_channel_.Start(); }
83 
87  void Stop() override { doip_tcp_channel_.Stop(); }
88 
93  bool IsConnectToHost() override { return (doip_tcp_channel_.IsConnectedToHost()); }
94 
102  uds_transport::UdsMessageConstPtr message) override {
103  return (doip_tcp_channel_.ConnectToHost(std::move(message)));
104  }
105 
112  }
113 
139  std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
143  uds_transport::ChannelID channel_id, std::size_t size,
145  core_type::Span<std::uint8_t const> payload_info) override {
146  return (conversation_handler_.IndicateMessage(source_addr, target_addr, type, channel_id, size,
147  priority, protocol_kind, payload_info));
148  }
149 
156  uds_transport::UdsMessageConstPtr message) override {
157  return doip_tcp_channel_.Transmit(std::move(message));
158  }
159 
167  conversation_handler_.HandleMessage(std::move(message));
168  }
169 
170  private:
175 };
176 
181  public:
186 
191 
202  std::string_view udp_ip_address, std::uint16_t port_num)
203  : uds_transport::Connection{kDoipUdpConnectionName, 1, conversation_handler},
204  doip_udp_channel_{sockets::UdpSocketHandler{UdpClient{udp_ip_address, port_num}},
205  sockets::UdpSocketHandler{UdpClient{udp_ip_address, port_num}}, *this} {}
206 
210  ~DoipUdpConnection() final = default;
211 
217 
221  void Start() override { doip_udp_channel_.Start(); }
222 
226  void Stop() override { doip_udp_channel_.Stop(); }
227 
232  bool IsConnectToHost() override { return false; }
233 
243  }
244 
251  }
252 
278  std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
282  uds_transport::ChannelID channel_id, std::size_t size,
284  core_type::Span<std::uint8_t const> payload_info) override {
285  // Send Indication to conversion
286  return (conversation_handler_.IndicateMessage(source_addr, target_addr, type, channel_id, size,
287  priority, protocol_kind, payload_info));
288  }
289 
296  uds_transport::UdsMessageConstPtr message) override {
297  return (doip_udp_channel_.Transmit(std::move(message)));
298  }
299 
307  // send full message to conversion
308  conversation_handler_.HandleMessage(std::move(message));
309  }
310 
311  private:
316 };
317 
318 ConnectionManager::ConnectionManager() noexcept : io_context_{} {}
319 
320 std::unique_ptr<uds_transport::Connection> ConnectionManager::CreateTcpConnection(
321  uds_transport::ConversionHandler const &conversation, std::string_view tcp_ip_address,
322  std::uint16_t port_num) {
323  return std::make_unique<DoipTcpConnection>(conversation, tcp_ip_address, port_num);
324 }
325 
326 std::unique_ptr<uds_transport::Connection> ConnectionManager::CreateUdpConnection(
327  uds_transport::ConversionHandler const &conversation, std::string_view udp_ip_address,
328  std::uint16_t port_num) {
329  return std::make_unique<DoipUdpConnection>(conversation, udp_ip_address, port_num);
330 }
331 
332 } // namespace connection
333 } // namespace doip_client
A view over a contiguous sequence of objects.
Definition: span.h:191
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.
Definition: connection.h:45
uds_transport::UdsTransportProtocolHandler::InitializationResult InitializationResult
Type alias for Initialization result.
Definition: connection.h:55
uds_transport::ConversionHandler const & conversation_handler_
Store the conversation handler.
Definition: connection.h:174
Connection(std::string_view connection_name, ConnectionId connection_id, uds_transport::ConversionHandler const &conversation_handler) noexcept
Constructor to create a new connection.
Definition: connection.h:66
std::string_view GetConnectionName() const noexcept
Function to get the connection name.
Definition: connection.h:93
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
Definition: uds_message.h:69
std::unique_ptr< UdsMessage > UdsMessagePtr
Definition: uds_message.h:71
uint32_t ChannelID
std::uint8_t Priority