Diag-Client-Lib
doip_tcp_channel.h
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 #ifndef DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_TCP_CHANNEL_H_
9 #define DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_TCP_CHANNEL_H_
10 
11 #include <memory>
12 #include <string_view>
13 #include <utility>
14 
16 #include "sockets/socket_handler.h"
18 
19 namespace doip_client {
20 namespace channel {
21 namespace tcp_channel {
22 
26 class DoipTcpChannel final {
27  public:
32 
37 
45  DoipTcpChannel(TcpSocketHandler tcp_socket_handler, uds_transport::Connection &connection);
46 
50  ~DoipTcpChannel() = default;
51 
55  void Start();
56 
60  void Stop();
61 
66  bool IsConnectedToHost();
67 
76 
82 
108  std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
112  uds_transport::ChannelID channel_id, std::size_t size,
115 
123 
131 
138  void ProcessReceivedTcpMessage(TcpMessagePtr tcp_rx_message);
139 
140  private:
145 
150 
155 };
156 
157 } // namespace tcp_channel
158 } // namespace channel
159 } // namespace doip_client
160 #endif // DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_TCP_CHANNEL_H_
A view over a contiguous sequence of objects.
Definition: span.h:191
Class to handle tcp received messages from lower layer.
Class to manage a tcp channel as per DoIP protocol.
void Stop()
Function to stop the channel.
uds_transport::Connection & connection_
Store the reference to doip connection.
void HandleMessage(uds_transport::UdsMessagePtr message)
Function to Hands over a valid received Uds message to upper layer.
void Start()
Function to start the channel.
sockets::TcpSocketHandler::MessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
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)
Function to indicate a start of reception of message.
DoipTcpChannelHandler tcp_channel_handler_
Store the doip channel handler.
bool IsConnectedToHost()
Function to check if connected to host remote server.
~DoipTcpChannel()=default
Destruct an instance of TcpChannel.
DoipTcpChannel(TcpSocketHandler tcp_socket_handler, uds_transport::Connection &connection)
Constructs an instance of TcpChannel.
uds_transport::UdsTransportProtocolMgr::ConnectionResult ConnectToHost(uds_transport::UdsMessageConstPtr message)
Function to establish connection to remote host server.
void ProcessReceivedTcpMessage(TcpMessagePtr tcp_rx_message)
Function to process the received Tcp message from socket layer.
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.
TcpSocketHandler tcp_socket_handler_
Store the tcp socket handler.
Handler class to manage different socket of various client (Udp / Tcp)
typename Client::MessagePtr MessagePtr
Type alias for message pointer.
Interface class to handle connection between two layers.
Definition: connection.h:45
SocketHandler< boost_support::client::tcp::TcpClient > TcpSocketHandler
Type alias of Tcp 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