13 #include "common/logger.h"
17 namespace tcp_channel {
21 : tcp_socket_handler_{std::move(tcp_socket_handler)},
22 tcp_channel_handler_{tcp_socket_handler_, *this},
23 connection_{connection} {}
54 FILE_NAME, __LINE__, __func__, [&kHostIpAddress, &kHostPortNumber](std::stringstream &msg) {
55 msg <<
"Doip Tcp socket connect failed for remote endpoints : "
56 <<
"<Ip: " << kHostIpAddress <<
", Port: " << kHostPortNumber <<
">";
88 FILE_NAME, __LINE__, __func__, [](std::stringstream &msg) {
89 msg <<
"Routing Activation required, please connect to server first";
95 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
104 protocol_kind, payload_info);
A view over a contiguous sequence of objects.
auto IsRoutingActivated() noexcept -> bool
Check if routing activation is active for this handler.
void Start()
Function to start the handler.
void Reset()
Function to reset the handler.
auto SendDiagnosticRequest(uds_transport::UdsMessageConstPtr diagnostic_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to send diagnostic request.
void Stop()
Function to stop the handler.
auto SendRoutingActivationRequest(uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::ConnectionResult
Function to send routing activation request.
void HandleMessage(TcpMessagePtr tcp_rx_message) noexcept
Function to process the received message.
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(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.
static auto GetDiagClientLogger() noexcept -> DoipClientLogger &
Handler class to manage different socket of various client (Udp / Tcp)
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
core_type::Result< void > ConnectToHost(std::string_view host_ip_address, std::uint16_t host_port_num)
Function to connect to remote ip address and port number.
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
void DeInitialize() noexcept
Function to stop the socket handler.
void Initialize() noexcept
Function to start the socket handler.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
Interface class to handle connection between two layers.
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)=0
Function to indicate a start of reception of message.
virtual void HandleMessage(UdsMessagePtr message)=0
Function to Hands over a valid received Uds message.
std::string_view IpAddress
std::string_view ProtocolKind
std::unique_ptr< const UdsMessage > UdsMessageConstPtr
std::unique_ptr< UdsMessage > UdsMessagePtr